Current File : //root/alldb.sql |
-- MySQL dump 10.13 Distrib 5.6.41, for Linux (x86_64)
--
-- Host: localhost Database:
-- ------------------------------------------------------
-- Server version 5.6.41
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Current Database: `mysql`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mysql` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `mysql`;
--
-- Table structure for table `columns_priv`
--
DROP TABLE IF EXISTS `columns_priv`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `columns_priv` (
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
`Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
`User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '',
`Table_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
`Column_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
`Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`Column_priv` set('Select','Insert','Update','References') CHARACTER SET utf8 NOT NULL DEFAULT '',
PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`,`Column_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Column privileges';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `columns_priv`
--
LOCK TABLES `columns_priv` WRITE;
/*!40000 ALTER TABLE `columns_priv` DISABLE KEYS */;
/*!40000 ALTER TABLE `columns_priv` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `db`
--
DROP TABLE IF EXISTS `db`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `db` (
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
`Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
`User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '',
`Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Event_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
PRIMARY KEY (`Host`,`Db`,`User`),
KEY `User` (`User`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Database privileges';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `db`
--
LOCK TABLES `db` WRITE;
/*!40000 ALTER TABLE `db` DISABLE KEYS */;
INSERT INTO `db` VALUES ('%','test','','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','N','N','Y','Y'),('%','test\\_%','','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','N','N','Y','Y'),('localhost','sentora_postfix','postfix','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('localhost','sentora_proftpd','proftpd','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('localhost','sentora_roundcube','roundcube','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y');
/*!40000 ALTER TABLE `db` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `event`
--
DROP TABLE IF EXISTS `event`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `event` (
`db` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`name` char(64) NOT NULL DEFAULT '',
`body` longblob NOT NULL,
`definer` char(77) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`execute_at` datetime DEFAULT NULL,
`interval_value` int(11) DEFAULT NULL,
`interval_field` enum('YEAR','QUARTER','MONTH','DAY','HOUR','MINUTE','WEEK','SECOND','MICROSECOND','YEAR_MONTH','DAY_HOUR','DAY_MINUTE','DAY_SECOND','HOUR_MINUTE','HOUR_SECOND','MINUTE_SECOND','DAY_MICROSECOND','HOUR_MICROSECOND','MINUTE_MICROSECOND','SECOND_MICROSECOND') DEFAULT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_executed` datetime DEFAULT NULL,
`starts` datetime DEFAULT NULL,
`ends` datetime DEFAULT NULL,
`status` enum('ENABLED','DISABLED','SLAVESIDE_DISABLED') NOT NULL DEFAULT 'ENABLED',
`on_completion` enum('DROP','PRESERVE') NOT NULL DEFAULT 'DROP',
`sql_mode` set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH') NOT NULL DEFAULT '',
`comment` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`originator` int(10) unsigned NOT NULL,
`time_zone` char(64) CHARACTER SET latin1 NOT NULL DEFAULT 'SYSTEM',
`character_set_client` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`collation_connection` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`db_collation` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`body_utf8` longblob,
PRIMARY KEY (`db`,`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Events';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `event`
--
LOCK TABLES `event` WRITE;
/*!40000 ALTER TABLE `event` DISABLE KEYS */;
/*!40000 ALTER TABLE `event` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `func`
--
DROP TABLE IF EXISTS `func`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `func` (
`name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
`ret` tinyint(1) NOT NULL DEFAULT '0',
`dl` char(128) COLLATE utf8_bin NOT NULL DEFAULT '',
`type` enum('function','aggregate') CHARACTER SET utf8 NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User defined functions';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `func`
--
LOCK TABLES `func` WRITE;
/*!40000 ALTER TABLE `func` DISABLE KEYS */;
/*!40000 ALTER TABLE `func` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `help_category`
--
DROP TABLE IF EXISTS `help_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `help_category` (
`help_category_id` smallint(5) unsigned NOT NULL,
`name` char(64) NOT NULL,
`parent_category_id` smallint(5) unsigned DEFAULT NULL,
`url` text NOT NULL,
PRIMARY KEY (`help_category_id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help categories';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `help_category`
--
LOCK TABLES `help_category` WRITE;
/*!40000 ALTER TABLE `help_category` DISABLE KEYS */;
INSERT INTO `help_category` VALUES (1,'Geographic',0,''),(2,'Polygon properties',35,''),(3,'Numeric Functions',39,''),(4,'WKT',35,''),(5,'Plugins',36,''),(6,'Control flow functions',39,''),(7,'MBR',35,''),(8,'Transactions',36,''),(9,'Help Metadata',36,''),(10,'Account Management',36,''),(11,'Point properties',35,''),(12,'Encryption Functions',39,''),(13,'LineString properties',35,''),(14,'Miscellaneous Functions',39,''),(15,'Logical operators',39,''),(16,'Functions and Modifiers for Use with GROUP BY',36,''),(17,'Information Functions',39,''),(18,'Storage Engines',36,''),(19,'Bit Functions',39,''),(20,'Comparison operators',39,''),(21,'Table Maintenance',36,''),(22,'User-Defined Functions',36,''),(23,'Data Types',36,''),(24,'Compound Statements',36,''),(25,'Geometry constructors',35,''),(26,'GeometryCollection properties',1,''),(27,'Administration',36,''),(28,'Data Manipulation',36,''),(29,'Utility',36,''),(30,'Language Structure',36,''),(31,'Geometry relations',35,''),(32,'Date and Time Functions',39,''),(33,'WKB',35,''),(34,'Procedures',36,''),(35,'Geographic Features',36,''),(36,'Contents',0,''),(37,'Geometry properties',35,''),(38,'String Functions',39,''),(39,'Functions',36,''),(40,'Data Definition',36,'');
/*!40000 ALTER TABLE `help_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `help_keyword`
--
DROP TABLE IF EXISTS `help_keyword`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `help_keyword` (
`help_keyword_id` int(10) unsigned NOT NULL,
`name` char(64) NOT NULL,
PRIMARY KEY (`help_keyword_id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help keywords';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `help_keyword`
--
LOCK TABLES `help_keyword` WRITE;
/*!40000 ALTER TABLE `help_keyword` DISABLE KEYS */;
INSERT INTO `help_keyword` VALUES (0,'JOIN'),(1,'HOST'),(2,'SERIALIZABLE'),(3,'CONTAINS'),(4,'SRID'),(5,'AT'),(6,'SCHEDULE'),(7,'RETURNS'),(8,'MASTER_SSL_CA'),(9,'NCHAR'),(10,'ONLY'),(11,'ST_GEOMETRYN'),(12,'ST_GEOMCOLLFROMWKB'),(13,'WORK'),(14,'OPEN'),(15,'ST_INTERSECTS'),(16,'ESCAPE'),(17,'EVENTS'),(18,'MONTH'),(19,'PROFILES'),(20,'ISCLOSED'),(21,'DUPLICATE'),(22,'ST_POINTN'),(23,'REPLICATION'),(24,'UNLOCK'),(25,'STATS_PERSISTENT'),(26,'INNODB'),(27,'YEAR_MONTH'),(28,'WITHIN'),(29,'PREPARE'),(30,'LOCK'),(31,'NDB'),(32,'INT4'),(33,'POLYGON'),(34,'MINUTE'),(35,'SEPARATOR'),(36,'DELETE'),(37,'ON'),(38,'CONNECTION'),(39,'CLOSE'),(40,'MASTER_SSL_CRLPATH'),(41,'USE'),(42,'PRIVILEGES'),(43,'SPATIAL'),(44,'SQL_BUFFER_RESULT'),(45,'ERROR'),(46,'SECURITY'),(47,'AUTOEXTEND_SIZE'),(48,'ST_STARTPOINT'),(49,'NDBCLUSTER'),(50,'ST_POLYGONFROMWKB'),(51,'LEVEL'),(52,'BINARY'),(53,'CURRENT_USER'),(54,'HOUR_MINUTE'),(55,'UPDATE'),(56,'PRESERVE'),(57,'INTO'),(58,'POLYFROMWKB'),(59,'SQL_AFTER_GTIDS'),(60,'VARIABLE'),(61,'ROLLBACK'),(62,'TIMESTAMP'),(63,'IMPORT'),(64,'CHECKSUM'),(65,'THEN'),(66,'ENGINES'),(67,'HANDLER'),(68,'DAY_SECOND'),(69,'HELP_DATE'),(70,'BOOLEAN'),(71,'MOD'),(72,'ST_GEOMETRYTYPE'),(73,'CLASS_ORIGIN'),(74,'MPOLYFROMWKB'),(75,'ITERATE'),(76,'DO'),(77,'DATE'),(78,'FULLTEXT'),(79,'COMMENT'),(80,'ST_ASTEXT'),(81,'MASTER_CONNECT_RETRY'),(82,'MASTER_LOG_FILE'),(83,'PRECISION'),(84,'REQUIRE'),(85,'ST_ASWKT'),(86,'LONG'),(87,'FORMAT'),(88,'OPTION'),(89,'REORGANIZE'),(90,'ELSE'),(91,'EXTERIORRING'),(92,'GEOMFROMWKB'),(93,'STATS_AUTO_RECALC'),(94,'FROM'),(95,'MULTIPOLYGON'),(96,'LEFT'),(97,'ELSEIF'),(98,'ST_ISCLOSED'),(99,'COMPACT'),(100,'DEC'),(101,'FOR'),(102,'WARNINGS'),(103,'ST_LINESTRINGFROMWKB'),(104,'STRING'),(105,'CONDITION'),(106,'ENCLOSED'),(107,'AGGREGATE'),(108,'NUMBER'),(109,'FIELDS'),(110,'KILL'),(111,'DISJOINT'),(112,'TABLESPACE'),(113,'OVERLAPS'),(114,'INFILE'),(115,'MBREQUAL'),(116,'HELP_VERSION'),(117,'ORDER'),(118,'MASTER_SSL_CRL'),(119,'ST_GEOMFROMTEXT'),(120,'USING'),(121,'MIDDLEINT'),(122,'GRANT'),(123,'MBRINTERSECTS'),(124,'GEOMETRYN'),(125,'GEOMETRYFROMTEXT'),(126,'DEFAULT_AUTH'),(127,'FOREIGN'),(128,'CACHE'),(129,'MYSQL_ERRNO'),(130,'SCHEMAS'),(131,'LEADING'),(132,'CONSTRAINT_NAME'),(133,'CONVERT'),(134,'DYNAMIC'),(135,'POLYGONFROMTEXT'),(136,'ENVELOPE'),(137,'ST_ISEMPTY'),(138,'HAVING'),(139,'STARTING'),(140,'RELOAD'),(141,'ISSIMPLE'),(142,'AUTOCOMMIT'),(143,'ST_Y'),(144,'REVOKE'),(145,'RANDOM_BYTES'),(146,'EXPLAIN'),(147,'CSV'),(148,'OUTFILE'),(149,'LOW_PRIORITY'),(150,'FILE'),(151,'NODEGROUP'),(152,'SCHEMA'),(153,'ST_TOUCHES'),(154,'MLINEFROMWKB'),(155,'ST_POLYGONFROMTEXT'),(156,'DUAL'),(157,'MULTIPOINTFROMWKB'),(158,'MULTIPOINTFROMTEXT'),(159,'EXTENDED'),(160,'CROSS'),(161,'CONTRIBUTORS'),(162,'GROUP'),(163,'NATIONAL'),(164,'ST_ISSIMPLE'),(165,'SHA'),(166,'POINTN'),(167,'IGNORE_SERVER_IDS'),(168,'MASTER_AUTO_POSITION'),(169,'ASBINARY'),(170,'MBROVERLAPS'),(171,'GENERAL'),(172,'OWNER'),(173,'TRUE'),(174,'CHARACTER'),(175,'SCHEMA_NAME'),(176,'TABLE'),(177,'ST_LINEFROMWKB'),(178,'CASCADE'),(179,'RELAY_LOG_POS'),(180,'ASWKB'),(181,'LEAVE'),(182,'MODIFY'),(183,'MATCH'),(184,'MASTER_LOG_POS'),(185,'DISTINCTROW'),(186,'X'),(187,'CURSOR'),(188,'ST_UNION'),(189,'CROSSES'),(190,'GEOMETRYCOLLECTIONFROMTEXT'),(191,'CHAIN'),(192,'FLUSH'),(193,'CREATE'),(194,'DESCRIBE'),(195,'PROCESSLIST'),(196,'DISCARD'),(197,'SOUNDS'),(198,'PACK_KEYS'),(199,'MULTILINESTRINGFROMTEXT'),(200,'INTERSECTS'),(201,'FAST'),(202,'GET'),(203,'LOOP'),(204,'VARCHARACTER'),(205,'BEFORE'),(206,'ALL'),(207,'REDUNDANT'),(208,'USER_RESOURCES'),(209,'PARTIAL'),(210,'END'),(211,'ST_CONTAINS'),(212,'SECOND'),(213,'FLOAT8'),(214,'PREV'),(215,'MBRCONTAINS'),(216,'OR'),(217,'IDENTIFIED'),(218,'POINTFROMTEXT'),(219,'MASTER_SSL_CIPHER'),(220,'SQL_SLAVE_SKIP_COUNTER'),(221,'BOTH'),(222,'YEAR'),(223,'UNIQUE'),(224,'TRIGGERS'),(225,'RESIGNAL'),(226,'ST_NUMPOINTS'),(227,'MASTER_SSL'),(228,'DATE_ADD'),(229,'ST_ENVELOPE'),(230,'LIKE'),(231,'PLUGIN'),(232,'MULTIPOINT'),(233,'FETCH'),(234,'MBRWITHIN'),(235,'COLUMN'),(236,'USAGE'),(237,'MEMORY'),(238,'QUERY'),(239,'Y'),(240,'LINES'),(241,'PLUGIN_DIR'),(242,'SQL_THREAD'),(243,'INTERIORRINGN'),(244,'NUMINTERIORRINGS'),(245,'MAX_QUERIES_PER_HOUR'),(246,'ST_POLYFROMTEXT'),(247,'TRANSACTION'),(248,'STDDEV'),(249,'NAMES'),(250,'INT1'),(251,'RIGHT'),(252,'MAX_ROWS'),(253,'ALTER'),(254,'NATURAL'),(255,'MULTILINESTRING'),(256,'VARIABLES'),(257,'ESCAPED'),(258,'KEY_BLOCK_SIZE'),(259,'MPOINTFROMTEXT'),(260,'CHAR'),(261,'UPGRADE'),(262,'INTERVAL'),(263,'NAME'),(264,'ST_POINTFROMWKB'),(265,'REFERENCES'),(266,'ST_WITHIN'),(267,'STORAGE'),(268,'ISOLATION'),(269,'EVERY'),(270,'INT8'),(271,'AUTHORS'),(272,'ST_BUFFER'),(273,'BUFFER'),(274,'RESTRICT'),(275,'UNCOMMITTED'),(276,'LINESTRINGFROMTEXT'),(277,'IS'),(278,'ST_CENTROID'),(279,'NOT'),(280,'DATAFILE'),(281,'ANALYSE'),(282,'DES_KEY_FILE'),(283,'COMPRESSED'),(284,'START'),(285,'IF'),(286,'ROWS'),(287,'PURGE'),(288,'USER'),(289,'EXIT'),(290,'MERGE'),(291,'ST_DISTANCE'),(292,'SQL_NO_CACHE'),(293,'DELAYED'),(294,'PROXY'),(295,'ST_POLYFROMWKB'),(296,'RELAY'),(297,'WRITE'),(298,'DATABASE'),(299,'NULL'),(300,'POWER'),(301,'POINTFROMWKB'),(302,'USE_FRM'),(303,'TERMINATED'),(304,'NVARCHAR'),(305,'RETURN'),(306,'DIRECTORY'),(307,'AES_DECRYPT'),(308,'GLENGTH'),(309,'SHUTDOWN'),(310,'CATALOG_NAME'),(311,'FIXED'),(312,'MULTIPOLYGONFROMTEXT'),(313,'REPLACE'),(314,'REPEAT'),(315,'ST_SYMDIFFERENCE'),(316,'STARTS'),(317,'COMPLETION'),(318,'COLUMNS'),(319,'DATETIME'),(320,'MODE'),(321,'INTEGER'),(322,'VALUE'),(323,'ASWKT'),(324,'GEOMETRYCOLLECTIONFROMWKB'),(325,'DROP'),(326,'SQL_BIG_RESULT'),(327,'MASTER_SSL_VERIFY_SERVER_CERT'),(328,'SUBJECT'),(329,'MASTER_RETRY_COUNT'),(330,'CHECK'),(331,'FULL'),(332,'BY'),(333,'NO'),(334,'DAY'),(335,'DATA'),(336,'PARTITION'),(337,'REAL'),(338,'SHARE'),(339,'LINESTRING'),(340,'MESSAGE_TEXT'),(341,'MASTER_HEARTBEAT_PERIOD'),(342,'COLUMN_NAME'),(343,'X509'),(344,'LINEFROMTEXT'),(345,'SUBCLASS_ORIGIN'),(346,'WHERE'),(347,'EVENT'),(348,'SUPER'),(349,'IGNORE'),(350,'SHA2'),(351,'QUICK'),(352,'SIGNED'),(353,'ST_GEOMCOLLFROMTEXT'),(354,'FALSE'),(355,'POLYGONFROMWKB'),(356,'FORCE'),(357,'CHANGE'),(358,'TO'),(359,'POINT'),(360,'CREATE_DH_PARAMETERS'),(361,'TABLE_NAME'),(362,'SLOW'),(363,'VARYING'),(364,'FEDERATED'),(365,'MAX_SIZE'),(366,'HOUR_SECOND'),(367,'ST_DIFFERENCE'),(368,'TRADITIONAL'),(369,'GEOMETRYCOLLECTION'),(370,'ST_GEOMETRYCOLLECTIONFROMTEXT'),(371,'ST_ASBINARY'),(372,'PROCEDURE'),(373,'AGAINST'),(374,'ST_AREA'),(375,'ENDPOINT'),(376,'SQL_BEFORE_GTIDS'),(377,'LONGBINARY'),(378,'INSERT'),(379,'COUNT'),(380,'PORT'),(381,'MLINEFROMTEXT'),(382,'EXISTS'),(383,'MUTEX'),(384,'GEOMCOLLFROMWKB'),(385,'RELEASE'),(386,'DEFAULT'),(387,'TYPE'),(388,'NO_WRITE_TO_BINLOG'),(389,'OPTIMIZE'),(390,'SQLSTATE'),(391,'RESET'),(392,'INSTALL'),(393,'BIGINT'),(394,'ST_DIMENSION'),(395,'SET'),(396,'ISSUER'),(397,'STATUS'),(398,'INNER'),(399,'RELAYLOG'),(400,'MRG_MYISAM'),(401,'STOP'),(402,'TRAILING'),(403,'PARTITIONS'),(404,'ST_NUMINTERIORRINGS'),(405,'CASE'),(406,'IO_THREAD'),(407,'DEALLOCATE'),(408,'CIPHER'),(409,'CONTINUE'),(410,'READ'),(411,'MINUTE_SECOND'),(412,'MIN_ROWS'),(413,'ROW_COUNT'),(414,'FUNCTION'),(415,'ST_GEOMETRYFROMWKB'),(416,'CHARSET'),(417,'INT3'),(418,'ADD'),(419,'AVG_ROW_LENGTH'),(420,'ARCHIVE'),(421,'FLOAT4'),(422,'ASTEXT'),(423,'NUMGEOMETRIES'),(424,'ALGORITHM'),(425,'VIEW'),(426,'REPEATABLE'),(427,'CONSTRAINT_CATALOG'),(428,'STARTPOINT'),(429,'MPOLYFROMTEXT'),(430,'UNSIGNED'),(431,'DECIMAL'),(432,'INDEXES'),(433,'ST_INTERSECTION'),(434,'HOSTS'),(435,'COMMIT'),(436,'SNAPSHOT'),(437,'DECLARE'),(438,'NUMPOINTS'),(439,'LOAD'),(440,'SQL_CACHE'),(441,'COLLATE'),(442,'ST_GEOMETRYFROMTEXT'),(443,'BYTE'),(444,'LINESTRINGFROMWKB'),(445,'GLOBAL'),(446,'WHEN'),(447,'TOUCHES'),(448,'AS'),(449,'ST_LINESTRINGFROMTEXT'),(450,'AUTO_INCREMENT'),(451,'GEOMCOLLFROMTEXT'),(452,'ST_INTERIORRINGN'),(453,'GRANTS'),(454,'OUTER'),(455,'CURSOR_NAME'),(456,'EXPIRE'),(457,'FLOOR'),(458,'SQL_AFTER_MTS_GAPS'),(459,'WITH'),(460,'STD'),(461,'AFTER'),(462,'DISABLE'),(463,'UNINSTALL'),(464,'SONAME'),(465,'POW'),(466,'INDEX'),(467,'DEFINER'),(468,'MASTER_BIND'),(469,'REMOVE'),(470,'MULTILINESTRINGFROMWKB'),(471,'ST_POINTFROMTEXT'),(472,'ST_ENDPOINT'),(473,'ST_OVERLAPS'),(474,'UNDO'),(475,'ZEROFILL'),(476,'CLIENT'),(477,'MASTER_PASSWORD'),(478,'RELAY_LOG_FILE'),(479,'MBRTOUCHES'),(480,'MASTER_USER'),(481,'ENGINE'),(482,'INSERT_METHOD'),(483,'SQL_CALC_FOUND_ROWS'),(484,'UNION'),(485,'MYISAM'),(486,'DESC'),(487,'TIME'),(488,'EXPANSION'),(489,'NUMERIC'),(490,'CODE'),(491,'AREA'),(492,'LOGFILE'),(493,'EXTENT_SIZE'),(494,'ST_LINEFROMTEXT'),(495,'MAX_UPDATES_PER_HOUR'),(496,'INT2'),(497,'ENDS'),(498,'ISEMPTY'),(499,'RECOVER'),(500,'LOGS'),(501,'HEAP'),(502,'RETURNED_SQLSTATE'),(503,'EXCHANGE'),(504,'BETWEEN'),(505,'ST_CROSSES'),(506,'REPAIR'),(507,'MBRDISJOINT'),(508,'CALL'),(509,'VALUES'),(510,'ST_X'),(511,'TRUNCATE'),(512,'SHOW'),(513,'BINLOG'),(514,'ST_DISJOINT'),(515,'AND'),(516,'HOUR'),(517,'SELECT'),(518,'DATABASES'),(519,'WRAPPER'),(520,'BOOL'),(521,'MASTER_PORT'),(522,'CONCURRENT'),(523,'HELP'),(524,'PROCESS'),(525,'OPTIONS'),(526,'CONSISTENT'),(527,'MAX_CONNECTIONS_PER_HOUR'),(528,'IN'),(529,'DIAGNOSTICS'),(530,'DUMPFILE'),(531,'POLYFROMTEXT'),(532,'JSON'),(533,'ST_SRID'),(534,'EXECUTE'),(535,'CEIL'),(536,'MASTER_HOST'),(537,'ST_EQUALS'),(538,'SERVER'),(539,'MULTIPOLYGONFROMWKB'),(540,'MASTER_SSL_CERT'),(541,'DAY_MINUTE'),(542,'DATE_SUB'),(543,'REBUILD'),(544,'GEOMETRYFROMWKB'),(545,'GEOMFROMTEXT'),(546,'RENAME'),(547,'PARSER'),(548,'ST_ASWKB'),(549,'SOCKET'),(550,'STRAIGHT_JOIN'),(551,'ST_GEOMETRYCOLLECTIONFROMWKB'),(552,'ST_GEOMFROMWKB'),(553,'SHA1'),(554,'PASSWORD'),(555,'OFFSET'),(556,'NEXT'),(557,'ERRORS'),(558,'TEMPORARY'),(559,'SQL_LOG_BIN'),(560,'DIMENSION'),(561,'SQL_SMALL_RESULT'),(562,'COMMITTED'),(563,'EQUALS'),(564,'DELAY_KEY_WRITE'),(565,'BEGIN'),(566,'XA'),(567,'PROFILE'),(568,'MEDIUM'),(569,'CENTROID'),(570,'SSL'),(571,'DAY_HOUR'),(572,'AES_ENCRYPT'),(573,'CEILING'),(574,'LINEFROMWKB'),(575,'GEOMETRYTYPE'),(576,'STATS_SAMPLE_PAGES'),(577,'SIGNAL'),(578,'PLUGINS'),(579,'ST_NUMGEOMETRIES'),(580,'SAVEPOINT'),(581,'PRIMARY'),(582,'LAST'),(583,'MPOINTFROMWKB'),(584,'KEYS'),(585,'LIMIT'),(586,'KEY'),(587,'UNTIL'),(588,'CONSTRAINT_SCHEMA'),(589,'ST_EXTERIORRING'),(590,'ANALYZE'),(591,'CONSTRAINT'),(592,'SERIAL'),(593,'ACTION'),(594,'INITIAL_SIZE'),(595,'SESSION'),(596,'SLAVE'),(597,'ASC'),(598,'ENABLE'),(599,'OPTIONALLY'),(600,'MAX_USER_CONNECTIONS'),(601,'WHILE'),(602,'DISTINCT'),(603,'LOCAL'),(604,'MASTER_SSL_KEY'),(605,'NONE'),(606,'TABLES'),(607,'<>'),(608,'EXPORT'),(609,'RLIKE'),(610,'TRIGGER'),(611,'COLLATION'),(612,'HIGH_PRIORITY'),(613,'BTREE'),(614,'FIRST'),(615,'COALESCE'),(616,'WAIT'),(617,'MASTER'),(618,'ROW_FORMAT');
/*!40000 ALTER TABLE `help_keyword` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `help_relation`
--
DROP TABLE IF EXISTS `help_relation`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `help_relation` (
`help_topic_id` int(10) unsigned NOT NULL,
`help_keyword_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`help_keyword_id`,`help_topic_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='keyword-topic relation';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `help_relation`
--
LOCK TABLES `help_relation` WRITE;
/*!40000 ALTER TABLE `help_relation` DISABLE KEYS */;
INSERT INTO `help_relation` VALUES (0,0),(491,0),(273,1),(259,2),(2,3),(3,4),(340,5),(340,6),(521,6),(64,7),(397,8),(249,9),(259,10),(375,10),(541,10),(8,11),(9,12),(375,13),(16,14),(69,14),(368,14),(484,14),(17,15),(222,16),(77,17),(104,17),(246,17),(220,18),(53,19),(23,20),(351,21),(25,22),(120,23),(31,24),(271,25),(561,25),(271,26),(484,26),(220,27),(28,28),(30,29),(422,29),(541,29),(31,30),(57,30),(124,30),(196,30),(491,30),(561,30),(271,31),(290,32),(33,33),(220,34),(492,35),(37,36),(271,36),(568,36),(0,37),(340,37),(521,37),(568,37),(106,38),(271,38),(561,38),(38,39),(69,39),(397,40),(0,41),(40,41),(116,41),(115,42),(120,42),(148,42),(196,42),(124,43),(561,43),(491,44),(196,45),(120,46),(116,47),(48,48),(271,49),(274,50),(259,51),(32,52),(135,52),(162,52),(196,52),(340,53),(521,53),(220,54),(54,55),(351,55),(491,55),(568,55),(340,56),(521,56),(295,57),(351,57),(454,57),(491,57),(60,58),(467,59),(364,60),(375,61),(541,61),(559,61),(65,62),(395,62),(530,63),(561,63),(232,64),(271,64),(561,64),(26,65),(41,65),(55,65),(441,66),(484,66),(69,67),(461,67),(220,68),(70,69),(303,70),(339,70),(73,71),(390,71),(74,72),(187,73),(217,73),(557,73),(78,74),(79,75),(80,76),(340,76),(521,76),(579,76),(82,77),(135,77),(220,77),(432,77),(124,78),(271,78),(561,78),(116,79),(124,79),(271,79),(340,79),(521,79),(561,79),(83,80),(397,81),(397,82),(460,83),(120,84),(83,85),(445,86),(153,87),(120,88),(148,88),(561,89),(41,90),(55,90),(88,91),(89,92),(271,93),(561,93),(37,94),(77,94),(246,94),(302,94),(457,94),(484,94),(491,94),(555,94),(91,95),(0,96),(26,97),(93,98),(271,99),(407,100),(196,101),(392,101),(461,101),(484,101),(491,101),(531,101),(468,102),(484,102),(182,103),(64,104),(392,105),(530,106),(64,107),(187,108),(302,109),(484,109),(530,109),(106,110),(107,111),(116,112),(242,112),(561,112),(570,112),(109,113),(366,114),(530,114),(111,115),(113,116),(37,117),(54,117),(491,117),(492,117),(561,117),(397,118),(117,119),(0,120),(37,120),(56,120),(150,121),(120,122),(148,122),(121,123),(126,124),(525,125),(467,126),(271,127),(273,127),(561,127),(568,127),(67,128),(94,128),(196,128),(359,128),(454,128),(187,129),(217,129),(557,129),(101,130),(484,130),(555,131),(187,132),(217,132),(557,132),(135,133),(502,133),(271,134),(512,135),(140,136),(141,137),(491,138),(530,139),(120,140),(143,141),(375,142),(147,143),(148,144),(151,145),(153,146),(271,147),(530,147),(491,148),(31,149),(37,149),(54,149),(295,149),(351,149),(366,149),(530,149),(120,150),(116,151),(125,152),(377,152),(396,152),(458,152),(484,152),(164,153),(166,154),(238,155),(168,156),(560,157),(247,158),(153,159),(268,159),(0,160),(4,161),(484,161),(116,162),(315,162),(416,162),(491,162),(156,163),(249,163),(172,164),(534,165),(173,166),(397,167),(397,168),(177,169),(181,170),(196,171),(273,172),(226,173),(125,174),(156,174),(200,174),(249,174),(271,174),(285,174),(366,174),(377,174),(484,174),(491,174),(530,174),(561,174),(187,175),(217,175),(557,175),(45,176),(71,176),(128,176),(167,176),(232,176),(243,176),(268,176),(271,176),(356,176),(439,176),(465,176),(484,176),(561,176),(565,176),(182,177),(271,178),(306,178),(439,178),(568,178),(397,179),(177,180),(189,181),(561,182),(339,183),(397,184),(491,185),(191,186),(531,187),(194,188),(193,189),(426,190),(375,191),(94,192),(196,192),(15,193),(19,193),(45,193),(64,193),(116,193),(124,193),(167,193),(185,193),(209,193),(229,193),(271,193),(273,193),(315,193),(334,193),(340,193),(377,193),(408,193),(458,193),(484,193),(554,193),(153,194),(484,195),(551,195),(561,196),(503,197),(271,198),(561,198),(352,199),(201,200),(243,201),(187,202),(202,203),(156,204),(162,205),(120,206),(148,206),(310,206),(455,206),(491,206),(271,207),(196,208),(271,209),(26,210),(41,210),(55,210),(136,210),(197,210),(202,210),(541,210),(579,210),(204,211),(220,212),(460,213),(69,214),(207,215),(210,216),(120,217),(334,217),(366,217),(212,218),(397,219),(110,220),(555,221),(220,222),(561,223),(22,224),(484,224),(217,225),(218,226),(397,227),(220,228),(221,229),(302,230),(484,230),(503,230),(176,231),(484,231),(529,231),(223,232),(225,233),(227,234),(561,235),(120,236),(491,237),(94,238),(106,238),(196,238),(339,238),(359,238),(231,239),(366,240),(530,240),(467,241),(319,242),(467,242),(234,243),(233,244),(120,245),(238,246),(259,247),(375,247),(239,248),(329,249),(303,250),(0,251),(271,252),(561,252),(45,253),(100,253),(120,253),(125,253),(216,253),(254,253),(416,253),(420,253),(514,253),(521,253),(561,253),(570,253),(0,254),(245,255),(484,256),(485,256),(530,257),(271,258),(561,258),(247,259),(135,260),(563,260),(125,261),(243,261),(220,262),(340,262),(125,263),(256,264),(120,265),(271,265),(568,265),(257,266),(441,267),(259,268),(340,269),(361,270),(7,271),(484,271),(261,272),(262,273),(306,274),(439,274),(568,274),(259,275),(320,276),(122,277),(215,277),(263,277),(338,277),(265,278),(122,279),(338,279),(340,279),(377,279),(459,279),(116,280),(570,280),(112,281),(196,282),(271,283),(375,284),(467,284),(541,284),(6,285),(26,285),(279,285),(306,285),(340,285),(377,285),(396,285),(439,285),(452,285),(366,286),(162,287),(273,288),(334,288),(414,288),(467,288),(470,288),(514,288),(461,289),(271,290),(270,291),(491,292),(295,293),(351,293),(573,293),(148,294),(274,295),(196,296),(31,297),(259,297),(375,297),(541,297),(125,298),(273,298),(377,298),(396,298),(458,298),(484,298),(215,299),(338,299),(568,299),(281,300),(280,301),(268,302),(530,303),(156,304),(286,305),(125,306),(271,306),(561,306),(288,307),(291,308),(120,309),(187,310),(217,310),(557,310),(271,311),(407,311),(401,312),(295,313),(366,313),(530,313),(136,314),(297,315),(340,316),(340,317),(521,317),(271,318),(302,318),(484,318),(530,318),(561,318),(135,319),(339,320),(491,320),(64,321),(135,321),(290,321),(217,322),(295,322),(351,322),(424,322),(557,322),(391,323),(353,324),(6,325),(57,325),(158,325),(237,325),(242,325),(306,325),(308,325),(396,325),(422,325),(439,325),(452,325),(470,325),(528,325),(561,325),(570,325),(491,326),(397,327),(120,328),(397,329),(243,330),(271,330),(561,330),(178,331),(271,331),(302,331),(484,331),(551,331),(37,332),(54,332),(120,332),(271,332),(334,332),(366,332),(491,332),(492,332),(530,332),(561,332),(271,333),(568,333),(220,334),(125,335),(271,335),(273,335),(530,335),(561,335),(0,336),(37,336),(271,336),(295,336),(351,336),(491,336),(530,336),(561,336),(64,337),(460,337),(491,338),(313,339),(187,340),(217,340),(557,340),(397,341),(187,342),(217,342),(557,342),(120,343),(320,344),(187,345),(217,345),(557,345),(37,346),(54,346),(69,346),(302,346),(457,346),(209,347),(340,347),(452,347),(521,347),(120,348),(0,349),(54,349),(351,349),(366,349),(491,349),(530,349),(561,349),(325,350),(37,351),(243,351),(268,351),(135,352),(332,353),(226,354),(60,355),(0,356),(397,357),(561,357),(162,358),(397,358),(559,358),(335,359),(337,360),(187,361),(217,361),(557,361),(196,362),(156,363),(271,364),(116,365),(220,366),(342,367),(153,368),(343,369),(332,370),(345,371),(15,372),(112,372),(185,372),(198,372),(254,372),(484,372),(491,372),(528,372),(574,372),(339,373),(348,374),(349,375),(467,376),(445,377),(118,378),(184,378),(351,378),(573,378),(250,379),(328,379),(468,379),(273,380),(352,381),(6,382),(306,382),(340,382),(377,382),(396,382),(439,382),(452,382),(484,383),(495,383),(353,384),(375,385),(541,385),(559,385),(125,386),(271,386),(295,386),(351,386),(377,386),(402,386),(424,386),(561,386),(568,386),(561,387),(196,388),(268,388),(356,388),(565,388),(356,389),(561,389),(217,390),(557,390),(94,391),(159,391),(310,391),(359,391),(529,392),(130,393),(363,394),(54,395),(110,395),(125,395),(200,395),(217,395),(271,395),(277,395),(285,395),(287,395),(295,395),(329,395),(351,395),(364,395),(366,395),(375,395),(377,395),(484,395),(491,395),(530,395),(557,395),(561,395),(568,395),(120,396),(42,397),(128,397),(131,397),(196,397),(198,397),(371,397),(473,397),(484,397),(495,397),(0,398),(246,399),(271,400),(319,401),(555,402),(153,403),(372,404),(41,405),(55,405),(319,406),(467,406),(422,407),(120,408),(461,409),(31,410),(69,410),(196,410),(259,410),(375,410),(541,410),(220,411),(271,412),(561,412),(187,413),(64,414),(185,414),(229,414),(237,414),(308,414),(327,414),(408,414),(420,414),(473,414),(484,414),(528,414),(533,415),(285,416),(150,417),(45,418),(116,418),(561,418),(570,418),(271,419),(561,419),(271,420),(385,421),(391,422),(394,423),(57,424),(124,424),(561,424),(100,425),(306,425),(554,425),(259,426),(187,427),(217,427),(557,427),(400,428),(401,429),(135,430),(290,430),(303,430),(361,430),(385,430),(407,430),(460,430),(64,431),(98,431),(135,431),(484,432),(413,433),(196,434),(374,434),(484,434),(375,435),(541,435),(375,436),(541,436),(392,437),(402,437),(461,437),(531,437),(415,438),(454,439),(530,439),(491,440),(125,441),(271,441),(377,441),(561,441),(117,442),(563,443),(552,444),(110,445),(259,445),(364,445),(371,445),(485,445),(41,446),(55,446),(423,447),(0,448),(31,448),(491,448),(469,449),(561,450),(426,451),(427,452),(398,453),(484,453),(0,454),(187,455),(217,455),(557,455),(514,456),(130,457),(467,458),(120,459),(124,459),(196,459),(271,459),(339,459),(561,459),(431,460),(561,461),(340,462),(521,462),(561,462),(176,463),(64,464),(438,465),(0,466),(45,466),(57,466),(67,466),(124,466),(271,466),(454,466),(457,466),(484,466),(561,466),(340,467),(521,467),(397,468),(561,469),(166,470),(442,471),(443,472),(446,473),(461,474),(290,475),(303,475),(361,475),(385,475),(407,475),(460,475),(120,476),(397,477),(397,478),(451,479),(397,480),(116,481),(196,481),(242,481),(271,481),(484,481),(495,481),(561,481),(570,481),(271,482),(561,482),(491,483),(455,484),(561,484),(271,485),(153,486),(491,486),(492,486),(135,487),(219,487),(462,487),(339,488),(407,489),(327,490),(574,490),(466,491),(116,492),(315,492),(416,492),(116,493),(469,494),(120,495),(137,496),(340,497),(472,498),(541,499),(32,500),(162,500),(196,500),(484,500),(271,501),(187,502),(561,503),(90,504),(475,505),(268,506),(561,506),(476,507),(478,508),(295,509),(351,509),(481,510),(465,511),(561,511),(4,512),(7,512),(15,512),(22,512),(29,512),(32,512),(42,512),(53,512),(77,512),(101,512),(104,512),(115,512),(128,512),(131,512),(167,512),(178,512),(198,512),(200,512),(209,512),(229,512),(246,512),(283,512),(302,512),(327,512),(328,512),(368,512),(371,512),(374,512),(398,512),(441,512),(457,512),(458,512),(468,512),(473,512),(484,512),(485,512),(495,512),(551,512),(574,512),(576,512),(77,513),(486,513),(487,514),(90,515),(489,515),(220,516),(153,517),(184,517),(295,517),(351,517),(491,517),(101,518),(484,518),(273,519),(72,520),(303,520),(397,521),(366,522),(530,522),(75,523),(509,523),(120,524),(216,525),(273,525),(375,526),(541,526),(120,527),(77,528),(246,528),(302,528),(339,528),(457,528),(491,528),(187,529),(491,530),(512,531),(153,532),(513,533),(56,534),(120,534),(516,535),(397,536),(520,537),(6,538),(216,538),(273,538),(78,539),(397,540),(220,541),(220,542),(561,543),(89,544),(525,545),(71,546),(414,546),(521,546),(561,546),(124,547),(271,547),(561,547),(345,548),(273,549),(0,550),(491,550),(9,551),(533,552),(534,553),(120,554),(273,554),(277,554),(334,554),(467,554),(514,554),(561,554),(491,555),(69,556),(328,557),(484,557),(439,558),(287,559),(538,560),(491,561),(259,562),(540,563),(271,564),(561,564),(197,565),(375,565),(541,565),(541,566),(283,567),(243,568),(542,569),(120,570),(220,571),(545,572),(550,573),(552,574),(553,575),(271,576),(561,576),(557,577),(29,578),(558,579),(559,580),(561,581),(69,582),(560,583),(457,584),(484,584),(561,584),(37,585),(54,585),(69,585),(77,585),(246,585),(491,585),(45,586),(271,586),(351,586),(561,586),(568,586),(136,587),(187,588),(217,588),(557,588),(566,589),(561,590),(565,590),(271,591),(561,591),(271,592),(424,592),(271,593),(568,593),(116,594),(570,594),(259,595),(364,595),(371,595),(485,595),(131,596),(310,596),(319,596),(340,596),(359,596),(374,596),(467,596),(521,596),(491,597),(492,597),(340,598),(521,598),(561,598),(530,599),(120,600),(579,601),(63,602),(250,602),(294,602),(448,602),(455,602),(491,602),(492,602),(505,602),(31,603),(196,603),(268,603),(356,603),(366,603),(530,603),(565,603),(397,604),(120,605),(31,606),(178,606),(196,606),(368,606),(484,606),(578,607),(196,608),(24,609),(19,610),(158,610),(484,610),(484,611),(576,611),(351,612),(491,612),(124,613),(69,614),(271,614),(561,614),(561,615),(116,616),(570,616),(32,617),(42,617),(159,617),(162,617),(359,617),(397,617),(271,618),(561,618);
/*!40000 ALTER TABLE `help_relation` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `help_topic`
--
DROP TABLE IF EXISTS `help_topic`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `help_topic` (
`help_topic_id` int(10) unsigned NOT NULL,
`name` char(64) NOT NULL,
`help_category_id` smallint(5) unsigned NOT NULL,
`description` text NOT NULL,
`example` text NOT NULL,
`url` text NOT NULL,
PRIMARY KEY (`help_topic_id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help topics';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `help_topic`
--
LOCK TABLES `help_topic` WRITE;
/*!40000 ALTER TABLE `help_topic` DISABLE KEYS */;
INSERT INTO `help_topic` VALUES (0,'JOIN',28,'MySQL supports the following JOIN syntax for the table_references part\nof SELECT statements and multiple-table DELETE and UPDATE statements:\n\ntable_references:\n escaped_table_reference [, escaped_table_reference] ...\n\nescaped_table_reference:\n table_reference\n | { OJ table_reference }\n\ntable_reference:\n table_factor\n | join_table\n\ntable_factor:\n tbl_name [PARTITION (partition_names)]\n [[AS] alias] [index_hint_list]\n | table_subquery [AS] alias\n | ( table_references )\n\njoin_table:\n table_reference [INNER | CROSS] JOIN table_factor [join_condition]\n | table_reference STRAIGHT_JOIN table_factor\n | table_reference STRAIGHT_JOIN table_factor ON conditional_expr\n | table_reference {LEFT|RIGHT} [OUTER] JOIN table_reference join_condition\n | table_reference NATURAL [{LEFT|RIGHT} [OUTER]] JOIN table_factor\n\njoin_condition:\n ON conditional_expr\n | USING (column_list)\n\nindex_hint_list:\n index_hint [, index_hint] ...\n\nindex_hint:\n USE {INDEX|KEY}\n [FOR {JOIN|ORDER BY|GROUP BY}] ([index_list])\n | IGNORE {INDEX|KEY}\n [FOR {JOIN|ORDER BY|GROUP BY}] (index_list)\n | FORCE {INDEX|KEY}\n [FOR {JOIN|ORDER BY|GROUP BY}] (index_list)\n\nindex_list:\n index_name [, index_name] ...\n\nA table reference is also known as a join expression.\n\nA table reference (when it refers to a partitioned table) may contain a\nPARTITION option, including a list of comma-separated partitions,\nsubpartitions, or both. This option follows the name of the table and\nprecedes any alias declaration. The effect of this option is that rows\nare selected only from the listed partitions or subpartitions. Any\npartitions or subpartitions not named in the list are ignored. For more\ninformation and examples, see\nhttp://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html.\n\nThe syntax of table_factor is extended in MySQL in comparison with\nstandard SQL. The standard accepts only table_reference, not a list of\nthem inside a pair of parentheses.\n\nThis is a conservative extension if each comma in a list of\ntable_reference items is considered as equivalent to an inner join. For\nexample:\n\nSELECT * FROM t1 LEFT JOIN (t2, t3, t4)\n ON (t2.a = t1.a AND t3.b = t1.b AND t4.c = t1.c)\n\nis equivalent to:\n\nSELECT * FROM t1 LEFT JOIN (t2 CROSS JOIN t3 CROSS JOIN t4)\n ON (t2.a = t1.a AND t3.b = t1.b AND t4.c = t1.c)\n\nIn MySQL, JOIN, CROSS JOIN, and INNER JOIN are syntactic equivalents\n(they can replace each other). In standard SQL, they are not\nequivalent. INNER JOIN is used with an ON clause, CROSS JOIN is used\notherwise.\n\nIn general, parentheses can be ignored in join expressions containing\nonly inner join operations. MySQL also supports nested joins. See\nhttp://dev.mysql.com/doc/refman/5.6/en/nested-join-optimization.html.\n\nIndex hints can be specified to affect how the MySQL optimizer makes\nuse of indexes. For more information, see\nhttp://dev.mysql.com/doc/refman/5.6/en/index-hints.html. The\noptimizer_switch system variable is another way to influence optimizer\nuse of indexes. See\nhttp://dev.mysql.com/doc/refman/5.6/en/switchable-optimizations.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/join.html\n\n','SELECT left_tbl.*\n FROM left_tbl LEFT JOIN right_tbl ON left_tbl.id = right_tbl.id\n WHERE right_tbl.id IS NULL;\n','http://dev.mysql.com/doc/refman/5.6/en/join.html'),(1,'HEX',38,'Syntax:\nHEX(str), HEX(N)\n\nFor a string argument str, HEX() returns a hexadecimal string\nrepresentation of str where each byte of each character in str is\nconverted to two hexadecimal digits. (Multibyte characters therefore\nbecome more than two digits.) The inverse of this operation is\nperformed by the UNHEX() function.\n\nFor a numeric argument N, HEX() returns a hexadecimal string\nrepresentation of the value of N treated as a longlong (BIGINT) number.\nThis is equivalent to CONV(N,10,16). The inverse of this operation is\nperformed by CONV(HEX(N),16,10).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT X\'616263\', HEX(\'abc\'), UNHEX(HEX(\'abc\'));\n -> \'abc\', 616263, \'abc\'\nmysql> SELECT HEX(255), CONV(HEX(255),16,10);\n -> \'FF\', 255\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(2,'CONTAINS',7,'Contains(g1, g2)\n\nMBRContains() and Contains() are synonyms. For more information, see\nthe description of MBRContains().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(3,'SRID',37,'SRID(g)\n\nST_SRID() and SRID() are synonyms. For more information, see the\ndescription of ST_SRID().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(4,'SHOW CONTRIBUTORS',27,'Syntax:\nSHOW CONTRIBUTORS\n\nThe SHOW CONTRIBUTORS statement displays information about the people\nwho contribute to MySQL source or to causes that we support. For each\ncontributor, it displays Name, Location, and Comment values.\n\nThis statement is removed as of MySQL 5.6.8.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-contributors.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-contributors.html'),(5,'VARIANCE',16,'Syntax:\nVARIANCE(expr)\n\nReturns the population standard variance of expr. VARIANCE() is a\nsynonym for the standard SQL function VAR_POP(), provided as a MySQL\nextension.\n\nIf there are no matching rows, VARIANCE() returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(6,'DROP SERVER',40,'Syntax:\nDROP SERVER [ IF EXISTS ] server_name\n\nDrops the server definition for the server named server_name. The\ncorresponding row in the mysql.servers table is deleted. This statement\nrequires the SUPER privilege.\n\nDropping a server for a table does not affect any FEDERATED tables that\nused this connection information when they were created. See [HELP\nCREATE SERVER].\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/drop-server.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/drop-server.html'),(7,'SHOW AUTHORS',27,'Syntax:\nSHOW AUTHORS\n\nThe SHOW AUTHORS statement displays information about the people who\nwork on MySQL. For each author, it displays Name, Location, and Comment\nvalues.\n\nThis statement is removed as of MySQL 5.6.8.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-authors.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-authors.html'),(8,'ST_GEOMETRYN',26,'ST_GeometryN(gc, N)\n\nReturns the N-th geometry in the GeometryCollection value gc.\nGeometries are numbered beginning with 1. If any argument is NULL or\nthe geometry argument is an empty geometry, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-geometrycollection-property-functions.html\n\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT ST_AsText(ST_GeometryN(ST_GeomFromText(@gc),1));\n+-------------------------------------------------+\n| ST_AsText(ST_GeometryN(ST_GeomFromText(@gc),1)) |\n+-------------------------------------------------+\n| POINT(1 1) |\n+-------------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-geometrycollection-property-functions.html'),(9,'ST_GEOMCOLLFROMWKB',33,'ST_GeomCollFromWKB(wkb[, srid]), ST_GeometryCollectionFromWKB(wkb[,\nsrid])\n\nConstructs a GeometryCollection value using its WKB representation and\nSRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(10,'CONCAT',38,'Syntax:\nCONCAT(str1,str2,...)\n\nReturns the string that results from concatenating the arguments. May\nhave one or more arguments. If all arguments are nonbinary strings, the\nresult is a nonbinary string. If the arguments include any binary\nstrings, the result is a binary string. A numeric argument is converted\nto its equivalent nonbinary string form.\n\nCONCAT() returns NULL if any argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT CONCAT(\'My\', \'S\', \'QL\');\n -> \'MySQL\'\nmysql> SELECT CONCAT(\'My\', NULL, \'QL\');\n -> NULL\nmysql> SELECT CONCAT(14.3);\n -> \'14.3\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(11,'GEOMETRY HIERARCHY',35,'Geometry is the base class. It is an abstract class. The instantiable\nsubclasses of Geometry are restricted to zero-, one-, and\ntwo-dimensional geometric objects that exist in two-dimensional\ncoordinate space. All instantiable geometry classes are defined so that\nvalid instances of a geometry class are topologically closed (that is,\nall defined geometries include their boundary).\n\nThe base Geometry class has subclasses for Point, Curve, Surface, and\nGeometryCollection:\n\no Point represents zero-dimensional objects.\n\no Curve represents one-dimensional objects, and has subclass\n LineString, with sub-subclasses Line and LinearRing.\n\no Surface is designed for two-dimensional objects and has subclass\n Polygon.\n\no GeometryCollection has specialized zero-, one-, and two-dimensional\n collection classes named MultiPoint, MultiLineString, and\n MultiPolygon for modeling geometries corresponding to collections of\n Points, LineStrings, and Polygons, respectively. MultiCurve and\n MultiSurface are introduced as abstract superclasses that generalize\n the collection interfaces to handle Curves and Surfaces.\n\nGeometry, Curve, Surface, MultiCurve, and MultiSurface are defined as\nnoninstantiable classes. They define a common set of methods for their\nsubclasses and are included for extensibility.\n\nPoint, LineString, Polygon, GeometryCollection, MultiPoint,\nMultiLineString, and MultiPolygon are instantiable classes.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-geometry-class-hierarchy.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-geometry-class-hierarchy.html'),(12,'CHAR FUNCTION',38,'Syntax:\nCHAR(N,... [USING charset_name])\n\nCHAR() interprets each argument N as an integer and returns a string\nconsisting of the characters given by the code values of those\nintegers. NULL values are skipped.\nBy default, CHAR() returns a binary string. To produce a string in a\ngiven character set, use the optional USING clause:\n\nmysql> SELECT CHARSET(CHAR(X\'65\')), CHARSET(CHAR(X\'65\' USING utf8));\n+----------------------+---------------------------------+\n| CHARSET(CHAR(X\'65\')) | CHARSET(CHAR(X\'65\' USING utf8)) |\n+----------------------+---------------------------------+\n| binary | utf8 |\n+----------------------+---------------------------------+\n\nIf USING is given and the result string is illegal for the given\ncharacter set, a warning is issued. Also, if strict SQL mode is\nenabled, the result from CHAR() becomes NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT CHAR(77,121,83,81,\'76\');\n -> \'MySQL\'\nmysql> SELECT CHAR(77,77.3,\'77.3\');\n -> \'MMM\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(13,'ASYMMETRIC_DECRYPT',7,'Syntax:\nASYMMETRIC_DECRYPT(algorithm, crypt_str, key_str)\n\nDecrypts an encrypted string using the given algorithm and key string,\nand returns the resulting cleartext as a binary string. If decryption\nfails, the result is NULL.\n\nkey_str must be a valid key string in PEM format. For successful\ndecryption, it must be the public or private key string corresponding\nto the private or public key string used with ASYMMETRIC_ENCRYPT() to\nproduce the encrypted string. algorithm indicates the encryption\nalgorithm used to create the key.\n\nSupported algorithm values: \'RSA\'\n\nFor a usage example, see the description of ASYMMETRIC_ENCRYPT().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(14,'SHOW CREATE TRIGGER',27,'Syntax:\nSHOW CREATE TRIGGER trigger_name\n\nThis statement shows the CREATE TRIGGER statement that creates the\nnamed trigger. This statement requires the TRIGGER privilege for the\ntable associated with the trigger.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-create-trigger.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-create-trigger.html'),(15,'SHOW CREATE PROCEDURE',27,'Syntax:\nSHOW CREATE PROCEDURE proc_name\n\nThis statement is a MySQL extension. It returns the exact string that\ncan be used to re-create the named stored procedure. A similar\nstatement, SHOW CREATE FUNCTION, displays information about stored\nfunctions (see [HELP SHOW CREATE FUNCTION]).\n\nTo use either statement, you must be the user named in the routine\nDEFINER clause or have SELECT access to the mysql.proc table. If you do\nnot have privileges for the routine itself, the value displayed for the\nCreate Procedure or Create Function field will be NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-create-procedure.html\n\n','mysql> SHOW CREATE PROCEDURE test.simpleproc\\G\n*************************** 1. row ***************************\n Procedure: simpleproc\n sql_mode:\n Create Procedure: CREATE PROCEDURE `simpleproc`(OUT param1 INT)\n BEGIN\n SELECT COUNT(*) INTO param1 FROM t;\n END\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n\nmysql> SHOW CREATE FUNCTION test.hello\\G\n*************************** 1. row ***************************\n Function: hello\n sql_mode:\n Create Function: CREATE FUNCTION `hello`(s CHAR(20))\n RETURNS CHAR(50)\n RETURN CONCAT(\'Hello, \',s,\'!\')\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n','http://dev.mysql.com/doc/refman/5.6/en/show-create-procedure.html'),(16,'OPEN',24,'Syntax:\nOPEN cursor_name\n\nThis statement opens a previously declared cursor. For an example, see\nhttp://dev.mysql.com/doc/refman/5.6/en/cursors.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/open.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/open.html'),(17,'ST_INTERSECTS',31,'ST_Intersects(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 spatially intersects g2.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(18,'LOWER',38,'Syntax:\nLOWER(str)\n\nReturns the string str with all characters changed to lowercase\naccording to the current character set mapping. The default is latin1\n(cp1252 West European).\n\nmysql> SELECT LOWER(\'QUADRATICALLY\');\n -> \'quadratically\'\n\nLOWER() (and UPPER()) are ineffective when applied to binary strings\n(BINARY, VARBINARY, BLOB). To perform lettercase conversion, convert\nthe string to a nonbinary string:\n\nmysql> SET @str = BINARY \'New York\';\nmysql> SELECT LOWER(@str), LOWER(CONVERT(@str USING latin1));\n+-------------+-----------------------------------+\n| LOWER(@str) | LOWER(CONVERT(@str USING latin1)) |\n+-------------+-----------------------------------+\n| New York | new york |\n+-------------+-----------------------------------+\n\nFor collations of Unicode character sets, LOWER() and UPPER() work\naccording to the Unicode Collation Algorithm (UCA) version in the\ncollation name, if there is one, and UCA 4.0.0 if no version is\nspecified. For example, utf8_unicode_520_ci works according to UCA\n5.2.0, whereas utf8_unicode_ci works according to UCA 4.0.0. See\nhttp://dev.mysql.com/doc/refman/5.6/en/charset-unicode-sets.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(19,'CREATE TRIGGER',40,'Syntax:\nCREATE\n [DEFINER = { user | CURRENT_USER }]\n TRIGGER trigger_name\n trigger_time trigger_event\n ON tbl_name FOR EACH ROW\n trigger_body\n\ntrigger_time: { BEFORE | AFTER }\n\ntrigger_event: { INSERT | UPDATE | DELETE }\n\nThis statement creates a new trigger. A trigger is a named database\nobject that is associated with a table, and that activates when a\nparticular event occurs for the table. The trigger becomes associated\nwith the table named tbl_name, which must refer to a permanent table.\nYou cannot associate a trigger with a TEMPORARY table or a view.\n\nTrigger names exist in the schema namespace, meaning that all triggers\nmust have unique names within a schema. Triggers in different schemas\ncan have the same name.\n\nThis section describes CREATE TRIGGER syntax. For additional\ndiscussion, see\nhttp://dev.mysql.com/doc/refman/5.6/en/trigger-syntax.html.\n\nCREATE TRIGGER requires the TRIGGER privilege for the table associated\nwith the trigger. The statement might also require the SUPER privilege,\ndepending on the DEFINER value, as described later in this section. If\nbinary logging is enabled, CREATE TRIGGER might require the SUPER\nprivilege, as described in\nhttp://dev.mysql.com/doc/refman/5.6/en/stored-programs-logging.html.\n\nThe DEFINER clause determines the security context to be used when\nchecking access privileges at trigger activation time, as described\nlater in this section.\n\ntrigger_time is the trigger action time. It can be BEFORE or AFTER to\nindicate that the trigger activates before or after each row to be\nmodified.\n\nBasic column value checks occur prior to trigger activation, so you\ncannot use BEFORE triggers to convert values inappropriate for the\ncolumn type to valid values.\n\ntrigger_event indicates the kind of operation that activates the\ntrigger. These trigger_event values are permitted:\n\no INSERT: The trigger activates whenever a new row is inserted into the\n table; for example, through INSERT, LOAD DATA, and REPLACE\n statements.\n\no UPDATE: The trigger activates whenever a row is modified; for\n example, through UPDATE statements.\n\no DELETE: The trigger activates whenever a row is deleted from the\n table; for example, through DELETE and REPLACE statements. DROP TABLE\n and TRUNCATE TABLE statements on the table do not activate this\n trigger, because they do not use DELETE. Dropping a partition does\n not activate DELETE triggers, either.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/create-trigger.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/create-trigger.html'),(20,'MONTH',32,'Syntax:\nMONTH(date)\n\nReturns the month for date, in the range 1 to 12 for January to\nDecember, or 0 for dates such as \'0000-00-00\' or \'2008-00-00\' that have\na zero month part.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT MONTH(\'2008-02-03\');\n -> 2\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(21,'ASYMMETRIC_ENCRYPT',7,'Syntax:\nASYMMETRIC_ENCRYPT(algorithm, str, key_str)\n\nEncrypts a string using the given algorithm and key string, and returns\nthe resulting ciphertext as a binary string. If encryption fails, the\nresult is NULL.\n\nThe str length cannot be greater than the key_str length − 11, in\nbytes\n\nkey_str must be a valid key string in PEM format. algorithm indicates\nthe encryption algorithm used to create the key.\n\nSupported algorithm values: \'RSA\'\n\nTo encrypt a string, pass a private or public key string to\nASYMMETRIC_ENCRYPT(). To recover the original unencrypted string, pass\nthe encrypted string to ASYMMETRIC_DECRYPT(), along with the public or\nprivate key string correponding to the private or public key string\nused for encryption.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','-- Generate private/public key pair\nSET @priv = CREATE_ASYMMETRIC_PRIV_KEY(\'RSA\', 1024);\nSET @pub = CREATE_ASYMMETRIC_PUB_KEY(\'RSA\', @priv);\n\n-- Encrypt using private key, decrypt using public key\nSET @ciphertext = ASYMMETRIC_ENCRYPT(\'RSA\', \'The quick brown fox\', @priv);\nSET @cleartext = ASYMMETRIC_DECRYPT(\'RSA\', @ciphertext, @pub);\n\n-- Encrypt using public key, decrypt using private key\nSET @ciphertext = ASYMMETRIC_ENCRYPT(\'RSA\', \'The quick brown fox\', @pub);\nSET @cleartext = ASYMMETRIC_DECRYPT(\'RSA\', @ciphertext, @priv);\n','http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(22,'SHOW TRIGGERS',27,'Syntax:\nSHOW TRIGGERS\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TRIGGERS lists the triggers currently defined for tables in a\ndatabase (the default database unless a FROM clause is given). This\nstatement returns results only for databases and tables for which you\nhave the TRIGGER privilege. The LIKE clause, if present, indicates\nwhich table names to match (not trigger names) and causes the statement\nto display triggers for those tables. The WHERE clause can be given to\nselect rows using more general conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nFor the trigger ins_sum as defined in\nhttp://dev.mysql.com/doc/refman/5.6/en/triggers.html, the output of\nthis statement is as shown here:\n\nmysql> SHOW TRIGGERS LIKE \'acc%\'\\G\n*************************** 1. row ***************************\n Trigger: ins_sum\n Event: INSERT\n Table: account\n Statement: SET @sum = @sum + NEW.amount\n Timing: BEFORE\n Created: NULL\n sql_mode: NO_ENGINE_SUBSTITUTION\n Definer: me@localhost\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-triggers.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-triggers.html'),(23,'ISCLOSED',13,'IsClosed(ls)\n\nST_IsClosed() and IsClosed() are synonyms. For more information, see\nthe description of ST_IsClosed().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(24,'REGEXP',38,'Syntax:\nexpr REGEXP pat, expr RLIKE pat\n\nReturns 1 if the string expr matches the regular expression specified\nby the pattern pat, 0 otherwise. If either expr or pat is NULL, the\nreturn value is NULL.\n\nRLIKE is a synonym for REGEXP, provided for mSQL compatibility.\n\nThe pattern can be an extended regular expression, the syntax for which\nis discussed in\nhttp://dev.mysql.com/doc/refman/5.6/en/regexp.html#regexp-syntax. The\npattern need not be a literal string. For example, it can be specified\nas a string expression or table column.\n\n*Note*:\n\nBecause MySQL uses the C escape syntax in strings (for example, \\n to\nrepresent the newline character), you must double any \\ that you use in\nyour REGEXP arguments.\n\nRegular expression operations use the character set and collation of\nthe string expression and pattern arguments when deciding the type of a\ncharacter and performing the comparison. If the arguments have\ndifferent character sets or collations, coercibility rules apply as\ndescribed in\nhttp://dev.mysql.com/doc/refman/5.6/en/charset-collation-coercibility.h\ntml. If either argument is a binary string, the arguments are handled\nin case-sensitive fashion as binary strings.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/regexp.html\n\n','mysql> SELECT \'Michael!\' REGEXP \'.*\';\n+------------------------+\n| \'Michael!\' REGEXP \'.*\' |\n+------------------------+\n| 1 |\n+------------------------+\nmysql> SELECT \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\';\n+---------------------------------------+\n| \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\' |\n+---------------------------------------+\n| 0 |\n+---------------------------------------+\nmysql> SELECT \'a\' REGEXP \'^[a-d]\';\n+---------------------+\n| \'a\' REGEXP \'^[a-d]\' |\n+---------------------+\n| 1 |\n+---------------------+\nmysql> SELECT \'a\' REGEXP \'A\', \'a\' REGEXP BINARY \'A\';\n+----------------+-----------------------+\n| \'a\' REGEXP \'A\' | \'a\' REGEXP BINARY \'A\' |\n+----------------+-----------------------+\n| 1 | 0 |\n+----------------+-----------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/regexp.html'),(25,'ST_POINTN',13,'ST_PointN(ls, N)\n\nReturns the N-th Point in the Linestring value ls. Points are numbered\nbeginning with 1. If any argument is NULL or the geometry argument is\nan empty geometry, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_AsText(ST_PointN(ST_GeomFromText(@ls),2));\n+----------------------------------------------+\n| ST_AsText(ST_PointN(ST_GeomFromText(@ls),2)) |\n+----------------------------------------------+\n| POINT(2 2) |\n+----------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(26,'IF STATEMENT',24,'Syntax:\nIF search_condition THEN statement_list\n [ELSEIF search_condition THEN statement_list] ...\n [ELSE statement_list]\nEND IF\n\nThe IF statement for stored programs implements a basic conditional\nconstruct.\n\n*Note*:\n\nThere is also an IF() function, which differs from the IF statement\ndescribed here. See\nhttp://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html. The\nIF statement can have THEN, ELSE, and ELSEIF clauses, and it is\nterminated with END IF.\n\nIf the search_condition evaluates to true, the corresponding THEN or\nELSEIF clause statement_list executes. If no search_condition matches,\nthe ELSE clause statement_list executes.\n\nEach statement_list consists of one or more SQL statements; an empty\nstatement_list is not permitted.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/if.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/if.html'),(27,'VALIDATE_PASSWORD_STRENGTH',12,'Syntax:\nVALIDATE_PASSWORD_STRENGTH(str)\n\nGiven an argument representing a cleartext password, this function\nreturns an integer to indicate how strong the password is. The return\nvalue ranges from 0 (weak) to 100 (strong).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(28,'WITHIN',7,'Within(g1, g2)\n\nMBRWithin() and Within() are synonyms. For more information, see the\ndescription of MBRWithin().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(29,'SHOW PLUGINS',27,'Syntax:\nSHOW PLUGINS\n\nSHOW PLUGINS displays information about server plugins. Plugin\ninformation is also available in the INFORMATION_SCHEMA.PLUGINS table.\nSee http://dev.mysql.com/doc/refman/5.6/en/plugins-table.html.\n\nExample of SHOW PLUGINS output:\n\nmysql> SHOW PLUGINS\\G\n*************************** 1. row ***************************\n Name: binlog\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 2. row ***************************\n Name: CSV\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 3. row ***************************\n Name: MEMORY\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 4. row ***************************\n Name: MyISAM\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n...\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-plugins.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-plugins.html'),(30,'PREPARE',8,'Syntax:\nPREPARE stmt_name FROM preparable_stmt\n\nThe PREPARE statement prepares a SQL statement and assigns it a name,\nstmt_name, by which to refer to the statement later. The prepared\nstatement is executed with EXECUTE and released with DEALLOCATE\nPREPARE. For examples, see\nhttp://dev.mysql.com/doc/refman/5.6/en/sql-syntax-prepared-statements.h\ntml.\n\nStatement names are not case-sensitive. preparable_stmt is either a\nstring literal or a user variable that contains the text of the SQL\nstatement. The text must represent a single statement, not multiple\nstatements. Within the statement, ? characters can be used as parameter\nmarkers to indicate where data values are to be bound to the query\nlater when you execute it. The ? characters should not be enclosed\nwithin quotation marks, even if you intend to bind them to string\nvalues. Parameter markers can be used only where data values should\nappear, not for SQL keywords, identifiers, and so forth.\n\nIf a prepared statement with the given name already exists, it is\ndeallocated implicitly before the new statement is prepared. This means\nthat if the new statement contains an error and cannot be prepared, an\nerror is returned and no statement with the given name exists.\n\nThe scope of a prepared statement is the session within which it is\ncreated, which as several implications:\n\no A prepared statement created in one session is not available to other\n sessions.\n\no When a session ends, whether normally or abnormally, its prepared\n statements no longer exist. If auto-reconnect is enabled, the client\n is not notified that the connection was lost. For this reason,\n clients may wish to disable auto-reconnect. See\n http://dev.mysql.com/doc/refman/5.6/en/c-api-auto-reconnect.html.\n\no A prepared statement created within a stored program continues to\n exist after the program finishes executing and can be executed\n outside the program later.\n\no A statement prepared in stored program context cannot refer to stored\n procedure or function parameters or local variables because they go\n out of scope when the program ends and would be unavailable were the\n statement to be executed later outside the program. As a workaround,\n refer instead to user-defined variables, which also have session\n scope; see\n http://dev.mysql.com/doc/refman/5.6/en/user-variables.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/prepare.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/prepare.html'),(31,'LOCK',8,'Syntax:\nLOCK TABLES\n tbl_name [[AS] alias] lock_type\n [, tbl_name [[AS] alias] lock_type] ...\n\nlock_type:\n READ [LOCAL]\n | [LOW_PRIORITY] WRITE\n\nUNLOCK TABLES\n\nMySQL enables client sessions to acquire table locks explicitly for the\npurpose of cooperating with other sessions for access to tables, or to\nprevent other sessions from modifying tables during periods when a\nsession requires exclusive access to them. A session can acquire or\nrelease locks only for itself. One session cannot acquire locks for\nanother session or release locks held by another session.\n\nLocks may be used to emulate transactions or to get more speed when\nupdating tables. This is explained in more detail later in this\nsection.\n\nLOCK TABLES explicitly acquires table locks for the current client\nsession. Table locks can be acquired for base tables or views. You must\nhave the LOCK TABLES privilege, and the SELECT privilege for each\nobject to be locked.\n\nFor view locking, LOCK TABLES adds all base tables used in the view to\nthe set of tables to be locked and locks them automatically. If you\nlock a table explicitly with LOCK TABLES, any tables used in triggers\nare also locked implicitly, as described in\nhttp://dev.mysql.com/doc/refman/5.6/en/lock-tables-and-triggers.html.\n\nUNLOCK TABLES explicitly releases any table locks held by the current\nsession. LOCK TABLES implicitly releases any table locks held by the\ncurrent session before acquiring new locks.\n\nAnother use for UNLOCK TABLES is to release the global read lock\nacquired with the FLUSH TABLES WITH READ LOCK statement, which enables\nyou to lock all tables in all databases. See [HELP FLUSH]. (This is a\nvery convenient way to get backups if you have a file system such as\nVeritas that can take snapshots in time.)\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/lock-tables.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/lock-tables.html'),(32,'SHOW BINARY LOGS',27,'Syntax:\nSHOW BINARY LOGS\nSHOW MASTER LOGS\n\nLists the binary log files on the server. This statement is used as\npart of the procedure described in [HELP PURGE BINARY LOGS], that shows\nhow to determine which logs can be purged.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| binlog.000015 | 724935 |\n| binlog.000016 | 733481 |\n+---------------+-----------+\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-binary-logs.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-binary-logs.html'),(33,'POLYGON',25,'Polygon(ls [, ls] ...)\n\nConstructs a Polygon value from a number of LineString or WKB\nLineString arguments. If any argument does not represent a LinearRing\n(that is, not a closed and simple LineString), the return value is\nNULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html'),(34,'MINUTE',32,'Syntax:\nMINUTE(time)\n\nReturns the minute for time, in the range 0 to 59.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT MINUTE(\'2008-02-03 10:05:03\');\n -> 5\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(35,'MID',38,'Syntax:\nMID(str,pos,len)\n\nMID(str,pos,len) is a synonym for SUBSTRING(str,pos,len).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(36,'CONNECTION_ID',17,'Syntax:\nCONNECTION_ID()\n\nReturns the connection ID (thread ID) for the connection. Every\nconnection has an ID that is unique among the set of currently\nconnected clients.\n\nThe value returned by CONNECTION_ID() is the same type of value as\ndisplayed in the ID column of the INFORMATION_SCHEMA.PROCESSLIST table,\nthe Id column of SHOW PROCESSLIST output, and the PROCESSLIST_ID column\nof the Performance Schema threads table.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT CONNECTION_ID();\n -> 23786\n','http://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(37,'DELETE',28,'Syntax:\nDELETE is a DML statement that removes rows from a table.\n\nSingle-Table Syntax\n\nDELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [WHERE where_condition]\n [ORDER BY ...]\n [LIMIT row_count]\n\nThe DELETE statement deletes rows from tbl_name and returns the number\nof deleted rows. To check the number of deleted rows, call the\nROW_COUNT() function described in\nhttp://dev.mysql.com/doc/refman/5.6/en/information-functions.html.\n\nMain Clauses\n\nThe conditions in the optional WHERE clause identify which rows to\ndelete. With no WHERE clause, all rows are deleted.\n\nwhere_condition is an expression that evaluates to true for each row to\nbe deleted. It is specified as described in\nhttp://dev.mysql.com/doc/refman/5.6/en/select.html.\n\nIf the ORDER BY clause is specified, the rows are deleted in the order\nthat is specified. The LIMIT clause places a limit on the number of\nrows that can be deleted. These clauses apply to single-table deletes,\nbut not multi-table deletes.\n\nMultiple-Table Syntax\n\nDELETE [LOW_PRIORITY] [QUICK] [IGNORE]\n tbl_name[.*] [, tbl_name[.*]] ...\n FROM table_references\n [WHERE where_condition]\n\nDELETE [LOW_PRIORITY] [QUICK] [IGNORE]\n FROM tbl_name[.*] [, tbl_name[.*]] ...\n USING table_references\n [WHERE where_condition]\n\nPrivileges\n\nYou need the DELETE privilege on a table to delete rows from it. You\nneed only the SELECT privilege for any columns that are only read, such\nas those named in the WHERE clause.\n\nPerformance\n\nWhen you do not need to know the number of deleted rows, the TRUNCATE\nTABLE statement is a faster way to empty a table than a DELETE\nstatement with no WHERE clause. Unlike DELETE, TRUNCATE TABLE cannot be\nused within a transaction or if you have a lock on the table. See [HELP\nTRUNCATE TABLE] and [HELP LOCK].\n\nThe speed of delete operations may also be affected by factors\ndiscussed in\nhttp://dev.mysql.com/doc/refman/5.6/en/delete-optimization.html.\n\nTo ensure that a given DELETE statement does not take too much time,\nthe MySQL-specific LIMIT row_count clause for DELETE specifies the\nmaximum number of rows to be deleted. If the number of rows to delete\nis larger than the limit, repeat the DELETE statement until the number\nof affected rows is less than the LIMIT value.\n\nSubqueries\n\nYou cannot delete from a table and select from the same table in a\nsubquery.\n\nPartitioned Tables\n\nDELETE supports explicit partition selection using the PARTITION\noption, which takes a list of the comma-separated names of one or more\npartitions or subpartitions (or both) from which to select rows to be\ndropped. Partitions not included in the list are ignored. Given a\npartitioned table t with a partition named p0, executing the statement\nDELETE FROM t PARTITION (p0) has the same effect on the table as\nexecuting ALTER TABLE t TRUNCATE PARTITION (p0); in both cases, all\nrows in partition p0 are dropped.\n\nPARTITION can be used along with a WHERE condition, in which case the\ncondition is tested only on rows in the listed partitions. For example,\nDELETE FROM t PARTITION (p0) WHERE c < 5 deletes rows only from\npartition p0 for which the condition c < 5 is true; rows in any other\npartitions are not checked and thus not affected by the DELETE.\n\nThe PARTITION option can also be used in multiple-table DELETE\nstatements. You can use up to one such option per table named in the\nFROM option.\n\nFor more information and examples, see\nhttp://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/delete.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/delete.html'),(38,'CLOSE',24,'Syntax:\nCLOSE cursor_name\n\nThis statement closes a previously opened cursor. For an example, see\nhttp://dev.mysql.com/doc/refman/5.6/en/cursors.html.\n\nAn error occurs if the cursor is not open.\n\nIf not closed explicitly, a cursor is closed at the end of the BEGIN\n... END block in which it was declared.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/close.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/close.html'),(39,'REPLACE FUNCTION',38,'Syntax:\nREPLACE(str,from_str,to_str)\n\nReturns the string str with all occurrences of the string from_str\nreplaced by the string to_str. REPLACE() performs a case-sensitive\nmatch when searching for from_str.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT REPLACE(\'www.mysql.com\', \'w\', \'Ww\');\n -> \'WwWwWw.mysql.com\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(40,'USE',29,'Syntax:\nUSE db_name\n\nThe USE db_name statement tells MySQL to use the db_name database as\nthe default (current) database for subsequent statements. The database\nremains the default until the end of the session or another USE\nstatement is issued:\n\nUSE db1;\nSELECT COUNT(*) FROM mytable; # selects from db1.mytable\nUSE db2;\nSELECT COUNT(*) FROM mytable; # selects from db2.mytable\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/use.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/use.html'),(41,'CASE OPERATOR',6,'Syntax:\nCASE value WHEN [compare_value] THEN result [WHEN [compare_value] THEN\nresult ...] [ELSE result] END\n\nCASE WHEN [condition] THEN result [WHEN [condition] THEN result ...]\n[ELSE result] END\n\nThe first CASE syntax returns the result for the first\nvalue=compare_value comparison that is true. The second syntax returns\nthe result for the first condition that is true. If no comparison or\ncondition is true, the result after ELSE is returned, or NULL if there\nis no ELSE part.\n\n*Note*:\n\nThe syntax of the CASE expression described here differs slightly from\nthat of the SQL CASE statement described in [HELP CASE statement], for\nuse inside stored programs. The CASE statement cannot have an ELSE NULL\nclause, and it is terminated with END CASE instead of END.\n\nThe return type of a CASE expression result is the aggregated type of\nall result values.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html\n\n','mysql> SELECT CASE 1 WHEN 1 THEN \'one\'\n -> WHEN 2 THEN \'two\' ELSE \'more\' END;\n -> \'one\'\nmysql> SELECT CASE WHEN 1>0 THEN \'true\' ELSE \'false\' END;\n -> \'true\'\nmysql> SELECT CASE BINARY \'B\'\n -> WHEN \'a\' THEN 1 WHEN \'b\' THEN 2 END;\n -> NULL\n','http://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html'),(42,'SHOW MASTER STATUS',27,'Syntax:\nSHOW MASTER STATUS\n\nThis statement provides status information about the binary log files\nof the master. It requires either the SUPER or REPLICATION CLIENT\nprivilege.\n\nExample:\n\nmysql> SHOW MASTER STATUS\\G\n*************************** 1. row ***************************\n File: master-bin.000002\n Position: 1307\n Binlog_Do_DB: test\n Binlog_Ignore_DB: manual, mysql\nExecuted_Gtid_Set: 3E11FA47-71CA-11E1-9E33-C80AA9429562:1-5\n1 row in set (0.00 sec)\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-master-status.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-master-status.html'),(43,'TO_SECONDS',32,'Syntax:\nTO_SECONDS(expr)\n\nGiven a date or datetime expr, returns a the number of seconds since\nthe year 0. If expr is not a valid date or datetime value, returns\nNULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TO_SECONDS(950501);\n -> 62966505600\nmysql> SELECT TO_SECONDS(\'2009-11-29\');\n -> 63426672000\nmysql> SELECT TO_SECONDS(\'2009-11-29 13:43:32\');\n -> 63426721412\nmysql> SELECT TO_SECONDS( NOW() );\n -> 63426721458\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(44,'TIMESTAMPDIFF',32,'Syntax:\nTIMESTAMPDIFF(unit,datetime_expr1,datetime_expr2)\n\nReturns datetime_expr2 − datetime_expr1, where datetime_expr1 and\ndatetime_expr2 are date or datetime expressions. One expression may be\na date and the other a datetime; a date value is treated as a datetime\nhaving the time part \'00:00:00\' where necessary. The unit for the\nresult (an integer) is given by the unit argument. The legal values for\nunit are the same as those listed in the description of the\nTIMESTAMPADD() function.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMPDIFF(MONTH,\'2003-02-01\',\'2003-05-01\');\n -> 3\nmysql> SELECT TIMESTAMPDIFF(YEAR,\'2002-05-01\',\'2001-01-01\');\n -> -1\nmysql> SELECT TIMESTAMPDIFF(MINUTE,\'2003-02-01\',\'2003-05-01 12:05:55\');\n -> 128885\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(45,'SPATIAL',35,'For MyISAM tables, MySQL can create spatial indexes using syntax\nsimilar to that for creating regular indexes, but using the SPATIAL\nkeyword. Columns in spatial indexes must be declared NOT NULL. The\nfollowing examples demonstrate how to create spatial indexes:\n\no With CREATE TABLE:\n\nCREATE TABLE geom (g GEOMETRY NOT NULL, SPATIAL INDEX(g)) ENGINE=MyISAM;\n\no With ALTER TABLE:\n\nCREATE TABLE geom (g GEOMETRY NOT NULL) ENGINE=MyISAM;\nALTER TABLE geom ADD SPATIAL INDEX(g);\n\no With CREATE INDEX:\n\nCREATE TABLE geom (g GEOMETRY NOT NULL) ENGINE=MyISAM;\nCREATE SPATIAL INDEX g ON geom (g);\n\nSPATIAL INDEX creates an R-tree index. For storage engines that support\nnonspatial indexing of spatial columns, the engine creates a B-tree\nindex. A B-tree index on spatial values is useful for exact-value\nlookups, but not for range scans.\n\nFor more information on indexing spatial columns, see [HELP CREATE\nINDEX].\n\nTo drop spatial indexes, use ALTER TABLE or DROP INDEX:\n\no With ALTER TABLE:\n\nALTER TABLE geom DROP INDEX g;\n\no With DROP INDEX:\n\nDROP INDEX g ON geom;\n\nExample: Suppose that a table geom contains more than 32,000\ngeometries, which are stored in the column g of type GEOMETRY. The\ntable also has an AUTO_INCREMENT column fid for storing object ID\nvalues.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/creating-spatial-indexes.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/creating-spatial-indexes.html'),(46,'REVERSE',38,'Syntax:\nREVERSE(str)\n\nReturns the string str with the order of the characters reversed.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT REVERSE(\'abc\');\n -> \'cba\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(47,'ISNULL',20,'Syntax:\nISNULL(expr)\n\nIf expr is NULL, ISNULL() returns 1, otherwise it returns 0.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT ISNULL(1+1);\n -> 0\nmysql> SELECT ISNULL(1/0);\n -> 1\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(48,'ST_STARTPOINT',13,'ST_StartPoint(ls)\n\nReturns the Point that is the start point of the LineString value ls.\nIf the argument is NULL or an empty geometry, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_AsText(ST_StartPoint(ST_GeomFromText(@ls)));\n+------------------------------------------------+\n| ST_AsText(ST_StartPoint(ST_GeomFromText(@ls))) |\n+------------------------------------------------+\n| POINT(1 1) |\n+------------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(49,'BINARY',23,'BINARY[(M)]\n\nThe BINARY type is similar to the CHAR type, but stores binary byte\nstrings rather than nonbinary character strings. An optional length M\nrepresents the column length in bytes. If omitted, M defaults to 1.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html'),(50,'BLOB DATA TYPE',23,'A BLOB is a binary large object that can hold a variable amount of\ndata. The four BLOB types are TINYBLOB, BLOB, MEDIUMBLOB, and LONGBLOB.\nThese differ only in the maximum length of the values they can hold.\nThe four TEXT types are TINYTEXT, TEXT, MEDIUMTEXT, and LONGTEXT. These\ncorrespond to the four BLOB types and have the same maximum lengths and\nstorage requirements. See\nhttp://dev.mysql.com/doc/refman/5.6/en/storage-requirements.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/blob.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/blob.html'),(51,'CURRENT_USER',17,'Syntax:\nCURRENT_USER, CURRENT_USER()\n\nReturns the user name and host name combination for the MySQL account\nthat the server used to authenticate the current client. This account\ndetermines your access privileges. The return value is a string in the\nutf8 character set.\n\nThe value of CURRENT_USER() can differ from the value of USER().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT USER();\n -> \'davida@localhost\'\nmysql> SELECT * FROM mysql.user;\nERROR 1044: Access denied for user \'\'@\'localhost\' to\ndatabase \'mysql\'\nmysql> SELECT CURRENT_USER();\n -> \'@localhost\'\n','http://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(52,'<=',20,'Syntax:\n<=\n\nLess than or equal:\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 0.1 <= 2;\n -> 1\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(53,'SHOW PROFILES',27,'Syntax:\nSHOW PROFILES\n\nThe SHOW PROFILES statement, together with SHOW PROFILE, displays\nprofiling information that indicates resource usage for statements\nexecuted during the course of the current session. For more\ninformation, see [HELP SHOW PROFILE].\n\n*Note*:\n\nThese statements are deprecated as of MySQL 5.6.7 and will be removed\nin a future MySQL release. Use the Performance Schema instead; see\nhttp://dev.mysql.com/doc/refman/5.6/en/performance-schema.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-profiles.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-profiles.html'),(54,'UPDATE',28,'Syntax:\nUPDATE is a DML statement that modifies rows in a table.\n\nSingle-table syntax:\n\nUPDATE [LOW_PRIORITY] [IGNORE] table_reference\n SET assignment_list\n [WHERE where_condition]\n [ORDER BY ...]\n [LIMIT row_count]\n\nvalue:\n {expr | DEFAULT}\n\nassignment:\n col_name = value\n\nassignment_list:\n assignment [, assignment] ...\n\nMultiple-table syntax:\n\nUPDATE [LOW_PRIORITY] [IGNORE] table_references\n SET assignment_list\n [WHERE where_condition]\n\nFor the single-table syntax, the UPDATE statement updates columns of\nexisting rows in the named table with new values. The SET clause\nindicates which columns to modify and the values they should be given.\nEach value can be given as an expression, or the keyword DEFAULT to set\na column explicitly to its default value. The WHERE clause, if given,\nspecifies the conditions that identify which rows to update. With no\nWHERE clause, all rows are updated. If the ORDER BY clause is\nspecified, the rows are updated in the order that is specified. The\nLIMIT clause places a limit on the number of rows that can be updated.\n\nFor the multiple-table syntax, UPDATE updates rows in each table named\nin table_references that satisfy the conditions. Each matching row is\nupdated once, even if it matches the conditions multiple times. For\nmultiple-table syntax, ORDER BY and LIMIT cannot be used.\n\nFor partitioned tables, both the single-single and multiple-table forms\nof this statement support the use of a PARTITION option as part of a\ntable reference. This option takes a list of one or more partitions or\nsubpartitions (or both). Only the partitions (or subpartitions) listed\nare checked for matches, and a row that is not in any of these\npartitions or subpartitions is not updated, whether it satisfies the\nwhere_condition or not.\n\n*Note*:\n\nUnlike the case when using PARTITION with an INSERT or REPLACE\nstatement, an otherwise valid UPDATE ... PARTITION statement is\nconsidered successful even if no rows in the listed partitions (or\nsubpartitions) match the where_condition.\n\nFor more information and examples, see\nhttp://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html.\n\nwhere_condition is an expression that evaluates to true for each row to\nbe updated. For expression syntax, see\nhttp://dev.mysql.com/doc/refman/5.6/en/expressions.html.\n\ntable_references and where_condition are specified as described in\nhttp://dev.mysql.com/doc/refman/5.6/en/select.html.\n\nYou need the UPDATE privilege only for columns referenced in an UPDATE\nthat are actually updated. You need only the SELECT privilege for any\ncolumns that are read but not modified.\n\nThe UPDATE statement supports the following modifiers:\n\no With the LOW_PRIORITY modifier, execution of the UPDATE is delayed\n until no other clients are reading from the table. This affects only\n storage engines that use only table-level locking (such as MyISAM,\n MEMORY, and MERGE).\n\no With the IGNORE modifier, the update statement does not abort even if\n errors occur during the update. Rows for which duplicate-key\n conflicts occur on a unique key value are not updated. Rows updated\n to values that would cause data conversion errors are updated to the\n closest valid values instead.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/update.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/update.html'),(55,'CASE STATEMENT',24,'Syntax:\nCASE case_value\n WHEN when_value THEN statement_list\n [WHEN when_value THEN statement_list] ...\n [ELSE statement_list]\nEND CASE\n\nOr:\n\nCASE\n WHEN search_condition THEN statement_list\n [WHEN search_condition THEN statement_list] ...\n [ELSE statement_list]\nEND CASE\n\nThe CASE statement for stored programs implements a complex conditional\nconstruct.\n\n*Note*:\n\nThere is also a CASE expression, which differs from the CASE statement\ndescribed here. See\nhttp://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html. The\nCASE statement cannot have an ELSE NULL clause, and it is terminated\nwith END CASE instead of END.\n\nFor the first syntax, case_value is an expression. This value is\ncompared to the when_value expression in each WHEN clause until one of\nthem is equal. When an equal when_value is found, the corresponding\nTHEN clause statement_list executes. If no when_value is equal, the\nELSE clause statement_list executes, if there is one.\n\nThis syntax cannot be used to test for equality with NULL because NULL\n= NULL is false. See\nhttp://dev.mysql.com/doc/refman/5.6/en/working-with-null.html.\n\nFor the second syntax, each WHEN clause search_condition expression is\nevaluated until one is true, at which point its corresponding THEN\nclause statement_list executes. If no search_condition is equal, the\nELSE clause statement_list executes, if there is one.\n\nIf no when_value or search_condition matches the value tested and the\nCASE statement contains no ELSE clause, a Case not found for CASE\nstatement error results.\n\nEach statement_list consists of one or more SQL statements; an empty\nstatement_list is not permitted.\n\nTo handle situations where no value is matched by any WHEN clause, use\nan ELSE containing an empty BEGIN ... END block, as shown in this\nexample. (The indentation used here in the ELSE clause is for purposes\nof clarity only, and is not otherwise significant.)\n\nDELIMITER |\n\nCREATE PROCEDURE p()\n BEGIN\n DECLARE v INT DEFAULT 1;\n\n CASE v\n WHEN 2 THEN SELECT v;\n WHEN 3 THEN SELECT 0;\n ELSE\n BEGIN\n END;\n END CASE;\n END;\n |\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/case.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/case.html'),(56,'EXECUTE STATEMENT',8,'Syntax:\nEXECUTE stmt_name\n [USING @var_name [, @var_name] ...]\n\nAfter preparing a statement with PREPARE, you execute it with an\nEXECUTE statement that refers to the prepared statement name. If the\nprepared statement contains any parameter markers, you must supply a\nUSING clause that lists user variables containing the values to be\nbound to the parameters. Parameter values can be supplied only by user\nvariables, and the USING clause must name exactly as many variables as\nthe number of parameter markers in the statement.\n\nYou can execute a given prepared statement multiple times, passing\ndifferent variables to it or setting the variables to different values\nbefore each execution.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/execute.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/execute.html'),(57,'DROP INDEX',40,'Syntax:\nDROP INDEX [ONLINE|OFFLINE] index_name ON tbl_name\n [algorithm_option | lock_option] ...\n\nalgorithm_option:\n ALGORITHM [=] {DEFAULT|INPLACE|COPY}\n\nlock_option:\n LOCK [=] {DEFAULT|NONE|SHARED|EXCLUSIVE}\n\nDROP INDEX drops the index named index_name from the table tbl_name.\nThis statement is mapped to an ALTER TABLE statement to drop the index.\nSee [HELP ALTER TABLE].\n\nTo drop a primary key, the index name is always PRIMARY, which must be\nspecified as a quoted identifier because PRIMARY is a reserved word:\n\nDROP INDEX `PRIMARY` ON t;\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/drop-index.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/drop-index.html'),(58,'ABS',3,'Syntax:\nABS(X)\n\nReturns the absolute value of X.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT ABS(2);\n -> 2\nmysql> SELECT ABS(-32);\n -> 32\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(59,'IS_IPV4',14,'Syntax:\nIS_IPV4(expr)\n\nReturns 1 if the argument is a valid IPv4 address specified as a\nstring, 0 otherwise.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT IS_IPV4(\'10.0.5.9\'), IS_IPV4(\'10.0.5.256\');\n -> 1, 0\n','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(60,'POLYFROMWKB',33,'PolyFromWKB(wkb[, srid]), PolygonFromWKB(wkb[, srid])\n\nST_PolyFromWKB(), ST_PolygonFromWKB(), PolyFromWKB(), and\nPolygonFromWKB() are synonyms. For more information, see the\ndescription of ST_PolyFromWKB().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(61,'NOT LIKE',38,'Syntax:\nexpr NOT LIKE pat [ESCAPE \'escape_char\']\n\nThis is the same as NOT (expr LIKE pat [ESCAPE \'escape_char\']).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-comparison-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-comparison-functions.html'),(62,'SPACE',38,'Syntax:\nSPACE(N)\n\nReturns a string consisting of N space characters.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT SPACE(6);\n -> \' \'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(63,'MAX',16,'Syntax:\nMAX([DISTINCT] expr)\n\nReturns the maximum value of expr. MAX() may take a string argument; in\nsuch cases, it returns the maximum string value. See\nhttp://dev.mysql.com/doc/refman/5.6/en/mysql-indexes.html. The DISTINCT\nkeyword can be used to find the maximum of the distinct values of expr,\nhowever, this produces the same result as omitting DISTINCT.\n\nIf there are no matching rows, MAX() returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','mysql> SELECT student_name, MIN(test_score), MAX(test_score)\n FROM student\n GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(64,'CREATE FUNCTION UDF',22,'Syntax:\nCREATE [AGGREGATE] FUNCTION function_name\n RETURNS {STRING|INTEGER|REAL|DECIMAL}\n SONAME shared_library_name\n\nA user-defined function (UDF) is a way to extend MySQL with a new\nfunction that works like a native (built-in) MySQL function such as\nABS() or CONCAT().\n\nfunction_name is the name that should be used in SQL statements to\ninvoke the function. The RETURNS clause indicates the type of the\nfunction\'s return value. DECIMAL is a legal value after RETURNS, but\ncurrently DECIMAL functions return string values and should be written\nlike STRING functions.\n\nshared_library_name is the base name of the shared library file that\ncontains the code that implements the function. The file must be\nlocated in the plugin directory. This directory is given by the value\nof the plugin_dir system variable. For more information, see\nhttp://dev.mysql.com/doc/refman/5.6/en/udf-compiling.html.\n\nTo create a function, you must have the INSERT privilege for the mysql\ndatabase. This is necessary because CREATE FUNCTION adds a row to the\nmysql.func system table that records the function\'s name, type, and\nshared library name. If you do not have this table, you should run the\nmysql_upgrade command to create it. See\nhttp://dev.mysql.com/doc/refman/5.6/en/mysql-upgrade.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/create-function-udf.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/create-function-udf.html'),(65,'TIMESTAMP',23,'TIMESTAMP[(fsp)]\n\nA timestamp. The range is \'1970-01-01 00:00:01.000000\' UTC to\n\'2038-01-19 03:14:07.999999\' UTC. TIMESTAMP values are stored as the\nnumber of seconds since the epoch (\'1970-01-01 00:00:00\' UTC). A\nTIMESTAMP cannot represent the value \'1970-01-01 00:00:00\' because that\nis equivalent to 0 seconds from the epoch and the value 0 is reserved\nfor representing \'0000-00-00 00:00:00\', the \"zero\" TIMESTAMP value.\n\nAs of MySQL 5.6.4, an optional fsp value in the range from 0 to 6 may\nbe given to specify fractional seconds precision. A value of 0\nsignifies that there is no fractional part. If omitted, the default\nprecision is 0.\n\nThe way the server handles TIMESTAMP definitions depends on the value\nof the explicit_defaults_for_timestamp system variable (see\nhttp://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html).\n\nIf explicit_defaults_for_timestamp is enabled, there is no automatic\nassignment of the DEFAULT CURRENT_TIMESTAMP or ON UPDATE\nCURRENT_TIMESTAMP attributes to any TIMESTAMP column. They must be\nincluded explicitly in the column definition. Also, any TIMESTAMP not\nexplicitly declared as NOT NULL permits NULL values.\n\nIf explicit_defaults_for_timestamp is disabled, the server handles\nTIMESTAMP as follows:\n\nUnless specified otherwise, the first TIMESTAMP column in a table is\ndefined to be automatically set to the date and time of the most recent\nmodification if not explicitly assigned a value. This makes TIMESTAMP\nuseful for recording the timestamp of an INSERT or UPDATE operation.\nYou can also set any TIMESTAMP column to the current date and time by\nassigning it a NULL value, unless it has been defined with the NULL\nattribute to permit NULL values.\n\nAutomatic initialization and updating to the current date and time can\nbe specified using DEFAULT CURRENT_TIMESTAMP and ON UPDATE\nCURRENT_TIMESTAMP column definition clauses. By default, the first\nTIMESTAMP column has these properties, as previously noted. As of MySQL\n5.6.5, any TIMESTAMP column in a table can be defined to have these\nproperties. Before 5.6.5, at most one TIMESTAMP column per table can\nhave them, but it is possible to suppress them for the first column and\ninstead assign them to a different TIMESTAMP column. See\nhttp://dev.mysql.com/doc/refman/5.6/en/timestamp-initialization.html.\n\nexplicit_defaults_for_timestamp is available as of MySQL 5.6.6. Before\n5.6.6, the server handles TIMESTAMP as discussed for\nexplicit_defaults_for_timestamp disabled. Those behaviors, while they\nremain the default, are nonstandard and are deprecated as of 5.6.6. For\ndiscussion regarding upgrading to an installation with\nexplicit_defaults_for_timestamp enabled, see\nhttp://dev.mysql.com/doc/refman/5.6/en/upgrading-from-previous-series.h\ntml.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-overview.html'),(66,'CREATE_ASYMMETRIC_PUB_KEY',7,'Syntax:\nCREATE_ASYMMETRIC_PUB_KEY(algorithm, priv_key_str)\n\nDerives a public key from the given private key using the given\nalgorithm, and returns the key as a binary string in PEM format. If key\nderivation fails, the result is NULL.\n\npriv_key_str must be a valid key string in PEM format. algorithm\nindicates the encryption algorithm used to create the key.\n\nSupported algorithm values: \'RSA\', \'DSA\', \'DH\'\n\nFor a usage example, see the description of\nCREATE_ASYMMETRIC_PRIV_KEY().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(67,'CACHE INDEX',27,'Syntax:\nCACHE INDEX\n tbl_index_list [, tbl_index_list] ...\n [PARTITION (partition_list | ALL)]\n IN key_cache_name\n\ntbl_index_list:\n tbl_name [[INDEX|KEY] (index_name[, index_name] ...)]\n\npartition_list:\n partition_name[, partition_name][, ...]\n\nThe CACHE INDEX statement assigns table indexes to a specific key\ncache. It is used only for MyISAM tables. After the indexes have been\nassigned, they can be preloaded into the cache if desired with LOAD\nINDEX INTO CACHE.\n\nThe following statement assigns indexes from the tables t1, t2, and t3\nto the key cache named hot_cache:\n\nmysql> CACHE INDEX t1, t2, t3 IN hot_cache;\n+---------+--------------------+----------+----------+\n| Table | Op | Msg_type | Msg_text |\n+---------+--------------------+----------+----------+\n| test.t1 | assign_to_keycache | status | OK |\n| test.t2 | assign_to_keycache | status | OK |\n| test.t3 | assign_to_keycache | status | OK |\n+---------+--------------------+----------+----------+\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/cache-index.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/cache-index.html'),(68,'COMPRESS',12,'Syntax:\nCOMPRESS(string_to_compress)\n\nCompresses a string and returns the result as a binary string. This\nfunction requires MySQL to have been compiled with a compression\nlibrary such as zlib. Otherwise, the return value is always NULL. The\ncompressed string can be uncompressed with UNCOMPRESS().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',1000)));\n -> 21\nmysql> SELECT LENGTH(COMPRESS(\'\'));\n -> 0\nmysql> SELECT LENGTH(COMPRESS(\'a\'));\n -> 13\nmysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',16)));\n -> 15\n','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(69,'HANDLER',28,'Syntax:\nHANDLER tbl_name OPEN [ [AS] alias]\n\nHANDLER tbl_name READ index_name { = | <= | >= | < | > } (value1,value2,...)\n [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name READ index_name { FIRST | NEXT | PREV | LAST }\n [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name READ { FIRST | NEXT }\n [ WHERE where_condition ] [LIMIT ... ]\n\nHANDLER tbl_name CLOSE\n\nThe HANDLER statement provides direct access to table storage engine\ninterfaces. It is available for InnoDB and MyISAM tables.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/handler.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/handler.html'),(70,'HELP_DATE',9,'This help information was generated from the MySQL 5.6 Reference Manual\non: 2018-06-15\n','',''),(71,'RENAME TABLE',40,'Syntax:\nRENAME TABLE\n tbl_name TO new_tbl_name\n [, tbl_name2 TO new_tbl_name2] ...\n\nRENAME TABLE renames one or more tables. You must have ALTER and DROP\nprivileges for the original table, and CREATE and INSERT privileges for\nthe new table.\n\nFor example, to rename a table named old_table to to new_table, use\nthis statement:\n\nRENAME TABLE old_table TO new_table;\n\nThat statement is equivalent to the following ALTER TABLE statement:\n\nALTER TABLE old_table RENAME new_table;\n\nRENAME TABLE, unlike ALTER TABLE, can rename multiple tables within a\nsingle statement:\n\nRENAME TABLE old_table1 TO new_table1,\n old_table2 TO new_table2,\n old_table3 TO new_table3;\n\nRenaming operations are performed left to right. Thus, to swap two\ntable names, do this (assuming that a table with the intermediary name\ntmp_table does not already exist):\n\nRENAME TABLE old_table TO tmp_table,\n new_table TO old_table,\n tmp_table TO new_table;\n\nWhen you execute RENAME TABLE, you cannot have any locked tables or\nactive transactions. With that condition satisfied, the rename\noperation is done atomically; no other session can access any of the\ntables while the rename is in progress.\n\nIf any errors occur during a RENAME TABLE, the statement fails and no\nchanges are made.\n\nYou can use RENAME TABLE to move a table from one database to another:\n\nRENAME TABLE current_db.tbl_name TO other_db.tbl_name;\n\nUsing this method to move all tables from one database to a different\none in effect renames the database (an operation for which MySQL has no\nsingle statement), except that the original database continues to\nexist, albeit with no tables.\n\nLike RENAME TABLE, ALTER TABLE ... RENAME can also be used to move a\ntable to a different database. Regardless of the statement used, if the\nrename operation would move the table to a database located on a\ndifferent file system, the success of the outcome is platform specific\nand depends on the underlying operating system calls used to move the\ntable files.\n\nIf a table has triggers, attempts to rename the table into a different\ndatabase fail with a Trigger in wrong schema error.\n\nRENAME TABLE does not work for TEMPORARY tables. However, you can use\nALTER TABLE to rename TEMPORARY tables.\n\nRENAME TABLE works for views, except that views cannot be renamed into\na different database.\n\nAny privileges granted specifically for a renamed table or view are not\nmigrated to the new name. They must be changed manually.\n\nRENAME TABLE changes internally generated foreign key constraint names\nand user-defined foreign key constraint names that contain the string\n\"tbl_name_ibfk_\" to reflect the new table name. InnoDB interprets\nforeign key constraint names that contain the string \"tbl_name_ibfk_\"\nas internally generated names.\n\nForeign key constraint names that point to the renamed table are\nautomatically updated unless there is a conflict, in which case, the\nstatement fails with an error. A conflict occurs if the renamed\nconstraint name already exists. In such cases, you must drop and\nre-create the foreign keys in order for them to function properly.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/rename-table.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/rename-table.html'),(72,'BOOLEAN',23,'BOOL, BOOLEAN\n\nThese types are synonyms for TINYINT(1). A value of zero is considered\nfalse. Nonzero values are considered true:\n\nmysql> SELECT IF(0, \'true\', \'false\');\n+------------------------+\n| IF(0, \'true\', \'false\') |\n+------------------------+\n| false |\n+------------------------+\n\nmysql> SELECT IF(1, \'true\', \'false\');\n+------------------------+\n| IF(1, \'true\', \'false\') |\n+------------------------+\n| true |\n+------------------------+\n\nmysql> SELECT IF(2, \'true\', \'false\');\n+------------------------+\n| IF(2, \'true\', \'false\') |\n+------------------------+\n| true |\n+------------------------+\n\nHowever, the values TRUE and FALSE are merely aliases for 1 and 0,\nrespectively, as shown here:\n\nmysql> SELECT IF(0 = FALSE, \'true\', \'false\');\n+--------------------------------+\n| IF(0 = FALSE, \'true\', \'false\') |\n+--------------------------------+\n| true |\n+--------------------------------+\n\nmysql> SELECT IF(1 = TRUE, \'true\', \'false\');\n+-------------------------------+\n| IF(1 = TRUE, \'true\', \'false\') |\n+-------------------------------+\n| true |\n+-------------------------------+\n\nmysql> SELECT IF(2 = TRUE, \'true\', \'false\');\n+-------------------------------+\n| IF(2 = TRUE, \'true\', \'false\') |\n+-------------------------------+\n| false |\n+-------------------------------+\n\nmysql> SELECT IF(2 = FALSE, \'true\', \'false\');\n+--------------------------------+\n| IF(2 = FALSE, \'true\', \'false\') |\n+--------------------------------+\n| false |\n+--------------------------------+\n\nThe last two statements display the results shown because 2 is equal to\nneither 1 nor 0.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html'),(73,'MOD',3,'Syntax:\nMOD(N,M), N % M, N MOD M\n\nModulo operation. Returns the remainder of N divided by M.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT MOD(234, 10);\n -> 4\nmysql> SELECT 253 % 7;\n -> 1\nmysql> SELECT MOD(29,9);\n -> 2\nmysql> SELECT 29 MOD 9;\n -> 2\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(74,'ST_GEOMETRYTYPE',37,'ST_GeometryType(g)\n\nReturns a binary string indicating the name of the geometry type of\nwhich the geometry instance g is a member, or NULL if the argument is\nNULL. The name corresponds to one of the instantiable Geometry\nsubclasses.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','mysql> SELECT ST_GeometryType(ST_GeomFromText(\'POINT(1 1)\'));\n+------------------------------------------------+\n| ST_GeometryType(ST_GeomFromText(\'POINT(1 1)\')) |\n+------------------------------------------------+\n| POINT |\n+------------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(75,'HELP STATEMENT',29,'Syntax:\nHELP \'search_string\'\n\nThe HELP statement returns online information from the MySQL Reference\nmanual. Its proper operation requires that the help tables in the mysql\ndatabase be initialized with help topic information (see\nhttp://dev.mysql.com/doc/refman/5.6/en/server-side-help-support.html).\n\nThe HELP statement searches the help tables for the given search string\nand displays the result of the search. The search string is not\ncase-sensitive.\n\nThe search string can contain the wildcard characters % and _. These\nhave the same meaning as for pattern-matching operations performed with\nthe LIKE operator. For example, HELP \'rep%\' returns a list of topics\nthat begin with rep.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/help.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/help.html'),(76,'UCASE',38,'Syntax:\nUCASE(str)\n\nUCASE() is a synonym for UPPER().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(77,'SHOW BINLOG EVENTS',27,'Syntax:\nSHOW BINLOG EVENTS\n [IN \'log_name\']\n [FROM pos]\n [LIMIT [offset,] row_count]\n\nShows the events in the binary log. If you do not specify \'log_name\',\nthe first binary log is displayed.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-binlog-events.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-binlog-events.html'),(78,'MPOLYFROMWKB',33,'MPolyFromWKB(wkb[, srid]), MultiPolygonFromWKB(wkb[, srid])\n\nConstructs a MultiPolygon value using its WKB representation and SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(79,'ITERATE',24,'Syntax:\nITERATE label\n\nITERATE can appear only within LOOP, REPEAT, and WHILE statements.\nITERATE means \"start the loop again.\"\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/iterate.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/iterate.html'),(80,'DO',28,'Syntax:\nDO expr [, expr] ...\n\nDO executes the expressions but does not return any results. In most\nrespects, DO is shorthand for SELECT expr, ..., but has the advantage\nthat it is slightly faster when you do not care about the result.\n\nDO is useful primarily with functions that have side effects, such as\nRELEASE_LOCK().\n\nExample: This SELECT statement pauses, but also produces a result set:\n\nmysql> SELECT SLEEP(5);\n+----------+\n| SLEEP(5) |\n+----------+\n| 0 |\n+----------+\n1 row in set (5.02 sec)\n\nDO, on the other hand, pauses without producing a result set.:\n\nmysql> DO SLEEP(5);\nQuery OK, 0 rows affected (4.99 sec)\n\nThis could be useful, for example in a stored function or trigger,\nwhich prohibit statements that produce result sets.\n\nDO only executes expressions. It cannot be used in all cases where\nSELECT can be used. For example, DO id FROM t1 is invalid because it\nreferences a table.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/do.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/do.html'),(81,'CHAR_LENGTH',38,'Syntax:\nCHAR_LENGTH(str)\n\nReturns the length of the string str, measured in characters. A\nmultibyte character counts as a single character. This means that for a\nstring containing five 2-byte characters, LENGTH() returns 10, whereas\nCHAR_LENGTH() returns 5.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(82,'DATE',23,'DATE\n\nA date. The supported range is \'1000-01-01\' to \'9999-12-31\'. MySQL\ndisplays DATE values in \'YYYY-MM-DD\' format, but permits assignment of\nvalues to DATE columns using either strings or numbers.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-overview.html'),(83,'ST_ASTEXT',33,'ST_AsText(g), ST_AsWKT(g)\n\nConverts a value in internal geometry format to its WKT representation\nand returns the string result.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-format-conversion-functions.html\n\n','mysql> SET @g = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_AsText(ST_GeomFromText(@g));\n+--------------------------------+\n| ST_AsText(ST_GeomFromText(@g)) |\n+--------------------------------+\n| LINESTRING(1 1,2 2,3 3) |\n+--------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-format-conversion-functions.html'),(84,'EXTRACTVALUE',38,'Syntax:\nExtractValue(xml_frag, xpath_expr)\n\nExtractValue() takes two string arguments, a fragment of XML markup\nxml_frag and an XPath expression xpath_expr (also known as a locator);\nit returns the text (CDATA) of the first text node which is a child of\nthe element or elements matched by the XPath expression. In MySQL 5.6.6\nand earlier, the XPath expression could contain at most 127 characters.\nThis limitation was lifted in MySQL 5.6.7. (Bug #13007062, Bug#62429)\n\nUsing this function is the equivalent of performing a match using the\nxpath_expr after appending /text(). In other words,\nExtractValue(\'<a><b>Sakila</b></a>\', \'/a/b\') and\nExtractValue(\'<a><b>Sakila</b></a>\', \'/a/b/text()\') produce the same\nresult.\n\nIf multiple matches are found, the content of the first child text node\nof each matching element is returned (in the order matched) as a\nsingle, space-delimited string.\n\nIf no matching text node is found for the expression (including the\nimplicit /text())---for whatever reason, as long as xpath_expr is\nvalid, and xml_frag consists of elements which are properly nested and\nclosed---an empty string is returned. No distinction is made between a\nmatch on an empty element and no match at all. This is by design.\n\nIf you need to determine whether no matching element was found in\nxml_frag or such an element was found but contained no child text\nnodes, you should test the result of an expression that uses the XPath\ncount() function. For example, both of these statements return an empty\nstring, as shown here:\n\nmysql> SELECT ExtractValue(\'<a><b/></a>\', \'/a/b\');\n+-------------------------------------+\n| ExtractValue(\'<a><b/></a>\', \'/a/b\') |\n+-------------------------------------+\n| |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> SELECT ExtractValue(\'<a><c/></a>\', \'/a/b\');\n+-------------------------------------+\n| ExtractValue(\'<a><c/></a>\', \'/a/b\') |\n+-------------------------------------+\n| |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\n*Note*:\n\nIn MySQL 5.6.28 and MySQL 5.6.29, when ExtractValue() failed to find a\nmatch for the supplied expression, it returned NULL. This issue was\nresolved in MySQL 5.6.30. (Bug #22552615)\n\nHowever, you can determine whether there was actually a matching\nelement using the following:\n\nmysql> SELECT ExtractValue(\'<a><b/></a>\', \'count(/a/b)\');\n+-------------------------------------+\n| ExtractValue(\'<a><b/></a>\', \'count(/a/b)\') |\n+-------------------------------------+\n| 1 |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> SELECT ExtractValue(\'<a><c/></a>\', \'count(/a/b)\');\n+-------------------------------------+\n| ExtractValue(\'<a><c/></a>\', \'count(/a/b)\') |\n+-------------------------------------+\n| 0 |\n+-------------------------------------+\n1 row in set (0.01 sec)\n\n*Important*:\n\nExtractValue() returns only CDATA, and does not return any tags that\nmight be contained within a matching tag, nor any of their content (see\nthe result returned as val1 in the following example).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/xml-functions.html\n\n','mysql> SELECT\n -> ExtractValue(\'<a>ccc<b>ddd</b></a>\', \'/a\') AS val1,\n -> ExtractValue(\'<a>ccc<b>ddd</b></a>\', \'/a/b\') AS val2,\n -> ExtractValue(\'<a>ccc<b>ddd</b></a>\', \'//b\') AS val3,\n -> ExtractValue(\'<a>ccc<b>ddd</b></a>\', \'/b\') AS val4,\n -> ExtractValue(\'<a>ccc<b>ddd</b><b>eee</b></a>\', \'//b\') AS val5;\n\n+------+------+------+------+---------+\n| val1 | val2 | val3 | val4 | val5 |\n+------+------+------+------+---------+\n| ccc | ddd | ddd | | ddd eee |\n+------+------+------+------+---------+\n','http://dev.mysql.com/doc/refman/5.6/en/xml-functions.html'),(85,'OLD_PASSWORD',12,'Syntax:\nOLD_PASSWORD(str)\n\nOLD_PASSWORD() was added when the implementation of PASSWORD() was\nchanged in MySQL 4.1 to improve security. OLD_PASSWORD() returns the\nvalue of the pre-4.1 implementation of PASSWORD() as a string, and is\nintended to permit you to reset passwords for any pre-4.1 clients that\nneed to connect to your MySQL server without locking them out. See\nhttp://dev.mysql.com/doc/refman/5.6/en/password-hashing.html.\n\nThe return value is a string in the connection character set.\n\n*Note*:\n\nPasswords that use the pre-4.1 hashing method are less secure than\npasswords that use the native password hashing method and should be\navoided. Pre-4.1 passwords are deprecated and support for them will be\nremoved in a future MySQL release. Consequently, OLD_PASSWORD() is also\ndeprecated.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(86,'FORMAT',38,'Syntax:\nFORMAT(X,D[,locale])\n\nFormats the number X to a format like \'#,###,###.##\', rounded to D\ndecimal places, and returns the result as a string. If D is 0, the\nresult has no decimal point or fractional part.\n\nThe optional third parameter enables a locale to be specified to be\nused for the result number\'s decimal point, thousands separator, and\ngrouping between separators. Permissible locale values are the same as\nthe legal values for the lc_time_names system variable (see\nhttp://dev.mysql.com/doc/refman/5.6/en/locale-support.html). If no\nlocale is specified, the default is \'en_US\'.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT FORMAT(12332.123456, 4);\n -> \'12,332.1235\'\nmysql> SELECT FORMAT(12332.1,4);\n -> \'12,332.1000\'\nmysql> SELECT FORMAT(12332.2,0);\n -> \'12,332\'\nmysql> SELECT FORMAT(12332.2,2,\'de_DE\');\n -> \'12.332,20\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(87,'BIT_LENGTH',38,'Syntax:\nBIT_LENGTH(str)\n\nReturns the length of the string str in bits.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT BIT_LENGTH(\'text\');\n -> 32\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(88,'EXTERIORRING',2,'ExteriorRing(poly)\n\nST_ExteriorRing() and ExteriorRing() are synonyms. For more\ninformation, see the description of ST_ExteriorRing().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(89,'GEOMFROMWKB',33,'GeomFromWKB(wkb[, srid]), GeometryFromWKB(wkb[, srid])\n\nST_GeomFromWKB(), ST_GeometryFromWKB(), GeomFromWKB(), and\nGeometryFromWKB() are synonyms. For more information, see the\ndescription of ST_GeomFromWKB().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(90,'BETWEEN AND',20,'Syntax:\nexpr BETWEEN min AND max\n\nIf expr is greater than or equal to min and expr is less than or equal\nto max, BETWEEN returns 1, otherwise it returns 0. This is equivalent\nto the expression (min <= expr AND expr <= max) if all the arguments\nare of the same type. Otherwise type conversion takes place according\nto the rules described in\nhttp://dev.mysql.com/doc/refman/5.6/en/type-conversion.html, but\napplied to all the three arguments.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 2 BETWEEN 1 AND 3, 2 BETWEEN 3 and 1;\n -> 1, 0\nmysql> SELECT 1 BETWEEN 2 AND 3;\n -> 0\nmysql> SELECT \'b\' BETWEEN \'a\' AND \'c\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'3\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'x-3\';\n -> 0\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(91,'MULTIPOLYGON',25,'MultiPolygon(poly [, poly] ...)\n\nConstructs a MultiPolygon value from a set of Polygon or WKB Polygon\narguments.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html'),(92,'LEFT',38,'Syntax:\nLEFT(str,len)\n\nReturns the leftmost len characters from the string str, or NULL if any\nargument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT LEFT(\'foobarbar\', 5);\n -> \'fooba\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(93,'ST_ISCLOSED',13,'ST_IsClosed(ls)\n\nFor a LineString value ls, ST_IsClosed() returns 1 if ls is closed\n(that is, its ST_StartPoint() and ST_EndPoint() values are the same).\nIf the argument is NULL or an empty geometry, the return value is NULL.\n\nFor a MultiLineString value ls, ST_IsClosed() returns 1 if ls is closed\n(that is, the ST_StartPoint() and ST_EndPoint() values are the same for\neach LineString in ls).\n\nST_IsClosed() returns 0 if ls is not closed.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls1 = \'LineString(1 1,2 2,3 3,2 2)\';\nmysql> SET @ls2 = \'LineString(1 1,2 2,3 3,1 1)\';\n\nmysql> SELECT ST_IsClosed(ST_GeomFromText(@ls1));\n+------------------------------------+\n| ST_IsClosed(ST_GeomFromText(@ls1)) |\n+------------------------------------+\n| 0 |\n+------------------------------------+\n\nmysql> SELECT ST_IsClosed(ST_GeomFromText(@ls2));\n+------------------------------------+\n| ST_IsClosed(ST_GeomFromText(@ls2)) |\n+------------------------------------+\n| 1 |\n+------------------------------------+\n\nmysql> SET @ls3 = \'MultiLineString((1 1,2 2,3 3),(4 4,5 5))\';\n\nmysql> SELECT ST_IsClosed(ST_GeomFromText(@ls3));\n+------------------------------------+\n| ST_IsClosed(ST_GeomFromText(@ls3)) |\n+------------------------------------+\n| 0 |\n+------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(94,'FLUSH QUERY CACHE',27,'You can defragment the query cache to better utilize its memory with\nthe FLUSH QUERY CACHE statement. The statement does not remove any\nqueries from the cache.\n\nThe RESET QUERY CACHE statement removes all query results from the\nquery cache. The FLUSH TABLES statement also does this.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/query-cache-status-and-maintenance.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/query-cache-status-and-maintenance.html'),(95,'SET DATA TYPE',23,'SET(\'value1\',\'value2\',...) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA set. A string object that can have zero or more values, each of which\nmust be chosen from the list of values \'value1\', \'value2\', ... SET\nvalues are represented internally as integers.\n\nA SET column can have a maximum of 64 distinct members. A table can\nhave no more than 255 unique element list definitions among its ENUM\nand SET columns considered as a group. For more information on this\nlimit, see http://dev.mysql.com/doc/refman/5.6/en/limits-frm-file.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html'),(96,'RAND',3,'Syntax:\nRAND([N])\n\nReturns a random floating-point value v in the range 0 <= v < 1.0. To\nobtain a random integer R in the range i <= R < j, use the expression\nFLOOR(i + RAND() * (j − i)). For example, to obtain a random integer\nin the range the range 7 <= R < 12, use the following statement:\n\nSELECT FLOOR(7 + (RAND() * 5));\n\nIf an integer argument N is specified, it is used as the seed value:\n\no With a constant initializer argument, the seed is initialized once\n when the statement is prepared, prior to execution.\n\no With a nonconstant initializer argument (such as a column name), the\n seed is initialized with the value for each invocation of RAND().\n\nOne implication of this behavior is that for equal argument values,\nRAND(N) returns the same value each time, and thus produces a\nrepeatable sequence of column values. In the following example, the\nsequence of values produced by RAND(3) is the same both places it\noccurs.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> CREATE TABLE t (i INT);\nQuery OK, 0 rows affected (0.42 sec)\n\nmysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT i, RAND() FROM t;\n+------+------------------+\n| i | RAND() |\n+------+------------------+\n| 1 | 0.61914388706828 |\n| 2 | 0.93845168309142 |\n| 3 | 0.83482678498591 |\n+------+------------------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT i, RAND(3) FROM t;\n+------+------------------+\n| i | RAND(3) |\n+------+------------------+\n| 1 | 0.90576975597606 |\n| 2 | 0.37307905813035 |\n| 3 | 0.14808605345719 |\n+------+------------------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT i, RAND() FROM t;\n+------+------------------+\n| i | RAND() |\n+------+------------------+\n| 1 | 0.35877890638893 |\n| 2 | 0.28941420772058 |\n| 3 | 0.37073435016976 |\n+------+------------------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT i, RAND(3) FROM t;\n+------+------------------+\n| i | RAND(3) |\n+------+------------------+\n| 1 | 0.90576975597606 |\n| 2 | 0.37307905813035 |\n| 3 | 0.14808605345719 |\n+------+------------------+\n3 rows in set (0.01 sec)\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(97,'RPAD',38,'Syntax:\nRPAD(str,len,padstr)\n\nReturns the string str, right-padded with the string padstr to a length\nof len characters. If str is longer than len, the return value is\nshortened to len characters.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT RPAD(\'hi\',5,\'?\');\n -> \'hi???\'\nmysql> SELECT RPAD(\'hi\',1,\'?\');\n -> \'h\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(98,'DEC',23,'DEC[(M[,D])] [UNSIGNED] [ZEROFILL], NUMERIC[(M[,D])] [UNSIGNED]\n[ZEROFILL], FIXED[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nThese types are synonyms for DECIMAL. The FIXED synonym is available\nfor compatibility with other database systems.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html'),(99,'ELT',38,'Syntax:\nELT(N,str1,str2,str3,...)\n\nELT() returns the Nth element of the list of strings: str1 if N = 1,\nstr2 if N = 2, and so on. Returns NULL if N is less than 1 or greater\nthan the number of arguments. ELT() is the complement of FIELD().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT ELT(1, \'Aa\', \'Bb\', \'Cc\', \'Dd\');\n -> \'Aa\'\nmysql> SELECT ELT(4, \'Aa\', \'Bb\', \'Cc\', \'Dd\');\n -> \'Dd\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(100,'ALTER VIEW',40,'Syntax:\nALTER\n [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n [DEFINER = { user | CURRENT_USER }]\n [SQL SECURITY { DEFINER | INVOKER }]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]\n\nThis statement changes the definition of a view, which must exist. The\nsyntax is similar to that for CREATE VIEW see [HELP CREATE VIEW]). This\nstatement requires the CREATE VIEW and DROP privileges for the view,\nand some privilege for each column referred to in the SELECT statement.\nALTER VIEW is permitted only to the definer or users with the SUPER\nprivilege.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/alter-view.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/alter-view.html'),(101,'SHOW DATABASES',27,'Syntax:\nSHOW {DATABASES | SCHEMAS}\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW DATABASES lists the databases on the MySQL server host. SHOW\nSCHEMAS is a synonym for SHOW DATABASES. The LIKE clause, if present,\nindicates which database names to match. The WHERE clause can be given\nto select rows using more general conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nYou see only those databases for which you have some kind of privilege,\nunless you have the global SHOW DATABASES privilege. You can also get\nthis list using the mysqlshow command.\n\nIf the server was started with the --skip-show-database option, you\ncannot use this statement at all unless you have the SHOW DATABASES\nprivilege.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-databases.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-databases.html'),(102,'SEC_TO_TIME',32,'Syntax:\nSEC_TO_TIME(seconds)\n\nReturns the seconds argument, converted to hours, minutes, and seconds,\nas a TIME value. The range of the result is constrained to that of the\nTIME data type. A warning occurs if the argument corresponds to a value\noutside that range.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT SEC_TO_TIME(2378);\n -> \'00:39:38\'\nmysql> SELECT SEC_TO_TIME(2378) + 0;\n -> 3938\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(103,'LOCATE',38,'Syntax:\nLOCATE(substr,str), LOCATE(substr,str,pos)\n\nThe first syntax returns the position of the first occurrence of\nsubstring substr in string str. The second syntax returns the position\nof the first occurrence of substring substr in string str, starting at\nposition pos. Returns 0 if substr is not in str. Returns NULL if substr\nor str is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT LOCATE(\'bar\', \'foobarbar\');\n -> 4\nmysql> SELECT LOCATE(\'xbar\', \'foobar\');\n -> 0\nmysql> SELECT LOCATE(\'bar\', \'foobarbar\', 5);\n -> 7\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(104,'SHOW EVENTS',27,'Syntax:\nSHOW EVENTS\n [{FROM | IN} schema_name]\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement displays information about Event Manager events. It\nrequires the EVENT privilege for the database from which the events are\nto be shown.\n\nIn its simplest form, SHOW EVENTS lists all of the events in the\ncurrent schema:\n\nmysql> SELECT CURRENT_USER(), SCHEMA();\n+----------------+----------+\n| CURRENT_USER() | SCHEMA() |\n+----------------+----------+\n| jon@ghidora | myschema |\n+----------------+----------+\n1 row in set (0.00 sec)\n\nmysql> SHOW EVENTS\\G\n*************************** 1. row ***************************\n Db: myschema\n Name: e_daily\n Definer: jon@ghidora\n Time zone: SYSTEM\n Type: RECURRING\n Execute at: NULL\n Interval value: 10\n Interval field: SECOND\n Starts: 2006-02-09 10:41:23\n Ends: NULL\n Status: ENABLED\n Originator: 0\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n\nTo see events for a specific schema, use the FROM clause. For example,\nto see events for the test schema, use the following statement:\n\nSHOW EVENTS FROM test;\n\nThe LIKE clause, if present, indicates which event names to match. The\nWHERE clause can be given to select rows using more general conditions,\nas discussed in\nhttp://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-events.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-events.html'),(105,'LONGTEXT',23,'LONGTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 4,294,967,295 or 4GB (232 − 1)\ncharacters. The effective maximum length is less if the value contains\nmultibyte characters. The effective maximum length of LONGTEXT columns\nalso depends on the configured maximum packet size in the client/server\nprotocol and available memory. Each LONGTEXT value is stored using a\n4-byte length prefix that indicates the number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html'),(106,'KILL',27,'Syntax:\nKILL [CONNECTION | QUERY] processlist_id\n\nEach connection to mysqld runs in a separate thread. You can kill a\nthread with the KILL processlist_id statement.\n\nThread processlist identifiers can be determined from the ID column of\nthe INFORMATION_SCHEMA.PROCESSLIST table, the Id column of SHOW\nPROCESSLIST output, and the PROCESSLIST_ID column of the Performance\nSchema threads table. The value for the current thread is returned by\nthe CONNECTION_ID() function.\n\nKILL permits an optional CONNECTION or QUERY modifier:\n\no KILL CONNECTION is the same as KILL with no modifier: It terminates\n the connection associated with the given processlist_id, after\n terminating any statement the connection is executing.\n\no KILL QUERY terminates the statement the connection is currently\n executing, but leaves the connection itself intact.\n\nIf you have the PROCESS privilege, you can see all threads. If you have\nthe SUPER privilege, you can kill all threads and statements.\nOtherwise, you can see and kill only your own threads and statements.\n\nYou can also use the mysqladmin processlist and mysqladmin kill\ncommands to examine and kill threads.\n\n*Note*:\n\nYou cannot use KILL with the Embedded MySQL Server library because the\nembedded server merely runs inside the threads of the host application.\nIt does not create any connection threads of its own.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/kill.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/kill.html'),(107,'DISJOINT',7,'Disjoint(g1, g2)\n\nMBRDisjoint() and Disjoint() are synonyms. For more information, see\nthe description of MBRDisjoint().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(108,'LPAD',38,'Syntax:\nLPAD(str,len,padstr)\n\nReturns the string str, left-padded with the string padstr to a length\nof len characters. If str is longer than len, the return value is\nshortened to len characters.\n\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT LPAD(\'hi\',4,\'??\');\n -> \'??hi\'\nmysql> SELECT LPAD(\'hi\',1,\'??\');\n -> \'h\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(109,'OVERLAPS',7,'Overlaps(g1, g2)\n\nMBROverlaps() and Overlaps() are synonyms. For more information, see\nthe description of MBROverlaps().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(110,'SET GLOBAL SQL_SLAVE_SKIP_COUNTER',8,'Syntax:\nSET GLOBAL sql_slave_skip_counter = N\n\nThis statement skips the next N events from the master. This is useful\nfor recovering from replication stops caused by a statement.\n\nThis statement is valid only when the slave threads are not running.\nOtherwise, it produces an error.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/set-global-sql-slave-skip-counter.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/set-global-sql-slave-skip-counter.html'),(111,'MBREQUAL',7,'MBREqual(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 are the same.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(112,'PROCEDURE ANALYSE',34,'Syntax:\nANALYSE([max_elements[,max_memory]])\n\nANALYSE() examines the result from a query and returns an analysis of\nthe results that suggests optimal data types for each column that may\nhelp reduce table sizes. To obtain this analysis, append PROCEDURE\nANALYSE to the end of a SELECT statement:\n\nSELECT ... FROM ... WHERE ... PROCEDURE ANALYSE([max_elements,[max_memory]])\n\nFor example:\n\nSELECT col1, col2 FROM table1 PROCEDURE ANALYSE(10, 2000);\n\nThe results show some statistics for the values returned by the query,\nand propose an optimal data type for the columns. This can be helpful\nfor checking your existing tables, or after importing new data. You may\nneed to try different settings for the arguments so that PROCEDURE\nANALYSE() does not suggest the ENUM data type when it is not\nappropriate.\n\nThe arguments are optional and are used as follows:\n\no max_elements (default 256) is the maximum number of distinct values\n that ANALYSE() notices per column. This is used by ANALYSE() to check\n whether the optimal data type should be of type ENUM; if there are\n more than max_elements distinct values, then ENUM is not a suggested\n type.\n\no max_memory (default 8192) is the maximum amount of memory that\n ANALYSE() should allocate per column while trying to find all\n distinct values.\n\nA PROCEDURE clause is not permitted in a UNION statement.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/procedure-analyse.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/procedure-analyse.html'),(113,'HELP_VERSION',9,'This help information was generated from the MySQL 5.6 Reference Manual\non: 2018-06-15 (revision: 57704)\n\nThis information applies to MySQL 5.6 through 5.6.42.\n','',''),(114,'CHARACTER_LENGTH',38,'Syntax:\nCHARACTER_LENGTH(str)\n\nCHARACTER_LENGTH() is a synonym for CHAR_LENGTH().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(115,'SHOW PRIVILEGES',27,'Syntax:\nSHOW PRIVILEGES\n\nSHOW PRIVILEGES shows the list of system privileges that the MySQL\nserver supports. The exact list of privileges depends on the version of\nyour server.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-privileges.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-privileges.html'),(116,'CREATE TABLESPACE',40,'Syntax:\nCREATE TABLESPACE tablespace_name\n ADD DATAFILE \'file_name\'\n USE LOGFILE GROUP logfile_group\n [EXTENT_SIZE [=] extent_size]\n [INITIAL_SIZE [=] initial_size]\n [AUTOEXTEND_SIZE [=] autoextend_size]\n [MAX_SIZE [=] max_size]\n [NODEGROUP [=] nodegroup_id]\n [WAIT]\n [COMMENT [=] comment_text]\n ENGINE [=] engine_name\n\nThis statement is used to create a tablespace, which can contain one or\nmore data files, providing storage space for tables. One data file is\ncreated and added to the tablespace using this statement. Additional\ndata files may be added to the tablespace by using the ALTER TABLESPACE\nstatement (see [HELP ALTER TABLESPACE]). For rules covering the naming\nof tablespaces, see\nhttp://dev.mysql.com/doc/refman/5.6/en/identifiers.html.\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and a log file group with the same name, or a tablespace and\na data file with the same name.\n\nA log file group of one or more UNDO log files must be assigned to the\ntablespace to be created with the USE LOGFILE GROUP clause.\nlogfile_group must be an existing log file group created with CREATE\nLOGFILE GROUP (see [HELP CREATE LOGFILE GROUP]). Multiple tablespaces\nmay use the same log file group for UNDO logging.\n\nThe EXTENT_SIZE sets the size, in bytes, of the extents used by any\nfiles belonging to the tablespace. The default value is 1M. The minimum\nsize is 32K, and theoretical maximum is 2G, although the practical\nmaximum size depends on a number of factors. In most cases, changing\nthe extent size does not have any measurable effect on performance, and\nthe default value is recommended for all but the most unusual\nsituations.\n\nAn extent is a unit of disk space allocation. One extent is filled with\nas much data as that extent can contain before another extent is used.\nIn theory, up to 65,535 (64K) extents may used per data file; however,\nthe recommended maximum is 32,768 (32K). The recommended maximum size\nfor a single data file is 32G---that is, 32K extents x 1 MB per extent.\nIn addition, once an extent is allocated to a given partition, it\ncannot be used to store data from a different partition; an extent\ncannot store data from more than one partition. This means, for example\nthat a tablespace having a single datafile whose INITIAL_SIZE is 256 MB\nand whose EXTENT_SIZE is 128M has just two extents, and so can be used\nto store data from at most two different disk data table partitions.\n\nYou can see how many extents remain free in a given data file by\nquerying the INFORMATION_SCHEMA.FILES table, and so derive an estimate\nfor how much space remains free in the file. For further discussion and\nexamples, see http://dev.mysql.com/doc/refman/5.6/en/files-table.html.\n\nThe INITIAL_SIZE parameter sets the data file\'s total size in bytes.\nOnce the file has been created, its size cannot be changed; however,\nyou can add more data files to the tablespace using ALTER TABLESPACE\n... ADD DATAFILE. See [HELP ALTER TABLESPACE].\n\nINITIAL_SIZE is optional; its default value is 134217728 (128 MB).\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nWhen setting EXTENT_SIZE, you may optionally follow the number with a\none-letter abbreviation for an order of magnitude, similar to those\nused in my.cnf. Generally, this is one of the letters M (for megabytes)\nor G (for gigabytes). In MySQL NDB Cluster 7.3.2 and later, these\nabbreviations are also supported when specifying INITIAL_SIZE as well.\n(Bug #13116514, Bug #16104705, Bug #62858)\n\nINITIAL_SIZE, EXTENT_SIZE, and UNDO_BUFFER_SIZE are subject to rounding\nas follows:\n\no EXTENT_SIZE and UNDO_BUFFER_SIZE are each rounded up to the nearest\n whole multiple of 32K.\n\no INITIAL_SIZE is rounded down to the nearest whole multiple of 32K.\n\n For data files, INITIAL_SIZE is subject to further rounding; the\n result just obtained is rounded up to the nearest whole multiple of\n EXTENT_SIZE (after any rounding).\n\nThe rounding just described is done explicitly, and a warning is issued\nby the MySQL Server when any such rounding is performed. The rounded\nvalues are also used by the NDB kernel for calculating\nINFORMATION_SCHEMA.FILES column values and other purposes. However, to\navoid an unexpected result, we suggest that you always use whole\nmultiples of 32K in specifying these options.\n\nAUTOEXTEND_SIZE, MAX_SIZE, NODEGROUP, WAIT, and COMMENT are parsed but\nignored, and so currently have no effect. These options are intended\nfor future expansion.\n\nThe ENGINE parameter determines the storage engine which uses this\ntablespace, with engine_name being the name of the storage engine.\nCurrently, engine_name must be one of the values NDB or NDBCLUSTER.\n\nWhen CREATE TABLESPACE is used with ENGINE = NDB, a tablespace and\nassociated data file are created on each Cluster data node. You can\nverify that the data files were created and obtain information about\nthem by querying the INFORMATION_SCHEMA.FILES table. For example:\n\nmysql> SELECT LOGFILE_GROUP_NAME, FILE_NAME, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE TABLESPACE_NAME = \'newts\' AND FILE_TYPE = \'DATAFILE\';\n+--------------------+-------------+----------------+\n| LOGFILE_GROUP_NAME | FILE_NAME | EXTRA |\n+--------------------+-------------+----------------+\n| lg_3 | newdata.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata.dat | CLUSTER_NODE=4 |\n+--------------------+-------------+----------------+\n2 rows in set (0.01 sec)\n\n(See http://dev.mysql.com/doc/refman/5.6/en/files-table.html.)\n\nCREATE TABLESPACE is useful only with Disk Data storage for NDB\nCluster. See\nhttp://dev.mysql.com/doc/refman/5.6/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/create-tablespace.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/create-tablespace.html'),(117,'ST_GEOMFROMTEXT',4,'ST_GeomFromText(wkt[, srid]), ST_GeometryFromText(wkt[, srid])\n\nConstructs a geometry value of any type using its WKT representation\nand SRID.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(118,'INSERT FUNCTION',38,'Syntax:\nINSERT(str,pos,len,newstr)\n\nReturns the string str, with the substring beginning at position pos\nand len characters long replaced by the string newstr. Returns the\noriginal string if pos is not within the length of the string. Replaces\nthe rest of the string from position pos if len is not within the\nlength of the rest of the string. Returns NULL if any argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT INSERT(\'Quadratic\', 3, 4, \'What\');\n -> \'QuWhattic\'\nmysql> SELECT INSERT(\'Quadratic\', -1, 4, \'What\');\n -> \'Quadratic\'\nmysql> SELECT INSERT(\'Quadratic\', 3, 100, \'What\');\n -> \'QuWhat\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(119,'XOR',15,'Syntax:\nXOR\n\nLogical XOR. Returns NULL if either operand is NULL. For non-NULL\noperands, evaluates to 1 if an odd number of operands is nonzero,\notherwise 0 is returned.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/logical-operators.html\n\n','mysql> SELECT 1 XOR 1;\n -> 0\nmysql> SELECT 1 XOR 0;\n -> 1\nmysql> SELECT 1 XOR NULL;\n -> NULL\nmysql> SELECT 1 XOR 1 XOR 1;\n -> 1\n','http://dev.mysql.com/doc/refman/5.6/en/logical-operators.html'),(120,'GRANT',10,'Syntax:\nGRANT\n priv_type [(column_list)]\n [, priv_type [(column_list)]] ...\n ON [object_type] priv_level\n TO user [auth_option] [, user [auth_option]] ...\n [REQUIRE {NONE | tls_option [[AND] tls_option] ...}]\n [WITH {GRANT OPTION | resource_option} ...]\n\nGRANT PROXY ON user\n TO user [, user] ...\n [WITH GRANT OPTION]\n\nobject_type: {\n TABLE\n | FUNCTION\n | PROCEDURE\n}\n\npriv_level: {\n *\n | *.*\n | db_name.*\n | db_name.tbl_name\n | tbl_name\n | db_name.routine_name\n}\n\nuser:\n (see http://dev.mysql.com/doc/refman/5.6/en/account-names.html)\n\nauth_option: {\n IDENTIFIED BY \'auth_string\'\n | IDENTIFIED BY PASSWORD \'hash_string\'\n | IDENTIFIED WITH auth_plugin\n | IDENTIFIED WITH auth_plugin AS \'hash_string\'\n}\n\ntls_option: {\n SSL\n | X509\n | CIPHER \'cipher\'\n | ISSUER \'issuer\'\n | SUBJECT \'subject\'\n}\n\nresource_option: {\n | MAX_QUERIES_PER_HOUR count\n | MAX_UPDATES_PER_HOUR count\n | MAX_CONNECTIONS_PER_HOUR count\n | MAX_USER_CONNECTIONS count\n}\n\nThe GRANT statement grants privileges to MySQL user accounts. GRANT\nalso serves to specify other account characteristics such as use of\nsecure connections and limits on access to server resources.\n\nTo use GRANT, you must have the GRANT OPTION privilege, and you must\nhave the privileges that you are granting. When the read_only system\nvariable is enabled, GRANT additionally requires the SUPER privilege.\n\nThe REVOKE statement is related to GRANT and enables administrators to\nremove account privileges. See [HELP REVOKE].\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.6/en/account-names.html. For example:\n\nGRANT ALL ON db1.* TO \'jeffrey\'@\'localhost\';\n\nThe host name part of the account, if omitted, defaults to \'%\'.\n\nNormally, a database administrator first uses CREATE USER to create an\naccount, then GRANT to define its privileges and characteristics. For\nexample:\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED BY \'password\';\nGRANT ALL ON db1.* TO \'jeffrey\'@\'localhost\';\nGRANT SELECT ON db2.invoice TO \'jeffrey\'@\'localhost\';\nGRANT USAGE ON *.* TO \'jeffrey\'@\'localhost\' WITH MAX_QUERIES_PER_HOUR 90;\n\n*Note*:\n\nExamples shown here include no IDENTIFIED clause. It is assumed that\nyou establish passwords with CREATE USER at account-creation time to\navoid creating insecure accounts.\n\nIf an account named in a GRANT statement does not already exist, GRANT\nmay create it under the conditions described later in the discussion of\nthe NO_AUTO_CREATE_USER SQL mode.\n\nFrom the mysql program, GRANT responds with Query OK, 0 rows affected\nwhen executed successfully. To determine what privileges result from\nthe operation, use SHOW GRANTS. See [HELP SHOW GRANTS].\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/grant.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/grant.html'),(121,'MBRINTERSECTS',7,'MBRIntersects(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 intersect.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(122,'IS NOT',20,'Syntax:\nIS NOT boolean_value\n\nTests a value against a boolean value, where boolean_value can be TRUE,\nFALSE, or UNKNOWN.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN;\n -> 1, 1, 0\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(123,'SQRT',3,'Syntax:\nSQRT(X)\n\nReturns the square root of a nonnegative number X.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT SQRT(4);\n -> 2\nmysql> SELECT SQRT(20);\n -> 4.4721359549996\nmysql> SELECT SQRT(-16);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(124,'CREATE INDEX',40,'Syntax:\nCREATE [ONLINE|OFFLINE] [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name\n [index_type]\n ON tbl_name (index_col_name,...)\n [index_option]\n [algorithm_option | lock_option] ...\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]\n\nindex_option:\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n\nindex_type:\n USING {BTREE | HASH}\n\nalgorithm_option:\n ALGORITHM [=] {DEFAULT|INPLACE|COPY}\n\nlock_option:\n LOCK [=] {DEFAULT|NONE|SHARED|EXCLUSIVE}\n\nCREATE INDEX is mapped to an ALTER TABLE statement to create indexes.\nSee [HELP ALTER TABLE]. CREATE INDEX cannot be used to create a PRIMARY\nKEY; use ALTER TABLE instead. For more information about indexes, see\nhttp://dev.mysql.com/doc/refman/5.6/en/mysql-indexes.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/create-index.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/create-index.html'),(125,'ALTER DATABASE',40,'Syntax:\nALTER {DATABASE | SCHEMA} [db_name]\n alter_specification ...\nALTER {DATABASE | SCHEMA} db_name\n UPGRADE DATA DIRECTORY NAME\n\nalter_specification:\n [DEFAULT] CHARACTER SET [=] charset_name\n | [DEFAULT] COLLATE [=] collation_name\n\nALTER DATABASE enables you to change the overall characteristics of a\ndatabase. These characteristics are stored in the db.opt file in the\ndatabase directory. To use ALTER DATABASE, you need the ALTER privilege\non the database. ALTER SCHEMA is a synonym for ALTER DATABASE.\n\nThe database name can be omitted from the first syntax, in which case\nthe statement applies to the default database.\n\nNational Language Characteristics\n\nThe CHARACTER SET clause changes the default database character set.\nThe COLLATE clause changes the default database collation.\nhttp://dev.mysql.com/doc/refman/5.6/en/charset.html, discusses\ncharacter set and collation names.\n\nYou can see what character sets and collations are available using,\nrespectively, the SHOW CHARACTER SET and SHOW COLLATION statements. See\n[HELP SHOW CHARACTER SET], and [HELP SHOW COLLATION], for more\ninformation.\n\nIf you change the default character set or collation for a database,\nstored routines that use the database defaults must be dropped and\nrecreated so that they use the new defaults. (In a stored routine,\nvariables with character data types use the database defaults if the\ncharacter set or collation are not specified explicitly. See [HELP\nCREATE PROCEDURE].)\n\nUpgrading from Versions Older than MySQL 5.1\n\nThe syntax that includes the UPGRADE DATA DIRECTORY NAME clause updates\nthe name of the directory associated with the database to use the\nencoding implemented in MySQL 5.1 for mapping database names to\ndatabase directory names (see\nhttp://dev.mysql.com/doc/refman/5.6/en/identifier-mapping.html). This\nclause is for use under these conditions:\n\no It is intended when upgrading MySQL to 5.1 or later from older\n versions.\n\no It is intended to update a database directory name to the current\n encoding format if the name contains special characters that need\n encoding.\n\no The statement is used by mysqlcheck (as invoked by mysql_upgrade).\n\nFor example, if a database in MySQL 5.0 has the name a-b-c, the name\ncontains instances of the - (dash) character. In MySQL 5.0, the\ndatabase directory is also named a-b-c, which is not necessarily safe\nfor all file systems. In MySQL 5.1 and later, the same database name is\nencoded as a@002db@002dc to produce a file system-neutral directory\nname.\n\nWhen a MySQL installation is upgraded to MySQL 5.1 or later from an\nolder version,the server displays a name such as a-b-c (which is in the\nold format) as #mysql50#a-b-c, and you must refer to the name using the\n#mysql50# prefix. Use UPGRADE DATA DIRECTORY NAME in this case to\nexplicitly tell the server to re-encode the database directory name to\nthe current encoding format:\n\nALTER DATABASE `#mysql50#a-b-c` UPGRADE DATA DIRECTORY NAME;\n\nAfter executing this statement, you can refer to the database as a-b-c\nwithout the special #mysql50# prefix.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/alter-database.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/alter-database.html'),(126,'GEOMETRYN',26,'GeometryN(gc, N)\n\nST_GeometryN() and GeometryN() are synonyms. For more information, see\nthe description of ST_GeometryN().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-geometrycollection-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-geometrycollection-property-functions.html'),(127,'<<',19,'Syntax:\n<<\n\nShifts a longlong (BIGINT) number to the left.\n\nThe result is an unsigned 64-bit integer. The value is truncated to 64\nbits. In particular, if the shift count is greater or equal to the\nwidth of an unsigned 64-bit number, the result is zero.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/bit-functions.html\n\n','mysql> SELECT 1 << 2;\n -> 4\n','http://dev.mysql.com/doc/refman/5.6/en/bit-functions.html'),(128,'SHOW TABLE STATUS',27,'Syntax:\nSHOW TABLE STATUS\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TABLE STATUS works likes SHOW TABLES, but provides a lot of\ninformation about each non-TEMPORARY table. You can also get this list\nusing the mysqlshow --status db_name command. The LIKE clause, if\npresent, indicates which table names to match. The WHERE clause can be\ngiven to select rows using more general conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-table-status.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-table-status.html'),(129,'ASCII',38,'Syntax:\nASCII(str)\n\nReturns the numeric value of the leftmost character of the string str.\nReturns 0 if str is the empty string. Returns NULL if str is NULL.\nASCII() works for 8-bit characters.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT ASCII(\'2\');\n -> 50\nmysql> SELECT ASCII(2);\n -> 50\nmysql> SELECT ASCII(\'dx\');\n -> 100\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(130,'DIV',3,'Syntax:\nDIV\n\nInteger division. Discards from the division result any fractional part\nto the right of the decimal point.\n\nIf either operand has a noninteger type, the operands are converted to\nDECIMAL and divided using DECIMAL arithmetic before converting the\nresult to BIGINT. If the result exceeds BIGINT range, an error occurs.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html\n\n','mysql> SELECT 5 DIV 2, -5 DIV 2, 5 DIV -2, -5 DIV -2;\n -> 2, -2, -2, 2\n','http://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html'),(131,'SHOW SLAVE STATUS',27,'Syntax:\nSHOW SLAVE STATUS\n\nThis statement provides status information on essential parameters of\nthe slave threads. It requires either the SUPER or REPLICATION CLIENT\nprivilege.\n\nIf you issue this statement using the mysql client, you can use a \\G\nstatement terminator rather than a semicolon to obtain a more readable\nvertical layout:\n\nmysql> SHOW SLAVE STATUS\\G\n*************************** 1. row ***************************\n Slave_IO_State: Waiting for master to send event\n Master_Host: localhost\n Master_User: root\n Master_Port: 13000\n Connect_Retry: 60\n Master_Log_File: master-bin.000002\n Read_Master_Log_Pos: 1307\n Relay_Log_File: slave-relay-bin.000003\n Relay_Log_Pos: 1508\n Relay_Master_Log_File: master-bin.000002\n Slave_IO_Running: Yes\n Slave_SQL_Running: Yes\n Replicate_Do_DB:\n Replicate_Ignore_DB:\n Replicate_Do_Table:\n Replicate_Ignore_Table:\n Replicate_Wild_Do_Table:\n Replicate_Wild_Ignore_Table:\n Last_Errno: 0\n Last_Error:\n Skip_Counter: 0\n Exec_Master_Log_Pos: 1307\n Relay_Log_Space: 1858\n Until_Condition: None\n Until_Log_File:\n Until_Log_Pos: 0\n Master_SSL_Allowed: No\n Master_SSL_CA_File:\n Master_SSL_CA_Path:\n Master_SSL_Cert:\n Master_SSL_Cipher:\n Master_SSL_Key:\n Seconds_Behind_Master: 0\nMaster_SSL_Verify_Server_Cert: No\n Last_IO_Errno: 0\n Last_IO_Error:\n Last_SQL_Errno: 0\n Last_SQL_Error:\n Replicate_Ignore_Server_Ids:\n Master_Server_Id: 1\n Master_UUID: 3e11fa47-71ca-11e1-9e33-c80aa9429562\n Master_Info_File: /var/mysqld.2/data/master.info\n SQL_Delay: 0\n SQL_Remaining_Delay: NULL\n Slave_SQL_Running_State: Reading event from the relay log\n Master_Retry_Count: 10\n Master_Bind:\n Last_IO_Error_Timestamp:\n Last_SQL_Error_Timestamp:\n Master_SSL_Crl:\n Master_SSL_Crlpath:\n Retrieved_Gtid_Set: 3e11fa47-71ca-11e1-9e33-c80aa9429562:1-5\n Executed_Gtid_Set: 3e11fa47-71ca-11e1-9e33-c80aa9429562:1-5\n Auto_Position: 1\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-slave-status.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-slave-status.html'),(132,'GEOMETRY',35,'MySQL provides a standard way of creating spatial columns for geometry\ntypes, for example, with CREATE TABLE or ALTER TABLE. Spatial columns\nare supported for MyISAM, InnoDB, NDB, and ARCHIVE tables. See also the\nnotes about spatial indexes under [HELP SPATIAL].\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/creating-spatial-columns.html\n\n','CREATE TABLE geom (g GEOMETRY);\n','http://dev.mysql.com/doc/refman/5.6/en/creating-spatial-columns.html'),(133,'&',19,'Syntax:\n&\n\nBitwise AND.\n\nThe result is an unsigned 64-bit integer.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/bit-functions.html\n\n','mysql> SELECT 29 & 15;\n -> 13\n','http://dev.mysql.com/doc/refman/5.6/en/bit-functions.html'),(134,'ASSIGN-EQUAL',15,'Syntax:\n=\n\nThis operator is used to perform value assignments in two cases,\ndescribed in the next two paragraphs.\n\nWithin a SET statement, = is treated as an assignment operator that\ncauses the user variable on the left hand side of the operator to take\non the value to its right. (In other words, when used in a SET\nstatement, = is treated identically to :=.) The value on the right hand\nside may be a literal value, another variable storing a value, or any\nlegal expression that yields a scalar value, including the result of a\nquery (provided that this value is a scalar value). You can perform\nmultiple assignments in the same SET statement.\n\nIn the SET clause of an UPDATE statement, = also acts as an assignment\noperator; in this case, however, it causes the column named on the left\nhand side of the operator to assume the value given to the right,\nprovided any WHERE conditions that are part of the UPDATE are met. You\ncan make multiple assignments in the same SET clause of an UPDATE\nstatement.\n\nIn any other context, = is treated as a comparison operator.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/assignment-operators.html\n\n','mysql> SELECT @var1, @var2;\n -> NULL, NULL\nmysql> SELECT @var1 := 1, @var2;\n -> 1, NULL\nmysql> SELECT @var1, @var2;\n -> 1, NULL\nmysql> SELECT @var1, @var2 := @var1;\n -> 1, 1\nmysql> SELECT @var1, @var2;\n -> 1, 1\n','http://dev.mysql.com/doc/refman/5.6/en/assignment-operators.html'),(135,'CONVERT',38,'Syntax:\nCONVERT(expr,type), CONVERT(expr USING transcoding_name)\n\nThe CONVERT() function takes an expression of any type and produces a\nresult value of the specified type.\n\nDiscussion of CONVERT(expr, type) syntax here also applies to CAST(expr\nAS type), which is equivalent.\n\nCONVERT(... USING ...) is standard SQL syntax. The non-USING form of\nCONVERT() is ODBC syntax.\n\nCONVERT() with USING converts data between different character sets. In\nMySQL, transcoding names are the same as the corresponding character\nset names. For example, this statement converts the string \'abc\' in the\ndefault character set to the corresponding string in the utf8 character\nset:\n\nSELECT CONVERT(\'abc\' USING utf8);\n\nCONVERT() without USING and CAST() take an expression and a type value\nspecifying the result type. These type values are permitted:\n\no BINARY[(N)]\n\n Produces a string with the BINARY data type. See\n http://dev.mysql.com/doc/refman/5.6/en/binary-varbinary.html for a\n description of how this affects comparisons. If the optional length N\n is given, BINARY(N) causes the cast to use no more than N bytes of\n the argument. Values shorter than N bytes are padded with 0x00 bytes\n to a length of N.\n\no CHAR[(N)] [charset_info]\n\n Produces a string with the CHAR data type. If the optional length N\n is given, CHAR(N) causes the cast to use no more than N characters of\n the argument. No padding occurs for values shorter than N characters.\n\n With no charset_info clause, CHAR produces a string with the default\n character set. To specify the character set explicitly, these\n charset_info values are permitted:\n\n o CHARACTER SET charset_name: Produces a string with the given\n character set.\n\n o ASCII: Shorthand for CHARACTER SET latin1.\n\n o UNICODE: Shorthand for CHARACTER SET ucs2.\n\n In all cases, the string has the default collation for the character\n set.\n\no DATE\n\n Produces a DATE value.\n\no DATETIME\n\n Produces a DATETIME value.\n\no DECIMAL[(M[,D])]\n\n Produces a DECIMAL value. If the optional M and D values are given,\n they specify the maximum number of digits (the precision) and the\n number of digits following the decimal point (the scale).\n\no NCHAR[(N)]\n\n Like CHAR, but produces a string with the national character set. See\n http://dev.mysql.com/doc/refman/5.6/en/charset-national.html.\n\n Unlike CHAR, NCHAR does not permit trailing character set information\n to be specified.\n\no SIGNED [INTEGER]\n\n Produces a signed integer value.\n\no TIME\n\n Produces a TIME value.\n\no UNSIGNED [INTEGER]\n\n Produces an unsigned integer value.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/cast-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/cast-functions.html'),(136,'REPEAT LOOP',24,'Syntax:\n[begin_label:] REPEAT\n statement_list\nUNTIL search_condition\nEND REPEAT [end_label]\n\nThe statement list within a REPEAT statement is repeated until the\nsearch_condition expression is true. Thus, a REPEAT always enters the\nloop at least once. statement_list consists of one or more statements,\neach terminated by a semicolon (;) statement delimiter.\n\nA REPEAT statement can be labeled. For the rules regarding label use,\nsee [HELP labels].\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/repeat.html\n\n','mysql> delimiter //\n\nmysql> CREATE PROCEDURE dorepeat(p1 INT)\n -> BEGIN\n -> SET @x = 0;\n -> REPEAT\n -> SET @x = @x + 1;\n -> UNTIL @x > p1 END REPEAT;\n -> END\n -> //\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> CALL dorepeat(1000)//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @x//\n+------+\n| @x |\n+------+\n| 1001 |\n+------+\n1 row in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.6/en/repeat.html'),(137,'SMALLINT',23,'SMALLINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA small integer. The signed range is -32768 to 32767. The unsigned\nrange is 0 to 65535.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html'),(138,'DOUBLE PRECISION',23,'DOUBLE PRECISION[(M,D)] [UNSIGNED] [ZEROFILL], REAL[(M,D)] [UNSIGNED]\n[ZEROFILL]\n\nThese types are synonyms for DOUBLE. Exception: If the REAL_AS_FLOAT\nSQL mode is enabled, REAL is a synonym for FLOAT rather than DOUBLE.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html'),(139,'ORD',38,'Syntax:\nORD(str)\n\nIf the leftmost character of the string str is a multibyte character,\nreturns the code for that character, calculated from the numeric values\nof its constituent bytes using this formula:\n\n (1st byte code)\n+ (2nd byte code * 256)\n+ (3rd byte code * 256^2) ...\n\nIf the leftmost character is not a multibyte character, ORD() returns\nthe same value as the ASCII() function.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT ORD(\'2\');\n -> 50\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(140,'ENVELOPE',37,'Envelope(g)\n\nST_Envelope() and Envelope() are synonyms. For more information, see\nthe description of ST_Envelope().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(141,'ST_ISEMPTY',37,'ST_IsEmpty(g)\n\nThis function is a placeholder that returns 0 for any valid geometry\nvalue, 1 for any invalid geometry value, or NULL if the argument is\nNULL.\n\nMySQL does not support GIS EMPTY values such as POINT EMPTY.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(142,'INET_ATON',14,'Syntax:\nINET_ATON(expr)\n\nGiven the dotted-quad representation of an IPv4 network address as a\nstring, returns an integer that represents the numeric value of the\naddress in network byte order (big endian). INET_ATON() returns NULL if\nit does not understand its argument.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT INET_ATON(\'10.0.5.9\');\n -> 167773449\n','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(143,'ISSIMPLE',37,'IsSimple(g)\n\nST_IsSimple() and IsSimple() are synonyms. For more information, see\nthe description of ST_IsSimple().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(144,'- BINARY',3,'Syntax:\n-\n\nSubtraction:\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html\n\n','mysql> SELECT 3-5;\n -> -2\n','http://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html'),(145,'CURRENT_TIME',32,'Syntax:\nCURRENT_TIME, CURRENT_TIME([fsp])\n\nCURRENT_TIME and CURRENT_TIME() are synonyms for CURTIME().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(146,'WKT DEFINITION',4,'The Well-Known Text (WKT) representation of geometry values is designed\nfor exchanging geometry data in ASCII form. The OpenGIS specification\nprovides a Backus-Naur grammar that specifies the formal production\nrules for writing WKT values (see\nhttp://dev.mysql.com/doc/refman/5.6/en/spatial-types.html).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-data-formats.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-data-formats.html'),(147,'ST_Y',11,'ST_Y(p)\n\nReturns the Y-coordinate value for the Point object p as a\ndouble-precision number.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-point-property-functions.html\n\n','mysql> SELECT ST_Y(Point(56.7, 53.34));\n+--------------------------+\n| ST_Y(Point(56.7, 53.34)) |\n+--------------------------+\n| 53.34 |\n+--------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-point-property-functions.html'),(148,'REVOKE',10,'Syntax:\nREVOKE\n priv_type [(column_list)]\n [, priv_type [(column_list)]] ...\n ON [object_type] priv_level\n FROM user [, user] ...\n\nREVOKE ALL [PRIVILEGES], GRANT OPTION\n FROM user [, user] ...\n\nREVOKE PROXY ON user\n FROM user [, user] ...\n\nThe REVOKE statement enables system administrators to revoke privileges\nfrom MySQL accounts.\n\nWhen the read_only system variable is enabled, REVOKE requires the\nSUPER privilege in addition to any other required privileges described\nin the following discussion.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.6/en/account-names.html. For example:\n\nREVOKE INSERT ON *.* FROM \'jeffrey\'@\'localhost\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nFor details on the levels at which privileges exist, the permissible\npriv_type, priv_level, and object_type values, and the syntax for\nspecifying users and passwords, see [HELP GRANT]\n\nTo use the first REVOKE syntax, you must have the GRANT OPTION\nprivilege, and you must have the privileges that you are revoking.\n\nTo revoke all privileges, use the second syntax, which drops all\nglobal, database, table, column, and routine privileges for the named\nuser or users:\n\nREVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...\n\nTo use this REVOKE syntax, you must have the global CREATE USER\nprivilege, or the UPDATE privilege for the mysql database.\n\nUser accounts from which privileges are to be revoked must exist.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/revoke.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/revoke.html'),(149,'LAST_DAY',32,'Syntax:\nLAST_DAY(date)\n\nTakes a date or datetime value and returns the corresponding value for\nthe last day of the month. Returns NULL if the argument is invalid.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT LAST_DAY(\'2003-02-05\');\n -> \'2003-02-28\'\nmysql> SELECT LAST_DAY(\'2004-02-05\');\n -> \'2004-02-29\'\nmysql> SELECT LAST_DAY(\'2004-01-01 01:01:01\');\n -> \'2004-01-31\'\nmysql> SELECT LAST_DAY(\'2003-03-32\');\n -> NULL\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(150,'MEDIUMINT',23,'MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA medium-sized integer. The signed range is -8388608 to 8388607. The\nunsigned range is 0 to 16777215.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html'),(151,'RANDOM_BYTES',12,'Syntax:\nRANDOM_BYTES(len)\n\nThis function returns a binary string of len random bytes generated\nusing the random number generator of the SSL library. Permitted values\nof len range from 1 to 1024. For values outside that range,\nRANDOM_BYTES() generates a warning and returns NULL.\n\nRANDOM_BYTES() can be used to provide the initialization vector for the\nAES_DECRYPT() and AES_ENCRYPT() functions. For use in that context, len\nmust be at least 16. Larger values are permitted, but bytes in excess\nof 16 are ignored.\n\nRANDOM_BYTES() generates a random value, which makes its result\nnondeterministic. Consequently, statements that use this function are\nunsafe for statement-based replication and cannot be stored in the\nquery cache.\n\nThis function is available as of MySQL 5.6.17.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(152,'RTRIM',38,'Syntax:\nRTRIM(str)\n\nReturns the string str with trailing space characters removed.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT RTRIM(\'barbar \');\n -> \'barbar\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(153,'EXPLAIN',29,'Syntax:\n{EXPLAIN | DESCRIBE | DESC}\n tbl_name [col_name | wild]\n\n{EXPLAIN | DESCRIBE | DESC}\n [explain_type]\n explainable_stmt\n\nexplain_type: {\n EXTENDED\n | PARTITIONS\n | FORMAT = format_name\n}\n\nformat_name: {\n TRADITIONAL\n | JSON\n}\n\nexplainable_stmt: {\n SELECT statement\n | DELETE statement\n | INSERT statement\n | REPLACE statement\n | UPDATE statement\n}\n\nThe DESCRIBE and EXPLAIN statements are synonyms. In practice, the\nDESCRIBE keyword is more often used to obtain information about table\nstructure, whereas EXPLAIN is used to obtain a query execution plan\n(that is, an explanation of how MySQL would execute a query).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/explain.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/explain.html'),(154,'DEGREES',3,'Syntax:\nDEGREES(X)\n\nReturns the argument X, converted from radians to degrees.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT DEGREES(PI());\n -> 180\nmysql> SELECT DEGREES(PI() / 2);\n -> 90\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(155,'- UNARY',3,'Syntax:\n-\n\nUnary minus. This operator changes the sign of the operand.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html\n\n','mysql> SELECT - 2;\n -> -2\n','http://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html'),(156,'VARCHAR',23,'[NATIONAL] VARCHAR(M) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA variable-length string. M represents the maximum column length in\ncharacters. The range of M is 0 to 65,535. The effective maximum length\nof a VARCHAR is subject to the maximum row size (65,535 bytes, which is\nshared among all columns) and the character set used. For example, utf8\ncharacters can require up to three bytes per character, so a VARCHAR\ncolumn that uses the utf8 character set can be declared to be a maximum\nof 21,844 characters. See\nhttp://dev.mysql.com/doc/refman/5.6/en/column-count-limit.html.\n\nMySQL stores VARCHAR values as a 1-byte or 2-byte length prefix plus\ndata. The length prefix indicates the number of bytes in the value. A\nVARCHAR column uses one length byte if values require no more than 255\nbytes, two length bytes if values may require more than 255 bytes.\n\n*Note*:\n\nMySQL follows the standard SQL specification, and does not remove\ntrailing spaces from VARCHAR values.\n\nVARCHAR is shorthand for CHARACTER VARYING. NATIONAL VARCHAR is the\nstandard SQL way to define that a VARCHAR column should use some\npredefined character set. MySQL uses utf8 as this predefined character\nset. http://dev.mysql.com/doc/refman/5.6/en/charset-national.html.\nNVARCHAR is shorthand for NATIONAL VARCHAR.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html'),(157,'UNHEX',38,'Syntax:\n\nUNHEX(str)\n\nFor a string argument str, UNHEX(str) interprets each pair of\ncharacters in the argument as a hexadecimal number and converts it to\nthe byte represented by the number. The return value is a binary\nstring.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT UNHEX(\'4D7953514C\');\n -> \'MySQL\'\nmysql> SELECT X\'4D7953514C\';\n -> \'MySQL\'\nmysql> SELECT UNHEX(HEX(\'string\'));\n -> \'string\'\nmysql> SELECT HEX(UNHEX(\'1267\'));\n -> \'1267\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(158,'DROP TRIGGER',40,'Syntax:\nDROP TRIGGER [IF EXISTS] [schema_name.]trigger_name\n\nThis statement drops a trigger. The schema (database) name is optional.\nIf the schema is omitted, the trigger is dropped from the default\nschema. DROP TRIGGER requires the TRIGGER privilege for the table\nassociated with the trigger.\n\nUse IF EXISTS to prevent an error from occurring for a trigger that\ndoes not exist. A NOTE is generated for a nonexistent trigger when\nusing IF EXISTS. See [HELP SHOW WARNINGS].\n\nTriggers for a table are also dropped if you drop the table.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/drop-trigger.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/drop-trigger.html'),(159,'RESET MASTER',8,'Syntax:\nRESET MASTER\n\nDeletes all binary log files listed in the index file, resets the\nbinary log index file to be empty, and creates a new binary log file.\n\nIn MySQL 5.6.5 and later, RESET MASTER also clears the values of the\ngtid_purged system variable (known as gtid_lost in MySQL 5.6.8 and\nearlier) as well as the global value of the gtid_executed (gtid_done,\nprior to MySQL 5.6.9) system variable (but not its session value); that\nis, executing this statement sets each of these values to an empty\nstring (\'\').\n\nThis statement is intended to be used only when the master is started\nfor the first time.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/reset-master.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/reset-master.html'),(160,'PI',3,'Syntax:\nPI()\n\nReturns the value of π (pi). The default number of decimal places\ndisplayed is seven, but MySQL uses the full double-precision value\ninternally.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT PI();\n -> 3.141593\nmysql> SELECT PI()+0.000000000000000000;\n -> 3.141592653589793116\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(161,'/',3,'Syntax:\n/\n\nDivision:\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html\n\n','mysql> SELECT 3/5;\n -> 0.60\n','http://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html'),(162,'PURGE BINARY LOGS',8,'Syntax:\nPURGE { BINARY | MASTER } LOGS\n { TO \'log_name\' | BEFORE datetime_expr }\n\nThe binary log is a set of files that contain information about data\nmodifications made by the MySQL server. The log consists of a set of\nbinary log files, plus an index file (see\nhttp://dev.mysql.com/doc/refman/5.6/en/binary-log.html).\n\nThe PURGE BINARY LOGS statement deletes all the binary log files listed\nin the log index file prior to the specified log file name or date.\nBINARY and MASTER are synonyms. Deleted log files also are removed from\nthe list recorded in the index file, so that the given log file becomes\nthe first in the list.\n\nThis statement has no effect if the server was not started with the\n--log-bin option to enable binary logging.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/purge-binary-logs.html\n\n','PURGE BINARY LOGS TO \'mysql-bin.010\';\nPURGE BINARY LOGS BEFORE \'2008-04-02 22:46:26\';\n','http://dev.mysql.com/doc/refman/5.6/en/purge-binary-logs.html'),(163,'STDDEV_SAMP',16,'Syntax:\nSTDDEV_SAMP(expr)\n\nReturns the sample standard deviation of expr (the square root of\nVAR_SAMP().\n\nIf there are no matching rows, STDDEV_SAMP() returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(164,'ST_TOUCHES',31,'ST_Touches(g1, g2)\n\nTwo geometries spatially touch if their interiors do not intersect, but\nthe boundary of one of the geometries intersects either the boundary or\nthe interior of the other.\n\nThis function returns 1 or 0 to indicate whether g1 spatially touches\ng2.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(165,'SCHEMA',17,'Syntax:\nSCHEMA()\n\nThis function is a synonym for DATABASE().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(166,'MLINEFROMWKB',33,'MLineFromWKB(wkb[, srid]), MultiLineStringFromWKB(wkb[, srid])\n\nConstructs a MultiLineString value using its WKB representation and\nSRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(167,'SHOW CREATE TABLE',27,'Syntax:\nSHOW CREATE TABLE tbl_name\n\nShows the CREATE TABLE statement that creates the named table. To use\nthis statement, you must have some privilege for the table. This\nstatement also works with views.\nSHOW CREATE TABLE quotes table and column names according to the value\nof the sql_quote_show_create option. See\nhttp://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nFor information about how CREATE TABLE statements are stored by MySQL,\nsee\nhttp://dev.mysql.com/doc/refman/5.6/en/create-table-statement-retention\n.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-create-table.html\n\n','mysql> SHOW CREATE TABLE t\\G\n*************************** 1. row ***************************\n Table: t\nCreate Table: CREATE TABLE `t` (\n `id` int(11) NOT NULL AUTO_INCREMENT,\n `s` char(60) DEFAULT NULL,\n PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=latin1\n','http://dev.mysql.com/doc/refman/5.6/en/show-create-table.html'),(168,'DUAL',28,'You are permitted to specify DUAL as a dummy table name in situations\nwhere no tables are referenced:\n\nmysql> SELECT 1 + 1 FROM DUAL;\n -> 2\n\nDUAL is purely for the convenience of people who require that all\nSELECT statements should have FROM and possibly other clauses. MySQL\nmay ignore the clauses. MySQL does not require FROM DUAL if no tables\nare referenced.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/select.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/select.html'),(169,'INSTR',38,'Syntax:\nINSTR(str,substr)\n\nReturns the position of the first occurrence of substring substr in\nstring str. This is the same as the two-argument form of LOCATE(),\nexcept that the order of the arguments is reversed.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT INSTR(\'foobarbar\', \'bar\');\n -> 4\nmysql> SELECT INSTR(\'xbar\', \'foobar\');\n -> 0\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(170,'>=',20,'Syntax:\n>=\n\nGreater than or equal:\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 2 >= 2;\n -> 1\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(171,'EXP',3,'Syntax:\nEXP(X)\n\nReturns the value of e (the base of natural logarithms) raised to the\npower of X. The inverse of this function is LOG() (using a single\nargument only) or LN().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT EXP(2);\n -> 7.3890560989307\nmysql> SELECT EXP(-2);\n -> 0.13533528323661\nmysql> SELECT EXP(0);\n -> 1\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(172,'ST_ISSIMPLE',37,'ST_IsSimple(g)\n\nReturns 1 if the geometry value g has no anomalous geometric points,\nsuch as self-intersection or self-tangency. ST_IsSimple() returns 0 if\nthe argument is not simple, and NULL if the argument is NULL.\n\nThe descriptions of the instantiable geometric classes given under\nhttp://dev.mysql.com/doc/refman/5.6/en/opengis-geometry-model.html\nincludes the specific conditions that cause class instances to be\nclassified as not simple.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(173,'POINTN',13,'PointN(ls, N)\n\nST_PointN() and PointN() are synonyms. For more information, see the\ndescription of ST_PointN().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(174,'OCT',38,'Syntax:\nOCT(N)\n\nReturns a string representation of the octal value of N, where N is a\nlonglong (BIGINT) number. This is equivalent to CONV(N,10,8). Returns\nNULL if N is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT OCT(12);\n -> \'14\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(175,'SYSDATE',32,'Syntax:\nSYSDATE([fsp])\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n\nAs of MySQL 5.6.4, if the fsp argument is given to specify a fractional\nseconds precision from 0 to 6, the return value includes a fractional\nseconds part of that many digits. Before 5.6.4, any argument is\nignored.\n\nSYSDATE() returns the time at which it executes. This differs from the\nbehavior for NOW(), which returns a constant time that indicates the\ntime at which the statement began to execute. (Within a stored function\nor trigger, NOW() returns the time at which the function or triggering\nstatement began to execute.)\n\nmysql> SELECT NOW(), SLEEP(2), NOW();\n+---------------------+----------+---------------------+\n| NOW() | SLEEP(2) | NOW() |\n+---------------------+----------+---------------------+\n| 2006-04-12 13:47:36 | 0 | 2006-04-12 13:47:36 |\n+---------------------+----------+---------------------+\n\nmysql> SELECT SYSDATE(), SLEEP(2), SYSDATE();\n+---------------------+----------+---------------------+\n| SYSDATE() | SLEEP(2) | SYSDATE() |\n+---------------------+----------+---------------------+\n| 2006-04-12 13:47:44 | 0 | 2006-04-12 13:47:46 |\n+---------------------+----------+---------------------+\n\nIn addition, the SET TIMESTAMP statement affects the value returned by\nNOW() but not by SYSDATE(). This means that timestamp settings in the\nbinary log have no effect on invocations of SYSDATE().\n\nBecause SYSDATE() can return different values even within the same\nstatement, and is not affected by SET TIMESTAMP, it is nondeterministic\nand therefore unsafe for replication if statement-based binary logging\nis used. If that is a problem, you can use row-based logging.\n\nAlternatively, you can use the --sysdate-is-now option to cause\nSYSDATE() to be an alias for NOW(). This works if the option is used on\nboth the master and the slave.\n\nThe nondeterministic nature of SYSDATE() also means that indexes cannot\nbe used for evaluating expressions that refer to it.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(176,'UNINSTALL PLUGIN',5,'Syntax:\nUNINSTALL PLUGIN plugin_name\n\nThis statement removes an installed server plugin. It requires the\nDELETE privilege for the mysql.plugin system table. UNINSTALL PLUGIN is\nthe complement of INSTALL PLUGIN.\n\nplugin_name must be the name of some plugin that is listed in the\nmysql.plugin table. The server executes the plugin\'s deinitialization\nfunction and removes the row for the plugin from the mysql.plugin\ntable, so that subsequent server restarts will not load and initialize\nthe plugin. UNINSTALL PLUGIN does not remove the plugin\'s shared\nlibrary file.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/uninstall-plugin.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/uninstall-plugin.html'),(177,'ASBINARY',33,'AsBinary(g), AsWKB(g)\n\nST_AsBinary(), ST_AsWKB(), AsBinary(), and AsWKB() are synonyms. For\nmore information, see the description of ST_AsBinary().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-format-conversion-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-format-conversion-functions.html'),(178,'SHOW TABLES',27,'Syntax:\nSHOW [FULL] TABLES\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TABLES lists the non-TEMPORARY tables in a given database. You can\nalso get this list using the mysqlshow db_name command. The LIKE\nclause, if present, indicates which table names to match. The WHERE\nclause can be given to select rows using more general conditions, as\ndiscussed in http://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nMatching performed by the LIKE clause is dependent on the setting of\nthe lower_case_table_names system variable.\n\nThis statement also lists any views in the database. The optional FULL\nmodifier causes SHOW TABLES to display a second output column with\nvalues of BASE TABLE for a table and VIEW for a view.\n\nIf you have no privileges for a base table or view, it does not show up\nin the output from SHOW TABLES or mysqlshow db_name.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-tables.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-tables.html'),(179,'MAKEDATE',32,'Syntax:\nMAKEDATE(year,dayofyear)\n\nReturns a date, given year and day-of-year values. dayofyear must be\ngreater than 0 or the result is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT MAKEDATE(2011,31), MAKEDATE(2011,32);\n -> \'2011-01-31\', \'2011-02-01\'\nmysql> SELECT MAKEDATE(2011,365), MAKEDATE(2014,365);\n -> \'2011-12-31\', \'2014-12-31\'\nmysql> SELECT MAKEDATE(2011,0);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(180,'BINARY OPERATOR',38,'Syntax:\nBINARY expr\n\nThe BINARY operator converts the expression to a binary string. A\ncommon use for BINARY is to force a character string comparison to be\ndone byte by byte rather than character by character, in effect\nbecoming case-sensitive. The BINARY operator also causes trailing\nspaces in comparisons to be significant.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/cast-functions.html\n\n','mysql> SELECT \'a\' = \'A\';\n -> 1\nmysql> SELECT BINARY \'a\' = \'A\';\n -> 0\nmysql> SELECT \'a\' = \'a \';\n -> 1\nmysql> SELECT BINARY \'a\' = \'a \';\n -> 0\n','http://dev.mysql.com/doc/refman/5.6/en/cast-functions.html'),(181,'MBROVERLAPS',7,'MBROverlaps(g1, g2)\n\nTwo geometries spatially overlap if they intersect and their\nintersection results in a geometry of the same dimension but not equal\nto either of the given geometries.\n\nThis function returns 1 or 0 to indicate whether the minimum bounding\nrectangles of the two geometries g1 and g2 overlap.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(182,'ST_LINEFROMWKB',33,'ST_LineFromWKB(wkb[, srid]), ST_LineStringFromWKB(wkb[, srid])\n\nConstructs a LineString value using its WKB representation and SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(183,'ASYMMETRIC_DERIVE',7,'Syntax:\nASYMMETRIC_DERIVE(pub_key_str, priv_key_str)\n\nDerives a symmetric key using the private key of one party and the\npublic key of another, and returns the resulting key as a binary\nstring. If key derivation fails, the result is NULL.\n\npub_key_str and priv_key_str must be valid key strings in PEM format.\nThey must be created using the DH algorithm.\n\nSuppose that you have two pairs of public and private keys:\n\nSET @dhp = CREATE_DH_PARAMETERS(1024);\nSET @priv1 = CREATE_ASYMMETRIC_PRIV_KEY(\'DH\', @dhp);\nSET @pub1 = CREATE_ASYMMETRIC_PUB_KEY(\'DH\', @priv1);\nSET @priv2 = CREATE_ASYMMETRIC_PRIV_KEY(\'DH\', @dhp);\nSET @pub2 = CREATE_ASYMMETRIC_PUB_KEY(\'DH\', @priv2);\n\nSuppose further that you use the private key from one pair and the\npublic key from the other pair to create a symmetric key string. Then\nthis symmetric key identity relationship holds:\n\nASYMMETRIC_DERIVE(@pub1, @priv2) = ASYMMETRIC_DERIVE(@pub2, @priv1)\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(184,'INSERT SELECT',28,'Syntax:\nINSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [(col_name [, col_name] ...)]\n SELECT ...\n [ON DUPLICATE KEY UPDATE assignment_list]\n\nvalue:\n {expr | DEFAULT}\n\nassignment:\n col_name = value\n\nassignment_list:\n assignment [, assignment] ...\n\nWith INSERT ... SELECT, you can quickly insert many rows into a table\nfrom the result of a SELECT statement, which can select from one or\nmany tables. For example:\n\nINSERT INTO tbl_temp2 (fld_id)\n SELECT tbl_temp1.fld_order_id\n FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/insert-select.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/insert-select.html'),(185,'CREATE PROCEDURE',40,'Syntax:\nCREATE\n [DEFINER = { user | CURRENT_USER }]\n PROCEDURE sp_name ([proc_parameter[,...]])\n [characteristic ...] routine_body\n\nCREATE\n [DEFINER = { user | CURRENT_USER }]\n FUNCTION sp_name ([func_parameter[,...]])\n RETURNS type\n [characteristic ...] routine_body\n\nproc_parameter:\n [ IN | OUT | INOUT ] param_name type\n\nfunc_parameter:\n param_name type\n\ntype:\n Any valid MySQL data type\n\ncharacteristic:\n COMMENT \'string\'\n | LANGUAGE SQL\n | [NOT] DETERMINISTIC\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n\nroutine_body:\n Valid SQL routine statement\n\nThese statements create stored routines. By default, a routine is\nassociated with the default database. To associate the routine\nexplicitly with a given database, specify the name as db_name.sp_name\nwhen you create it.\n\nThe CREATE FUNCTION statement is also used in MySQL to support UDFs\n(user-defined functions). See\nhttp://dev.mysql.com/doc/refman/5.6/en/adding-functions.html. A UDF can\nbe regarded as an external stored function. Stored functions share\ntheir namespace with UDFs. See\nhttp://dev.mysql.com/doc/refman/5.6/en/function-resolution.html, for\nthe rules describing how the server interprets references to different\nkinds of functions.\n\nTo invoke a stored procedure, use the CALL statement (see [HELP CALL]).\nTo invoke a stored function, refer to it in an expression. The function\nreturns a value during expression evaluation.\n\nCREATE PROCEDURE and CREATE FUNCTION require the CREATE ROUTINE\nprivilege. They might also require the SUPER privilege, depending on\nthe DEFINER value, as described later in this section. If binary\nlogging is enabled, CREATE FUNCTION might require the SUPER privilege,\nas described in\nhttp://dev.mysql.com/doc/refman/5.6/en/stored-programs-logging.html.\n\nBy default, MySQL automatically grants the ALTER ROUTINE and EXECUTE\nprivileges to the routine creator. This behavior can be changed by\ndisabling the automatic_sp_privileges system variable. See\nhttp://dev.mysql.com/doc/refman/5.6/en/stored-routines-privileges.html.\n\nThe DEFINER and SQL SECURITY clauses specify the security context to be\nused when checking access privileges at routine execution time, as\ndescribed later in this section.\n\nIf the routine name is the same as the name of a built-in SQL function,\na syntax error occurs unless you use a space between the name and the\nfollowing parenthesis when defining the routine or invoking it later.\nFor this reason, avoid using the names of existing SQL functions for\nyour own stored routines.\n\nThe IGNORE_SPACE SQL mode applies to built-in functions, not to stored\nroutines. It is always permissible to have spaces after a stored\nroutine name, regardless of whether IGNORE_SPACE is enabled.\n\nThe parameter list enclosed within parentheses must always be present.\nIf there are no parameters, an empty parameter list of () should be\nused. Parameter names are not case sensitive.\n\nEach parameter is an IN parameter by default. To specify otherwise for\na parameter, use the keyword OUT or INOUT before the parameter name.\n\n*Note*:\n\nSpecifying a parameter as IN, OUT, or INOUT is valid only for a\nPROCEDURE. For a FUNCTION, parameters are always regarded as IN\nparameters.\n\nAn IN parameter passes a value into a procedure. The procedure might\nmodify the value, but the modification is not visible to the caller\nwhen the procedure returns. An OUT parameter passes a value from the\nprocedure back to the caller. Its initial value is NULL within the\nprocedure, and its value is visible to the caller when the procedure\nreturns. An INOUT parameter is initialized by the caller, can be\nmodified by the procedure, and any change made by the procedure is\nvisible to the caller when the procedure returns.\n\nFor each OUT or INOUT parameter, pass a user-defined variable in the\nCALL statement that invokes the procedure so that you can obtain its\nvalue when the procedure returns. If you are calling the procedure from\nwithin another stored procedure or function, you can also pass a\nroutine parameter or local routine variable as an IN or INOUT\nparameter.\n\nRoutine parameters cannot be referenced in statements prepared within\nthe routine; see\nhttp://dev.mysql.com/doc/refman/5.6/en/stored-program-restrictions.html\n.\n\nThe following example shows a simple stored procedure that uses an OUT\nparameter:\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE simpleproc (OUT param1 INT)\n -> BEGIN\n -> SELECT COUNT(*) INTO param1 FROM t;\n -> END//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> delimiter ;\n\nmysql> CALL simpleproc(@a);\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @a;\n+------+\n| @a |\n+------+\n| 3 |\n+------+\n1 row in set (0.00 sec)\n\nThe example uses the mysql client delimiter command to change the\nstatement delimiter from ; to // while the procedure is being defined.\nThis enables the ; delimiter used in the procedure body to be passed\nthrough to the server rather than being interpreted by mysql itself.\nSee\nhttp://dev.mysql.com/doc/refman/5.6/en/stored-programs-defining.html.\n\nThe RETURNS clause may be specified only for a FUNCTION, for which it\nis mandatory. It indicates the return type of the function, and the\nfunction body must contain a RETURN value statement. If the RETURN\nstatement returns a value of a different type, the value is coerced to\nthe proper type. For example, if a function specifies an ENUM or SET\nvalue in the RETURNS clause, but the RETURN statement returns an\ninteger, the value returned from the function is the string for the\ncorresponding ENUM member of set of SET members.\n\nThe following example function takes a parameter, performs an operation\nusing an SQL function, and returns the result. In this case, it is\nunnecessary to use delimiter because the function definition contains\nno internal ; statement delimiters:\n\nmysql> CREATE FUNCTION hello (s CHAR(20))\nmysql> RETURNS CHAR(50) DETERMINISTIC\n -> RETURN CONCAT(\'Hello, \',s,\'!\');\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT hello(\'world\');\n+----------------+\n| hello(\'world\') |\n+----------------+\n| Hello, world! |\n+----------------+\n1 row in set (0.00 sec)\n\nParameter types and function return types can be declared to use any\nvalid data type. The COLLATE attribute can be used if preceded by the\nCHARACTER SET attribute.\n\nThe routine_body consists of a valid SQL routine statement. This can be\na simple statement such as SELECT or INSERT, or a compound statement\nwritten using BEGIN and END. Compound statements can contain\ndeclarations, loops, and other control structure statements. The syntax\nfor these statements is described in\nhttp://dev.mysql.com/doc/refman/5.6/en/sql-syntax-compound-statements.h\ntml.\n\nMySQL permits routines to contain DDL statements, such as CREATE and\nDROP. MySQL also permits stored procedures (but not stored functions)\nto contain SQL transaction statements such as COMMIT. Stored functions\nmay not contain statements that perform explicit or implicit commit or\nrollback. Support for these statements is not required by the SQL\nstandard, which states that each DBMS vendor may decide whether to\npermit them.\n\nStatements that return a result set can be used within a stored\nprocedure but not within a stored function. This prohibition includes\nSELECT statements that do not have an INTO var_list clause and other\nstatements such as SHOW, EXPLAIN, and CHECK TABLE. For statements that\ncan be determined at function definition time to return a result set, a\nNot allowed to return a result set from a function error occurs\n(ER_SP_NO_RETSET). For statements that can be determined only at\nruntime to return a result set, a PROCEDURE %s can\'t return a result\nset in the given context error occurs (ER_SP_BADSELECT).\n\nUSE statements within stored routines are not permitted. When a routine\nis invoked, an implicit USE db_name is performed (and undone when the\nroutine terminates). The causes the routine to have the given default\ndatabase while it executes. References to objects in databases other\nthan the routine default database should be qualified with the\nappropriate database name.\n\nFor additional information about statements that are not permitted in\nstored routines, see\nhttp://dev.mysql.com/doc/refman/5.6/en/stored-program-restrictions.html\n.\n\nFor information about invoking stored procedures from within programs\nwritten in a language that has a MySQL interface, see [HELP CALL].\n\nMySQL stores the sql_mode system variable setting in effect when a\nroutine is created or altered, and always executes the routine with\nthis setting in force, regardless of the current server SQL mode when\nthe routine begins executing.\n\nThe switch from the SQL mode of the invoker to that of the routine\noccurs after evaluation of arguments and assignment of the resulting\nvalues to routine parameters. If you define a routine in strict SQL\nmode but invoke it in nonstrict mode, assignment of arguments to\nroutine parameters does not take place in strict mode. If you require\nthat expressions passed to a routine be assigned in strict SQL mode,\nyou should invoke the routine with strict mode in effect.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/create-procedure.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/create-procedure.html'),(186,'SQL_THREAD_WAIT_AFTER_GTIDS',7,'Syntax:\nSQL_THREAD_WAIT_AFTER_GTIDS(gtid_set[, timeout])\n\nSQL_THREAD_WAIT_AFTER_GTIDS() was added in MySQL 5.6.5, and replaced by\nWAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() in MySQL 5.6.9. (Bug #14775984)\n\nFor more information, see\nhttp://dev.mysql.com/doc/refman/5.6/en/replication-gtids.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gtid-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gtid-functions.html'),(187,'GET DIAGNOSTICS',24,'Syntax:\nGET [CURRENT] DIAGNOSTICS\n{\n statement_information_item\n [, statement_information_item] ...\n | CONDITION condition_number\n condition_information_item\n [, condition_information_item] ...\n}\n\nstatement_information_item:\n target = statement_information_item_name\n\ncondition_information_item:\n target = condition_information_item_name\n\nstatement_information_item_name:\n NUMBER\n | ROW_COUNT\n\ncondition_information_item_name:\n CLASS_ORIGIN\n | SUBCLASS_ORIGIN\n | RETURNED_SQLSTATE\n | MESSAGE_TEXT\n | MYSQL_ERRNO\n | CONSTRAINT_CATALOG\n | CONSTRAINT_SCHEMA\n | CONSTRAINT_NAME\n | CATALOG_NAME\n | SCHEMA_NAME\n | TABLE_NAME\n | COLUMN_NAME\n | CURSOR_NAME\n\ncondition_number, target:\n (see following discussion)\n\nSQL statements produce diagnostic information that populates the\ndiagnostics area. The GET DIAGNOSTICS statement enables applications to\ninspect this information. It is available as of MySQL 5.6.4. (You can\nalso use SHOW WARNINGS or SHOW ERRORS to see conditions or errors.)\n\nNo special privileges are required to execute GET DIAGNOSTICS.\n\nThe keyword CURRENT means to retrieve information from the current\ndiagnostics area. In MySQL, it has no effect because that is the\ndefault behavior.\n\nGET DIAGNOSTICS is typically used in a handler within a stored program,\nbut it is a MySQL extension that it is permitted outside handler\ncontext to check the execution of any SQL statement. For example, if\nyou invoke the mysql client program, you can enter these statements at\nthe prompt:\n\nmysql> DROP TABLE test.no_such_table;\nERROR 1051 (42S02): Unknown table \'test.no_such_table\'\nmysql> GET DIAGNOSTICS CONDITION 1\n -> @p1 = RETURNED_SQLSTATE, @p2 = MESSAGE_TEXT;\nmysql> SELECT @p1, @p2;\n+-------+------------------------------------+\n| @p1 | @p2 |\n+-------+------------------------------------+\n| 42S02 | Unknown table \'test.no_such_table\' |\n+-------+------------------------------------+\n\nFor a description of the diagnostics area, see\nhttp://dev.mysql.com/doc/refman/5.6/en/diagnostics-area.html. Briefly,\nit contains two kinds of information:\n\no Statement information, such as the number of conditions that occurred\n or the affected-rows count.\n\no Condition information, such as the error code and message. If a\n statement raises multiple conditions, this part of the diagnostics\n area has a condition area for each one. If a statement raises no\n conditions, this part of the diagnostics area is empty.\n\nFor a statement that produces three conditions, the diagnostics area\ncontains statement and condition information like this:\n\nStatement information:\n row count\n ... other statement information items ...\nCondition area list:\n Condition area 1:\n error code for condition 1\n error message for condition 1\n ... other condition information items ...\n Condition area 2:\n error code for condition 2:\n error message for condition 2\n ... other condition information items ...\n Condition area 3:\n error code for condition 3\n error message for condition 3\n ... other condition information items ...\n\nGET DIAGNOSTICS can obtain either statement or condition information,\nbut not both in the same statement:\n\no To obtain statement information, retrieve the desired statement items\n into target variables. This instance of GET DIAGNOSTICS assigns the\n number of available conditions and the rows-affected count to the\n user variables @p1 and @p2:\n\nGET DIAGNOSTICS @p1 = NUMBER, @p2 = ROW_COUNT;\n\no To obtain condition information, specify the condition number and\n retrieve the desired condition items into target variables. This\n instance of GET DIAGNOSTICS assigns the SQLSTATE value and error\n message to the user variables @p3 and @p4:\n\nGET DIAGNOSTICS CONDITION 1\n @p3 = RETURNED_SQLSTATE, @p4 = MESSAGE_TEXT;\n\nThe retrieval list specifies one or more target = item_name\nassignments, separated by commas. Each assignment names a target\nvariable and either a statement_information_item_name or\ncondition_information_item_name designator, depending on whether the\nstatement retrieves statement or condition information.\n\nValid target designators for storing item information can be stored\nprocedure or function parameters, stored program local variables\ndeclared with DECLARE, or user-defined variables.\n\nValid condition_number designators can be stored procedure or function\nparameters, stored program local variables declared with DECLARE,\nuser-defined variables, system variables, or literals. A character\nliteral may include a _charset introducer. A warning occurs if the\ncondition number is not in the range from 1 to the number of condition\nareas that have information. In this case, the warning is added to the\ndiagnostics area without clearing it.\n\nWhen a condition occurs, MySQL does not populate all condition items\nrecognized by GET DIAGNOSTICS. For example:\n\nmysql> GET DIAGNOSTICS CONDITION 1\n -> @p5 = SCHEMA_NAME, @p6 = TABLE_NAME;\nmysql> SELECT @p5, @p6;\n+------+------+\n| @p5 | @p6 |\n+------+------+\n| | |\n+------+------+\n\nIn standard SQL, if there are multiple conditions, the first condition\nrelates to the SQLSTATE value returned for the previous SQL statement.\nIn MySQL, this is not guaranteed. To get the main error, you cannot do\nthis:\n\nGET DIAGNOSTICS CONDITION 1 @errno = MYSQL_ERRNO;\n\nInstead, retrieve the condition count first, then use it to specify\nwhich condition number to inspect:\n\nGET DIAGNOSTICS @cno = NUMBER;\nGET DIAGNOSTICS CONDITION @cno @errno = MYSQL_ERRNO;\n\nFor information about permissible statement and condition information\nitems, and which ones are populated when a condition occurs, see\nhttp://dev.mysql.com/doc/refman/5.6/en/diagnostics-area.html#diagnostic\ns-area-information-items.\n\nHere is an example that uses GET DIAGNOSTICS and an exception handler\nin stored procedure context to assess the outcome of an insert\noperation. If the insert was successful, the procedure uses GET\nDIAGNOSTICS to get the rows-affected count. This shows that you can use\nGET DIAGNOSTICS multiple times to retrieve information about a\nstatement as long as the diagnostics area has not been cleared.\n\nCREATE PROCEDURE do_insert(value INT)\nBEGIN\n -- Declare variables to hold diagnostics area information\n DECLARE code CHAR(5) DEFAULT \'00000\';\n DECLARE msg TEXT;\n DECLARE rows INT;\n DECLARE result TEXT;\n -- Declare exception handler for failed insert\n DECLARE CONTINUE HANDLER FOR SQLEXCEPTION\n BEGIN\n GET DIAGNOSTICS CONDITION 1\n code = RETURNED_SQLSTATE, msg = MESSAGE_TEXT;\n END;\n\n -- Perform the insert\n INSERT INTO t1 (int_col) VALUES(value);\n -- Check whether the insert was successful\n IF code = \'00000\' THEN\n GET DIAGNOSTICS rows = ROW_COUNT;\n SET result = CONCAT(\'insert succeeded, row count = \',rows);\n ELSE\n SET result = CONCAT(\'insert failed, error = \',code,\', message = \',msg);\n END IF;\n -- Say what happened\n SELECT result;\nEND;\n\nSuppose that t1.int_col is an integer column that is declared as NOT\nNULL. The procedure produces these results when invoked to insert\nnon-NULL and NULL values, respectively:\n\nmysql> CALL do_insert(1);\n+---------------------------------+\n| result |\n+---------------------------------+\n| insert succeeded, row count = 1 |\n+---------------------------------+\n\nmysql> CALL do_insert(NULL);\n+-------------------------------------------------------------------------+\n| result |\n+-------------------------------------------------------------------------+\n| insert failed, error = 23000, message = Column \'int_col\' cannot be null |\n+-------------------------------------------------------------------------+\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/get-diagnostics.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/get-diagnostics.html'),(188,'NOT REGEXP',38,'Syntax:\nexpr NOT REGEXP pat, expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/regexp.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/regexp.html'),(189,'LEAVE',24,'Syntax:\nLEAVE label\n\nThis statement is used to exit the flow control construct that has the\ngiven label. If the label is for the outermost stored program block,\nLEAVE exits the program.\n\nLEAVE can be used within BEGIN ... END or loop constructs (LOOP,\nREPEAT, WHILE).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/leave.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/leave.html'),(190,'NOT IN',20,'Syntax:\nexpr NOT IN (value,...)\n\nThis is the same as NOT (expr IN (value,...)).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(191,'X',11,'X(p)\n\nST_X() and X() are synonyms. For more information, see the description\nof ST_X().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-point-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-point-property-functions.html'),(192,'FOUND_ROWS',17,'Syntax:\nFOUND_ROWS()\n\nA SELECT statement may include a LIMIT clause to restrict the number of\nrows the server returns to the client. In some cases, it is desirable\nto know how many rows the statement would have returned without the\nLIMIT, but without running the statement again. To obtain this row\ncount, include an SQL_CALC_FOUND_ROWS option in the SELECT statement,\nand then invoke FOUND_ROWS() afterward:\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();\n','http://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(193,'CROSSES',31,'Crosses(g1, g2)\n\nST_Crosses() and Crosses() are synonyms. For more information, see the\ndescription of ST_Crosses().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(194,'ST_UNION',26,'ST_Union(g1, g2)\n\nReturns a geometry that represents the point set union of the geometry\nvalues g1 and g2. If any argument is NULL, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html\n\n','mysql> SET @g1 = ST_GeomFromText(\'LineString(1 1, 3 3)\');\nmysql> SET @g2 = ST_GeomFromText(\'LineString(1 3, 3 1)\');\nmysql> SELECT ST_AsText(ST_Union(@g1, @g2));\n+--------------------------------------+\n| ST_AsText(ST_Union(@g1, @g2)) |\n+--------------------------------------+\n| MULTILINESTRING((1 1,3 3),(3 1,1 3)) |\n+--------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html'),(195,'BIT_XOR',16,'Syntax:\nBIT_XOR(expr)\n\nReturns the bitwise XOR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n\nIf there are no matching rows, BIT_XOR() returns a neutral value (all\nbits set to 0).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(196,'FLUSH',27,'Syntax:\nFLUSH [NO_WRITE_TO_BINLOG | LOCAL] {\n flush_option [, flush_option] ...\n | tables_option\n}\n\nflush_option: {\n BINARY LOGS\n | DES_KEY_FILE\n | ENGINE LOGS\n | ERROR LOGS\n | GENERAL LOGS\n | HOSTS\n | LOGS\n | PRIVILEGES\n | QUERY CACHE\n | RELAY LOGS\n | SLOW LOGS\n | STATUS\n | USER_RESOURCES\n}\n\ntables_option: {\n TABLES\n | TABLES tbl_name [, tbl_name] ...\n | TABLES WITH READ LOCK\n | TABLES tbl_name [, tbl_name] ... WITH READ LOCK\n | TABLES tbl_name [, tbl_name] ... FOR EXPORT\n}\n\nThe FLUSH statement has several variant forms that clear or reload\nvarious internal caches, flush tables, or acquire locks. To execute\nFLUSH, you must have the RELOAD privilege. Specific flush options might\nrequire additional privileges, as described later.\n\n*Note*:\n\nIt is not possible to issue FLUSH statements within stored functions or\ntriggers. However, you may use FLUSH in stored procedures, so long as\nthese are not called from stored functions or triggers. See\nhttp://dev.mysql.com/doc/refman/5.6/en/stored-program-restrictions.html\n.\n\nBy default, the server writes FLUSH statements to the binary log so\nthat they replicate to replication slaves. To suppress logging, specify\nthe optional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\n*Note*:\n\nFLUSH LOGS, FLUSH TABLES WITH READ LOCK (with or without a table list),\nand FLUSH TABLES tbl_name ... FOR EXPORT are not written to the binary\nlog in any case because they would cause problems if replicated to a\nslave.\n\nThe FLUSH statement causes an implicit commit. See\nhttp://dev.mysql.com/doc/refman/5.6/en/implicit-commit.html.\n\nThe mysqladmin utility provides a command-line interface to some flush\noperations, using commands such as flush-hosts, flush-logs,\nflush-privileges, flush-status, and flush-tables. See\nhttp://dev.mysql.com/doc/refman/5.6/en/mysqladmin.html.\n\nSending a SIGHUP signal to the server causes several flush operations\nto occur that are similar to various forms of the FLUSH statement. See\nhttp://dev.mysql.com/doc/refman/5.6/en/server-signal-response.html.\n\nThe RESET statement is similar to FLUSH. See [HELP RESET], for\ninformation about using the RESET statement with replication.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/flush.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/flush.html'),(197,'BEGIN END',24,'Syntax:\n[begin_label:] BEGIN\n [statement_list]\nEND [end_label]\n\nBEGIN ... END syntax is used for writing compound statements, which can\nappear within stored programs (stored procedures and functions,\ntriggers, and events). A compound statement can contain multiple\nstatements, enclosed by the BEGIN and END keywords. statement_list\nrepresents a list of one or more statements, each terminated by a\nsemicolon (;) statement delimiter. The statement_list itself is\noptional, so the empty compound statement (BEGIN END) is legal.\n\nBEGIN ... END blocks can be nested.\n\nUse of multiple statements requires that a client is able to send\nstatement strings containing the ; statement delimiter. In the mysql\ncommand-line client, this is handled with the delimiter command.\nChanging the ; end-of-statement delimiter (for example, to //) permit ;\nto be used in a program body. For an example, see\nhttp://dev.mysql.com/doc/refman/5.6/en/stored-programs-defining.html.\n\nA BEGIN ... END block can be labeled. See [HELP labels].\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/begin-end.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/begin-end.html'),(198,'SHOW PROCEDURE STATUS',27,'Syntax:\nSHOW PROCEDURE STATUS\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement is a MySQL extension. It returns characteristics of a\nstored procedure, such as the database, name, type, creator, creation\nand modification dates, and character set information. A similar\nstatement, SHOW FUNCTION STATUS, displays information about stored\nfunctions (see [HELP SHOW FUNCTION STATUS]).\n\nThe LIKE clause, if present, indicates which procedure or function\nnames to match. The WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-procedure-status.html\n\n','mysql> SHOW PROCEDURE STATUS LIKE \'sp1\'\\G\n*************************** 1. row ***************************\n Db: test\n Name: sp1\n Type: PROCEDURE\n Definer: testuser@localhost\n Modified: 2004-08-03 15:29:37\n Created: 2004-08-03 15:29:37\n Security_type: DEFINER\n Comment:\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n','http://dev.mysql.com/doc/refman/5.6/en/show-procedure-status.html'),(199,'STDDEV_POP',16,'Syntax:\nSTDDEV_POP(expr)\n\nReturns the population standard deviation of expr (the square root of\nVAR_POP()). You can also use STD() or STDDEV(), which are equivalent\nbut not standard SQL.\n\nIf there are no matching rows, STDDEV_POP() returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(200,'SHOW CHARACTER SET',27,'Syntax:\nSHOW CHARACTER SET\n [LIKE \'pattern\' | WHERE expr]\n\nThe SHOW CHARACTER SET statement shows all available character sets.\nThe LIKE clause, if present, indicates which character set names to\nmatch. The WHERE clause can be given to select rows using more general\nconditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.6/en/extended-show.html. For example:\n\nmysql> SHOW CHARACTER SET LIKE \'latin%\';\n+---------+-----------------------------+-------------------+--------+\n| Charset | Description | Default collation | Maxlen |\n+---------+-----------------------------+-------------------+--------+\n| latin1 | cp1252 West European | latin1_swedish_ci | 1 |\n| latin2 | ISO 8859-2 Central European | latin2_general_ci | 1 |\n| latin5 | ISO 8859-9 Turkish | latin5_turkish_ci | 1 |\n| latin7 | ISO 8859-13 Baltic | latin7_general_ci | 1 |\n+---------+-----------------------------+-------------------+--------+\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-character-set.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-character-set.html'),(201,'INTERSECTS',7,'Intersects(g1, g2)\n\nMBRIntersects() and Intersects() are synonyms. For more information,\nsee the description of MBRIntersects().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(202,'LOOP',24,'Syntax:\n[begin_label:] LOOP\n statement_list\nEND LOOP [end_label]\n\nLOOP implements a simple loop construct, enabling repeated execution of\nthe statement list, which consists of one or more statements, each\nterminated by a semicolon (;) statement delimiter. The statements\nwithin the loop are repeated until the loop is terminated. Usually,\nthis is accomplished with a LEAVE statement. Within a stored function,\nRETURN can also be used, which exits the function entirely.\n\nNeglecting to include a loop-termination statement results in an\ninfinite loop.\n\nA LOOP statement can be labeled. For the rules regarding label use, see\n[HELP labels].\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/loop.html\n\n','CREATE PROCEDURE doiterate(p1 INT)\nBEGIN\n label1: LOOP\n SET p1 = p1 + 1;\n IF p1 < 10 THEN\n ITERATE label1;\n END IF;\n LEAVE label1;\n END LOOP label1;\n SET @x = p1;\nEND;\n','http://dev.mysql.com/doc/refman/5.6/en/loop.html'),(203,'GREATEST',20,'Syntax:\nGREATEST(value1,value2,...)\n\nWith two or more arguments, returns the largest (maximum-valued)\nargument. The arguments are compared using the same rules as for\nLEAST().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT GREATEST(2,0);\n -> 2\nmysql> SELECT GREATEST(34.0,3.0,5.0,767.0);\n -> 767.0\nmysql> SELECT GREATEST(\'B\',\'A\',\'C\');\n -> \'C\'\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(204,'ST_CONTAINS',31,'ST_Contains(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 completely contains g2. This\ntests the opposite relationship as ST_Within().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(205,'BIT_AND',16,'Syntax:\nBIT_AND(expr)\n\nReturns the bitwise AND of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n\nIf there are no matching rows, BIT_AND() returns a neutral value (all\nbits set to 1).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(206,'SECOND',32,'Syntax:\nSECOND(time)\n\nReturns the second for time, in the range 0 to 59.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT SECOND(\'10:05:03\');\n -> 3\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(207,'MBRCONTAINS',7,'MBRContains(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangle of g1\ncontains the minimum bounding rectangle of g2. This tests the opposite\nrelationship as MBRWithin().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','mysql> SET @g1 = ST_GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = ST_GeomFromText(\'Point(1 1)\');\nmysql> SELECT MBRContains(@g1,@g2), MBRWithin(@g2,@g1);\n+----------------------+--------------------+\n| MBRContains(@g1,@g2) | MBRWithin(@g2,@g1) |\n+----------------------+--------------------+\n| 1 | 1 |\n+----------------------+--------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(208,'COT',3,'Syntax:\nCOT(X)\n\nReturns the cotangent of X.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT COT(12);\n -> -1.5726734063977\nmysql> SELECT COT(0);\n -> out-of-range error\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(209,'SHOW CREATE EVENT',27,'Syntax:\nSHOW CREATE EVENT event_name\n\nThis statement displays the CREATE EVENT statement needed to re-create\na given event. It requires the EVENT privilege for the database from\nwhich the event is to be shown. For example (using the same event\ne_daily defined and then altered in [HELP SHOW EVENTS]):\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-create-event.html\n\n','mysql> SHOW CREATE EVENT test.e_daily\\G\n*************************** 1. row ***************************\n Event: e_daily\n sql_mode:\n time_zone: SYSTEM\n Create Event: CREATE EVENT `e_daily`\n ON SCHEDULE EVERY 1 DAY\n STARTS CURRENT_TIMESTAMP + INTERVAL 6 HOUR\n ON COMPLETION NOT PRESERVE\n ENABLE\n COMMENT \'Saves total number of sessions then\n clears the table each day\'\n DO BEGIN\n INSERT INTO site_activity.totals (time, total)\n SELECT CURRENT_TIMESTAMP, COUNT(*)\n FROM site_activity.sessions;\n DELETE FROM site_activity.sessions;\n END\ncharacter_set_client: latin1\ncollation_connection: latin1_swedish_ci\n Database Collation: latin1_swedish_ci\n','http://dev.mysql.com/doc/refman/5.6/en/show-create-event.html'),(210,'OR',15,'Syntax:\nOR, ||\n\nLogical OR. When both operands are non-NULL, the result is 1 if any\noperand is nonzero, and 0 otherwise. With a NULL operand, the result is\n1 if the other operand is nonzero, and NULL otherwise. If both operands\nare NULL, the result is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/logical-operators.html\n\n','mysql> SELECT 1 OR 1;\n -> 1\nmysql> SELECT 1 OR 0;\n -> 1\nmysql> SELECT 0 OR 0;\n -> 0\nmysql> SELECT 0 OR NULL;\n -> NULL\nmysql> SELECT 1 OR NULL;\n -> 1\n','http://dev.mysql.com/doc/refman/5.6/en/logical-operators.html'),(211,'LOAD_FILE',38,'Syntax:\nLOAD_FILE(file_name)\n\nReads the file and returns the file contents as a string. To use this\nfunction, the file must be located on the server host, you must specify\nthe full path name to the file, and you must have the FILE privilege.\nThe file must be readable by all and its size less than\nmax_allowed_packet bytes. If the secure_file_priv system variable is\nset to a nonempty directory name, the file to be loaded must be located\nin that directory.\n\nIf the file does not exist or cannot be read because one of the\npreceding conditions is not satisfied, the function returns NULL.\n\nThe character_set_filesystem system variable controls interpretation of\nfile names that are given as literal strings.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> UPDATE t\n SET blob_col=LOAD_FILE(\'/tmp/picture\')\n WHERE id=1;\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(212,'POINTFROMTEXT',4,'PointFromText(wkt[, srid])\n\nST_PointFromText() and PointFromText() are synonyms. For more\ninformation, see the description of ST_PointFromText().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(213,'DATE_FORMAT',32,'Syntax:\nDATE_FORMAT(date,format)\n\nFormats the date value according to the format string.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DATE_FORMAT(\'2009-10-04 22:23:00\', \'%W %M %Y\');\n -> \'Sunday October 2009\'\nmysql> SELECT DATE_FORMAT(\'2007-10-04 22:23:00\', \'%H:%i:%s\');\n -> \'22:23:00\'\nmysql> SELECT DATE_FORMAT(\'1900-10-04 22:23:00\',\n -> \'%D %y %a %d %m %b %j\');\n -> \'4th 00 Thu 04 10 Oct 277\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n -> \'%H %k %I %r %T %S %w\');\n -> \'22 22 10 10:23:00 PM 22:23:00 00 6\'\nmysql> SELECT DATE_FORMAT(\'1999-01-01\', \'%X %V\');\n -> \'1998 52\'\nmysql> SELECT DATE_FORMAT(\'2006-06-00\', \'%d\');\n -> \'00\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(214,'YEAR',32,'Syntax:\nYEAR(date)\n\nReturns the year for date, in the range 1000 to 9999, or 0 for the\n\"zero\" date.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT YEAR(\'1987-01-01\');\n -> 1987\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(215,'IS NULL',20,'Syntax:\nIS NULL\n\nTests whether a value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NULL, 0 IS NULL, NULL IS NULL;\n -> 0, 0, 1\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(216,'ALTER SERVER',40,'Syntax:\nALTER SERVER server_name\n OPTIONS (option [, option] ...)\n\nAlters the server information for server_name, adjusting any of the\noptions permitted in the CREATE SERVER statement. The corresponding\nfields in the mysql.servers table are updated accordingly. This\nstatement requires the SUPER privilege.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/alter-server.html\n\n','ALTER SERVER s OPTIONS (USER \'sally\');\n','http://dev.mysql.com/doc/refman/5.6/en/alter-server.html'),(217,'RESIGNAL',24,'Syntax:\nRESIGNAL [condition_value]\n [SET signal_information_item\n [, signal_information_item] ...]\n\ncondition_value:\n SQLSTATE [VALUE] sqlstate_value\n | condition_name\n\nsignal_information_item:\n condition_information_item_name = simple_value_specification\n\ncondition_information_item_name:\n CLASS_ORIGIN\n | SUBCLASS_ORIGIN\n | MESSAGE_TEXT\n | MYSQL_ERRNO\n | CONSTRAINT_CATALOG\n | CONSTRAINT_SCHEMA\n | CONSTRAINT_NAME\n | CATALOG_NAME\n | SCHEMA_NAME\n | TABLE_NAME\n | COLUMN_NAME\n | CURSOR_NAME\n\ncondition_name, simple_value_specification:\n (see following discussion)\n\nRESIGNAL passes on the error condition information that is available\nduring execution of a condition handler within a compound statement\ninside a stored procedure or function, trigger, or event. RESIGNAL may\nchange some or all information before passing it on. RESIGNAL is\nrelated to SIGNAL, but instead of originating a condition as SIGNAL\ndoes, RESIGNAL relays existing condition information, possibly after\nmodifying it.\n\nRESIGNAL makes it possible to both handle an error and return the error\ninformation. Otherwise, by executing an SQL statement within the\nhandler, information that caused the handler\'s activation is destroyed.\nRESIGNAL also can make some procedures shorter if a given handler can\nhandle part of a situation, then pass the condition \"up the line\" to\nanother handler.\n\nNo special privileges are required to execute the RESIGNAL statement.\n\nAll forms of RESIGNAL require that the current context be a condition\nhandler. Otherwise, RESIGNAL is illegal and a RESIGNAL when handler not\nactive error occurs.\n\nTo retrieve information from the diagnostics area, use the GET\nDIAGNOSTICS statement (see [HELP GET DIAGNOSTICS]). For information\nabout the diagnostics area, see\nhttp://dev.mysql.com/doc/refman/5.6/en/diagnostics-area.html.\n\nFor condition_value and signal_information_item, the definitions and\nrules are the same for RESIGNAL as for SIGNAL. For example, the\ncondition_value can be an SQLSTATE value, and the value can indicate\nerrors, warnings, or \"not found.\" For additional information, see [HELP\nSIGNAL].\n\nThe RESIGNAL statement takes condition_value and SET clauses, both of\nwhich are optional. This leads to several possible uses:\n\no RESIGNAL alone:\n\nRESIGNAL;\n\no RESIGNAL with new signal information:\n\nRESIGNAL SET signal_information_item [, signal_information_item] ...;\n\no RESIGNAL with a condition value and possibly new signal information:\n\nRESIGNAL condition_value\n [SET signal_information_item [, signal_information_item] ...];\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/resignal.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/resignal.html'),(218,'ST_NUMPOINTS',13,'ST_NumPoints(ls)\n\nReturns the number of Point objects in the LineString value ls. If the\nargument is NULL or an empty geometry, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_NumPoints(ST_GeomFromText(@ls));\n+------------------------------------+\n| ST_NumPoints(ST_GeomFromText(@ls)) |\n+------------------------------------+\n| 3 |\n+------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(219,'TIME FUNCTION',32,'Syntax:\nTIME(expr)\n\nExtracts the time part of the time or datetime expression expr and\nreturns it as a string.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TIME(\'2003-12-31 01:02:03\');\n -> \'01:02:03\'\nmysql> SELECT TIME(\'2003-12-31 01:02:03.000123\');\n -> \'01:02:03.000123\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(220,'DATE_ADD',32,'Syntax:\nDATE_ADD(date,INTERVAL expr unit), DATE_SUB(date,INTERVAL expr unit)\n\nThese functions perform date arithmetic. The date argument specifies\nthe starting date or datetime value. expr is an expression specifying\nthe interval value to be added or subtracted from the starting date.\nexpr is a string; it may start with a - for negative intervals. unit is\na keyword indicating the units in which the expression should be\ninterpreted.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT \'2008-12-31 23:59:59\' + INTERVAL 1 SECOND;\n -> \'2009-01-01 00:00:00\'\nmysql> SELECT INTERVAL 1 DAY + \'2008-12-31\';\n -> \'2009-01-01\'\nmysql> SELECT \'2005-01-01\' - INTERVAL 1 SECOND;\n -> \'2004-12-31 23:59:59\'\nmysql> SELECT DATE_ADD(\'2000-12-31 23:59:59\',\n -> INTERVAL 1 SECOND);\n -> \'2001-01-01 00:00:00\'\nmysql> SELECT DATE_ADD(\'2010-12-31 23:59:59\',\n -> INTERVAL 1 DAY);\n -> \'2011-01-01 23:59:59\'\nmysql> SELECT DATE_ADD(\'2100-12-31 23:59:59\',\n -> INTERVAL \'1:1\' MINUTE_SECOND);\n -> \'2101-01-01 00:01:00\'\nmysql> SELECT DATE_SUB(\'2005-01-01 00:00:00\',\n -> INTERVAL \'1 1:1:1\' DAY_SECOND);\n -> \'2004-12-30 22:58:59\'\nmysql> SELECT DATE_ADD(\'1900-01-01 00:00:00\',\n -> INTERVAL \'-1 10\' DAY_HOUR);\n -> \'1899-12-30 14:00:00\'\nmysql> SELECT DATE_SUB(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\nmysql> SELECT DATE_ADD(\'1992-12-31 23:59:59.000002\',\n -> INTERVAL \'1.999999\' SECOND_MICROSECOND);\n -> \'1993-01-01 00:00:01.000001\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(221,'ST_ENVELOPE',37,'ST_Envelope(g)\n\nReturns the minimum bounding rectangle (MBR) for the geometry value g,\nor NULL if the argument is NULL. The result is returned as a Polygon\nvalue that is defined by the corner points of the bounding box:\n\nPOLYGON((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','mysql> SELECT ST_AsText(ST_Envelope(ST_GeomFromText(\'LineString(1 1,2 2)\')));\n+----------------------------------------------------------------+\n| ST_AsText(ST_Envelope(ST_GeomFromText(\'LineString(1 1,2 2)\'))) |\n+----------------------------------------------------------------+\n| POLYGON((1 1,2 1,2 2,1 2,1 1)) |\n+----------------------------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(222,'LIKE',38,'Syntax:\nexpr LIKE pat [ESCAPE \'escape_char\']\n\nPattern matching using an SQL pattern. Returns 1 (TRUE) or 0 (FALSE).\nIf either expr or pat is NULL, the result is NULL.\n\nThe pattern need not be a literal string. For example, it can be\nspecified as a string expression or table column.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-comparison-functions.html\n\n','mysql> SELECT \'David!\' LIKE \'David_\';\n -> 1\nmysql> SELECT \'David!\' LIKE \'%D%v%\';\n -> 1\n','http://dev.mysql.com/doc/refman/5.6/en/string-comparison-functions.html'),(223,'MULTIPOINT',25,'MultiPoint(pt [, pt2] ...)\n\nConstructs a MultiPoint value using Point or WKB Point arguments.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html'),(224,'>>',19,'Syntax:\n>>\n\nShifts a longlong (BIGINT) number to the right.\n\nThe result is an unsigned 64-bit integer. The value is truncated to 64\nbits. In particular, if the shift count is greater or equal to the\nwidth of an unsigned 64-bit number, the result is zero.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/bit-functions.html\n\n','mysql> SELECT 4 >> 2;\n -> 1\n','http://dev.mysql.com/doc/refman/5.6/en/bit-functions.html'),(225,'FETCH',24,'Syntax:\nFETCH [[NEXT] FROM] cursor_name INTO var_name [, var_name] ...\n\nThis statement fetches the next row for the SELECT statement associated\nwith the specified cursor (which must be open), and advances the cursor\npointer. If a row exists, the fetched columns are stored in the named\nvariables. The number of columns retrieved by the SELECT statement must\nmatch the number of output variables specified in the FETCH statement.\n\nIf no more rows are available, a No Data condition occurs with SQLSTATE\nvalue \'02000\'. To detect this condition, you can set up a handler for\nit (or for a NOT FOUND condition). For an example, see\nhttp://dev.mysql.com/doc/refman/5.6/en/cursors.html.\n\nBe aware that another operation, such as a SELECT or another FETCH, may\nalso cause the handler to execute by raising the same condition. If it\nis necessary to distinguish which operation raised the condition, place\nthe operation within its own BEGIN ... END block so that it can be\nassociated with its own handler.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/fetch.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/fetch.html'),(226,'TRUE FALSE',30,'The constants TRUE and FALSE evaluate to 1 and 0, respectively. The\nconstant names can be written in any lettercase.\n\nmysql> SELECT TRUE, true, FALSE, false;\n -> 1, 1, 0, 0\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/boolean-literals.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/boolean-literals.html'),(227,'MBRWITHIN',7,'MBRWithin(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangle of g1\nis within the minimum bounding rectangle of g2. This tests the opposite\nrelationship as MBRContains().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','mysql> SET @g1 = ST_GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = ST_GeomFromText(\'Polygon((0 0,0 5,5 5,5 0,0 0))\');\nmysql> SELECT MBRWithin(@g1,@g2), MBRWithin(@g2,@g1);\n+--------------------+--------------------+\n| MBRWithin(@g1,@g2) | MBRWithin(@g2,@g1) |\n+--------------------+--------------------+\n| 1 | 0 |\n+--------------------+--------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(228,'SESSION_USER',17,'Syntax:\nSESSION_USER()\n\nSESSION_USER() is a synonym for USER().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(229,'SHOW CREATE FUNCTION',27,'Syntax:\nSHOW CREATE FUNCTION func_name\n\nThis statement is similar to SHOW CREATE PROCEDURE but for stored\nfunctions. See [HELP SHOW CREATE PROCEDURE].\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-create-function.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-create-function.html'),(230,'STR_TO_DATE',32,'Syntax:\nSTR_TO_DATE(str,format)\n\nThis is the inverse of the DATE_FORMAT() function. It takes a string\nstr and a format string format. STR_TO_DATE() returns a DATETIME value\nif the format string contains both date and time parts, or a DATE or\nTIME value if the string contains only date or time parts. If the date,\ntime, or datetime value extracted from str is illegal, STR_TO_DATE()\nreturns NULL and produces a warning.\n\nThe server scans str attempting to match format to it. The format\nstring can contain literal characters and format specifiers beginning\nwith %. Literal characters in format must match literally in str.\nFormat specifiers in format must match a date or time part in str. For\nthe specifiers that can be used in format, see the DATE_FORMAT()\nfunction description.\n\nmysql> SELECT STR_TO_DATE(\'01,5,2013\',\'%d,%m,%Y\');\n -> \'2013-05-01\'\nmysql> SELECT STR_TO_DATE(\'May 1, 2013\',\'%M %d,%Y\');\n -> \'2013-05-01\'\n\nScanning starts at the beginning of str and fails if format is found\nnot to match. Extra characters at the end of str are ignored.\n\nmysql> SELECT STR_TO_DATE(\'a09:30:17\',\'a%h:%i:%s\');\n -> \'09:30:17\'\nmysql> SELECT STR_TO_DATE(\'a09:30:17\',\'%h:%i:%s\');\n -> NULL\nmysql> SELECT STR_TO_DATE(\'09:30:17a\',\'%h:%i:%s\');\n -> \'09:30:17\'\n\nUnspecified date or time parts have a value of 0, so incompletely\nspecified values in str produce a result with some or all parts set to\n0:\n\nmysql> SELECT STR_TO_DATE(\'abc\',\'abc\');\n -> \'0000-00-00\'\nmysql> SELECT STR_TO_DATE(\'9\',\'%m\');\n -> \'0000-09-00\'\nmysql> SELECT STR_TO_DATE(\'9\',\'%s\');\n -> \'00:00:09\'\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(231,'Y',11,'Y(p)\n\nST_Y() and Y() are synonyms. For more information, see the description\nof ST_Y().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-point-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-point-property-functions.html'),(232,'CHECKSUM TABLE',21,'Syntax:\nCHECKSUM TABLE tbl_name [, tbl_name] ... [QUICK | EXTENDED]\n\nCHECKSUM TABLE reports a checksum for the contents of a table. You can\nuse this statement to verify that the contents are the same before and\nafter a backup, rollback, or other operation that is intended to put\nthe data back to a known state.\n\nThis statement requires the SELECT privilege for the table.\n\nThis statement is not supported for views. If you run CHECKSUM TABLE\nagainst a view, the Checksum value is always NULL, and a warning is\nreturned.\n\nFor a nonexistent table, CHECKSUM TABLE returns NULL and generates a\nwarning.\n\nDuring the checksum operation, the table is locked with a read lock for\nInnoDB and MyISAM.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/checksum-table.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/checksum-table.html'),(233,'NUMINTERIORRINGS',2,'NumInteriorRings(poly)\n\nST_NumInteriorRings() and NumInteriorRings() are synonyms. For more\ninformation, see the description of ST_NumInteriorRings().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(234,'INTERIORRINGN',2,'InteriorRingN(poly, N)\n\nST_InteriorRingN() and InteriorRingN() are synonyms. For more\ninformation, see the description of ST_InteriorRingN().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(235,'UTC_TIME',32,'Syntax:\nUTC_TIME, UTC_TIME([fsp])\n\nReturns the current UTC time as a value in \'HH:MM:SS\' or HHMMSS format,\ndepending on whether the function is used in a string or numeric\ncontext.\n\nAs of MySQL 5.6.4, if the fsp argument is given to specify a fractional\nseconds precision from 0 to 6, the return value includes a fractional\nseconds part of that many digits. Before 5.6.4, any argument is\nignored.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_TIME(), UTC_TIME() + 0;\n -> \'18:07:53\', 180753.000000\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(236,'IS_IPV4_COMPAT',14,'Syntax:\nIS_IPV4_COMPAT(expr)\n\nThis function takes an IPv6 address represented in numeric form as a\nbinary string, as returned by INET6_ATON(). It returns 1 if the\nargument is a valid IPv4-compatible IPv6 address, 0 otherwise.\nIPv4-compatible addresses have the form ::ipv4_address.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT IS_IPV4_COMPAT(INET6_ATON(\'::10.0.5.9\'));\n -> 1\nmysql> SELECT IS_IPV4_COMPAT(INET6_ATON(\'::ffff:10.0.5.9\'));\n -> 0\n','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(237,'DROP FUNCTION',40,'The DROP FUNCTION statement is used to drop stored functions and\nuser-defined functions (UDFs):\n\no For information about dropping stored functions, see [HELP DROP\n PROCEDURE].\n\no For information about dropping user-defined functions, see [HELP DROP\n FUNCTION UDF].\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/drop-function.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/drop-function.html'),(238,'ST_POLYFROMTEXT',4,'ST_PolyFromText(wkt[, srid]), ST_PolygonFromText(wkt[, srid])\n\nConstructs a Polygon value using its WKT representation and SRID.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(239,'STDDEV',16,'Syntax:\nSTDDEV(expr)\n\nReturns the population standard deviation of expr. STDDEV() is a\nsynonym for the standard SQL function STDDEV_POP(), provided for\ncompatibility with Oracle.\n\nIf there are no matching rows, STDDEV() returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(240,'PERIOD_ADD',32,'Syntax:\nPERIOD_ADD(P,N)\n\nAdds N months to period P (in the format YYMM or YYYYMM). Returns a\nvalue in the format YYYYMM.\n\n*Note*:\n\nThe period argument P is not a date value.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT PERIOD_ADD(200801,2);\n -> 200803\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(241,'RIGHT',38,'Syntax:\nRIGHT(str,len)\n\nReturns the rightmost len characters from the string str, or NULL if\nany argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT RIGHT(\'foobarbar\', 4);\n -> \'rbar\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(242,'DROP TABLESPACE',40,'Syntax:\nDROP TABLESPACE tablespace_name\n ENGINE [=] engine_name\n\nThis statement drops a tablespace that was previously created using\nCREATE TABLESPACE (see [HELP CREATE TABLESPACE]).\n\n*Important*:\n\nThe tablespace to be dropped must not contain any data files; in other\nwords, before you can drop a tablespace, you must first drop each of\nits data files using ALTER TABLESPACE ... DROP DATAFILE (see [HELP\nALTER TABLESPACE]).\n\nThe ENGINE clause (required) specifies the storage engine used by the\ntablespace. Currently, the only accepted values for engine_name are NDB\nand NDBCLUSTER.\n\nDROP TABLESPACE is useful only with Disk Data storage for NDB Cluster.\nSee\nhttp://dev.mysql.com/doc/refman/5.6/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/drop-tablespace.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/drop-tablespace.html'),(243,'CHECK TABLE',21,'Syntax:\nCHECK TABLE tbl_name [, tbl_name] ... [option] ...\n\noption = {\n FOR UPGRADE\n | QUICK\n | FAST\n | MEDIUM\n | EXTENDED\n | CHANGED\n}\n\nCHECK TABLE checks a table or tables for errors. For MyISAM tables, the\nkey statistics are updated as well. CHECK TABLE can also check views\nfor problems, such as tables that are referenced in the view definition\nthat no longer exist.\n\nTo check a table, you must have some privilege for it.\n\nCHECK TABLE works for InnoDB, MyISAM, ARCHIVE, and CSV tables.\n\nBefore running CHECK TABLE on InnoDB tables, see\nhttp://dev.mysql.com/doc/refman/5.6/en/check-table.html#check-table-inn\nodb.\n\nCHECK TABLE is supported for partitioned tables, and you can use ALTER\nTABLE ... CHECK PARTITION to check one or more partitions; for more\ninformation, see [HELP ALTER TABLE], and\nhttp://dev.mysql.com/doc/refman/5.6/en/partitioning-maintenance.html.\n\nIn MySQL 5.6.11 only, gtid_next must be set to AUTOMATIC before issuing\nthis statement. (Bug #16062608, Bug #16715809, Bug #69045)\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/check-table.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/check-table.html'),(244,'BIN',38,'Syntax:\nBIN(N)\n\nReturns a string representation of the binary value of N, where N is a\nlonglong (BIGINT) number. This is equivalent to CONV(N,10,2). Returns\nNULL if N is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT BIN(12);\n -> \'1100\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(245,'MULTILINESTRING',25,'MultiLineString(ls [, ls] ...)\n\nConstructs a MultiLineString value using LineString or WKB LineString\narguments.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html'),(246,'SHOW RELAYLOG EVENTS',27,'Syntax:\nSHOW RELAYLOG EVENTS\n [IN \'log_name\']\n [FROM pos]\n [LIMIT [offset,] row_count]\n\nShows the events in the relay log of a replication slave. If you do not\nspecify \'log_name\', the first relay log is displayed. This statement\nhas no effect on the master.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-relaylog-events.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-relaylog-events.html'),(247,'MPOINTFROMTEXT',4,'MPointFromText(wkt[, srid]), MultiPointFromText(wkt[, srid])\n\nConstructs a MultiPoint value using its WKT representation and SRID.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(248,'SUBSTR',38,'Syntax:\nSUBSTR(str,pos), SUBSTR(str FROM pos), SUBSTR(str,pos,len), SUBSTR(str\nFROM pos FOR len)\n\nSUBSTR() is a synonym for SUBSTRING().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(249,'CHAR',23,'[NATIONAL] CHAR[(M)] [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length in\ncharacters. The range of M is 0 to 255. If M is omitted, the length is\n1.\n\n*Note*:\n\nTrailing spaces are removed when CHAR values are retrieved unless the\nPAD_CHAR_TO_FULL_LENGTH SQL mode is enabled.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html'),(250,'COUNT DISTINCT',16,'Syntax:\nCOUNT(DISTINCT expr,[expr...])\n\nReturns a count of the number of rows with different non-NULL expr\nvalues.\n\nIf there are no matching rows, COUNT(DISTINCT) returns 0.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','mysql> SELECT COUNT(DISTINCT results) FROM student;\n','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(251,'SHOW CREATE VIEW',27,'Syntax:\nSHOW CREATE VIEW view_name\n\nThis statement shows the CREATE VIEW statement that creates the named\nview.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-create-view.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-create-view.html'),(252,'INTERVAL',20,'Syntax:\nINTERVAL(N,N1,N2,N3,...)\n\nReturns 0 if N < N1, 1 if N < N2 and so on or -1 if N is NULL. All\narguments are treated as integers. It is required that N1 < N2 < N3 <\n... < Nn for this function to work correctly. This is because a binary\nsearch is used (very fast).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200);\n -> 3\nmysql> SELECT INTERVAL(10, 1, 10, 100, 1000);\n -> 2\nmysql> SELECT INTERVAL(22, 23, 30, 44, 200);\n -> 0\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(253,'FROM_DAYS',32,'Syntax:\nFROM_DAYS(N)\n\nGiven a day number N, returns a DATE value.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT FROM_DAYS(730669);\n -> \'2000-07-03\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(254,'ALTER PROCEDURE',40,'Syntax:\nALTER PROCEDURE proc_name [characteristic ...]\n\ncharacteristic:\n COMMENT \'string\'\n | LANGUAGE SQL\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n\nThis statement can be used to change the characteristics of a stored\nprocedure. More than one change may be specified in an ALTER PROCEDURE\nstatement. However, you cannot change the parameters or body of a\nstored procedure using this statement; to make such changes, you must\ndrop and re-create the procedure using DROP PROCEDURE and CREATE\nPROCEDURE.\n\nYou must have the ALTER ROUTINE privilege for the procedure. By\ndefault, that privilege is granted automatically to the procedure\ncreator. This behavior can be changed by disabling the\nautomatic_sp_privileges system variable. See\nhttp://dev.mysql.com/doc/refman/5.6/en/stored-routines-privileges.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/alter-procedure.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/alter-procedure.html'),(255,'BIT_COUNT',19,'Syntax:\nBIT_COUNT(N)\n\nReturns the number of bits that are set in the argument N as an\nunsigned 64-bit integer, or NULL if the argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/bit-functions.html\n\n','mysql> SELECT BIT_COUNT(29), BIT_COUNT(b\'101010\');\n -> 4, 3\n','http://dev.mysql.com/doc/refman/5.6/en/bit-functions.html'),(256,'ST_POINTFROMWKB',33,'ST_PointFromWKB(wkb[, srid])\n\nConstructs a Point value using its WKB representation and SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(257,'ST_WITHIN',31,'ST_Within(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially within g2. This\ntests the opposite relationship as ST_Contains().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(258,'ACOS',3,'Syntax:\nACOS(X)\n\nReturns the arc cosine of X, that is, the value whose cosine is X.\nReturns NULL if X is not in the range -1 to 1.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT ACOS(1);\n -> 0\nmysql> SELECT ACOS(1.0001);\n -> NULL\nmysql> SELECT ACOS(0);\n -> 1.5707963267949\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(259,'ISOLATION',8,'Syntax:\nSET [GLOBAL | SESSION] TRANSACTION\n transaction_characteristic [, transaction_characteristic] ...\n\ntransaction_characteristic:\n ISOLATION LEVEL level\n | READ WRITE\n | READ ONLY\n\nlevel:\n REPEATABLE READ\n | READ COMMITTED\n | READ UNCOMMITTED\n | SERIALIZABLE\n\nThis statement specifies transaction characteristics. It takes a list\nof one or more characteristic values separated by commas. These\ncharacteristics set the transaction isolation level or access mode. The\nisolation level is used for operations on InnoDB tables. The access\nmode may be specified as of MySQL 5.6.5 and indicates whether\ntransactions operate in read/write or read-only mode.\n\nIn addition, SET TRANSACTION can include an optional GLOBAL or SESSION\nkeyword to indicate the scope of the statement.\n\nScope of Transaction Characteristics\n\nYou can set transaction characteristics globally, for the current\nsession, or for the next transaction:\n\no With the GLOBAL keyword, the statement applies globally for all\n subsequent sessions. Existing sessions are unaffected.\n\no With the SESSION keyword, the statement applies to all subsequent\n transactions performed within the current session.\n\no Without any SESSION or GLOBAL keyword, the statement applies to the\n next (not started) transaction performed within the current session.\n Subsequent transactions revert to using the SESSION isolation level.\n\nA global change to transaction characteristics requires the SUPER\nprivilege. Any session is free to change its session characteristics\n(even in the middle of a transaction), or the characteristics for its\nnext transaction.\n\nSET TRANSACTION without GLOBAL or SESSION is not permitted while there\nis an active transaction:\n\nmysql> START TRANSACTION;\nQuery OK, 0 rows affected (0.02 sec)\n\nmysql> SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;\nERROR 1568 (25001): Transaction characteristics can\'t be changed\nwhile a transaction is in progress\n\nTo set the global default isolation level at server startup, use the\n--transaction-isolation=level option to mysqld on the command line or\nin an option file. Values of level for this option use dashes rather\nthan spaces, so the permissible values are READ-UNCOMMITTED,\nREAD-COMMITTED, REPEATABLE-READ, or SERIALIZABLE. For example, to set\nthe default isolation level to REPEATABLE READ, use these lines in the\n[mysqld] section of an option file:\n\n[mysqld]\ntransaction-isolation = REPEATABLE-READ\n\nIt is possible to check or set the global and session transaction\nisolation levels at runtime by using the tx_isolation system variable:\n\nSELECT @@GLOBAL.tx_isolation, @@tx_isolation;\nSET GLOBAL tx_isolation=\'REPEATABLE-READ\';\nSET SESSION tx_isolation=\'SERIALIZABLE\';\n\nSimilarly, to set the transaction access mode at server startup or at\nruntime, use the --transaction-read-only option or tx_read_only system\nvariable. By default, these are OFF (the mode is read/write) but can be\nset to ON for a default mode of read only.\n\nSetting the global or session value of tx_isolation or tx_read_only is\nequivalent to setting the isolation level or access mode with SET\nGLOBAL TRANSACTION or SET SESSION TRANSACTION.\n\nTransaction Isolation Levels\n\nFor information about transaction isolation levels, see\nhttp://dev.mysql.com/doc/refman/5.6/en/innodb-transaction-isolation-lev\nels.html.\n\nTransaction Access Mode\n\nAs of MySQL 5.6.5, the transaction access mode may be specified with\nSET TRANSACTION. By default, a transaction takes place in read/write\nmode, with both reads and writes permitted to tables used in the\ntransaction. This mode may be specified explicitly using an access mode\nof READ WRITE.\n\nIf the transaction access mode is set to READ ONLY, changes to tables\nare prohibited. This may enable storage engines to make performance\nimprovements that are possible when writes are not permitted.\n\nIt is not permitted to specify both READ WRITE and READ ONLY in the\nsame statement.\n\nIn read-only mode, it remains possible to change tables created with\nthe TEMPORARY keyword using DML statements. Changes made with DDL\nstatements are not permitted, just as with permanent tables.\n\nThe READ WRITE and READ ONLY access modes also may be specified for an\nindividual transaction using the START TRANSACTION statement.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/set-transaction.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/set-transaction.html'),(260,'SIN',3,'Syntax:\nSIN(X)\n\nReturns the sine of X, where X is given in radians.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT SIN(PI());\n -> 1.2246063538224e-16\nmysql> SELECT ROUND(SIN(PI()));\n -> 0\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(261,'ST_BUFFER',26,'ST_Buffer(g, d)\n\nReturns a geometry that represents all points whose distance from the\ngeometry value g is less than or equal to a distance of d, or NULL if\nany argument is NULL.\n\nST_Buffer() supports negative distances for polygons, multipolygons,\nand geometry collections containing polygons or multipolygons. For\npoint, multipoint, linestring, multilinestring, and geometry\ncollections not containing any polygons or multipolygons, ST_Buffer()\nwith a negative distance returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html'),(262,'BUFFER',26,'Buffer(g, d)\n\nST_Buffer() and Buffer() are synonyms. For more information, see the\ndescription of ST_Buffer().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html'),(263,'IS',20,'Syntax:\nIS boolean_value\n\nTests a value against a boolean value, where boolean_value can be TRUE,\nFALSE, or UNKNOWN.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 1 IS TRUE, 0 IS FALSE, NULL IS UNKNOWN;\n -> 1, 1, 1\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(264,'GET_FORMAT',32,'Syntax:\nGET_FORMAT({DATE|TIME|DATETIME}, {\'EUR\'|\'USA\'|\'JIS\'|\'ISO\'|\'INTERNAL\'})\n\nReturns a format string. This function is useful in combination with\nthe DATE_FORMAT() and the STR_TO_DATE() functions.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DATE_FORMAT(\'2003-10-03\',GET_FORMAT(DATE,\'EUR\'));\n -> \'03.10.2003\'\nmysql> SELECT STR_TO_DATE(\'10.31.2003\',GET_FORMAT(DATE,\'USA\'));\n -> \'2003-10-31\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(265,'ST_CENTROID',2,'ST_Centroid(mpoly)\n\nReturns the mathematical centroid for the MultiPolygon value mpoly as a\nPoint. The result is not guaranteed to be on the MultiPolygon. If the\nargument is NULL or an empty geometry, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n -> ST_GeomFromText(\'POLYGON((0 0,10 0,10 10,0 10,0 0),(5 5,7 5,7 7,5 7,5 5))\');\nmysql> SELECT GeometryType(@poly),ST_AsText(ST_Centroid(@poly));\n+---------------------+--------------------------------------------+\n| GeometryType(@poly) | ST_AsText(ST_Centroid(@poly)) |\n+---------------------+--------------------------------------------+\n| POLYGON | POINT(4.958333333333333 4.958333333333333) |\n+---------------------+--------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(266,'TINYBLOB',23,'TINYBLOB\n\nA BLOB column with a maximum length of 255 (28 − 1) bytes. Each\nTINYBLOB value is stored using a 1-byte length prefix that indicates\nthe number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html'),(267,'USER',17,'Syntax:\nUSER()\n\nReturns the current MySQL user name and host name as a string in the\nutf8 character set.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT USER();\n -> \'davida@localhost\'\n','http://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(268,'REPAIR TABLE',21,'Syntax:\nREPAIR [NO_WRITE_TO_BINLOG | LOCAL]\n TABLE tbl_name [, tbl_name] ...\n [QUICK] [EXTENDED] [USE_FRM]\n\nREPAIR TABLE repairs a possibly corrupted table, for certain storage\nengines only.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nAlthough normally you should never have to run REPAIR TABLE, if\ndisaster strikes, this statement is very likely to get back all your\ndata from a MyISAM table. If your tables become corrupted often, try to\nfind the reason for it, to eliminate the need to use REPAIR TABLE. See\nhttp://dev.mysql.com/doc/refman/5.6/en/crashing.html, and\nhttp://dev.mysql.com/doc/refman/5.6/en/myisam-table-problems.html.\n\nREPAIR TABLE checks the table to see whether an upgrade is required. If\nso, it performs the upgrade, following the same rules as CHECK TABLE\n... FOR UPGRADE. See [HELP CHECK TABLE], for more information.\n\n*Important*:\n\no Make a backup of a table before performing a table repair operation;\n under some circumstances the operation might cause data loss.\n Possible causes include but are not limited to file system errors.\n See http://dev.mysql.com/doc/refman/5.6/en/backup-and-recovery.html.\n\no If the server crashes during a REPAIR TABLE operation, it is\n essential after restarting it that you immediately execute another\n REPAIR TABLE statement for the table before performing any other\n operations on it. In the worst case, you might have a new clean index\n file without information about the data file, and then the next\n operation you perform could overwrite the data file. This is an\n unlikely but possible scenario that underscores the value of making a\n backup first.\n\no In the event that a table on the master becomes corrupted and you run\n REPAIR TABLE on it, any resulting changes to the original table are\n not propagated to slaves.\n\no In MySQL 5.6.11 only, gtid_next must be set to AUTOMATIC before\n issuing this statement. (Bug #16062608, Bug #16715809, Bug #69045)\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/repair-table.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/repair-table.html'),(269,'MERGE',18,'The MERGE storage engine, also known as the MRG_MyISAM engine, is a\ncollection of identical MyISAM tables that can be used as one.\n\"Identical\" means that all tables have identical column data types and\nindex information. You cannot merge MyISAM tables in which the columns\nare listed in a different order, do not have exactly the same data\ntypes in corresponding columns, or have the indexes in different order.\nHowever, any or all of the MyISAM tables can be compressed with\nmyisampack. See http://dev.mysql.com/doc/refman/5.6/en/myisampack.html.\nDifferences between tables such as these do not matter:\n\no Names of corresponding columns and indexes can differ.\n\no Comments for tables, columns, and indexes can differ.\n\no Table options such as AVG_ROW_LENGTH, MAX_ROWS, or PACK_KEYS can\n differ.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/merge-storage-engine.html\n\n','mysql> CREATE TABLE t1 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20)) ENGINE=MyISAM;\nmysql> CREATE TABLE t2 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20)) ENGINE=MyISAM;\nmysql> INSERT INTO t1 (message) VALUES (\'Testing\'),(\'table\'),(\'t1\');\nmysql> INSERT INTO t2 (message) VALUES (\'Testing\'),(\'table\'),(\'t2\');\nmysql> CREATE TABLE total (\n -> a INT NOT NULL AUTO_INCREMENT,\n -> message CHAR(20), INDEX(a))\n -> ENGINE=MERGE UNION=(t1,t2) INSERT_METHOD=LAST;\n','http://dev.mysql.com/doc/refman/5.6/en/merge-storage-engine.html'),(270,'ST_DISTANCE',31,'ST_Distance(g1, g2)\n\nReturns the distance between g1 and g2.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','mysql> SET @g1 = Point(1,1);\nmysql> SET @g2 = Point(2,2);\nmysql> SELECT ST_Distance(@g1, @g2);\n+-----------------------+\n| ST_Distance(@g1, @g2) |\n+-----------------------+\n| 1.4142135623730951 |\n+-----------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(271,'CREATE TABLE',40,'Syntax:\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n (create_definition,...)\n [table_options]\n [partition_options]\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n [(create_definition,...)]\n [table_options]\n [partition_options]\n [IGNORE | REPLACE]\n [AS] query_expression\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n { LIKE old_tbl_name | (LIKE old_tbl_name) }\n\ncreate_definition:\n col_name column_definition\n | [CONSTRAINT [symbol]] PRIMARY KEY [index_type] (index_col_name,...)\n [index_option] ...\n | {INDEX|KEY} [index_name] [index_type] (index_col_name,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] UNIQUE [INDEX|KEY]\n [index_name] [index_type] (index_col_name,...)\n [index_option] ...\n | {FULLTEXT|SPATIAL} [INDEX|KEY] [index_name] (index_col_name,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (index_col_name,...) reference_definition\n | CHECK (expr)\n\ncolumn_definition:\n data_type [NOT NULL | NULL] [DEFAULT default_value]\n [AUTO_INCREMENT] [UNIQUE [KEY]] [[PRIMARY] KEY]\n [COMMENT \'string\']\n [COLUMN_FORMAT {FIXED|DYNAMIC|DEFAULT}]\n [STORAGE {DISK|MEMORY|DEFAULT}]\n [reference_definition]\n\ndata_type:\n BIT[(length)]\n | TINYINT[(length)] [UNSIGNED] [ZEROFILL]\n | SMALLINT[(length)] [UNSIGNED] [ZEROFILL]\n | MEDIUMINT[(length)] [UNSIGNED] [ZEROFILL]\n | INT[(length)] [UNSIGNED] [ZEROFILL]\n | INTEGER[(length)] [UNSIGNED] [ZEROFILL]\n | BIGINT[(length)] [UNSIGNED] [ZEROFILL]\n | REAL[(length,decimals)] [UNSIGNED] [ZEROFILL]\n | DOUBLE[(length,decimals)] [UNSIGNED] [ZEROFILL]\n | FLOAT[(length,decimals)] [UNSIGNED] [ZEROFILL]\n | DECIMAL[(length[,decimals])] [UNSIGNED] [ZEROFILL]\n | NUMERIC[(length[,decimals])] [UNSIGNED] [ZEROFILL]\n | DATE\n | TIME[(fsp)]\n | TIMESTAMP[(fsp)]\n | DATETIME[(fsp)]\n | YEAR\n | CHAR[(length)]\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | VARCHAR(length)\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | BINARY[(length)]\n | VARBINARY(length)\n | TINYBLOB\n | BLOB[(length)]\n | MEDIUMBLOB\n | LONGBLOB\n | TINYTEXT\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | TEXT[(length)]\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | MEDIUMTEXT\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | LONGTEXT\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | ENUM(value1,value2,value3,...)\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | SET(value1,value2,value3,...)\n [CHARACTER SET charset_name] [COLLATE collation_name]\n | spatial_type\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]\n\nindex_type:\n USING {BTREE | HASH}\n\nindex_option:\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n\nreference_definition:\n REFERENCES tbl_name (index_col_name,...)\n [MATCH FULL | MATCH PARTIAL | MATCH SIMPLE]\n [ON DELETE reference_option]\n [ON UPDATE reference_option]\n\nreference_option:\n RESTRICT | CASCADE | SET NULL | NO ACTION | SET DEFAULT\n\ntable_options:\n table_option [[,] table_option] ...\n\ntable_option:\n AUTO_INCREMENT [=] value\n | AVG_ROW_LENGTH [=] value\n | [DEFAULT] CHARACTER SET [=] charset_name\n | CHECKSUM [=] {0 | 1}\n | [DEFAULT] COLLATE [=] collation_name\n | COMMENT [=] \'string\'\n | CONNECTION [=] \'connect_string\'\n | {DATA|INDEX} DIRECTORY [=] \'absolute path to directory\'\n | DELAY_KEY_WRITE [=] {0 | 1}\n | ENGINE [=] engine_name\n | INSERT_METHOD [=] { NO | FIRST | LAST }\n | KEY_BLOCK_SIZE [=] value\n | MAX_ROWS [=] value\n | MIN_ROWS [=] value\n | PACK_KEYS [=] {0 | 1 | DEFAULT}\n | PASSWORD [=] \'string\'\n | ROW_FORMAT [=] {DEFAULT|DYNAMIC|FIXED|COMPRESSED|REDUNDANT|COMPACT}\n | STATS_AUTO_RECALC [=] {DEFAULT|0|1}\n | STATS_PERSISTENT [=] {DEFAULT|0|1}\n | STATS_SAMPLE_PAGES [=] value\n | TABLESPACE tablespace_name [STORAGE {DISK|MEMORY|DEFAULT}]\n | UNION [=] (tbl_name[,tbl_name]...)\n\npartition_options:\n PARTITION BY\n { [LINEAR] HASH(expr)\n | [LINEAR] KEY [ALGORITHM={1|2}] (column_list)\n | RANGE{(expr) | COLUMNS(column_list)}\n | LIST{(expr) | COLUMNS(column_list)} }\n [PARTITIONS num]\n [SUBPARTITION BY\n { [LINEAR] HASH(expr)\n | [LINEAR] KEY [ALGORITHM={1|2}] (column_list) }\n [SUBPARTITIONS num]\n ]\n [(partition_definition [, partition_definition] ...)]\n\npartition_definition:\n PARTITION partition_name\n [VALUES\n {LESS THAN {(expr | value_list) | MAXVALUE}\n |\n IN (value_list)}]\n [[STORAGE] ENGINE [=] engine_name]\n [COMMENT [=] \'string\' ]\n [DATA DIRECTORY [=] \'data_dir\']\n [INDEX DIRECTORY [=] \'index_dir\']\n [MAX_ROWS [=] max_number_of_rows]\n [MIN_ROWS [=] min_number_of_rows]\n [TABLESPACE [=] tablespace_name]\n [NODEGROUP [=] node_group_id]\n [(subpartition_definition [, subpartition_definition] ...)]\n\nsubpartition_definition:\n SUBPARTITION logical_name\n [[STORAGE] ENGINE [=] engine_name]\n [COMMENT [=] \'string\' ]\n [DATA DIRECTORY [=] \'data_dir\']\n [INDEX DIRECTORY [=] \'index_dir\']\n [MAX_ROWS [=] max_number_of_rows]\n [MIN_ROWS [=] min_number_of_rows]\n [TABLESPACE [=] tablespace_name]\n [NODEGROUP [=] node_group_id]\n\nquery_expression:\n SELECT ... (Some valid select or union statement)\n\nCREATE TABLE creates a table with the given name. You must have the\nCREATE privilege for the table.\n\nBy default, tables are created in the default database, using the\nInnoDB storage engine. An error occurs if the table exists, if there is\nno default database, or if the database does not exist.\n\nFor information about the physical representation of a table, see\nhttp://dev.mysql.com/doc/refman/5.6/en/create-table-files.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/create-table.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/create-table.html'),(272,'MICROSECOND',32,'Syntax:\nMICROSECOND(expr)\n\nReturns the microseconds from the time or datetime expression expr as a\nnumber in the range from 0 to 999999.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT MICROSECOND(\'12:00:00.123456\');\n -> 123456\nmysql> SELECT MICROSECOND(\'2009-12-31 23:59:59.000010\');\n -> 10\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(273,'CREATE SERVER',40,'Syntax:\nCREATE SERVER server_name\n FOREIGN DATA WRAPPER wrapper_name\n OPTIONS (option [, option] ...)\n\noption:\n { HOST character-literal\n | DATABASE character-literal\n | USER character-literal\n | PASSWORD character-literal\n | SOCKET character-literal\n | OWNER character-literal\n | PORT numeric-literal }\n\nThis statement creates the definition of a server for use with the\nFEDERATED storage engine. The CREATE SERVER statement creates a new row\nin the servers table in the mysql database. This statement requires the\nSUPER privilege.\n\nThe server_name should be a unique reference to the server. Server\ndefinitions are global within the scope of the server, it is not\npossible to qualify the server definition to a specific database.\nserver_name has a maximum length of 64 characters (names longer than 64\ncharacters are silently truncated), and is case insensitive. You may\nspecify the name as a quoted string.\n\nThe wrapper_name should be mysql, and may be quoted with single\nquotation marks. Other values for wrapper_name are not currently\nsupported.\n\nFor each option you must specify either a character literal or numeric\nliteral. Character literals are UTF-8, support a maximum length of 64\ncharacters and default to a blank (empty) string. String literals are\nsilently truncated to 64 characters. Numeric literals must be a number\nbetween 0 and 9999, default value is 0.\n\n*Note*:\n\nThe OWNER option is currently not applied, and has no effect on the\nownership or operation of the server connection that is created.\n\nThe CREATE SERVER statement creates an entry in the mysql.servers table\nthat can later be used with the CREATE TABLE statement when creating a\nFEDERATED table. The options that you specify will be used to populate\nthe columns in the mysql.servers table. The table columns are\nServer_name, Host, Db, Username, Password, Port and Socket.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/create-server.html\n\n','CREATE SERVER s\nFOREIGN DATA WRAPPER mysql\nOPTIONS (USER \'Remote\', HOST \'198.51.100.106\', DATABASE \'test\');\n','http://dev.mysql.com/doc/refman/5.6/en/create-server.html'),(274,'ST_POLYFROMWKB',33,'ST_PolyFromWKB(wkb[, srid]), ST_PolygonFromWKB(wkb[, srid])\n\nConstructs a Polygon value using its WKB representation and SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(275,'MAKETIME',32,'Syntax:\nMAKETIME(hour,minute,second)\n\nReturns a time value calculated from the hour, minute, and second\narguments.\n\nThe second argument can have a fractional part.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT MAKETIME(12,15,30);\n -> \'12:15:30\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(276,'CURDATE',32,'Syntax:\nCURDATE()\n\nReturns the current date as a value in \'YYYY-MM-DD\' or YYYYMMDD format,\ndepending on whether the function is used in a string or numeric\ncontext.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT CURDATE();\n -> \'2008-06-13\'\nmysql> SELECT CURDATE() + 0;\n -> 20080613\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(277,'SET PASSWORD',10,'Syntax:\nSET PASSWORD [FOR user] = password_option\n\npassword_option: {\n PASSWORD(\'auth_string\')\n | OLD_PASSWORD(\'auth_string\')\n | \'hash_string\'\n}\n\nThe SET PASSWORD statement assigns a password to a MySQL user account,\nspecified as either a cleartext (unencrypted) or encrypted value:\n\no \'auth_string\' represents a cleartext password.\n\no \'hash_string\' represents an encrypted password.\n\n*Important*:\n\nUnder some circumstances, SET PASSWORD may be recorded in server logs\nor on the client side in a history file such as ~/.mysql_history, which\nmeans that cleartext passwords may be read by anyone having read access\nto that information. For information about the conditions under which\nthis occurs for the server logs and how to control it, see\nhttp://dev.mysql.com/doc/refman/5.6/en/password-logging.html. For\nsimilar information about client-side logging, see\nhttp://dev.mysql.com/doc/refman/5.6/en/mysql-logging.html.\n\nSET PASSWORD can be used with or without a FOR clause that explicitly\nnames a user account:\n\no With a FOR user clause, the statement sets the password for the named\n account, which must exist:\n\nSET PASSWORD FOR \'jeffrey\'@\'localhost\' = password_option;\n\no With no FOR user clause, the statement sets the password for the\n current user:\n\nSET PASSWORD = password_option;\n\n Any client who connects to the server using a nonanonymous account\n can change the password for that account. To see which account the\n server authenticated you as, invoke the CURRENT_USER() function:\n\nSELECT CURRENT_USER();\n\nSetting the password for a named account (with a FOR clause) requires\nthe UPDATE privilege for the mysql database. Setting the password for\nyourself (for a nonanonymous account with no FOR clause) requires no\nspecial privileges. When the read_only system variable is enabled, SET\nPASSWORD requires the SUPER privilege in addition to any other required\nprivileges.\n\nIf a FOR user clause is given, the account name uses the format\ndescribed in http://dev.mysql.com/doc/refman/5.6/en/account-names.html.\nFor example:\n\nSET PASSWORD FOR \'bob\'@\'%.example.org\' = PASSWORD(\'auth_string\');\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nThe password can be specified in these ways:\n\no Use the PASSWORD() function\n\n The PASSWORD() argument is the cleartext (unencrypted) password.\n PASSWORD() hashes the password and returns the encrypted password\n string for storage in the mysql.user account row.\n\n The PASSWORD() function hashes the password using the hashing method\n determined by the value of the old_passwords system variable value.\n If SET PASSWORD rejects the hashed password value returned by\n PASSWORD() as not being in the correct format, it may be necessary to\n change old_passwords to change the hashing method. For example, if\n the account uses the mysql_native_password plugin, the old_passwords\n value must be 0:\n\nSET old_passwords = 0;\nSET PASSWORD FOR \'jeffrey\'@\'localhost\' = PASSWORD(\'password\');\n\n If the old_passwords value differs from that required by the\n authentication plugin, the hashed password value returned by\n PASSWORD() is not acceptable for that plugin, and attempts to set the\n password produce an error. For example:\n\nmysql> SET old_passwords = 1;\nmysql> SET PASSWORD FOR \'jeffrey\'@\'localhost\' = PASSWORD(\'password\');\nERROR 1372 (HY000): Password hash should be a 41-digit hexadecimal number\n\n Permitted old_passwords values are described later in this section.\n\no Use the OLD_PASSWORD() function:\n\n The \'auth_string\' function argument is the cleartext (unencrypted)\n password. OLD_PASSWORD() hashes the password using pre-4.1 hashing\n and returns the encrypted password string for storage in the\n mysql.user account row. This hashing method is appropriate only for\n accounts that use the mysql_old_password authentication plugin.\n\no Use an already encrypted password string\n\n The password is specified as a string literal. It must represent the\n already encrypted password value, in the hash format required by the\n authentication method used for the account.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/set-password.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/set-password.html'),(278,'DATABASE',17,'Syntax:\nDATABASE()\n\nReturns the default (current) database name as a string in the utf8\ncharacter set. If there is no default database, DATABASE() returns\nNULL. Within a stored routine, the default database is the database\nthat the routine is associated with, which is not necessarily the same\nas the database that is the default in the calling context.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT DATABASE();\n -> \'test\'\n','http://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(279,'IF FUNCTION',6,'Syntax:\nIF(expr1,expr2,expr3)\n\nIf expr1 is TRUE (expr1 <> 0 and expr1 <> NULL), IF() returns expr2.\nOtherwise, it returns expr3.\n\n*Note*:\n\nThere is also an IF statement, which differs from the IF() function\ndescribed here. See [HELP IF statement].\n\nIf only one of expr2 or expr3 is explicitly NULL, the result type of\nthe IF() function is the type of the non-NULL expression.\n\nThe default return type of IF() (which may matter when it is stored\ninto a temporary table) is calculated as follows:\n\no If expr2 or expr3 produce a string, the result is a string.\n\n If expr2 and expr3 are both strings, the result is case-sensitive if\n either string is case sensitive.\n\no If expr2 or expr3 produce a floating-point value, the result is a\n floating-point value.\n\no If expr2 or expr3 produce an integer, the result is an integer.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html\n\n','mysql> SELECT IF(1>2,2,3);\n -> 3\nmysql> SELECT IF(1<2,\'yes\',\'no\');\n -> \'yes\'\nmysql> SELECT IF(STRCMP(\'test\',\'test1\'),\'no\',\'yes\');\n -> \'no\'\n','http://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html'),(280,'POINTFROMWKB',33,'PointFromWKB(wkb[, srid])\n\nST_PointFromWKB() and PointFromWKB() are synonyms. For more\ninformation, see the description of ST_PointFromWKB().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(281,'POWER',3,'Syntax:\nPOWER(X,Y)\n\nThis is a synonym for POW().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(282,'ATAN',3,'Syntax:\nATAN(X)\n\nReturns the arc tangent of X, that is, the value whose tangent is X.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT ATAN(2);\n -> 1.1071487177941\nmysql> SELECT ATAN(-2);\n -> -1.1071487177941\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(283,'SHOW PROFILE',27,'Syntax:\nSHOW PROFILE [type [, type] ... ]\n [FOR QUERY n]\n [LIMIT row_count [OFFSET offset]]\n\ntype:\n ALL\n | BLOCK IO\n | CONTEXT SWITCHES\n | CPU\n | IPC\n | MEMORY\n | PAGE FAULTS\n | SOURCE\n | SWAPS\n\nThe SHOW PROFILE and SHOW PROFILES statements display profiling\ninformation that indicates resource usage for statements executed\nduring the course of the current session.\n\n*Note*:\n\nThese statements are deprecated as of MySQL 5.6.7 and will be removed\nin a future MySQL release. Use the Performance Schema instead; see\nhttp://dev.mysql.com/doc/refman/5.6/en/performance-schema-query-profili\nng.html.\n\nProfiling is controlled by the profiling session variable, which has a\ndefault value of 0 (OFF). Profiling is enabled by setting profiling to\n1 or ON:\n\nmysql> SET profiling = 1;\n\nSHOW PROFILES displays a list of the most recent statements sent to the\nserver. The size of the list is controlled by the\nprofiling_history_size session variable, which has a default value of\n15. The maximum value is 100. Setting the value to 0 has the practical\neffect of disabling profiling.\n\nAll statements are profiled except SHOW PROFILE and SHOW PROFILES, so\nyou will find neither of those statements in the profile list.\nMalformed statements are profiled. For example, SHOW PROFILING is an\nillegal statement, and a syntax error occurs if you try to execute it,\nbut it will show up in the profiling list.\n\nSHOW PROFILE displays detailed information about a single statement.\nWithout the FOR QUERY n clause, the output pertains to the most\nrecently executed statement. If FOR QUERY n is included, SHOW PROFILE\ndisplays information for statement n. The values of n correspond to the\nQuery_ID values displayed by SHOW PROFILES.\n\nThe LIMIT row_count clause may be given to limit the output to\nrow_count rows. If LIMIT is given, OFFSET offset may be added to begin\nthe output offset rows into the full set of rows.\n\nBy default, SHOW PROFILE displays Status and Duration columns. The\nStatus values are like the State values displayed by SHOW PROCESSLIST,\nalthough there might be some minor differences in interpretion for the\ntwo statements for some status values (see\nhttp://dev.mysql.com/doc/refman/5.6/en/thread-information.html).\n\nOptional type values may be specified to display specific additional\ntypes of information:\n\no ALL displays all information\n\no BLOCK IO displays counts for block input and output operations\n\no CONTEXT SWITCHES displays counts for voluntary and involuntary\n context switches\n\no CPU displays user and system CPU usage times\n\no IPC displays counts for messages sent and received\n\no MEMORY is not currently implemented\n\no PAGE FAULTS displays counts for major and minor page faults\n\no SOURCE displays the names of functions from the source code, together\n with the name and line number of the file in which the function\n occurs\n\no SWAPS displays swap counts\n\nProfiling is enabled per session. When a session ends, its profiling\ninformation is lost.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-profile.html\n\n','mysql> SELECT @@profiling;\n+-------------+\n| @@profiling |\n+-------------+\n| 0 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> SET profiling = 1;\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> DROP TABLE IF EXISTS t1;\nQuery OK, 0 rows affected, 1 warning (0.00 sec)\n\nmysql> CREATE TABLE T1 (id INT);\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SHOW PROFILES;\n+----------+----------+--------------------------+\n| Query_ID | Duration | Query |\n+----------+----------+--------------------------+\n| 0 | 0.000088 | SET PROFILING = 1 |\n| 1 | 0.000136 | DROP TABLE IF EXISTS t1 |\n| 2 | 0.011947 | CREATE TABLE t1 (id INT) |\n+----------+----------+--------------------------+\n3 rows in set (0.00 sec)\n\nmysql> SHOW PROFILE;\n+----------------------+----------+\n| Status | Duration |\n+----------------------+----------+\n| checking permissions | 0.000040 |\n| creating table | 0.000056 |\n| After create | 0.011363 |\n| query end | 0.000375 |\n| freeing items | 0.000089 |\n| logging slow query | 0.000019 |\n| cleaning up | 0.000005 |\n+----------------------+----------+\n7 rows in set (0.00 sec)\n\nmysql> SHOW PROFILE FOR QUERY 1;\n+--------------------+----------+\n| Status | Duration |\n+--------------------+----------+\n| query end | 0.000107 |\n| freeing items | 0.000008 |\n| logging slow query | 0.000015 |\n| cleaning up | 0.000006 |\n+--------------------+----------+\n4 rows in set (0.00 sec)\n\nmysql> SHOW PROFILE CPU FOR QUERY 2;\n+----------------------+----------+----------+------------+\n| Status | Duration | CPU_user | CPU_system |\n+----------------------+----------+----------+------------+\n| checking permissions | 0.000040 | 0.000038 | 0.000002 |\n| creating table | 0.000056 | 0.000028 | 0.000028 |\n| After create | 0.011363 | 0.000217 | 0.001571 |\n| query end | 0.000375 | 0.000013 | 0.000028 |\n| freeing items | 0.000089 | 0.000010 | 0.000014 |\n| logging slow query | 0.000019 | 0.000009 | 0.000010 |\n| cleaning up | 0.000005 | 0.000003 | 0.000002 |\n+----------------------+----------+----------+------------+\n7 rows in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.6/en/show-profile.html'),(284,'LN',3,'Syntax:\nLN(X)\n\nReturns the natural logarithm of X; that is, the base-e logarithm of X.\nIf X is less than or equal to 0, then NULL is returned.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT LN(2);\n -> 0.69314718055995\nmysql> SELECT LN(-2);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(285,'SET CHARACTER SET',27,'Syntax:\nSET {CHARACTER SET | CHARSET}\n {\'charset_name\' | DEFAULT}\n\nThis statement maps all strings sent between the server and the current\nclient with the given mapping. SET CHARACTER SET sets three session\nsystem variables: character_set_client and character_set_results are\nset to the given character set, and character_set_connection to the\nvalue of character_set_database. See\nhttp://dev.mysql.com/doc/refman/5.6/en/charset-connection.html.\n\ncharset_name may be quoted or unquoted.\n\nThe default character set mapping can be restored by using the value\nDEFAULT. The default depends on the server configuration.\n\nucs2, utf16, and utf32 cannot be used as a client character set, which\nmeans that they do not work for SET CHARACTER SET.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/set-character-set.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/set-character-set.html'),(286,'RETURN',24,'Syntax:\nRETURN expr\n\nThe RETURN statement terminates execution of a stored function and\nreturns the value expr to the function caller. There must be at least\none RETURN statement in a stored function. There may be more than one\nif the function has multiple exit points.\n\nThis statement is not used in stored procedures, triggers, or events.\nThe LEAVE statement can be used to exit a stored program of those\ntypes.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/return.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/return.html'),(287,'SET SQL_LOG_BIN',8,'Syntax:\nSET sql_log_bin = {0|1}\n\nThe sql_log_bin variable controls whether logging to the binary log is\ndone. The default value is 1 (do logging). To change logging for the\ncurrent session, change the session value of this variable. The session\nuser must have the SUPER privilege to set this variable. Set this\nvariable to 0 for a session to temporarily disable binary logging while\nmaking changes to the master which you do not want to replicate to the\nslave.\n\nAs of MySQL 5.6.22, the global sql_log_bin variable is read only and\ncannot be modified. The global scope is deprecated and will be removed\nin a future MySQL release. Prior to 5.6.22, sql_log_bin can be set as a\nglobal or session variable. Setting sql_log_bin globally is only\ndetected when a new session is started. Any sessions previously running\nare not impacted when setting sql_log_bin globally.\n\n*Warning*:\n\nIncorrect use of sql_log_bin with a global scope means any changes made\nin an already running session are still being recorded to the binary\nlog and therefore replicated. Exercise extreme caution using\nsql_log_bin with a global scope as the above situation could cause\nunexpected results including replication failure.\n\nIt is not possible to set @@session.sql_log_bin within a transaction or\nsubquery.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/set-sql-log-bin.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/set-sql-log-bin.html'),(288,'AES_DECRYPT',12,'Syntax:\nAES_DECRYPT(crypt_str,key_str[,init_vector])\n\nThis function decrypts data using the official AES (Advanced Encryption\nStandard) algorithm. For more information, see the description of\nAES_ENCRYPT().\n\nThe optional initialization vector argument, init_vector, is available\nas of MySQL 5.6.17. As of that version, statements that use\nAES_DECRYPT() are unsafe for statement-based replication and cannot be\nstored in the query cache.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(289,'COERCIBILITY',17,'Syntax:\nCOERCIBILITY(str)\n\nReturns the collation coercibility value of the string argument.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT COERCIBILITY(\'abc\' COLLATE latin1_swedish_ci);\n -> 0\nmysql> SELECT COERCIBILITY(USER());\n -> 3\nmysql> SELECT COERCIBILITY(\'abc\');\n -> 4\nmysql> SELECT COERCIBILITY(1000);\n -> 5\n','http://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(290,'INT',23,'INT[(M)] [UNSIGNED] [ZEROFILL]\n\nA normal-size integer. The signed range is -2147483648 to 2147483647.\nThe unsigned range is 0 to 4294967295.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html'),(291,'GLENGTH',13,'GLength(ls)\n\nReturns a double-precision number indicating the length of the\nLineString or MultiLineString value ls in its associated spatial\nreference. The length of a MultiLineString value is equal to the sum of\nthe lengths of its elements. If the argument is NULL or an empty\ngeometry, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT GLength(GeomFromText(@ls));\n+----------------------------+\n| GLength(GeomFromText(@ls)) |\n+----------------------------+\n| 2.8284271247461903 |\n+----------------------------+\n\nmysql> SET @mls = \'MultiLineString((1 1,2 2,3 3),(4 4,5 5))\';\nmysql> SELECT GLength(GeomFromText(@mls));\n+-----------------------------+\n| GLength(GeomFromText(@mls)) |\n+-----------------------------+\n| 4.242640687119286 |\n+-----------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(292,'MAKE_SET',38,'Syntax:\nMAKE_SET(bits,str1,str2,...)\n\nReturns a set value (a string containing substrings separated by ,\ncharacters) consisting of the strings that have the corresponding bit\nin bits set. str1 corresponds to bit 0, str2 to bit 1, and so on. NULL\nvalues in str1, str2, ... are not appended to the result.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT MAKE_SET(1,\'a\',\'b\',\'c\');\n -> \'a\'\nmysql> SELECT MAKE_SET(1 | 4,\'hello\',\'nice\',\'world\');\n -> \'hello,world\'\nmysql> SELECT MAKE_SET(1 | 4,\'hello\',\'nice\',NULL,\'world\');\n -> \'hello\'\nmysql> SELECT MAKE_SET(0,\'a\',\'b\',\'c\');\n -> \'\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(293,'FIND_IN_SET',38,'Syntax:\nFIND_IN_SET(str,strlist)\n\nReturns a value in the range of 1 to N if the string str is in the\nstring list strlist consisting of N substrings. A string list is a\nstring composed of substrings separated by , characters. If the first\nargument is a constant string and the second is a column of type SET,\nthe FIND_IN_SET() function is optimized to use bit arithmetic. Returns\n0 if str is not in strlist or if strlist is the empty string. Returns\nNULL if either argument is NULL. This function does not work properly\nif the first argument contains a comma (,) character.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT FIND_IN_SET(\'b\',\'a,b,c,d\');\n -> 2\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(294,'MIN',16,'Syntax:\nMIN([DISTINCT] expr)\n\nReturns the minimum value of expr. MIN() may take a string argument; in\nsuch cases, it returns the minimum string value. See\nhttp://dev.mysql.com/doc/refman/5.6/en/mysql-indexes.html. The DISTINCT\nkeyword can be used to find the minimum of the distinct values of expr,\nhowever, this produces the same result as omitting DISTINCT.\n\nIf there are no matching rows, MIN() returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','mysql> SELECT student_name, MIN(test_score), MAX(test_score)\n FROM student\n GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(295,'REPLACE',28,'Syntax:\nREPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [(col_name [, col_name] ...)]\n {VALUES | VALUE} (value_list) [, (value_list)] ...\n\nREPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n SET assignment_list\n\nREPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [(col_name [, col_name] ...)]\n SELECT ...\n\nvalue:\n {expr | DEFAULT}\n\nvalue_list:\n value [, value] ...\n\nassignment:\n col_name = value\n\nassignment_list:\n assignment [, assignment] ...\n\nREPLACE works exactly like INSERT, except that if an old row in the\ntable has the same value as a new row for a PRIMARY KEY or a UNIQUE\nindex, the old row is deleted before the new row is inserted. See [HELP\nINSERT].\n\nREPLACE is a MySQL extension to the SQL standard. It either inserts, or\ndeletes and inserts. For another MySQL extension to standard SQL---that\neither inserts or updates---see\nhttp://dev.mysql.com/doc/refman/5.6/en/insert-on-duplicate.html.\n\n*Note*:\n\nREPLACE makes sense only if a table has a PRIMARY KEY or UNIQUE index.\nOtherwise, it becomes equivalent to INSERT, because there is no index\nto be used to determine whether a new row duplicates another.\n\nValues for all columns are taken from the values specified in the\nREPLACE statement. Any missing columns are set to their default values,\njust as happens for INSERT. You cannot refer to values from the current\nrow and use them in the new row. If you use an assignment such as SET\ncol_name = col_name + 1, the reference to the column name on the right\nhand side is treated as DEFAULT(col_name), so the assignment is\nequivalent to SET col_name = DEFAULT(col_name) + 1.\n\nTo use REPLACE, you must have both the INSERT and DELETE privileges for\nthe table.\n\nREPLACE supports explicit partition selection using the PARTITION\nkeyword with a list of comma-separated names of partitions,\nsubpartitions, or both. As with INSERT, if it is not possible to insert\nthe new row into any of these partitions or subpartitions, the REPLACE\nstatement fails with the error Found a row not matching the given\npartition set. For more information and examples, see\nhttp://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/replace.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/replace.html'),(296,'CURRENT_TIMESTAMP',32,'Syntax:\nCURRENT_TIMESTAMP, CURRENT_TIMESTAMP([fsp])\n\nCURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for NOW().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(297,'ST_SYMDIFFERENCE',26,'ST_SymDifference(g1, g2)\n\nReturns a geometry that represents the point set symmetric difference\nof the geometry values g1 and g2, which is defined as:\n\ng1 symdifference g2 := (g1 union g2) difference (g1 intersection g2)\n\nOr, in function call notation:\n\nST_SymDifference(g1, g2) = ST_Difference(ST_Union(g1, g2), ST_Intersection(g1, g2))\n\nIf any argument is NULL, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html\n\n','mysql> SET @g1 = Point(1,1), @g2 = Point(2,2);\nmysql> SELECT ST_AsText(ST_SymDifference(@g1, @g2));\n+---------------------------------------+\n| ST_AsText(ST_SymDifference(@g1, @g2)) |\n+---------------------------------------+\n| MULTIPOINT(1 1,2 2) |\n+---------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html'),(298,'GTID_SUBSET',7,'Syntax:\nGTID_SUBSET(subset,set)\n\nGiven two sets of global transaction IDs subset and set, returns true\n(1) if all GTIDs in subset are also in set. Returns false (0)\notherwise.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gtid-functions.html\n\n','mysql> SELECT GTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:23\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\')\\G\n*************************** 1. row ***************************\nGTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:23\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\'): 1\n1 row in set (0.00 sec)\n\nmysql> SELECT GTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:23-25\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\')\\G\n*************************** 1. row ***************************\nGTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:23-25\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\'): 1\n1 row in set (0.00 sec)\n\nmysql> SELECT GTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:20-25\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\')\\G\n*************************** 1. row ***************************\nGTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:20-25\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\'): 0\n1 row in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.6/en/gtid-functions.html'),(299,'VAR_SAMP',16,'Syntax:\nVAR_SAMP(expr)\n\nReturns the sample variance of expr. That is, the denominator is the\nnumber of rows minus one.\n\nIf there are no matching rows, VAR_SAMP() returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(300,'DATETIME',23,'DATETIME[(fsp)]\n\nA date and time combination. The supported range is \'1000-01-01\n00:00:00.000000\' to \'9999-12-31 23:59:59.999999\'. MySQL displays\nDATETIME values in \'YYYY-MM-DD HH:MM:SS[.fraction]\' format, but permits\nassignment of values to DATETIME columns using either strings or\nnumbers.\n\nAs of MySQL 5.6.4, an optional fsp value in the range from 0 to 6 may\nbe given to specify fractional seconds precision. A value of 0\nsignifies that there is no fractional part. If omitted, the default\nprecision is 0.\n\nAs of MySQL 5.6.5, automatic initialization and updating to the current\ndate and time for DATETIME columns can be specified using DEFAULT and\nON UPDATE column definition clauses, as described in\nhttp://dev.mysql.com/doc/refman/5.6/en/timestamp-initialization.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-overview.html'),(301,'INTEGER',23,'INTEGER[(M)] [UNSIGNED] [ZEROFILL]\n\nThis type is a synonym for INT.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html'),(302,'SHOW COLUMNS',27,'Syntax:\nSHOW [FULL] {COLUMNS | FIELDS}\n {FROM | IN} tbl_name\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW COLUMNS displays information about the columns in a given table.\nIt also works for views. SHOW COLUMNS displays information only for\nthose columns for which you have some privilege.\n\nYou can use db_name.tbl_name as an alternative to the tbl_name FROM\ndb_name syntax. In other words, these two statements are equivalent:\n\nSHOW COLUMNS FROM mytable FROM mydb;\nSHOW COLUMNS FROM mydb.mytable;\n\nThe optional FULL keyword causes the output to include the column\ncollation and comments, as well as the privileges you have for each\ncolumn.\n\nThe LIKE clause, if present, indicates which column names to match. The\nWHERE clause can be given to select rows using more general conditions,\nas discussed in\nhttp://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nmysql> SHOW COLUMNS FROM City;\n+-------------+----------+------+-----+---------+----------------+\n| Field | Type | Null | Key | Default | Extra |\n+-------------+----------+------+-----+---------+----------------+\n| ID | int(11) | NO | PRI | NULL | auto_increment |\n| Name | char(35) | NO | | | |\n| CountryCode | char(3) | NO | MUL | | |\n| District | char(20) | NO | | | |\n| Population | int(11) | NO | | 0 | |\n+-------------+----------+------+-----+---------+----------------+\n\nThe data types may differ from what you expect them to be based on a\nCREATE TABLE statement because MySQL sometimes changes data types when\nyou create or alter a table. The conditions under which this occurs are\ndescribed in\nhttp://dev.mysql.com/doc/refman/5.6/en/silent-column-changes.html.\n\nSHOW COLUMNS displays the following values for each table column:\n\no Field\n\n The column name.\n\no Type\n\n The column data type.\n\no Collation\n\n The collation for nonbinary string columns, or NULL for other\n columns. This value is displayed only if you use the FULL keyword.\n\no Null\n\n Column nullability. The value is YES if NULL values can be stored in\n the column, NO if not.\n\no Key\n\n Whether the column is indexed:\n\n o If Key is empty, the column either is not indexed or is indexed\n only as a secondary column in a multiple-column, nonunique index.\n\n o If Key is PRI, the column is a PRIMARY KEY or is one of the columns\n in a multiple-column PRIMARY KEY.\n\n o If Key is UNI, the column is the first column of a UNIQUE index. (A\n UNIQUE index permits multiple NULL values, but you can tell whether\n the column permits NULL by checking the Null field.)\n\n o If Key is MUL, the column is the first column of a nonunique index\n in which multiple occurrences of a given value are permitted within\n the column.\n\n If more than one of the Key values applies to a given column of a\n table, Key displays the one with the highest priority, in the order\n PRI, UNI, MUL.\n\n A UNIQUE index may be displayed as PRI if it cannot contain NULL\n values and there is no PRIMARY KEY in the table. A UNIQUE index may\n display as MUL if several columns form a composite UNIQUE index;\n although the combination of the columns is unique, each column can\n still hold multiple occurrences of a given value.\n\no Default\n\n The default value for the column. This is NULL if the column has an\n explicit default of NULL, or if the column definition includes no\n DEFAULT clause.\n\no Extra\n\n Any additional information that is available about a given column.\n The value is nonempty in these cases: auto_increment for columns that\n have the AUTO_INCREMENT attribute; on update CURRENT_TIMESTAMP for\n TIMESTAMP or DATETIME columns that have the ON UPDATE\n CURRENT_TIMESTAMP attribute.\n\no Privileges\n\n The privileges you have for the column. This value is displayed only\n if you use the FULL keyword.\n\no Comment\n\n Any comment included in the column definition. This value is\n displayed only if you use the FULL keyword.\n\nYou can also obtain information about table columns from\nINFORMATION_SCHEMA, which contains a COLUMNS table. See\nhttp://dev.mysql.com/doc/refman/5.6/en/columns-table.html.\n\nYou can list a table\'s columns with the mysqlshow db_name tbl_name\ncommand.\n\nThe DESCRIBE statement provides information similar to SHOW COLUMNS.\nSee http://dev.mysql.com/doc/refman/5.6/en/describe.html.\n\nThe SHOW CREATE TABLE, SHOW TABLE STATUS, and SHOW INDEX statements\nalso provide information about tables. See [HELP SHOW].\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-columns.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-columns.html'),(303,'TINYINT',23,'TINYINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA very small integer. The signed range is -128 to 127. The unsigned\nrange is 0 to 255.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html'),(304,'MASTER_POS_WAIT',14,'Syntax:\nMASTER_POS_WAIT(log_name,log_pos[,timeout])\n\nThis function is useful for control of master/slave synchronization. It\nblocks until the slave has read and applied all updates up to the\nspecified position in the master log. The return value is the number of\nlog events the slave had to wait for to advance to the specified\nposition. The function returns NULL if the slave SQL thread is not\nstarted, the slave\'s master information is not initialized, the\narguments are incorrect, or an error occurs. It returns -1 if the\ntimeout has been exceeded. If the slave SQL thread stops while\nMASTER_POS_WAIT() is waiting, the function returns NULL. If the slave\nis past the specified position, the function returns immediately.\n\nOn a multithreaded slave, the function waits until expiry of the limit\nset by the slave_checkpoint_group or slave_checkpoint_period system\nvariable, when the checkpoint operation is called to update the status\nof the slave. Depending on the setting for the system variables, the\nfunction might therefore return some time after the specified position\nwas reached.\n\nIf a timeout value is specified, MASTER_POS_WAIT() stops waiting when\ntimeout seconds have elapsed. timeout must be greater than 0; a zero or\nnegative timeout means no timeout.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(305,'^',19,'Syntax:\n^\n\nBitwise XOR.\n\nThe result is an unsigned 64-bit integer.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/bit-functions.html\n\n','mysql> SELECT 1 ^ 1;\n -> 0\nmysql> SELECT 1 ^ 0;\n -> 1\nmysql> SELECT 11 ^ 3;\n -> 8\n','http://dev.mysql.com/doc/refman/5.6/en/bit-functions.html'),(306,'DROP VIEW',40,'Syntax:\nDROP VIEW [IF EXISTS]\n view_name [, view_name] ...\n [RESTRICT | CASCADE]\n\nDROP VIEW removes one or more views. You must have the DROP privilege\nfor each view.\n\nIf any views named in the argument list do not exist, the statement\nreturns an error indicating by name which nonexisting views it was\nunable to drop, but also drops all views in the list that do exist.\n\nThe IF EXISTS clause prevents an error from occurring for views that\ndon\'t exist. When this clause is given, a NOTE is generated for each\nnonexistent view. See [HELP SHOW WARNINGS].\n\nRESTRICT and CASCADE, if given, are parsed and ignored.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/drop-view.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/drop-view.html'),(307,'WEEK',32,'Syntax:\nWEEK(date[,mode])\n\nThis function returns the week number for date. The two-argument form\nof WEEK() enables you to specify whether the week starts on Sunday or\nMonday and whether the return value should be in the range from 0 to 53\nor from 1 to 53. If the mode argument is omitted, the value of the\ndefault_week_format system variable is used. See\nhttp://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT WEEK(\'2008-02-20\');\n -> 7\nmysql> SELECT WEEK(\'2008-02-20\',0);\n -> 7\nmysql> SELECT WEEK(\'2008-02-20\',1);\n -> 8\nmysql> SELECT WEEK(\'2008-12-31\',1);\n -> 53\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(308,'DROP FUNCTION UDF',22,'Syntax:\nDROP FUNCTION function_name\n\nThis statement drops the user-defined function (UDF) named\nfunction_name.\n\nTo drop a function, you must have the DELETE privilege for the mysql\ndatabase. This is because DROP FUNCTION removes a row from the\nmysql.func system table that records the function\'s name, type, and\nshared library name.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/drop-function-udf.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/drop-function-udf.html'),(309,'UPDATEXML',38,'Syntax:\nUpdateXML(xml_target, xpath_expr, new_xml)\n\nThis function replaces a single portion of a given fragment of XML\nmarkup xml_target with a new XML fragment new_xml, and then returns the\nchanged XML. The portion of xml_target that is replaced matches an\nXPath expression xpath_expr supplied by the user. In MySQL 5.6.6 and\nearlier, the XPath expression could contain at most 127 characters.\nThis limitation is lifted in MySQL 5.6.7. (Bug #13007062, Bug #62429)\n\nIf no expression matching xpath_expr is found, or if multiple matches\nare found, the function returns the original xml_target XML fragment.\nAll three arguments should be strings.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/xml-functions.html\n\n','mysql> SELECT\n -> UpdateXML(\'<a><b>ccc</b><d></d></a>\', \'/a\', \'<e>fff</e>\') AS val1,\n -> UpdateXML(\'<a><b>ccc</b><d></d></a>\', \'/b\', \'<e>fff</e>\') AS val2,\n -> UpdateXML(\'<a><b>ccc</b><d></d></a>\', \'//b\', \'<e>fff</e>\') AS val3,\n -> UpdateXML(\'<a><b>ccc</b><d></d></a>\', \'/a/d\', \'<e>fff</e>\') AS val4,\n -> UpdateXML(\'<a><d></d><b>ccc</b><d></d></a>\', \'/a/d\', \'<e>fff</e>\') AS val5\n -> \\G\n\n*************************** 1. row ***************************\nval1: <e>fff</e>\nval2: <a><b>ccc</b><d></d></a>\nval3: <a><e>fff</e><d></d></a>\nval4: <a><b>ccc</b><e>fff</e></a>\nval5: <a><d></d><b>ccc</b><d></d></a>\n','http://dev.mysql.com/doc/refman/5.6/en/xml-functions.html'),(310,'RESET SLAVE',8,'Syntax:\nRESET SLAVE [ALL]\n\nRESET SLAVE makes the slave forget its replication position in the\nmaster\'s binary log. This statement is meant to be used for a clean\nstart: It clears the master info and relay log info repositories,\ndeletes all the relay log files, and starts a new relay log file. It\nalso resets to 0 the replication delay specified with the MASTER_DELAY\noption to CHANGE MASTER TO. RESET SLAVE does not change the values of\ngtid_executed or gtid_purged. To use RESET SLAVE, the slave replication\nthreads must be stopped, so on a running slave use STOP SLAVE before\nissuing RESET SLAVE.\n\n*Note*:\n\nAll relay log files are deleted, even if they have not been completely\nexecuted by the slave SQL thread. (This is a condition likely to exist\non a replication slave if you have issued a STOP SLAVE statement or if\nthe slave is highly loaded.)\n\nIn MySQL 5.6 (unlike the case in MySQL 5.1 and earlier), RESET SLAVE\ndoes not change any replication connection parameters such as master\nhost, master port, master user, or master password, which are retained\nin memory. This means that START SLAVE can be issued without requiring\na CHANGE MASTER TO statement following RESET SLAVE.\n\nConnection parameters are reset if the slave mysqld is shut down\nfollowing RESET SLAVE. In MySQL 5.6.3 and later, you can instead use\nRESET SLAVE ALL to reset these connection parameters (Bug #11809016).\n\nRESET SLAVE ALL does not clear the IGNORE_SERVER_IDS list set by CHANGE\nMASTER TO. This issue is fixed in MySQL 5.7. (Bug #18816897)\n\nIn MySQL 5.6.7 and later, RESET SLAVE causes an implicit commit of an\nongoing transaction. See\nhttp://dev.mysql.com/doc/refman/5.6/en/implicit-commit.html.\n\nIf the slave SQL thread was in the middle of replicating temporary\ntables when it was stopped, and RESET SLAVE is issued, these replicated\ntemporary tables are deleted on the slave.\n\n*Note*:\n\nWhen used on an NDB Cluster replication slave SQL node, RESET SLAVE\nclears the mysql.ndb_apply_status table. You should keep in mind when\nusing this statement that ndb_apply_status uses the NDB storage engine\nand so is shared by all SQL nodes attached to the slave cluster.\n\nBeginning with MySQL NDB Cluster 7.4.9, you can override this behavior\nby issuing SET GLOBAL @@ndb_clear_apply_status=OFF prior to executing\nRESET SLAVE, which keeps the slave from purging the ndb_apply_status\ntable in such cases.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/reset-slave.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/reset-slave.html'),(311,'DAY',32,'Syntax:\nDAY(date)\n\nDAY() is a synonym for DAYOFMONTH().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(312,'UUID',14,'Syntax:\nUUID()\n\nReturns a Universal Unique Identifier (UUID) generated according to RFC\n4122, \"A Universally Unique IDentifier (UUID) URN Namespace\"\n(http://www.ietf.org/rfc/rfc4122.txt).\n\nA UUID is designed as a number that is globally unique in space and\ntime. Two calls to UUID() are expected to generate two different\nvalues, even if these calls are performed on two separate devices not\nconnected to each other.\n\n*Warning*:\n\nAlthough UUID() values are intended to be unique, they are not\nnecessarily unguessable or unpredictable. If unpredictability is\nrequired, UUID values should be generated some other way.\n\nUUID() returns a value that conforms to UUID version 1 as described in\nRFC 4122. The value is a 128-bit number represented as a utf8 string of\nfive hexadecimal numbers in aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee\nformat:\n\no The first three numbers are generated from the low, middle, and high\n parts of a timestamp. The high part also includes the UUID version\n number.\n\no The fourth number preserves temporal uniqueness in case the timestamp\n value loses monotonicity (for example, due to daylight saving time).\n\no The fifth number is an IEEE 802 node number that provides spatial\n uniqueness. A random number is substituted if the latter is not\n available (for example, because the host device has no Ethernet card,\n or it is unknown how to find the hardware address of an interface on\n the host operating system). In this case, spatial uniqueness cannot\n be guaranteed. Nevertheless, a collision should have very low\n probability.\n\n The MAC address of an interface is taken into account only on FreeBSD\n and Linux. On other operating systems, MySQL uses a randomly\n generated 48-bit number.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT UUID();\n -> \'6ccd780c-baba-1026-9564-5b8c656024db\'\n','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(313,'LINESTRING',25,'LineString(pt [, pt] ...)\n\nConstructs a LineString value from a number of Point or WKB Point\narguments. If the number of arguments is less than two, the return\nvalue is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html'),(314,'SLEEP',14,'Syntax:\nSLEEP(duration)\n\nSleeps (pauses) for the number of seconds given by the duration\nargument, then returns 0. If SLEEP() is interrupted, it returns 1. The\nduration may have a fractional part.\n\nWhen sleep returns normally (without interruption), it returns 0:\n\nmysql> SELECT SLEEP(1000);\n+-------------+\n| SLEEP(1000) |\n+-------------+\n| 0 |\n+-------------+\n\nWhen SLEEP() is the only thing invoked by a query that is interrupted,\nit returns 1 and the query itself returns no error. This statement is\ninterrupted using KILL QUERY from another session:\n\nmysql> SELECT SLEEP(1000);\n+-------------+\n| SLEEP(1000) |\n+-------------+\n| 1 |\n+-------------+\n\nWhen SLEEP() is only part of a query that is interrupted, the query\nreturns an error. This statement is interrupted using KILL QUERY from\nanother session:\n\nmysql> SELECT 1 FROM t1 WHERE SLEEP(1000);\nERROR 1317 (70100): Query execution was interrupted\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(315,'CREATE LOGFILE GROUP',40,'Syntax:\nCREATE LOGFILE GROUP logfile_group\n ADD UNDOFILE \'undo_file\'\n [INITIAL_SIZE [=] initial_size]\n [UNDO_BUFFER_SIZE [=] undo_buffer_size]\n [REDO_BUFFER_SIZE [=] redo_buffer_size]\n [NODEGROUP [=] nodegroup_id]\n [WAIT]\n [COMMENT [=] \'string\']\n ENGINE [=] engine_name\n\nThis statement creates a new log file group named logfile_group having\na single UNDO file named \'undo_file\'. A CREATE LOGFILE GROUP statement\nhas one and only one ADD UNDOFILE clause. For rules covering the naming\nof log file groups, see\nhttp://dev.mysql.com/doc/refman/5.6/en/identifiers.html.\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and a log file group with the same name, or a tablespace and\na data file with the same name.\n\nIn MySQL NDB Cluster 7.3 and later, you can have only one log file\ngroup per Cluster at any given time. (See Bug #16386)\n\nThe optional INITIAL_SIZE parameter sets the UNDO file\'s initial size;\nif not specified, it defaults to 128M (128 megabytes). The optional\nUNDO_BUFFER_SIZE parameter sets the size used by the UNDO buffer for\nthe log file group; The default value for UNDO_BUFFER_SIZE is 8M (eight\nmegabytes); this value cannot exceed the amount of system memory\navailable. Both of these parameters are specified in bytes. In MySQL\nNDB Cluster 7.3.2 and later, you may optionally follow either or both\nof these with a one-letter abbreviation for an order of magnitude,\nsimilar to those used in my.cnf. Generally, this is one of the letters\nM (for megabytes) or G (for gigabytes). Prior to MySQL NDB Cluster\n7.3.2, the values for these options could only be specified using\ndigits. (Bug #13116514, Bug #16104705, Bug #62858)\n\nMemory used for UNDO_BUFFER_SIZE comes from the global pool whose size\nis determined by the value of the SharedGlobalMemory data node\nconfiguration parameter. This includes any default value implied for\nthis option by the setting of the InitialLogFileGroup data node\nconfiguration parameter.\n\nThe maximum permitted for UNDO_BUFFER_SIZE is 629145600 (600 MB).\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nThe minimum allowed value for INITIAL_SIZE is 1048576 (1 MB).\n\nThe ENGINE option determines the storage engine to be used by this log\nfile group, with engine_name being the name of the storage engine. In\nMySQL 5.6, this must be NDB (or NDBCLUSTER). If ENGINE is not set,\nMySQL tries to use the engine specified by the default_storage_engine\nserver system variable (formerly storage_engine). In any case, if the\nengine is not specified as NDB or NDBCLUSTER, the CREATE LOGFILE GROUP\nstatement appears to succeed but actually fails to create the log file\ngroup, as shown here:\n\nmysql> CREATE LOGFILE GROUP lg1\n -> ADD UNDOFILE \'undo.dat\' INITIAL_SIZE = 10M;\nQuery OK, 0 rows affected, 1 warning (0.00 sec)\n\nmysql> SHOW WARNINGS;\n+-------+------+------------------------------------------------------------------------------------------------+\n| Level | Code | Message |\n+-------+------+------------------------------------------------------------------------------------------------+\n| Error | 1478 | Table storage engine \'InnoDB\' does not support the create option \'TABLESPACE or LOGFILE GROUP\' |\n+-------+------+------------------------------------------------------------------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> DROP LOGFILE GROUP lg1 ENGINE = NDB; \nERROR 1529 (HY000): Failed to drop LOGFILE GROUP\n\nmysql> CREATE LOGFILE GROUP lg1\n -> ADD UNDOFILE \'undo.dat\' INITIAL_SIZE = 10M\n -> ENGINE = NDB;\nQuery OK, 0 rows affected (2.97 sec)\n\nThe fact that the CREATE LOGFILE GROUP statement does not actually\nreturn an error when a non-NDB storage engine is named, but rather\nappears to succeed, is a known issue which we hope to address in a\nfuture release of NDB Cluster.\n\nREDO_BUFFER_SIZE, NODEGROUP, WAIT, and COMMENT are parsed but ignored,\nand so have no effect in MySQL 5.6. These options are intended for\nfuture expansion.\n\nWhen used with ENGINE [=] NDB, a log file group and associated UNDO log\nfile are created on each Cluster data node. You can verify that the\nUNDO files were created and obtain information about them by querying\nthe INFORMATION_SCHEMA.FILES table. For example:\n\nmysql> SELECT LOGFILE_GROUP_NAME, LOGFILE_GROUP_NUMBER, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE FILE_NAME = \'undo_10.dat\';\n+--------------------+----------------------+----------------+\n| LOGFILE_GROUP_NAME | LOGFILE_GROUP_NUMBER | EXTRA |\n+--------------------+----------------------+----------------+\n| lg_3 | 11 | CLUSTER_NODE=3 |\n| lg_3 | 11 | CLUSTER_NODE=4 |\n+--------------------+----------------------+----------------+\n2 rows in set (0.06 sec)\n\nCREATE LOGFILE GROUP is useful only with Disk Data storage for NDB\nCluster. See\nhttp://dev.mysql.com/doc/refman/5.6/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/create-logfile-group.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/create-logfile-group.html'),(316,'NULLIF',6,'Syntax:\nNULLIF(expr1,expr2)\n\nReturns NULL if expr1 = expr2 is true, otherwise returns expr1. This is\nthe same as CASE WHEN expr1 = expr2 THEN NULL ELSE expr1 END.\n\nThe return value has the same type as the first argument.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html\n\n','mysql> SELECT NULLIF(1,1);\n -> NULL\nmysql> SELECT NULLIF(1,2);\n -> 1\n','http://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html'),(317,'ROUND',3,'Syntax:\nROUND(X), ROUND(X,D)\n\nRounds the argument X to D decimal places. The rounding algorithm\ndepends on the data type of X. D defaults to 0 if not specified. D can\nbe negative to cause D digits left of the decimal point of the value X\nto become zero.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT ROUND(-1.23);\n -> -1\nmysql> SELECT ROUND(-1.58);\n -> -2\nmysql> SELECT ROUND(1.58);\n -> 2\nmysql> SELECT ROUND(1.298, 1);\n -> 1.3\nmysql> SELECT ROUND(1.298, 0);\n -> 1\nmysql> SELECT ROUND(23.298, -1);\n -> 20\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(318,'TIMEDIFF',32,'Syntax:\nTIMEDIFF(expr1,expr2)\n\nTIMEDIFF() returns expr1 − expr2 expressed as a time value. expr1 and\nexpr2 are time or date-and-time expressions, but both must be of the\nsame type.\n\nThe result returned by TIMEDIFF() is limited to the range allowed for\nTIME values. Alternatively, you can use either of the functions\nTIMESTAMPDIFF() and UNIX_TIMESTAMP(), both of which return integers.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TIMEDIFF(\'2000:01:01 00:00:00\',\n -> \'2000:01:01 00:00:00.000001\');\n -> \'-00:00:00.000001\'\nmysql> SELECT TIMEDIFF(\'2008-12-31 23:59:59.000001\',\n -> \'2008-12-30 01:01:01.000002\');\n -> \'46:58:57.999999\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(319,'STOP SLAVE',8,'Syntax:\nSTOP SLAVE [thread_types]\n\nthread_types:\n [thread_type [, thread_type] ... ]\n\nthread_type: IO_THREAD | SQL_THREAD\n\nStops the slave threads. STOP SLAVE requires the SUPER privilege.\nRecommended best practice is to execute STOP SLAVE on the slave before\nstopping the slave server (see\nhttp://dev.mysql.com/doc/refman/5.6/en/server-shutdown.html, for more\ninformation).\n\nWhen using the row-based logging format: You should execute STOP SLAVE\nor STOP SLAVE SQL_THREAD on the slave prior to shutting down the slave\nserver if you are replicating any tables that use a nontransactional\nstorage engine (see the Note later in this section).\n\nLike START SLAVE, this statement may be used with the IO_THREAD and\nSQL_THREAD options to name the thread or threads to be stopped.\n\nIn MySQL 5.6.7 and later, STOP SLAVE causes an implicit commit of an\nongoing transaction. See\nhttp://dev.mysql.com/doc/refman/5.6/en/implicit-commit.html.\n\nBeginning with MySQL 5.6.11, gtid_next must be set to AUTOMATIC before\nissuing this statement (Bug #16062608).\n\nIn MySQL 5.6.13 and later, you can control how long STOP SLAVE waits\nbefore timing out by setting the rpl_stop_slave_timeout system\nvariable. This can be used to avoid deadlocks between STOP SLAVE and\nother slave SQL statements using different client connections to the\nslave. When the timeout value is reached, the issuing client returns an\nerror message and stops waiting, but the STOP SLAVE instruction remains\nin effect. Once the slave threads are no longer busy, the STOP SLAVE\nstatement is executed and the slave stops. (Bug #16856735)\n\nIf the current replication event group has modified one or more\nnontransactional tables, STOP SLAVE waits for up to 60 seconds for the\nevent group to complete, unless you issue a KILL QUERY or KILL\nCONNECTION statement for the slave SQL thread. If the event group\nremains incomplete after the timeout, an error message is logged. (Bug\n#319, Bug #38205)\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/stop-slave.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/stop-slave.html'),(320,'LINEFROMTEXT',4,'LineFromText(wkt[, srid]), LineStringFromText(wkt[, srid])\n\nST_LineFromText(), ST_LineStringFromText(), LineFromText(), and\nLineStringFromText() are synonyms. For more information, see the\ndescription of ST_LineFromText().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(321,'ADDTIME',32,'Syntax:\nADDTIME(expr1,expr2)\n\nADDTIME() adds expr2 to expr1 and returns the result. expr1 is a time\nor datetime expression, and expr2 is a time expression.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT ADDTIME(\'2007-12-31 23:59:59.999999\', \'1 1:1:1.000002\');\n -> \'2008-01-02 01:01:01.000001\'\nmysql> SELECT ADDTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'03:00:01.999997\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(322,'UPPER',38,'Syntax:\nUPPER(str)\n\nReturns the string str with all characters changed to uppercase\naccording to the current character set mapping. The default is latin1\n(cp1252 West European).\n\nmysql> SELECT UPPER(\'Hej\');\n -> \'HEJ\'\n\nSee the description of LOWER() for information that also applies to\nUPPER(). This included information about how to perform lettercase\nconversion of binary strings (BINARY, VARBINARY, BLOB) for which these\nfunctions are ineffective, and information about case folding for\nUnicode character sets.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(323,'MEDIUMBLOB',23,'MEDIUMBLOB\n\nA BLOB column with a maximum length of 16,777,215 (224 − 1) bytes.\nEach MEDIUMBLOB value is stored using a 3-byte length prefix that\nindicates the number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html'),(324,'FROM_UNIXTIME',32,'Syntax:\nFROM_UNIXTIME(unix_timestamp), FROM_UNIXTIME(unix_timestamp,format)\n\nReturns a representation of the unix_timestamp argument as a value in\n\'YYYY-MM-DD HH:MM:SS\' or YYYYMMDDHHMMSS format, depending on whether\nthe function is used in a string or numeric context. The value is\nexpressed in the current time zone. unix_timestamp is an internal\ntimestamp value such as is produced by the UNIX_TIMESTAMP() function.\n\nIf format is given, the result is formatted according to the format\nstring, which is used the same way as listed in the entry for the\nDATE_FORMAT() function.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT FROM_UNIXTIME(1447430881);\n -> \'2015-11-13 10:08:01\'\nmysql> SELECT FROM_UNIXTIME(1447430881) + 0;\n -> 20151113100801\nmysql> SELECT FROM_UNIXTIME(UNIX_TIMESTAMP(),\n -> \'%Y %D %M %h:%i:%s %x\');\n -> \'2015 13th November 10:08:01 2015\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(325,'SHA2',12,'Syntax:\nSHA2(str, hash_length)\n\nCalculates the SHA-2 family of hash functions (SHA-224, SHA-256,\nSHA-384, and SHA-512). The first argument is the cleartext string to be\nhashed. The second argument indicates the desired bit length of the\nresult, which must have a value of 224, 256, 384, 512, or 0 (which is\nequivalent to 256). If either argument is NULL or the hash length is\nnot one of the permitted values, the return value is NULL. Otherwise,\nthe function result is a hash value containing the desired number of\nbits. See the notes at the beginning of this section about storing hash\nvalues efficiently.\n\nThe return value is a string in the connection character set.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SELECT SHA2(\'abc\', 224);\n -> \'23097d223405d8228642a477bda255b32aadbce4bda0b3f7e36c9da7\'\n','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(326,'IFNULL',6,'Syntax:\nIFNULL(expr1,expr2)\n\nIf expr1 is not NULL, IFNULL() returns expr1; otherwise it returns\nexpr2.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html\n\n','mysql> SELECT IFNULL(1,0);\n -> 1\nmysql> SELECT IFNULL(NULL,10);\n -> 10\nmysql> SELECT IFNULL(1/0,10);\n -> 10\nmysql> SELECT IFNULL(1/0,\'yes\');\n -> \'yes\'\n','http://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html'),(327,'SHOW FUNCTION CODE',27,'Syntax:\nSHOW FUNCTION CODE func_name\n\nThis statement is similar to SHOW PROCEDURE CODE but for stored\nfunctions. See [HELP SHOW PROCEDURE CODE].\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-function-code.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-function-code.html'),(328,'SHOW ERRORS',27,'Syntax:\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW COUNT(*) ERRORS\n\nSHOW ERRORS is a diagnostic statement that is similar to SHOW WARNINGS,\nexcept that it displays information only for errors, rather than for\nerrors, warnings, and notes.\n\nThe LIMIT clause has the same syntax as for the SELECT statement. See\nhttp://dev.mysql.com/doc/refman/5.6/en/select.html.\n\nThe SHOW COUNT(*) ERRORS statement displays the number of errors. You\ncan also retrieve this number from the error_count variable:\n\nSHOW COUNT(*) ERRORS;\nSELECT @@error_count;\n\nSHOW ERRORS and error_count apply only to errors, not warnings or\nnotes. In other respects, they are similar to SHOW WARNINGS and\nwarning_count. In particular, SHOW ERRORS cannot display information\nfor more than max_error_count messages, and error_count can exceed the\nvalue of max_error_count if the number of errors exceeds\nmax_error_count.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-errors.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-errors.html'),(329,'SET NAMES',27,'Syntax:\nSET NAMES {\'charset_name\'\n [COLLATE \'collation_name\'] | DEFAULT}\n\nThis statement sets the three session system variables\ncharacter_set_client, character_set_connection, and\ncharacter_set_results to the given character set. Setting\ncharacter_set_connection to charset_name also sets collation_connection\nto the default collation for charset_name. See\nhttp://dev.mysql.com/doc/refman/5.6/en/charset-connection.html.\n\nThe optional COLLATE clause may be used to specify a collation\nexplicitly. If given, the collation must one of the permitted\ncollations for charset_name.\n\ncharset_name and collation_name may be quoted or unquoted.\n\nThe default mapping can be restored by using a value of DEFAULT. The\ndefault depends on the server configuration.\n\nucs2, utf16, and utf32 cannot be used as a client character set, which\nmeans that they do not work for SET NAMES.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/set-names.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/set-names.html'),(330,'LEAST',20,'Syntax:\nLEAST(value1,value2,...)\n\nWith two or more arguments, returns the smallest (minimum-valued)\nargument. The arguments are compared using the following rules:\n\no If any argument is NULL, the result is NULL. No comparison is needed.\n\no If all arguments are integer-valued, they are compared as integers.\n\no If at least one argument is double precision, they are compared as\n double-precision values. Otherwise, if at least one argument is a\n DECIMAL value, they are compared as DECIMAL values.\n\no If the arguments comprise a mix of numbers and strings, they are\n compared as numbers.\n\no If any argument is a nonbinary (character) string, the arguments are\n compared as nonbinary strings.\n\no In all other cases, the arguments are compared as binary strings.\n\nThe return type of LEAST() is the aggregated type of the comparison\nargument types.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT LEAST(2,0);\n -> 0\nmysql> SELECT LEAST(34.0,3.0,5.0,767.0);\n -> 3.0\nmysql> SELECT LEAST(\'B\',\'A\',\'C\');\n -> \'A\'\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(331,'=',20,'=\n\nEqual:\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 1 = 0;\n -> 0\nmysql> SELECT \'0\' = 0;\n -> 1\nmysql> SELECT \'0.0\' = 0;\n -> 1\nmysql> SELECT \'0.01\' = 0;\n -> 0\nmysql> SELECT \'.01\' = 0.01;\n -> 1\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(332,'ST_GEOMCOLLFROMTEXT',4,'ST_GeomCollFromText(wkt[, srid]), ST_GeometryCollectionFromText(wkt[,\nsrid])\n\nConstructs a GeometryCollection value using its WKT representation and\nSRID.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','mysql> SET @g = \"MULTILINESTRING((10 10, 11 11), (9 9, 10 10))\";\nmysql> SELECT ST_AsText(ST_GeomCollFromText(@g));\n+--------------------------------------------+\n| ST_AsText(ST_GeomCollFromText(@g)) |\n+--------------------------------------------+\n| MULTILINESTRING((10 10,11 11),(9 9,10 10)) |\n+--------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(333,'IS_IPV4_MAPPED',14,'Syntax:\nIS_IPV4_MAPPED(expr)\n\nThis function takes an IPv6 address represented in numeric form as a\nbinary string, as returned by INET6_ATON(). It returns 1 if the\nargument is a valid IPv4-mapped IPv6 address, 0 otherwise. IPv4-mapped\naddresses have the form ::ffff:ipv4_address.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT IS_IPV4_MAPPED(INET6_ATON(\'::10.0.5.9\'));\n -> 0\nmysql> SELECT IS_IPV4_MAPPED(INET6_ATON(\'::ffff:10.0.5.9\'));\n -> 1\n','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(334,'CREATE USER',10,'Syntax:\nCREATE USER\n user [auth_option] [, user [auth_option]] ...\n\nuser:\n (see )\n\nauth_option: {\n IDENTIFIED BY \'auth_string\'\n | IDENTIFIED BY PASSWORD \'hash_string\'\n | IDENTIFIED WITH auth_plugin\n | IDENTIFIED WITH auth_plugin AS \'hash_string\'\n}\n\nThe CREATE USER statement creates new MySQL accounts. An error occurs\nif you try to create an account that already exists.\n\nTo use CREATE USER, you must have the global CREATE USER privilege, or\nthe INSERT privilege for the mysql database. When the read_only system\nvariable is enabled, CREATE USER additionally requires the SUPER\nprivilege.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/create-user.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/create-user.html'),(335,'POINT',25,'Point(x, y)\n\nConstructs a Point using its coordinates.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html'),(336,'LCASE',38,'Syntax:\nLCASE(str)\n\nLCASE() is a synonym for LOWER().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(337,'CREATE_DH_PARAMETERS',7,'CREATE_DH_PARAMETERS(key_len)\n\nCreates a shared secret for generating a DH private/public key pair and\nreturns a binary string that can be passed to\nCREATE_ASYMMETRIC_PRIV_KEY(). If secret generation fails, the result is\nnull.\n\nSupported key_len values: The minimum and maximum key lengths in bits\nare 1,024 and 10,000. These key-length limits are constraints imposed\nby OpenSSL. Server administrators can impose additional limits on\nmaximum key length by setting environment variables. See\nhttp://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-usage.html\n.\n\nFor an example showing how to use the return value for generating\nsymmetric keys, see the description of ASYMMETRIC_DERIVE().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','SET @dhp = CREATE_DH_PARAMETERS(1024);\n','http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(338,'IS NOT NULL',20,'Syntax:\nIS NOT NULL\n\nTests whether a value is not NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;\n -> 1, 1, 0\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(339,'MATCH AGAINST',38,'Syntax:\nMATCH (col1,col2,...) AGAINST (expr [search_modifier])\n\nMySQL has support for full-text indexing and searching:\n\no A full-text index in MySQL is an index of type FULLTEXT.\n\no Full-text indexes can be used only with InnoDB or MyISAM tables, and\n can be created only for CHAR, VARCHAR, or TEXT columns.\n\no A FULLTEXT index definition can be given in the CREATE TABLE\n statement when a table is created, or added later using ALTER TABLE\n or CREATE INDEX.\n\no For large data sets, it is much faster to load your data into a table\n that has no FULLTEXT index and then create the index after that, than\n to load data into a table that has an existing FULLTEXT index.\n\nFull-text searching is performed using MATCH() ... AGAINST syntax.\nMATCH() takes a comma-separated list that names the columns to be\nsearched. AGAINST takes a string to search for, and an optional\nmodifier that indicates what type of search to perform. The search\nstring must be a string value that is constant during query evaluation.\nThis rules out, for example, a table column because that can differ for\neach row.\n\nThere are three types of full-text searches:\n\no A natural language search interprets the search string as a phrase in\n natural human language (a phrase in free text). There are no special\n operators, with the exception of double quote (\") characters. The\n stopword list applies. For more information about stopword lists, see\n http://dev.mysql.com/doc/refman/5.6/en/fulltext-stopwords.html.\n\n Full-text searches are natural language searches if the IN NATURAL\n LANGUAGE MODE modifier is given or if no modifier is given. For more\n information, see\n http://dev.mysql.com/doc/refman/5.6/en/fulltext-natural-language.html\n .\n\no A boolean search interprets the search string using the rules of a\n special query language. The string contains the words to search for.\n It can also contain operators that specify requirements such that a\n word must be present or absent in matching rows, or that it should be\n weighted higher or lower than usual. Certain common words (stopwords)\n are omitted from the search index and do not match if present in the\n search string. The IN BOOLEAN MODE modifier specifies a boolean\n search. For more information, see\n http://dev.mysql.com/doc/refman/5.6/en/fulltext-boolean.html.\n\no A query expansion search is a modification of a natural language\n search. The search string is used to perform a natural language\n search. Then words from the most relevant rows returned by the search\n are added to the search string and the search is done again. The\n query returns the rows from the second search. The IN NATURAL\n LANGUAGE MODE WITH QUERY EXPANSION or WITH QUERY EXPANSION modifier\n specifies a query expansion search. For more information, see\n http://dev.mysql.com/doc/refman/5.6/en/fulltext-query-expansion.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/fulltext-search.html\n\n','mysql> SELECT id, body, MATCH (title,body) AGAINST\n (\'Security implications of running MySQL as root\'\n IN NATURAL LANGUAGE MODE) AS score\n FROM articles WHERE MATCH (title,body) AGAINST\n (\'Security implications of running MySQL as root\'\n IN NATURAL LANGUAGE MODE);\n+----+-------------------------------------+-----------------+\n| id | body | score |\n+----+-------------------------------------+-----------------+\n| 4 | 1. Never run mysqld as root. 2. ... | 1.5219271183014 |\n| 6 | When configured properly, MySQL ... | 1.3114095926285 |\n+----+-------------------------------------+-----------------+\n2 rows in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.6/en/fulltext-search.html'),(340,'CREATE EVENT',40,'Syntax:\nCREATE\n [DEFINER = { user | CURRENT_USER }]\n EVENT\n [IF NOT EXISTS]\n event_name\n ON SCHEDULE schedule\n [ON COMPLETION [NOT] PRESERVE]\n [ENABLE | DISABLE | DISABLE ON SLAVE]\n [COMMENT \'string\']\n DO event_body;\n\nschedule:\n AT timestamp [+ INTERVAL interval] ...\n | EVERY interval\n [STARTS timestamp [+ INTERVAL interval] ...]\n [ENDS timestamp [+ INTERVAL interval] ...]\n\ninterval:\n quantity {YEAR | QUARTER | MONTH | DAY | HOUR | MINUTE |\n WEEK | SECOND | YEAR_MONTH | DAY_HOUR | DAY_MINUTE |\n DAY_SECOND | HOUR_MINUTE | HOUR_SECOND | MINUTE_SECOND}\n\nThis statement creates and schedules a new event. The event will not\nrun unless the Event Scheduler is enabled. For information about\nchecking Event Scheduler status and enabling it if necessary, see\nhttp://dev.mysql.com/doc/refman/5.6/en/events-configuration.html.\n\nCREATE EVENT requires the EVENT privilege for the schema in which the\nevent is to be created. It might also require the SUPER privilege,\ndepending on the DEFINER value, as described later in this section.\n\nThe minimum requirements for a valid CREATE EVENT statement are as\nfollows:\n\no The keywords CREATE EVENT plus an event name, which uniquely\n identifies the event in a database schema.\n\no An ON SCHEDULE clause, which determines when and how often the event\n executes.\n\no A DO clause, which contains the SQL statement to be executed by an\n event.\n\nThis is an example of a minimal CREATE EVENT statement:\n\nCREATE EVENT myevent\n ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 HOUR\n DO\n UPDATE myschema.mytable SET mycol = mycol + 1;\n\nThe previous statement creates an event named myevent. This event\nexecutes once---one hour following its creation---by running an SQL\nstatement that increments the value of the myschema.mytable table\'s\nmycol column by 1.\n\nThe event_name must be a valid MySQL identifier with a maximum length\nof 64 characters. Event names are not case-sensitive, so you cannot\nhave two events named myevent and MyEvent in the same schema. In\ngeneral, the rules governing event names are the same as those for\nnames of stored routines. See\nhttp://dev.mysql.com/doc/refman/5.6/en/identifiers.html.\n\nAn event is associated with a schema. If no schema is indicated as part\nof event_name, the default (current) schema is assumed. To create an\nevent in a specific schema, qualify the event name with a schema using\nschema_name.event_name syntax.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/create-event.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/create-event.html'),(341,'MBR DEFINITION',7,'Its MBR (minimum bounding rectangle), or envelope. This is the bounding\ngeometry, formed by the minimum and maximum (X,Y) coordinates:\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-class-geometry.html\n\n','((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n','http://dev.mysql.com/doc/refman/5.6/en/gis-class-geometry.html'),(342,'ST_DIFFERENCE',26,'ST_Difference(g1, g2)\n\nReturns a geometry that represents the point set difference of the\ngeometry values g1 and g2. If any argument is NULL, the return value is\nNULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html\n\n','mysql> SET @g1 = Point(1,1), @g2 = Point(2,2);\nmysql> SELECT ST_AsText(ST_Difference(@g1, @g2));\n+------------------------------------+\n| ST_AsText(ST_Difference(@g1, @g2)) |\n+------------------------------------+\n| POINT(1 1) |\n+------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html'),(343,'GEOMETRYCOLLECTION',25,'GeometryCollection(g [, g] ...)\n\nConstructs a GeometryCollection value from the geometry arguments.\n\nIf an argument contains a nonsupported geometry, the return value is\nNULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html'),(344,'*',3,'Syntax:\n*\n\nMultiplication:\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html\n\n','mysql> SELECT 3*5;\n -> 15\nmysql> SELECT 18014398509481984*18014398509481984.0;\n -> 324518553658426726783156020576256.0\nmysql> SELECT 18014398509481984*18014398509481984;\n -> out-of-range error\n','http://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html'),(345,'ST_ASBINARY',33,'ST_AsBinary(g), ST_AsWKB(g)\n\nConverts a value in internal geometry format to its WKB representation\nand returns the binary result.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-format-conversion-functions.html\n\n','SELECT ST_AsBinary(g) FROM geom;\n','http://dev.mysql.com/doc/refman/5.6/en/gis-format-conversion-functions.html'),(346,'TO_BASE64',38,'Syntax:\nTO_BASE64(str)\n\nConverts the string argument to base-64 encoded form and returns the\nresult as a character string with the connection character set and\ncollation. If the argument is not a string, it is converted to a string\nbefore conversion takes place. The result is NULL if the argument is\nNULL. Base-64 encoded strings can be decoded using the FROM_BASE64()\nfunction.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT TO_BASE64(\'abc\'), FROM_BASE64(TO_BASE64(\'abc\'));\n -> \'JWJj\', \'abc\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(347,'DES_DECRYPT',12,'Syntax:\nDES_DECRYPT(crypt_str[,key_str])\n\nDecrypts a string encrypted with DES_ENCRYPT(). If an error occurs,\nthis function returns NULL.\n\nThis function works only if MySQL has been configured with SSL support.\nSee http://dev.mysql.com/doc/refman/5.6/en/encrypted-connections.html.\n\nIf no key_str argument is given, DES_DECRYPT() examines the first byte\nof the encrypted string to determine the DES key number that was used\nto encrypt the original string, and then reads the key from the DES key\nfile to decrypt the message. For this to work, the user must have the\nSUPER privilege. The key file can be specified with the --des-key-file\nserver option.\n\nIf you pass this function a key_str argument, that string is used as\nthe key for decrypting the message.\n\nIf the crypt_str argument does not appear to be an encrypted string,\nMySQL returns the given crypt_str.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(348,'ST_AREA',2,'ST_Area(poly)\n\nReturns a double-precision number indicating the area of the argument,\nas measured in its spatial reference system. For arguments of dimension\n0 or 1, the result is 0. If the argument is an empty geometry the\nreturn value is 0. If the argument is NULL the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n \'Polygon((0 0,0 3,3 0,0 0),(1 1,1 2,2 1,1 1))\';\nmysql> SELECT ST_Area(ST_GeomFromText(@poly));\n+---------------------------------+\n| ST_Area(ST_GeomFromText(@poly)) |\n+---------------------------------+\n| 4 |\n+---------------------------------+\n\nmysql> SET @mpoly =\n -> \'MultiPolygon(((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1)))\';\nmysql> SELECT ST_Area(ST_GeomFromText(@mpoly));\n+----------------------------------+\n| ST_Area(ST_GeomFromText(@mpoly)) |\n+----------------------------------+\n| 8 |\n+----------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(349,'ENDPOINT',13,'EndPoint(ls)\n\nST_EndPoint() and EndPoint() are synonyms. For more information, see\nthe description of ST_EndPoint().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(350,'COUNT',16,'Syntax:\nCOUNT(expr)\n\nReturns a count of the number of non-NULL values of expr in the rows\nretrieved by a SELECT statement. The result is a BIGINT value.\n\nIf there are no matching rows, COUNT() returns 0.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','mysql> SELECT student.student_name,COUNT(*)\n FROM student,course\n WHERE student.student_id=course.student_id\n GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(351,'INSERT',28,'Syntax:\nINSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [(col_name [, col_name] ...)]\n {VALUES | VALUE} (value_list) [, (value_list)] ...\n [ON DUPLICATE KEY UPDATE assignment_list]\n\nINSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n SET assignment_list\n [ON DUPLICATE KEY UPDATE assignment_list]\n\nINSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [(col_name [, col_name] ...)]\n SELECT ...\n [ON DUPLICATE KEY UPDATE assignment_list]\n\nvalue:\n {expr | DEFAULT}\n\nvalue_list:\n value [, value] ...\n\nassignment:\n col_name = value\n\nassignment_list:\n assignment [, assignment] ...\n\nINSERT inserts new rows into an existing table. The INSERT ... VALUES\nand INSERT ... SET forms of the statement insert rows based on\nexplicitly specified values. The INSERT ... SELECT form inserts rows\nselected from another table or tables. INSERT with an ON DUPLICATE KEY\nUPDATE clause enables existing rows to be updated if a row to be\ninserted would cause a duplicate value in a UNIQUE index or PRIMARY\nKEY.\n\nFor additional information about INSERT ... SELECT and INSERT ... ON\nDUPLICATE KEY UPDATE, see [HELP INSERT SELECT], and\nhttp://dev.mysql.com/doc/refman/5.6/en/insert-on-duplicate.html.\n\nInserting into a table requires the INSERT privilege for the table. If\nthe ON DUPLICATE KEY UPDATE clause is used and a duplicate key causes\nan UPDATE to be performed instead, the statement requires the UPDATE\nprivilege for the columns to be updated. For columns that are read but\nnot modified you need only the SELECT privilege (such as for a column\nreferenced only on the right hand side of an col_name=expr assignment\nin an ON DUPLICATE KEY UPDATE clause).\n\nWhen inserting into a partitioned table, you can control which\npartitions and subpartitions accept new rows. The PARTITION option\ntakes a list of the comma-separated names of one or more partitions or\nsubpartitions (or both) of the table. If any of the rows to be inserted\nby a given INSERT statement do not match one of the partitions listed,\nthe INSERT statement fails with the error Found a row not matching the\ngiven partition set. For more information and examples, see\nhttp://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/insert.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/insert.html'),(352,'MLINEFROMTEXT',4,'MLineFromText(wkt[, srid]), MultiLineStringFromText(wkt[, srid])\n\nConstructs a MultiLineString value using its WKT representation and\nSRID.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(353,'GEOMCOLLFROMWKB',33,'GeomCollFromWKB(wkb[, srid]), GeometryCollectionFromWKB(wkb[, srid])\n\nST_GeomCollFromWKB(), ST_GeometryCollectionFromWKB(),\nGeomCollFromWKB(), and GeometryCollectionFromWKB() are synonyms. For\nmore information, see the description of ST_GeomCollFromWKB().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(354,'TINYTEXT',23,'TINYTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 255 (28 − 1) characters. The\neffective maximum length is less if the value contains multibyte\ncharacters. Each TINYTEXT value is stored using a 1-byte length prefix\nthat indicates the number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html'),(355,'DEFAULT',14,'Syntax:\nDEFAULT(col_name)\n\nReturns the default value for a table column. An error results if the\ncolumn has no default value.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;\n','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(356,'OPTIMIZE TABLE',21,'Syntax:\nOPTIMIZE [NO_WRITE_TO_BINLOG | LOCAL]\n TABLE tbl_name [, tbl_name] ...\n\nOPTIMIZE TABLE reorganizes the physical storage of table data and\nassociated index data, to reduce storage space and improve I/O\nefficiency when accessing the table. The exact changes made to each\ntable depend on the storage engine used by that table.\n\nUse OPTIMIZE TABLE in these cases, depending on the type of table:\n\no After doing substantial insert, update, or delete operations on an\n InnoDB table that has its own .ibd file because it was created with\n the innodb_file_per_table option enabled. The table and indexes are\n reorganized, and disk space can be reclaimed for use by the operating\n system.\n\no After doing substantial insert, update, or delete operations on\n columns that are part of a FULLTEXT index in an InnoDB table. Set the\n configuration option innodb_optimize_fulltext_only=1 first. To keep\n the index maintenance period to a reasonable time, set the\n innodb_ft_num_word_optimize option to specify how many words to\n update in the search index, and run a sequence of OPTIMIZE TABLE\n statements until the search index is fully updated.\n\no After deleting a large part of a MyISAM or ARCHIVE table, or making\n many changes to a MyISAM or ARCHIVE table with variable-length rows\n (tables that have VARCHAR, VARBINARY, BLOB, or TEXT columns). Deleted\n rows are maintained in a linked list and subsequent INSERT operations\n reuse old row positions. You can use OPTIMIZE TABLE to reclaim the\n unused space and to defragment the data file. After extensive changes\n to a table, this statement may also improve performance of statements\n that use the table, sometimes significantly.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nOPTIMIZE TABLE works for InnoDB, MyISAM, and ARCHIVE tables. OPTIMIZE\nTABLE is also supported for dynamic columns of in-memory NDB tables. It\ndoes not work for fixed-width columns of in-memory tables, nor does it\nwork for Disk Data tables. The performance of OPTIMIZE on NDB Cluster\ntables can be tuned using --ndb_optimization_delay, which controls the\nlength of time to wait between processing batches of rows by OPTIMIZE\nTABLE. For more information, see\nhttp://dev.mysql.com/doc/refman/5.6/en/mysql-cluster-limitations-resolv\ned.html.\n\nFor NDB Cluster tables, OPTIMIZE TABLE can be interrupted by (for\nexample) killing the SQL thread performing the OPTIMIZE operation.\n\nBy default, OPTIMIZE TABLE does not work for tables created using any\nother storage engine and returns a result indicating this lack of\nsupport. You can make OPTIMIZE TABLE work for other storage engines by\nstarting mysqld with the --skip-new option. In this case, OPTIMIZE\nTABLE is just mapped to ALTER TABLE.\n\nThis statement does not work with views.\n\nOPTIMIZE TABLE is supported for partitioned tables. For information\nabout using this statement with partitioned tables and table\npartitions, see\nhttp://dev.mysql.com/doc/refman/5.6/en/partitioning-maintenance.html.\n\nBy default, the server writes OPTIMIZE TABLE statements to the binary\nlog so that they replicate to replication slaves. To suppress logging,\nspecify the optional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\nIn MySQL 5.6.11 only, gtid_next must be set to AUTOMATIC before issuing\nthis statement. (Bug #16062608, Bug #16715809, Bug #69045)\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/optimize-table.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/optimize-table.html'),(357,'DECODE',12,'Syntax:\nDECODE(crypt_str,pass_str)\n\nDecrypts the encrypted string crypt_str using pass_str as the password.\ncrypt_str should be a string returned from ENCODE().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(358,'<=>',20,'Syntax:\n<=>\n\nNULL-safe equal. This operator performs an equality comparison like the\n= operator, but returns 1 rather than NULL if both operands are NULL,\nand 0 rather than NULL if one operand is NULL.\n\nThe <=> operator is equivalent to the standard SQL IS NOT DISTINCT FROM\noperator.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 1 <=> 1, NULL <=> NULL, 1 <=> NULL;\n -> 1, 1, 0\nmysql> SELECT 1 = 1, NULL = NULL, 1 = NULL;\n -> 1, NULL, NULL\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(359,'RESET',27,'Syntax:\nRESET reset_option [, reset_option] ...\n\nreset_option: {\n MASTER\n | QUERY CACHE\n | SLAVE\n}\n\nThe RESET statement is used to clear the state of various server\noperations. You must have the RELOAD privilege to execute RESET.\n\nRESET acts as a stronger version of the FLUSH statement. See [HELP\nFLUSH].\n\nThe RESET statement causes an implicit commit. See\nhttp://dev.mysql.com/doc/refman/5.6/en/implicit-commit.html.\n\nIn MySQL 5.6.11 only, gtid_next must be set to AUTOMATIC before issuing\nthis statement. (Bug #16062608, Bug #16715809, Bug #69045)\n\nThe following list describes the permitted RESET statement reset_option\nvalues:\n\no RESET MASTER\n\n Deletes all binary logs listed in the index file, resets the binary\n log index file to be empty, and creates a new binary log file.\n\no RESET QUERY CACHE\n\n Removes all query results from the query cache.\n\no RESET SLAVE\n\n Makes the slave forget its replication position in the master binary\n logs. Also resets the relay log by deleting any existing relay log\n files and beginning a new one.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/reset.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/reset.html'),(360,'GET_LOCK',14,'Syntax:\nGET_LOCK(str,timeout)\n\nTries to obtain a lock with a name given by the string str, using a\ntimeout of timeout seconds. A negative timeout value means infinite\ntimeout. The lock is exclusive. While held by one session, other\nsessions cannot obtain a lock of the same name.\n\nReturns 1 if the lock was obtained successfully, 0 if the attempt timed\nout (for example, because another client has previously locked the\nname), or NULL if an error occurred (such as running out of memory or\nthe thread was killed with mysqladmin kill).\n\nA lock obtained with GET_LOCK() is released explicitly by executing\nRELEASE_LOCK() or implicitly when your session terminates (either\nnormally or abnormally).\n\nLocks obtained with GET_LOCK() are not released when transactions\ncommit or roll back.\n\n*Important*:\n\nThe behavior of GET_LOCK() changes in MySQL 5.7. In consideration of\nfuture upgrades, limit the str value to 64 characters or less and do\nnot rely on subsequent calls to GET_LOCK() releasing previous locks.\n\nGET_LOCK() can be used to implement application locks or to simulate\nrecord locks. Names are locked on a server-wide basis. If a name has\nbeen locked within one session, GET_LOCK() blocks any request by\nanother session for a lock with the same name. This enables clients\nthat agree on a given lock name to use the name to perform cooperative\nadvisory locking. But be aware that it also enables a client that is\nnot among the set of cooperating clients to lock a name, either\ninadvertently or deliberately, and thus prevent any of the cooperating\nclients from locking that name. One way to reduce the likelihood of\nthis is to use lock names that are database-specific or\napplication-specific. For example, use lock names of the form\ndb_name.str or app_name.str.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT GET_LOCK(\'lock1\',10);\n -> 1\nmysql> SELECT IS_FREE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT GET_LOCK(\'lock2\',10);\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock1\');\n -> NULL\n','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(361,'BIGINT',23,'BIGINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA large integer. The signed range is -9223372036854775808 to\n9223372036854775807. The unsigned range is 0 to 18446744073709551615.\n\nSERIAL is an alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html'),(362,'CURTIME',32,'Syntax:\nCURTIME([fsp])\n\nReturns the current time as a value in \'HH:MM:SS\' or HHMMSS format,\ndepending on whether the function is used in a string or numeric\ncontext. The value is expressed in the current time zone.\n\nAs of MySQL 5.6.4, if the fsp argument is given to specify a fractional\nseconds precision from 0 to 6, the return value includes a fractional\nseconds part of that many digits. Before 5.6.4, any argument is\nignored.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT CURTIME();\n -> \'23:50:26\'\nmysql> SELECT CURTIME() + 0;\n -> 235026.000000\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(363,'ST_DIMENSION',37,'ST_Dimension(g)\n\nReturns the inherent dimension of the geometry value g, or NULL if the\nargument is NULL. The dimension can be −1, 0, 1, or 2. The meaning of\nthese values is given in\nhttp://dev.mysql.com/doc/refman/5.6/en/gis-class-geometry.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','mysql> SELECT ST_Dimension(ST_GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------------+\n| ST_Dimension(ST_GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------------+\n| 1 |\n+------------------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(364,'SET',27,'Syntax:\nSET variable_assignment [, variable_assignment] ...\n\nvariable_assignment:\n user_var_name = expr\n | param_name = expr\n | local_var_name = expr\n | [GLOBAL | SESSION]\n system_var_name = expr\n | [@@global. | @@session. | @@]\n system_var_name = expr\n\nSET ONE_SHOT system_var_name = expr\n\nSET syntax for variable assignment enables you to assign values to\ndifferent types of variables that affect the operation of the server or\nclients:\n\no System variables. See\n http://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n System variables also can be set at server startup, as described in\n http://dev.mysql.com/doc/refman/5.6/en/using-system-variables.html.\n (To display system variable names and values, use the SHOW VARIABLES\n statement; see [HELP SHOW VARIABLES].)\n\no User-defined variables. See\n http://dev.mysql.com/doc/refman/5.6/en/user-variables.html.\n\no Stored procedure and function parameters, and stored program local\n variables. See\n http://dev.mysql.com/doc/refman/5.6/en/stored-program-variables.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/set-variable.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/set-variable.html'),(365,'CONV',3,'Syntax:\nCONV(N,from_base,to_base)\n\nConverts numbers between different number bases. Returns a string\nrepresentation of the number N, converted from base from_base to base\nto_base. Returns NULL if any argument is NULL. The argument N is\ninterpreted as an integer, but may be specified as an integer or a\nstring. The minimum base is 2 and the maximum base is 36. If from_base\nis a negative number, N is regarded as a signed number. Otherwise, N is\ntreated as unsigned. CONV() works with 64-bit precision.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT CONV(\'a\',16,2);\n -> \'1010\'\nmysql> SELECT CONV(\'6E\',18,8);\n -> \'172\'\nmysql> SELECT CONV(-17,10,-18);\n -> \'-H\'\nmysql> SELECT CONV(10+\'10\'+\'10\'+X\'0a\',10,10);\n -> \'40\'\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(366,'LOAD XML',28,'Syntax:\nLOAD XML [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name\'\n [REPLACE | IGNORE]\n INTO TABLE [db_name.]tbl_name\n [CHARACTER SET charset_name]\n [ROWS IDENTIFIED BY \'<tagname>\']\n [IGNORE number {LINES | ROWS}]\n [(field_name_or_user_var\n [, field_name_or_user_var] ...)]\n [SET col_name={expr | DEFAULT},\n [, col_name={expr | DEFAULT}] ...]\n\nThe LOAD XML statement reads data from an XML file into a table. The\nfile_name must be given as a literal string. The tagname in the\noptional ROWS IDENTIFIED BY clause must also be given as a literal\nstring, and must be surrounded by angle brackets (< and >).\n\nLOAD XML acts as the complement of running the mysql client in XML\noutput mode (that is, starting the client with the --xml option). To\nwrite data from a table to an XML file, you can invoke the mysql client\nwith the --xml and -e options from the system shell, as shown here:\n\nshell> mysql --xml -e \'SELECT * FROM mydb.mytable\' > file.xml\n\nTo read the file back into a table, use LOAD XML INFILE. By default,\nthe <row> element is considered to be the equivalent of a database\ntable row; this can be changed using the ROWS IDENTIFIED BY clause.\n\nThis statement supports three different XML formats:\n\no Column names as attributes and column values as attribute values:\n\n<row column1=\"value1\" column2=\"value2\" .../>\n\no Column names as tags and column values as the content of these tags:\n\n<row>\n <column1>value1</column1>\n <column2>value2</column2>\n</row>\n\no Column names are the name attributes of <field> tags, and values are\n the contents of these tags:\n\n<row>\n <field name=\'column1\'>value1</field>\n <field name=\'column2\'>value2</field>\n</row>\n\n This is the format used by other MySQL tools, such as mysqldump.\n\nAll three formats can be used in the same XML file; the import routine\nautomatically detects the format for each row and interprets it\ncorrectly. Tags are matched based on the tag or attribute name and the\ncolumn name.\n\nPrior to MySQL 5.6.27, LOAD XML did not handle empty XML elements in\nthe form <element/> correctly. (Bug #67542, Bug #16171518)\n\nThe following clauses work essentially the same way for LOAD XML as\nthey do for LOAD DATA:\n\no LOW_PRIORITY or CONCURRENT\n\no LOCAL\n\no REPLACE or IGNORE\n\no CHARACTER SET\n\no SET\n\nSee [HELP LOAD DATA], for more information about these clauses.\n\n(field_name_or_user_var, ...) is a list of one or more comma-separated\nXML fields or user variables. The name of a user variable used for this\npurpose must match the name of a field from the XML file, prefixed with\n@. You can use field names to select only desired fields. User\nvariables can be employed to store the corresponding field values for\nsubsequent re-use.\n\nThe IGNORE number LINES or IGNORE number ROWS clause causes the first\nnumber rows in the XML file to be skipped. It is analogous to the LOAD\nDATA statement\'s IGNORE ... LINES clause.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/load-xml.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/load-xml.html'),(367,'ASSIGN-VALUE',15,'Syntax:\n:=\n\nAssignment operator. Causes the user variable on the left hand side of\nthe operator to take on the value to its right. The value on the right\nhand side may be a literal value, another variable storing a value, or\nany legal expression that yields a scalar value, including the result\nof a query (provided that this value is a scalar value). You can\nperform multiple assignments in the same SET statement. You can perform\nmultiple assignments in the same statement.\n\nUnlike =, the := operator is never interpreted as a comparison\noperator. This means you can use := in any valid SQL statement (not\njust in SET statements) to assign a value to a variable.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/assignment-operators.html\n\n','mysql> SELECT @var1, @var2;\n -> NULL, NULL\nmysql> SELECT @var1 := 1, @var2;\n -> 1, NULL\nmysql> SELECT @var1, @var2;\n -> 1, NULL\nmysql> SELECT @var1, @var2 := @var1;\n -> 1, 1\nmysql> SELECT @var1, @var2;\n -> 1, 1\n\nmysql> SELECT @var1:=COUNT(*) FROM t1;\n -> 4\nmysql> SELECT @var1;\n -> 4\n','http://dev.mysql.com/doc/refman/5.6/en/assignment-operators.html'),(368,'SHOW OPEN TABLES',27,'Syntax:\nSHOW OPEN TABLES\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW OPEN TABLES lists the non-TEMPORARY tables that are currently open\nin the table cache. See\nhttp://dev.mysql.com/doc/refman/5.6/en/table-cache.html. The FROM\nclause, if present, restricts the tables shown to those present in the\ndb_name database. The LIKE clause, if present, indicates which table\nnames to match. The WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-open-tables.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-open-tables.html'),(369,'EXTRACT',32,'Syntax:\nEXTRACT(unit FROM date)\n\nThe EXTRACT() function uses the same kinds of unit specifiers as\nDATE_ADD() or DATE_SUB(), but extracts parts from the date rather than\nperforming date arithmetic.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT EXTRACT(YEAR FROM \'2009-07-02\');\n -> 2009\nmysql> SELECT EXTRACT(YEAR_MONTH FROM \'2009-07-02 01:02:03\');\n -> 200907\nmysql> SELECT EXTRACT(DAY_MINUTE FROM \'2009-07-02 01:02:03\');\n -> 20102\nmysql> SELECT EXTRACT(MICROSECOND\n -> FROM \'2003-01-02 10:30:00.000123\');\n -> 123\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(370,'ENCRYPT',12,'Syntax:\nENCRYPT(str[,salt])\n\nEncrypts str using the Unix crypt() system call and returns a binary\nstring. The salt argument must be a string with at least two characters\nor the result will be NULL. If no salt argument is given, a random\nvalue is used.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SELECT ENCRYPT(\'hello\');\n -> \'VxuFAJXVARROc\'\n','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(371,'SHOW STATUS',27,'Syntax:\nSHOW [GLOBAL | SESSION] STATUS\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW STATUS provides server status information (see\nhttp://dev.mysql.com/doc/refman/5.6/en/server-status-variables.html).\nThis statement does not require any privilege. It requires only the\nability to connect to the server.\n\nStatus variable information is also available from these sources:\n\no The GLOBAL_STATUS and SESSION_STATUS tables. See\n http://dev.mysql.com/doc/refman/5.6/en/status-table.html.\n\no The mysqladmin extended-status command. See\n http://dev.mysql.com/doc/refman/5.6/en/mysqladmin.html.\n\nFor SHOW STATUS, a LIKE clause, if present, indicates which variable\nnames to match. A WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nSHOW STATUS accepts an optional GLOBAL or SESSION variable scope\nmodifier:\n\no With a GLOBAL modifier, the statement displays the global status\n values. A global status variable may represent status for some aspect\n of the server itself (for example, Aborted_connects), or the\n aggregated status over all connections to MySQL (for example,\n Bytes_received and Bytes_sent). If a variable has no global value,\n the session value is displayed.\n\no With a SESSION modifier, the statement displays the status variable\n values for the current connection. If a variable has no session\n value, the global value is displayed. LOCAL is a synonym for SESSION.\n\no If no modifier is present, the default is SESSION.\n\nThe scope for each status variable is listed at\nhttp://dev.mysql.com/doc/refman/5.6/en/server-status-variables.html.\n\nEach invocation of the SHOW STATUS statement uses an internal temporary\ntable and increments the global Created_tmp_tables value.\nWith a LIKE clause, the statement displays only rows for those\nvariables with names that match the pattern:\n\nmysql> SHOW STATUS LIKE \'Key%\';\n+--------------------+----------+\n| Variable_name | Value |\n+--------------------+----------+\n| Key_blocks_used | 14955 |\n| Key_read_requests | 96854827 |\n| Key_reads | 162040 |\n| Key_write_requests | 7589728 |\n| Key_writes | 3813196 |\n+--------------------+----------+\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-status.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-status.html'),(372,'ST_NUMINTERIORRINGS',2,'ST_NumInteriorRings(poly)\n\nReturns the number of interior rings in the Polygon value poly. If the\nargument is NULL or an empty geometry, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n -> \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT ST_NumInteriorRings(ST_GeomFromText(@poly));\n+---------------------------------------------+\n| ST_NumInteriorRings(ST_GeomFromText(@poly)) |\n+---------------------------------------------+\n| 1 |\n+---------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(373,'INET6_ATON',14,'Syntax:\nINET6_ATON(expr)\n\nGiven an IPv6 or IPv4 network address as a string, returns a binary\nstring that represents the numeric value of the address in network byte\norder (big endian). Because numeric-format IPv6 addresses require more\nbytes than the largest integer type, the representation returned by\nthis function has the VARBINARY data type: VARBINARY(16) for IPv6\naddresses and VARBINARY(4) for IPv4 addresses. If the argument is not a\nvalid address, INET6_ATON() returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT HEX(INET6_ATON(\'fdfe::5a55:caff:fefa:9089\'));\n -> \'FDFE0000000000005A55CAFFFEFA9089\'\nmysql> SELECT HEX(INET6_ATON(\'10.0.5.9\'));\n -> \'0A000509\'\n','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(374,'SHOW SLAVE HOSTS',27,'Syntax:\nSHOW SLAVE HOSTS\n\nDisplays a list of replication slaves currently registered with the\nmaster.\n\nSHOW SLAVE HOSTS should be executed on a server that acts as a\nreplication master. The statement displays information about servers\nthat are or have been connected as replication slaves, with each row of\nthe result corresponding to one slave server, as shown here:\n\nmysql> SHOW SLAVE HOSTS;\n+------------+-----------+------+-----------+--------------------------------------+\n| Server_id | Host | Port | Master_id | Slave_UUID |\n+------------+-----------+------+-----------+--------------------------------------+\n| 192168010 | iconnect2 | 3306 | 192168011 | 14cb6624-7f93-11e0-b2c0-c80aa9429562 |\n| 1921680101 | athena | 3306 | 192168011 | 07af4990-f41f-11df-a566-7ac56fdaf645 |\n+------------+-----------+------+-----------+--------------------------------------+\n\no Server_id: The unique server ID of the slave server, as configured in\n the slave server\'s option file, or on the command line with\n --server-id=value.\n\no Host: The host name of the slave server as specified on the slave\n with the --report-host option. This can differ from the machine name\n as configured in the operating system.\n\no User: The slave server user name as, specified on the slave with the\n --report-user option. Statement output includes this column only if\n the master server is started with the --show-slave-auth-info option.\n\no Password: The slave server password as, specified on the slave with\n the --report-password option. Statement output includes this column\n only if the master server is started with the --show-slave-auth-info\n option.\n\no Port: The port on the master to which the slave server is listening,\n as specified on the slave with the --report-port option.\n\n A zero in this column means that the slave port (--report-port) was\n not set.\n\no Master_id: The unique server ID of the master server that the slave\n server is replicating from. This is the server ID of the server on\n which SHOW SLAVE HOSTS is executed, so this same value is listed for\n each row in the result.\n\no Slave_UUID: The globally unique ID of this slave, as generated on the\n slave and found in the slave\'s auto.cnf file.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-slave-hosts.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-slave-hosts.html'),(375,'START TRANSACTION',8,'Syntax:\nSTART TRANSACTION\n [transaction_characteristic [, transaction_characteristic] ...]\n\ntransaction_characteristic:\n WITH CONSISTENT SNAPSHOT\n | READ WRITE\n | READ ONLY\n\nBEGIN [WORK]\nCOMMIT [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nROLLBACK [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nSET autocommit = {0 | 1}\n\nThese statements provide control over use of transactions:\n\no START TRANSACTION or BEGIN start a new transaction.\n\no COMMIT commits the current transaction, making its changes permanent.\n\no ROLLBACK rolls back the current transaction, canceling its changes.\n\no SET autocommit disables or enables the default autocommit mode for\n the current session.\n\nBy default, MySQL runs with autocommit mode enabled. This means that as\nsoon as you execute a statement that updates (modifies) a table, MySQL\nstores the update on disk to make it permanent. The change cannot be\nrolled back.\n\nTo disable autocommit mode implicitly for a single series of\nstatements, use the START TRANSACTION statement:\n\nSTART TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;\n\nWith START TRANSACTION, autocommit remains disabled until you end the\ntransaction with COMMIT or ROLLBACK. The autocommit mode then reverts\nto its previous state.\n\nSTART TRANSACTION permits several modifiers that control transaction\ncharacteristics. To specify multiple modifiers, separate them by\ncommas.\n\no The WITH CONSISTENT SNAPSHOT modifier starts a consistent read for\n storage engines that are capable of it. This applies only to InnoDB.\n The effect is the same as issuing a START TRANSACTION followed by a\n SELECT from any InnoDB table. See\n http://dev.mysql.com/doc/refman/5.6/en/innodb-consistent-read.html.\n The WITH CONSISTENT SNAPSHOT modifier does not change the current\n transaction isolation level, so it provides a consistent snapshot\n only if the current isolation level is one that permits a consistent\n read. The only isolation level that permits a consistent read is\n REPEATABLE READ. For all other isolation levels, the WITH CONSISTENT\n SNAPSHOT clause is ignored.\n\no The READ WRITE and READ ONLY modifiers set the transaction access\n mode. They permit or prohibit changes to tables used in the\n transaction. The READ ONLY restriction prevents the transaction from\n modifying or locking both transactional and nontransactional tables\n that are visible to other transactions; the transaction can still\n modify or lock temporary tables. These modifiers are available as of\n MySQL 5.6.5.\n\n MySQL enables extra optimizations for queries on InnoDB tables when\n the transaction is known to be read-only. Specifying READ ONLY\n ensures these optimizations are applied in cases where the read-only\n status cannot be determined automatically. See\n http://dev.mysql.com/doc/refman/5.6/en/innodb-performance-ro-txn.html\n for more information.\n\n If no access mode is specified, the default mode applies. Unless the\n default has been changed, it is read/write. It is not permitted to\n specify both READ WRITE and READ ONLY in the same statement.\n\n In read-only mode, it remains possible to change tables created with\n the TEMPORARY keyword using DML statements. Changes made with DDL\n statements are not permitted, just as with permanent tables.\n\n For additional information about transaction access mode, including\n ways to change the default mode, see [HELP ISOLATION].\n\n If the read_only system variable is enabled, explicitly starting a\n transaction with START TRANSACTION READ WRITE requires the SUPER\n privilege.\n\n*Important*:\n\nMany APIs used for writing MySQL client applications (such as JDBC)\nprovide their own methods for starting transactions that can (and\nsometimes should) be used instead of sending a START TRANSACTION\nstatement from the client. See\nhttp://dev.mysql.com/doc/refman/5.6/en/connectors-apis.html, or the\ndocumentation for your API, for more information.\n\nTo disable autocommit mode explicitly, use the following statement:\n\nSET autocommit=0;\n\nAfter disabling autocommit mode by setting the autocommit variable to\nzero, changes to transaction-safe tables (such as those for InnoDB or\nNDB) are not made permanent immediately. You must use COMMIT to store\nyour changes to disk or ROLLBACK to ignore the changes.\n\nautocommit is a session variable and must be set for each session. To\ndisable autocommit mode for each new connection, see the description of\nthe autocommit system variable at\nhttp://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nBEGIN and BEGIN WORK are supported as aliases of START TRANSACTION for\ninitiating a transaction. START TRANSACTION is standard SQL syntax, is\nthe recommended way to start an ad-hoc transaction, and permits\nmodifiers that BEGIN does not.\n\nThe BEGIN statement differs from the use of the BEGIN keyword that\nstarts a BEGIN ... END compound statement. The latter does not begin a\ntransaction. See [HELP BEGIN END].\n\n*Note*:\n\nWithin all stored programs (stored procedures and functions, triggers,\nand events), the parser treats BEGIN [WORK] as the beginning of a BEGIN\n... END block. Begin a transaction in this context with START\nTRANSACTION instead.\n\nThe optional WORK keyword is supported for COMMIT and ROLLBACK, as are\nthe CHAIN and RELEASE clauses. CHAIN and RELEASE can be used for\nadditional control over transaction completion. The value of the\ncompletion_type system variable determines the default completion\nbehavior. See\nhttp://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nThe AND CHAIN clause causes a new transaction to begin as soon as the\ncurrent one ends, and the new transaction has the same isolation level\nas the just-terminated transaction. The new transaction also uses the\nsame access mode (READ WRITE or READ ONLY) as the just-terminated\ntransaction. The RELEASE clause causes the server to disconnect the\ncurrent client session after terminating the current transaction.\nIncluding the NO keyword suppresses CHAIN or RELEASE completion, which\ncan be useful if the completion_type system variable is set to cause\nchaining or release completion by default.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/commit.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/commit.html'),(376,'TIME_FORMAT',32,'Syntax:\nTIME_FORMAT(time,format)\n\nThis is used like the DATE_FORMAT() function, but the format string may\ncontain format specifiers only for hours, minutes, seconds, and\nmicroseconds. Other specifiers produce a NULL value or 0.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TIME_FORMAT(\'100:00:00\', \'%H %k %h %I %l\');\n -> \'100 100 04 04 4\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(377,'CREATE DATABASE',40,'Syntax:\nCREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n [create_specification] ...\n\ncreate_specification:\n [DEFAULT] CHARACTER SET [=] charset_name\n | [DEFAULT] COLLATE [=] collation_name\n\nCREATE DATABASE creates a database with the given name. To use this\nstatement, you need the CREATE privilege for the database. CREATE\nSCHEMA is a synonym for CREATE DATABASE.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/create-database.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/create-database.html'),(378,'VAR_POP',16,'Syntax:\nVAR_POP(expr)\n\nReturns the population standard variance of expr. It considers rows as\nthe whole population, not as a sample, so it has the number of rows as\nthe denominator. You can also use VARIANCE(), which is equivalent but\nis not standard SQL.\n\nIf there are no matching rows, VAR_POP() returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(379,'CONCAT_WS',38,'Syntax:\nCONCAT_WS(separator,str1,str2,...)\n\nCONCAT_WS() stands for Concatenate With Separator and is a special form\nof CONCAT(). The first argument is the separator for the rest of the\narguments. The separator is added between the strings to be\nconcatenated. The separator can be a string, as can the rest of the\narguments. If the separator is NULL, the result is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT CONCAT_WS(\',\',\'First name\',\'Second name\',\'Last Name\');\n -> \'First name,Second name,Last Name\'\nmysql> SELECT CONCAT_WS(\',\',\'First name\',NULL,\'Last Name\');\n -> \'First name,Last Name\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(380,'TEXT',23,'TEXT[(M)] [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 65,535 (216 − 1) characters.\nThe effective maximum length is less if the value contains multibyte\ncharacters. Each TEXT value is stored using a 2-byte length prefix that\nindicates the number of bytes in the value.\n\nAn optional length M can be given for this type. If this is done, MySQL\ncreates the column as the smallest TEXT type large enough to hold\nvalues M characters long.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html'),(381,'~',19,'Syntax:\n~\n\nInvert all bits.\n\nThe result is an unsigned 64-bit integer.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/bit-functions.html\n\n','mysql> SELECT 5 & ~1;\n -> 4\n','http://dev.mysql.com/doc/refman/5.6/en/bit-functions.html'),(382,'ASIN',3,'Syntax:\nASIN(X)\n\nReturns the arc sine of X, that is, the value whose sine is X. Returns\nNULL if X is not in the range -1 to 1.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT ASIN(0.2);\n -> 0.20135792079033\nmysql> SELECT ASIN(\'foo\');\n\n+-------------+\n| ASIN(\'foo\') |\n+-------------+\n| 0 |\n+-------------+\n1 row in set, 1 warning (0.00 sec)\n\nmysql> SHOW WARNINGS;\n+---------+------+-----------------------------------------+\n| Level | Code | Message |\n+---------+------+-----------------------------------------+\n| Warning | 1292 | Truncated incorrect DOUBLE value: \'foo\' |\n+---------+------+-----------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(383,'ROW_COUNT',17,'Syntax:\nROW_COUNT()\n\nROW_COUNT() returns a value as follows:\n\no DDL statements: 0. This applies to statements such as CREATE TABLE or\n DROP TABLE.\n\no DML statements other than SELECT: The number of affected rows. This\n applies to statements such as UPDATE, INSERT, or DELETE (as before),\n but now also to statements such as ALTER TABLE and LOAD DATA INFILE.\n\no SELECT: -1 if the statement returns a result set, or the number of\n rows \"affected\" if it does not. For example, for SELECT * FROM t1,\n ROW_COUNT() returns -1. For SELECT * FROM t1 INTO OUTFILE\n \'file_name\', ROW_COUNT() returns the number of rows written to the\n file.\n\no SIGNAL statements: 0.\n\nFor UPDATE statements, the affected-rows value by default is the number\nof rows actually changed. If you specify the CLIENT_FOUND_ROWS flag to\nmysql_real_connect() when connecting to mysqld, the affected-rows value\nis the number of rows \"found\"; that is, matched by the WHERE clause.\n\nFor REPLACE statements, the affected-rows value is 2 if the new row\nreplaced an old row, because in this case, one row was inserted after\nthe duplicate was deleted.\n\nFor INSERT ... ON DUPLICATE KEY UPDATE statements, the affected-rows\nvalue per row is 1 if the row is inserted as a new row, 2 if an\nexisting row is updated, and 0 if an existing row is set to its current\nvalues. If you specify the CLIENT_FOUND_ROWS flag, the affected-rows\nvalue is 1 (not 0) if an existing row is set to its current values.\n\nThe ROW_COUNT() value is similar to the value from the\nmysql_affected_rows() C API function and the row count that the mysql\nclient displays following statement execution.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 3 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> DELETE FROM t WHERE i IN(1,2);\nQuery OK, 2 rows affected (0.00 sec)\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 2 |\n+-------------+\n1 row in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(384,'SIGN',3,'Syntax:\nSIGN(X)\n\nReturns the sign of the argument as -1, 0, or 1, depending on whether X\nis negative, zero, or positive.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT SIGN(-32);\n -> -1\nmysql> SELECT SIGN(0);\n -> 0\nmysql> SELECT SIGN(234);\n -> 1\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(385,'FLOAT',23,'FLOAT[(M,D)] [UNSIGNED] [ZEROFILL]\n\nA small (single-precision) floating-point number. Permissible values\nare -3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to\n3.402823466E+38. These are the theoretical limits, based on the IEEE\nstandard. The actual range might be slightly smaller depending on your\nhardware or operating system.\n\nM is the total number of digits and D is the number of digits following\nthe decimal point. If M and D are omitted, values are stored to the\nlimits permitted by the hardware. A single-precision floating-point\nnumber is accurate to approximately 7 decimal places.\n\nUNSIGNED, if specified, disallows negative values.\n\nUsing FLOAT might give you some unexpected problems because all\ncalculations in MySQL are done with double precision. See\nhttp://dev.mysql.com/doc/refman/5.6/en/no-matching-rows.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html'),(386,'CHARSET',17,'Syntax:\nCHARSET(str)\n\nReturns the character set of the string argument.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT CHARSET(\'abc\');\n -> \'latin1\'\nmysql> SELECT CHARSET(CONVERT(\'abc\' USING utf8));\n -> \'utf8\'\nmysql> SELECT CHARSET(USER());\n -> \'utf8\'\n','http://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(387,'ASYMMETRIC_VERIFY',7,'Syntax:\nASYMMETRIC_VERIFY(algorithm, digest_str, sig_str, pub_key_str,\ndigest_type)\n\nVerifies whether the signature string matches the digest string, and\nreturns 1 or 0 to indicate whether verification succeeded or failed.\n\ndigest_str is the digest string. It can be generated by calling\nCREATE_DIGEST(). digest_type indicates the digest algorithm used to\ngenerate the digest string.\n\nsig_str is the signature string. It can be generated by calling\nASYMMETRIC_SIGN().\n\npub_key_str is the public key string of the signer. It corresponds to\nthe private key passed to ASYMMETRIC_SIGN() to generate the signature\nstring and must be a valid key string in PEM format. algorithm\nindicates the encryption algorithm used to create the key.\n\nSupported algorithm values: \'RSA\', \'DSA\'\n\nSupported digest_type values: \'SHA224\', \'SHA256\', \'SHA384\', \'SHA512\'\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','-- Set the encryption algorithm and digest type\nSET @algo = \'RSA\';\nSET @dig_type = \'SHA224\';\n\n-- Create private/public key pair\nSET @priv = CREATE_ASYMMETRIC_PRIV_KEY(@algo, 1024);\nSET @pub = CREATE_ASYMMETRIC_PUB_KEY(@algo, @priv);\n\n-- Generate digest from string\nSET @dig = CREATE_DIGEST(@dig_type, \'The quick brown fox\');\n\n-- Generate signature for digest and verify signature against digest\nSET @sig = ASYMMETRIC_SIGN(@algo, @dig, @priv, @dig_type);\nSET @verf = ASYMMETRIC_VERIFY(@algo, @dig, @sig, @pub, @dig_type);\n','http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(388,'SUBDATE',32,'Syntax:\nSUBDATE(date,INTERVAL expr unit), SUBDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument, SUBDATE()\nis a synonym for DATE_SUB(). For information on the INTERVAL unit\nargument, see the discussion for DATE_ADD().\n\nmysql> SELECT DATE_SUB(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2007-12-02\'\nmysql> SELECT SUBDATE(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2007-12-02\'\n\nThe second form enables the use of an integer value for days. In such\ncases, it is interpreted as the number of days to be subtracted from\nthe date or datetime expression expr.\n\nmysql> SELECT SUBDATE(\'2008-01-02 12:00:00\', 31);\n -> \'2007-12-02 12:00:00\'\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(389,'DAYOFYEAR',32,'Syntax:\nDAYOFYEAR(date)\n\nReturns the day of the year for date, in the range 1 to 366.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFYEAR(\'2007-02-03\');\n -> 34\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(390,'%',3,'Syntax:\nN % M, N MOD M\n\nModulo operation. Returns the remainder of N divided by M. For more\ninformation, see the description for the MOD() function in\nhttp://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html'),(391,'ASTEXT',33,'AsText(g), AsWKT(g)\n\nST_AsText(), ST_AsWKT(), AsText(), and AsWKT() are synonyms. For more\ninformation, see the description of ST_AsText().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-format-conversion-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-format-conversion-functions.html'),(392,'DECLARE CONDITION',24,'Syntax:\nDECLARE condition_name CONDITION FOR condition_value\n\ncondition_value:\n mysql_error_code\n | SQLSTATE [VALUE] sqlstate_value\n\nThe DECLARE ... CONDITION statement declares a named error condition,\nassociating a name with a condition that needs specific handling. The\nname can be referred to in a subsequent DECLARE ... HANDLER statement\n(see [HELP DECLARE HANDLER]).\n\nCondition declarations must appear before cursor or handler\ndeclarations.\n\nThe condition_value for DECLARE ... CONDITION indicates the specific\ncondition or class of conditions to associate with the condition name.\nIt can take the following forms:\n\no mysql_error_code: An integer literal indicating a MySQL error code.\n\n Do not use MySQL error code 0 because that indicates success rather\n than an error condition. For a list of MySQL error codes, see\n http://dev.mysql.com/doc/refman/5.6/en/error-messages-server.html.\n\no SQLSTATE [VALUE] sqlstate_value: A 5-character string literal\n indicating an SQLSTATE value.\n\n Do not use SQLSTATE values that begin with \'00\' because those\n indicate success rather than an error condition. For a list of\n SQLSTATE values, see\n http://dev.mysql.com/doc/refman/5.6/en/error-messages-server.html.\n\nCondition names referred to in SIGNAL or use RESIGNAL statements must\nbe associated with SQLSTATE values, not MySQL error codes.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/declare-condition.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/declare-condition.html'),(393,'MONTHNAME',32,'Syntax:\nMONTHNAME(date)\n\nReturns the full name of the month for date. The language used for the\nname is controlled by the value of the lc_time_names system variable\n(http://dev.mysql.com/doc/refman/5.6/en/locale-support.html).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT MONTHNAME(\'2008-02-03\');\n -> \'February\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(394,'NUMGEOMETRIES',26,'NumGeometries(gc)\n\nST_NumGeometries() and NumGeometries() are synonyms. For more\ninformation, see the description of ST_NumGeometries().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-geometrycollection-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-geometrycollection-property-functions.html'),(395,'TIMESTAMP FUNCTION',32,'Syntax:\nTIMESTAMP(expr), TIMESTAMP(expr1,expr2)\n\nWith a single argument, this function returns the date or datetime\nexpression expr as a datetime value. With two arguments, it adds the\ntime expression expr2 to the date or datetime expression expr1 and\nreturns the result as a datetime value.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMP(\'2003-12-31\');\n -> \'2003-12-31 00:00:00\'\nmysql> SELECT TIMESTAMP(\'2003-12-31 12:00:00\',\'12:00:00\');\n -> \'2004-01-01 00:00:00\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(396,'DROP DATABASE',40,'Syntax:\nDROP {DATABASE | SCHEMA} [IF EXISTS] db_name\n\nDROP DATABASE drops all tables in the database and deletes the\ndatabase. Be very careful with this statement! To use DROP DATABASE,\nyou need the DROP privilege on the database. DROP SCHEMA is a synonym\nfor DROP DATABASE.\n\n*Important*:\n\nWhen a database is dropped, privileges granted specifically for the\ndatabase are not automatically dropped. They must be dropped manually.\nSee [HELP GRANT].\n\nIF EXISTS is used to prevent an error from occurring if the database\ndoes not exist.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/drop-database.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/drop-database.html'),(397,'CHANGE MASTER TO',8,'Syntax:\nCHANGE MASTER TO option [, option] ...\n\noption:\n MASTER_BIND = \'interface_name\'\n | MASTER_HOST = \'host_name\'\n | MASTER_USER = \'user_name\'\n | MASTER_PASSWORD = \'password\'\n | MASTER_PORT = port_num\n | MASTER_CONNECT_RETRY = interval\n | MASTER_RETRY_COUNT = count\n | MASTER_DELAY = interval\n | MASTER_HEARTBEAT_PERIOD = interval\n | MASTER_LOG_FILE = \'master_log_name\'\n | MASTER_LOG_POS = master_log_pos\n | MASTER_AUTO_POSITION = {0|1}\n | RELAY_LOG_FILE = \'relay_log_name\'\n | RELAY_LOG_POS = relay_log_pos\n | MASTER_SSL = {0|1}\n | MASTER_SSL_CA = \'ca_file_name\'\n | MASTER_SSL_CAPATH = \'ca_directory_name\'\n | MASTER_SSL_CERT = \'cert_file_name\'\n | MASTER_SSL_CRL = \'crl_file_name\'\n | MASTER_SSL_CRLPATH = \'crl_directory_name\'\n | MASTER_SSL_KEY = \'key_file_name\'\n | MASTER_SSL_CIPHER = \'cipher_list\'\n | MASTER_SSL_VERIFY_SERVER_CERT = {0|1}\n | IGNORE_SERVER_IDS = (server_id_list)\n\nserver_id_list:\n [server_id [, server_id] ... ]\n\nCHANGE MASTER TO changes the parameters that the slave server uses for\nconnecting to the master server, for reading the master binary log, and\nreading the slave relay log. It also updates the contents of the master\ninfo and relay log info repositories (see\nhttp://dev.mysql.com/doc/refman/5.6/en/slave-logs.html). CHANGE MASTER\nTO requires the SUPER privilege.\n\nTo use CHANGE MASTER TO, the slave replication threads must be stopped\n(use STOP SLAVE if necessary). In MySQL 5.6.11 and later, gtid_next\nmust also be set to AUTOMATIC (Bug #16062608).\n\nOptions not specified retain their value, except as indicated in the\nfollowing discussion. Thus, in most cases, there is no need to specify\noptions that do not change. For example, if the password to connect to\nyour MySQL master has changed, issue these statements to tell the slave\nabout the new password:\n\nSTOP SLAVE; -- if replication was running\nCHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\nSTART SLAVE; -- if you want to restart replication\n\nMASTER_HOST, MASTER_USER, MASTER_PASSWORD, and MASTER_PORT provide\ninformation to the slave about how to connect to its master:\n\no MASTER_HOST and MASTER_PORT are the host name (or IP address) of the\n master host and its TCP/IP port.\n\n *Note*:\n\n Replication cannot use Unix socket files. You must be able to connect\n to the master MySQL server using TCP/IP.\n\n If you specify the MASTER_HOST or MASTER_PORT option, the slave\n assumes that the master server is different from before (even if the\n option value is the same as its current value.) In this case, the old\n values for the master binary log file name and position are\n considered no longer applicable, so if you do not specify\n MASTER_LOG_FILE and MASTER_LOG_POS in the statement,\n MASTER_LOG_FILE=\'\' and MASTER_LOG_POS=4 are silently appended to it.\n\n Setting MASTER_HOST=\'\' (that is, setting its value explicitly to an\n empty string) is not the same as not setting MASTER_HOST at all.\n Beginning with MySQL 5.5, trying to set MASTER_HOST to an empty\n string fails with an error. Previously, setting MASTER_HOST to an\n empty string caused START SLAVE subsequently to fail. (Bug #28796)\n\n In MySQL 5.6.5 and later, values used for MASTER_HOST and other\n CHANGE MASTER TO options are checked for linefeed (\\n or 0x0A)\n characters; the presence of such characters in these values causes\n the statement to fail with ER_MASTER_INFO. (Bug #11758581, Bug\n #50801)\n\no MASTER_USER and MASTER_PASSWORD are the user name and password of the\n account to use for connecting to the master.\n\n In MySQL 5.6.4 and later, MASTER_USER cannot be made empty; setting\n MASTER_USER = \'\' or leaving it unset when setting a value for\n MASTER_PASSWORD causes an error (Bug #13427949).\n\n The password used for a MySQL Replication slave account in a CHANGE\n MASTER TO statement is limited to 32 characters in length; if the\n password is longer, the statement succeeds, but any excess characters\n are silently truncated. This is an issue specific to MySQL\n Replication, which is fixed in MySQL 5.7. (Bug #11752299, Bug #43439)\n\n The text of a running CHANGE MASTER TO statement, including values\n for MASTER_USER and MASTER_PASSWORD, can be seen in the output of a\n concurrent SHOW PROCESSLIST statement. (The complete text of a START\n SLAVE statement is also visible to SHOW PROCESSLIST.)\n\nThe MASTER_SSL_xxx options provide information about using SSL for the\nconnection. They correspond to the --ssl-xxx options described in\nhttp://dev.mysql.com/doc/refman/5.6/en/encrypted-connection-options.htm\nl, and\nhttp://dev.mysql.com/doc/refman/5.6/en/replication-solutions-encrypted-\nconnections.html. These options can be changed even on slaves that are\ncompiled without SSL support. They are saved to the master info\nrepository, but are ignored if the slave does not have SSL support\nenabled. MASTER_SSL_CRL and MASTER_SSL_CRLPATH were added in MySQL\n5.6.3.\n\nMASTER_CONNECT_RETRY specifies how many seconds to wait between connect\nretries. The default is 60.\n\nMASTER_RETRY_COUNT, added in MySQL 5.6.1, limits the number of\nreconnection attempts and updates the value of the Master_Retry_Count\ncolumn in the output of SHOW SLAVE STATUS (also added in MySQL 5.6.1).\nThe default value is 24 * 3600 = 86400. MASTER_RETRY_COUNT is intended\nto replace the older --master-retry-count server option, and is now the\npreferred method for setting this limit. You are encouraged not to rely\non --master-retry-count in new applications and, when upgrading to\nMySQL 5.6.1 or later from earlier versions of MySQL, to update any\nexisting applications that rely on it, so that they use CHANGE MASTER\nTO ... MASTER_RETRY_COUNT instead.\n\nMASTER_DELAY specifies how many seconds behind the master the slave\nmust lag. An event received from the master is not executed until at\nleast interval seconds later than its execution on the master. The\ndefault is 0. An error occurs if interval is not a nonnegative integer\nin the range from 0 to 231−1. For more information, see\nhttp://dev.mysql.com/doc/refman/5.6/en/replication-delayed.html. This\noption was added in MySQL 5.6.0.\n\nMASTER_BIND is for use on replication slaves having multiple network\ninterfaces, and determines which of the slave\'s network interfaces is\nchosen for connecting to the master.\n\nThe address configured with this option, if any, can be seen in the\nMaster_Bind column of the output from SHOW SLAVE STATUS. If you are\nusing slave status log tables (server started with\n--master-info-repository=TABLE), the value can also be seen as the\nMaster_bind column of the mysql.slave_master_info table.\n\nThe ability to bind a replication slave to a specific network interface\nwas added in MySQL 5.6.2. This is also supported by MySQL NDB Cluster\n7.3.1 and later.\n\nMASTER_HEARTBEAT_PERIOD sets the interval in seconds between\nreplication heartbeats. Whenever the master\'s binary log is updated\nwith an event, the waiting period for the next heartbeat is reset.\ninterval is a decimal value having the range 0 to 4294967 seconds and a\nresolution in milliseconds; the smallest nonzero value is 0.001.\nHeartbeats are sent by the master only if there are no unsent events in\nthe binary log file for a period longer than interval.\n\nIf you are logging master connection information to tables,\nMASTER_HEARTBEAT_PERIOD can be seen as the value of the Heartbeat\ncolumn of the mysql.slave_master_info table.\n\nSetting interval to 0 disables heartbeats altogether. The default value\nfor interval is equal to the value of slave_net_timeout divided by 2.\n\nSetting @@global.slave_net_timeout to a value less than that of the\ncurrent heartbeat interval results in a warning being issued. The\neffect of issuing RESET SLAVE on the heartbeat interval is to reset it\nto the default value.\n\nMASTER_LOG_FILE and MASTER_LOG_POS are the coordinates at which the\nslave I/O thread should begin reading from the master the next time the\nthread starts. RELAY_LOG_FILE and RELAY_LOG_POS are the coordinates at\nwhich the slave SQL thread should begin reading from the relay log the\nnext time the thread starts. If you specify either of MASTER_LOG_FILE\nor MASTER_LOG_POS, you cannot specify RELAY_LOG_FILE or RELAY_LOG_POS.\nIn MySQL 5.6.5 and later, if you specify either of MASTER_LOG_FILE or\nMASTER_LOG_POS, you also cannot specify MASTER_AUTO_POSITION = 1\n(described later in this section). If neither of MASTER_LOG_FILE or\nMASTER_LOG_POS is specified, the slave uses the last coordinates of the\nslave SQL thread before CHANGE MASTER TO was issued. This ensures that\nthere is no discontinuity in replication, even if the slave SQL thread\nwas late compared to the slave I/O thread, when you merely want to\nchange, say, the password to use.\n\nMASTER_AUTO_POSITION was added in MySQL 5.6.5. If MASTER_AUTO_POSITION\n= 1 is used with CHANGE MASTER TO, the slave attempts to connect to the\nmaster using the GTID-based replication protocol.\n\nWhen using GTIDs, the slave tells the master which transactions it has\nalready received, executed, or both. To compute this set, it reads the\nglobal value of gtid_executed and the value of the Retrieved_gtid_set\ncolumn from SHOW SLAVE STATUS. Since the GTID of the last transmitted\ntransaction is included in Retrieved_gtid_set even if the transaction\nwas only partially transmitted, the last received GTID is subtracted\nfrom this set. Thus, the slave computes the following set:\n\nUNION(@@global.gtid_executed, Retrieved_gtid_set - last_received_GTID)\n\nThis set is sent to the master as part of the initial handshake, and\nthe master sends back all transactions that it has executed which are\nnot part of the set. If any of these transactions have been already\npurged from the master\'s binary log, the master sends the error\nER_MASTER_HAS_PURGED_REQUIRED_GTIDS to the slave, and replication does\nnot start.\n\nWhen GTID-based replication is employed, the coordinates represented by\nMASTER_LOG_FILE and MASTER_LOG_POS are not used, and global transaction\nidentifiers are used instead. Thus the use of either or both of these\noptions together with MASTER_AUTO_POSITION causes an error.\n\nBeginning with MySQL 5.6.10, you can see whether replication is running\nwith autopositioning enabled by checking the output of SHOW SLAVE\nSTATUS. (Bug #15992220)\n\ngtid_mode must also be enabled before issuing CHANGE MASTER TO ...\nMASTER_AUTO_POSITION = 1. Otherwise, the statement fails with an error.\n\nTo revert to the older file-based replication protocol after using\nGTIDs, you can issue a new CHANGE MASTER TO statement that specifies\nMASTER_AUTO_POSITION = 0, as well as at least one of MASTER_LOG_FILE or\nMASTER_LOG_POS.\n\nCHANGE MASTER TO deletes all relay log files and starts a new one,\nunless you specify RELAY_LOG_FILE or RELAY_LOG_POS. In that case, relay\nlog files are kept; the relay_log_purge global variable is set silently\nto 0.\n\nPrior to MySQL 5.6.2, RELAY_LOG_FILE required an absolute path.\nBeginning with MySQL 5.6.2, the path can be relative, in which case it\nis assumed to be relative to the slave\'s data directory. (Bug #12190)\n\nIGNORE_SERVER_IDS takes a comma-separated list of 0 or more server IDs.\nEvents originating from the corresponding servers are ignored, with the\nexception of log rotation and deletion events, which are still recorded\nin the relay log.\n\nIn circular replication, the originating server normally acts as the\nterminator of its own events, so that they are not applied more than\nonce. Thus, this option is useful in circular replication when one of\nthe servers in the circle is removed. Suppose that you have a circular\nreplication setup with 4 servers, having server IDs 1, 2, 3, and 4, and\nserver 3 fails. When bridging the gap by starting replication from\nserver 2 to server 4, you can include IGNORE_SERVER_IDS = (3) in the\nCHANGE MASTER TO statement that you issue on server 4 to tell it to use\nserver 2 as its master instead of server 3. Doing so causes it to\nignore and not to propagate any statements that originated with the\nserver that is no longer in use.\n\nWhen a CHANGE MASTER TO statement is issued without any\nIGNORE_SERVER_IDS option, any existing list is preserved. To clear the\nlist of ignored servers, it is necessary to use the option with an\nempty list:\n\nCHANGE MASTER TO IGNORE_SERVER_IDS = ();\n\nRESET SLAVE ALL has no effect on the server ID list. This issue is\nfixed in MySQL 5.7. (Bug #18816897)\n\nIf IGNORE_SERVER_IDS contains the server\'s own ID and the server was\nstarted with the --replicate-same-server-id option enabled, an error\nresults.\n\nIn MySQL 5.6, the master info repository and the output of SHOW SLAVE\nSTATUS provide the list of servers that are currently ignored. For more\ninformation, see\nhttp://dev.mysql.com/doc/refman/5.6/en/slave-logs-status.html, and\n[HELP SHOW SLAVE STATUS].\n\nIn MySQL 5.6, invoking CHANGE MASTER TO causes the previous values for\nMASTER_HOST, MASTER_PORT, MASTER_LOG_FILE, and MASTER_LOG_POS to be\nwritten to the error log, along with other information about the\nslave\'s state prior to execution.\n\nIn MySQL 5.6.7 and later, CHANGE MASTER TO causes an implicit commit of\nan ongoing transaction. See\nhttp://dev.mysql.com/doc/refman/5.6/en/implicit-commit.html.\n\nCHANGE MASTER TO is useful for setting up a slave when you have the\nsnapshot of the master and have recorded the master binary log\ncoordinates corresponding to the time of the snapshot. After loading\nthe snapshot into the slave to synchronize it with the master, you can\nrun CHANGE MASTER TO MASTER_LOG_FILE=\'log_name\', MASTER_LOG_POS=log_pos\non the slave to specify the coordinates at which the slave should begin\nreading the master binary log.\n\nThe following example changes the master server the slave uses and\nestablishes the master binary log coordinates from which the slave\nbegins reading. This is used when you want to set up the slave to\nreplicate the master:\n\nCHANGE MASTER TO\n MASTER_HOST=\'master2.example.com\',\n MASTER_USER=\'replication\',\n MASTER_PASSWORD=\'bigs3cret\',\n MASTER_PORT=3306,\n MASTER_LOG_FILE=\'master2-bin.001\',\n MASTER_LOG_POS=4,\n MASTER_CONNECT_RETRY=10;\n\nThe next example shows an operation that is less frequently employed.\nIt is used when the slave has relay log files that you want it to\nexecute again for some reason. To do this, the master need not be\nreachable. You need only use CHANGE MASTER TO and start the SQL thread\n(START SLAVE SQL_THREAD):\n\nCHANGE MASTER TO\n RELAY_LOG_FILE=\'slave-relay-bin.006\',\n RELAY_LOG_POS=4025;\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/change-master-to.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/change-master-to.html'),(398,'SHOW GRANTS',27,'Syntax:\nSHOW GRANTS [FOR user]\n\nThis statement displays the privileges that are assigned to a MySQL\nuser account, in the form of GRANT statements that must be executed to\nduplicate the privilege assignments.\n\nSHOW GRANTS requires the SELECT privilege for the mysql database,\nexcept to display privileges for the current user. For output that\nincludes an IDENTIFIED BY PASSWORD clause displaying an account\npassword hash value, the SUPER privilege is required to see the actual\nhash value. Otherwise, the value displays as <secret>.\n\nTo name the account for SHOW GRANTS, use the same format as for the\nGRANT statement; for example, \'jeffrey\'@\'localhost\':\n\nmysql> SHOW GRANTS FOR \'jeffrey\'@\'localhost\';\n+------------------------------------------------------------------+\n| Grants for jeffrey@localhost |\n+------------------------------------------------------------------+\n| GRANT USAGE ON *.* TO `jeffrey`@`localhost` |\n| GRANT SELECT, INSERT, UPDATE ON `db1`.* TO `jeffrey`@`localhost` |\n+------------------------------------------------------------------+\n\nThe host part, if omitted, defaults to \'%\'. For additional information\nabout specifying account names, see\nhttp://dev.mysql.com/doc/refman/5.6/en/account-names.html.\n\nTo display the privileges granted to the current user (the account you\nare using to connect to the server), you can use any of the following\nstatements:\n\nSHOW GRANTS;\nSHOW GRANTS FOR CURRENT_USER;\nSHOW GRANTS FOR CURRENT_USER();\n\nIf SHOW GRANTS FOR CURRENT_USER (or any of the equivalent syntaxes) is\nused in definer context, such as within a stored procedure that\nexecutes with definer rather than invoker privileges), the grants\ndisplayed are those of the definer and not the invoker.\n\nSHOW GRANTS does not display privileges that are available to the named\naccount but are granted to a different account. For example, if an\nanonymous account exists, the named account might be able to use its\nprivileges, but SHOW GRANTS does not display them.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-grants.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-grants.html'),(399,'CRC32',3,'Syntax:\nCRC32(expr)\n\nComputes a cyclic redundancy check value and returns a 32-bit unsigned\nvalue. The result is NULL if the argument is NULL. The argument is\nexpected to be a string and (if possible) is treated as one if it is\nnot.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT CRC32(\'MySQL\');\n -> 3259397556\nmysql> SELECT CRC32(\'mysql\');\n -> 2501908538\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(400,'STARTPOINT',13,'StartPoint(ls)\n\nST_StartPoint() and StartPoint() are synonyms. For more information,\nsee the description of ST_StartPoint().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(401,'MPOLYFROMTEXT',4,'MPolyFromText(wkt[, srid]), MultiPolygonFromText(wkt[, srid])\n\nConstructs a MultiPolygon value using its WKT representation and SRID.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(402,'DECLARE VARIABLE',24,'Syntax:\nDECLARE var_name [, var_name] ... type [DEFAULT value]\n\nThis statement declares local variables within stored programs. To\nprovide a default value for a variable, include a DEFAULT clause. The\nvalue can be specified as an expression; it need not be a constant. If\nthe DEFAULT clause is missing, the initial value is NULL.\n\nLocal variables are treated like stored routine parameters with respect\nto data type and overflow checking. See [HELP CREATE PROCEDURE].\n\nVariable declarations must appear before cursor or handler\ndeclarations.\n\nLocal variable names are not case-sensitive. Permissible characters and\nquoting rules are the same as for other identifiers, as described in\nhttp://dev.mysql.com/doc/refman/5.6/en/identifiers.html.\n\nThe scope of a local variable is the BEGIN ... END block within which\nit is declared. The variable can be referred to in blocks nested within\nthe declaring block, except those blocks that declare a variable with\nthe same name.\n\nFor examples of variable declarations, see\nhttp://dev.mysql.com/doc/refman/5.6/en/local-variable-scope.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/declare-local-variable.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/declare-local-variable.html'),(403,'NOT BETWEEN',20,'Syntax:\nexpr NOT BETWEEN min AND max\n\nThis is the same as NOT (expr BETWEEN min AND max).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(404,'YEARWEEK',32,'Syntax:\nYEARWEEK(date), YEARWEEK(date,mode)\n\nReturns year and week for a date. The year in the result may be\ndifferent from the year in the date argument for the first and the last\nweek of the year.\n\nThe mode argument works exactly like the mode argument to WEEK(). For\nthe single-argument syntax, a mode value of 0 is used. Unlike WEEK(),\nthe value of default_week_format does not influence YEARWEEK().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT YEARWEEK(\'1987-01-01\');\n -> 198652\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(405,'BIT_OR',16,'Syntax:\nBIT_OR(expr)\n\nReturns the bitwise OR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n\nIf there are no matching rows, BIT_OR() returns a neutral value (all\nbits set to 0).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(406,'LOG10',3,'Syntax:\nLOG10(X)\n\nReturns the base-10 logarithm of X.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT LOG10(2);\n -> 0.30102999566398\nmysql> SELECT LOG10(100);\n -> 2\nmysql> SELECT LOG10(-100);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(407,'DECIMAL',23,'DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nA packed \"exact\" fixed-point number. M is the total number of digits\n(the precision) and D is the number of digits after the decimal point\n(the scale). The decimal point and (for negative numbers) the - sign\nare not counted in M. If D is 0, values have no decimal point or\nfractional part. The maximum number of digits (M) for DECIMAL is 65.\nThe maximum number of supported decimals (D) is 30. If D is omitted,\nthe default is 0. If M is omitted, the default is 10.\n\nUNSIGNED, if specified, disallows negative values.\n\nAll basic calculations (+, -, *, /) with DECIMAL columns are done with\na precision of 65 digits.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html'),(408,'CREATE FUNCTION',40,'The CREATE FUNCTION statement is used to create stored functions and\nuser-defined functions (UDFs):\n\no For information about creating stored functions, see [HELP CREATE\n PROCEDURE].\n\no For information about creating user-defined functions, see [HELP\n CREATE FUNCTION UDF].\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/create-function.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/create-function.html'),(409,'<',20,'Syntax:\n<\n\nLess than:\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 2 < 2;\n -> 0\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(410,'MD5',12,'Syntax:\nMD5(str)\n\nCalculates an MD5 128-bit checksum for the string. The value is\nreturned as a string of 32 hexadecimal digits, or NULL if the argument\nwas NULL. The return value can, for example, be used as a hash key. See\nthe notes at the beginning of this section about storing hash values\nefficiently.\n\nThe return value is a string in the connection character set.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SELECT MD5(\'testing\');\n -> \'ae2b1fca515949e5d54fb22b8ed95575\'\n','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(411,'DAYOFMONTH',32,'Syntax:\nDAYOFMONTH(date)\n\nReturns the day of the month for date, in the range 1 to 31, or 0 for\ndates such as \'0000-00-00\' or \'2008-00-00\' that have a zero day part.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFMONTH(\'2007-02-03\');\n -> 3\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(412,'UNIX_TIMESTAMP',32,'Syntax:\nUNIX_TIMESTAMP(), UNIX_TIMESTAMP(date)\n\nIf called with no argument, returns a Unix timestamp (seconds since\n\'1970-01-01 00:00:00\' UTC). As of MySQL 5.6.4, the return value is an\ninteger if no argument is given or the argument does not include a\nfractional seconds part, or DECIMAL if an argument is given that\nincludes a fractional seconds part. Before MySQL 5.6.4, the return\nvalue is an integer.\n\nIf UNIX_TIMESTAMP() is called with a date argument, it returns the\nvalue of the argument as seconds since \'1970-01-01 00:00:00\' UTC. The\ndate argument may be a DATE, DATETIME, or TIMESTAMP string, or a number\nin YYMMDD, YYMMDDHHMMSS, YYYYMMDD, or YYYYMMDDHHMMSS format. If the\nargument includes a time part, it may optionally include a fractional\nseconds part. (Before MySQL 5.6.4, any fractional seconds part is\nignored.) The server interprets date as a value in the current time\nzone and converts it to an internal value in UTC. Clients can set their\ntime zone as described in\nhttp://dev.mysql.com/doc/refman/5.6/en/time-zone-support.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT UNIX_TIMESTAMP();\n -> 1447431666\nmysql> SELECT UNIX_TIMESTAMP(\'2015-11-13 10:20:19\');\n -> 1447431619\nmysql> SELECT UNIX_TIMESTAMP(\'2015-11-13 10:20:19.012\');\n -> 1447431619.012\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(413,'ST_INTERSECTION',26,'ST_Intersection(g1, g2)\n\nReturns a geometry that represents the point set intersection of the\ngeometry values g1 and g2. If any argument is NULL, the return value is\nNULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html\n\n','mysql> SET @g1 = ST_GeomFromText(\'LineString(1 1, 3 3)\');\nmysql> SET @g2 = ST_GeomFromText(\'LineString(1 3, 3 1)\');\nmysql> SELECT ST_AsText(ST_Intersection(@g1, @g2));\n+--------------------------------------+\n| ST_AsText(ST_Intersection(@g1, @g2)) |\n+--------------------------------------+\n| POINT(2 2) |\n+--------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html'),(414,'RENAME USER',10,'Syntax:\nRENAME USER old_user TO new_user\n [, old_user TO new_user] ...\n\nThe RENAME USER statement renames existing MySQL accounts. An error\noccurs for old accounts that do not exist or new accounts that already\nexist.\n\nTo use RENAME USER, you must have the global CREATE USER privilege, or\nthe UPDATE privilege for the mysql database. When the read_only system\nvariable is enabled, RENAME USER additionally requires the SUPER\nprivilege.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.6/en/account-names.html. For example:\n\nRENAME USER \'jeffrey\'@\'localhost\' TO \'jeff\'@\'127.0.0.1\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nRENAME USER causes the privileges held by the old user to be those held\nby the new user. However, RENAME USER does not automatically drop or\ninvalidate databases or objects within them that the old user created.\nThis includes stored programs or views for which the DEFINER attribute\nnames the old user. Attempts to access such objects may produce an\nerror if they execute in definer security context. (For information\nabout security context, see\nhttp://dev.mysql.com/doc/refman/5.6/en/stored-programs-security.html.)\n\nThe privilege changes take effect as indicated in\nhttp://dev.mysql.com/doc/refman/5.6/en/privilege-changes.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/rename-user.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/rename-user.html'),(415,'NUMPOINTS',13,'NumPoints(ls)\n\nST_NumPoints() and NumPoints() are synonyms. For more information, see\nthe description of ST_NumPoints().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(416,'ALTER LOGFILE GROUP',40,'Syntax:\nALTER LOGFILE GROUP logfile_group\n ADD UNDOFILE \'file_name\'\n [INITIAL_SIZE [=] size]\n [WAIT]\n ENGINE [=] engine_name\n\nThis statement adds an UNDO file named \'file_name\' to an existing log\nfile group logfile_group. An ALTER LOGFILE GROUP statement has one and\nonly one ADD UNDOFILE clause. No DROP UNDOFILE clause is currently\nsupported.\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and an undo log file with the same name, or an undo log file\nand a data file with the same name.\n\nThe optional INITIAL_SIZE parameter sets the UNDO file\'s initial size\nin bytes; if not specified, the initial size defaults to 134217728 (128\nMB). Prior to MySQL NDB Cluster 7.3.2, this value was required to be\nspecified using digits; in MySQL NDB Cluster 7.3.2 and later, you may\noptionally follow size with a one-letter abbreviation for an order of\nmagnitude, similar to those used in my.cnf. Generally, this is one of\nthe letters M (megabytes) or G (gigabytes). (Bug #13116514, Bug\n#16104705, Bug #62858)\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nThe minimum allowed value for INITIAL_SIZE is 1048576 (1 MB). (Bug\n#29574)\n\n*Note*:\n\nWAIT is parsed but otherwise ignored. This keyword currently has no\neffect, and is intended for future expansion.\n\nThe ENGINE parameter (required) determines the storage engine which is\nused by this log file group, with engine_name being the name of the\nstorage engine. Currently, the only accepted values for engine_name are\n\"NDBCLUSTER\" and \"NDB\". The two values are equivalent.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/alter-logfile-group.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/alter-logfile-group.html'),(417,'LOCALTIMESTAMP',32,'Syntax:\nLOCALTIMESTAMP, LOCALTIMESTAMP([fsp])\n\nLOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for NOW().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(418,'ADDDATE',32,'Syntax:\nADDDATE(date,INTERVAL expr unit), ADDDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument, ADDDATE()\nis a synonym for DATE_ADD(). The related function SUBDATE() is a\nsynonym for DATE_SUB(). For information on the INTERVAL unit argument,\nsee the discussion for DATE_ADD().\n\nmysql> SELECT DATE_ADD(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2008-02-02\'\nmysql> SELECT ADDDATE(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2008-02-02\'\n\nWhen invoked with the days form of the second argument, MySQL treats it\nas an integer number of days to be added to expr.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT ADDDATE(\'2008-01-02\', 31);\n -> \'2008-02-02\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(419,'CREATE_DIGEST',7,'Syntax:\nCREATE_DIGEST(digest_type, str)\n\nCreates a digest from the given string using the given digest type, and\nreturns the digest as a binary string. If digest generation fails, the\nresult is NULL.\n\nSupported digest_type values: \'SHA224\', \'SHA256\', \'SHA384\', \'SHA512\'\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','SET @dig = CREATE_DIGEST(\'SHA512\', The quick brown fox\');\n','http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(420,'ALTER FUNCTION',40,'Syntax:\nALTER FUNCTION func_name [characteristic ...]\n\ncharacteristic:\n COMMENT \'string\'\n | LANGUAGE SQL\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n\nThis statement can be used to change the characteristics of a stored\nfunction. More than one change may be specified in an ALTER FUNCTION\nstatement. However, you cannot change the parameters or body of a\nstored function using this statement; to make such changes, you must\ndrop and re-create the function using DROP FUNCTION and CREATE\nFUNCTION.\n\nYou must have the ALTER ROUTINE privilege for the function. (That\nprivilege is granted automatically to the function creator.) If binary\nlogging is enabled, the ALTER FUNCTION statement might also require the\nSUPER privilege, as described in\nhttp://dev.mysql.com/doc/refman/5.6/en/stored-programs-logging.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/alter-function.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/alter-function.html'),(421,'IS_FREE_LOCK',14,'Syntax:\nIS_FREE_LOCK(str)\n\nChecks whether the lock named str is free to use (that is, not locked).\nReturns 1 if the lock is free (no one is using the lock), 0 if the lock\nis in use, and NULL if an error occurs (such as an incorrect argument).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(422,'DEALLOCATE PREPARE',8,'Syntax:\n{DEALLOCATE | DROP} PREPARE stmt_name\n\nTo deallocate a prepared statement produced with PREPARE, use a\nDEALLOCATE PREPARE statement that refers to the prepared statement\nname. Attempting to execute a prepared statement after deallocating it\nresults in an error. If too many prepared statements are created and\nnot deallocated by either the DEALLOCATE PREPARE statement or the end\nof the session, you might encounter the upper limit enforced by the\nmax_prepared_stmt_count system variable.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/deallocate-prepare.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/deallocate-prepare.html'),(423,'TOUCHES',31,'Touches(g1, g2)\n\nST_Touches() and Touches() are synonyms. For more information, see the\ndescription of ST_Touches().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(424,'AUTO_INCREMENT',23,'The AUTO_INCREMENT attribute can be used to generate a unique identity\nfor new rows:\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/example-auto-increment.html\n\n','CREATE TABLE animals (\n id MEDIUMINT NOT NULL AUTO_INCREMENT,\n name CHAR(30) NOT NULL,\n PRIMARY KEY (id)\n);\n\nINSERT INTO animals (name) VALUES\n (\'dog\'),(\'cat\'),(\'penguin\'),\n (\'lax\'),(\'whale\'),(\'ostrich\');\n\nSELECT * FROM animals;\n','http://dev.mysql.com/doc/refman/5.6/en/example-auto-increment.html'),(425,'UNCOMPRESS',12,'Syntax:\nUNCOMPRESS(string_to_uncompress)\n\nUncompresses a string compressed by the COMPRESS() function. If the\nargument is not a compressed value, the result is NULL. This function\nrequires MySQL to have been compiled with a compression library such as\nzlib. Otherwise, the return value is always NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SELECT UNCOMPRESS(COMPRESS(\'any string\'));\n -> \'any string\'\nmysql> SELECT UNCOMPRESS(\'any string\');\n -> NULL\n','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(426,'GEOMCOLLFROMTEXT',4,'GeomCollFromText(wkt[, srid]), GeometryCollectionFromText(wkt[, srid])\n\nST_GeomCollFromText(), ST_GeometryCollectionFromText(),\nGeomCollFromText(), and GeometryCollectionFromText() are synonyms. For\nmore information, see the description of ST_GeomCollFromText().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(427,'ST_INTERIORRINGN',2,'ST_InteriorRingN(poly, N)\n\nReturns the N-th interior ring for the Polygon value poly as a\nLineString. Rings are numbered beginning with 1. If the argument is\nNULL or an empty geometry, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n -> \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT ST_AsText(ST_InteriorRingN(ST_GeomFromText(@poly),1));\n+-------------------------------------------------------+\n| ST_AsText(ST_InteriorRingN(ST_GeomFromText(@poly),1)) |\n+-------------------------------------------------------+\n| LINESTRING(1 1,1 2,2 2,2 1,1 1) |\n+-------------------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(428,'LAST_INSERT_ID',17,'Syntax:\nLAST_INSERT_ID(), LAST_INSERT_ID(expr)\n\nWith no argument, LAST_INSERT_ID() returns a 64-bit value representing\nthe first automatically generated value successfully inserted for an\nAUTO_INCREMENT column as a result of the most recently executed INSERT\nstatement. The value has a type of BIGINT UNSIGNED as of MySQL 5.6.9,\nBIGINT (signed) before that. The value of LAST_INSERT_ID() remains\nunchanged if no rows are successfully inserted.\n\nWith an argument, LAST_INSERT_ID() returns an unsigned integer as of\nMySQL 5.6.9, a signed integer before that.\n\nFor example, after inserting a row that generates an AUTO_INCREMENT\nvalue, you can get the value like this:\n\nmysql> SELECT LAST_INSERT_ID();\n -> 195\n\nThe currently executing statement does not affect the value of\nLAST_INSERT_ID(). Suppose that you generate an AUTO_INCREMENT value\nwith one statement, and then refer to LAST_INSERT_ID() in a\nmultiple-row INSERT statement that inserts rows into a table with its\nown AUTO_INCREMENT column. The value of LAST_INSERT_ID() will remain\nstable in the second statement; its value for the second and later rows\nis not affected by the earlier row insertions. (However, if you mix\nreferences to LAST_INSERT_ID() and LAST_INSERT_ID(expr), the effect is\nundefined.)\n\nIf the previous statement returned an error, the value of\nLAST_INSERT_ID() is undefined. For transactional tables, if the\nstatement is rolled back due to an error, the value of LAST_INSERT_ID()\nis left undefined. For manual ROLLBACK, the value of LAST_INSERT_ID()\nis not restored to that before the transaction; it remains as it was at\nthe point of the ROLLBACK.\n\nPrior to MySQL 5.6.15, this function was not replicated correctly if\nreplication filtering rules were in use. (Bug #17234370, Bug #69861)\n\nWithin the body of a stored routine (procedure or function) or a\ntrigger, the value of LAST_INSERT_ID() changes the same way as for\nstatements executed outside the body of these kinds of objects. The\neffect of a stored routine or trigger upon the value of\nLAST_INSERT_ID() that is seen by following statements depends on the\nkind of routine:\n\no If a stored procedure executes statements that change the value of\n LAST_INSERT_ID(), the changed value is seen by statements that follow\n the procedure call.\n\no For stored functions and triggers that change the value, the value is\n restored when the function or trigger ends, so following statements\n will not see a changed value.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(429,'FLOOR',3,'Syntax:\nFLOOR(X)\n\nReturns the largest integer value not greater than X.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT FLOOR(1.23), FLOOR(-1.23);\n -> 1, -2\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(430,'COS',3,'Syntax:\nCOS(X)\n\nReturns the cosine of X, where X is given in radians.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT COS(PI());\n -> -1\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(431,'STD',16,'Syntax:\nSTD(expr)\n\nReturns the population standard deviation of expr. STD() is a synonym\nfor the standard SQL function STDDEV_POP(), provided as a MySQL\nextension.\n\nIf there are no matching rows, STD() returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(432,'DATE FUNCTION',32,'Syntax:\nDATE(expr)\n\nExtracts the date part of the date or datetime expression expr.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DATE(\'2003-12-31 01:02:03\');\n -> \'2003-12-31\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(433,'TAN',3,'Syntax:\nTAN(X)\n\nReturns the tangent of X, where X is given in radians.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT TAN(PI());\n -> -1.2246063538224e-16\nmysql> SELECT TAN(PI()+1);\n -> 1.5574077246549\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(434,'WEEKOFYEAR',32,'Syntax:\nWEEKOFYEAR(date)\n\nReturns the calendar week of the date as a number in the range from 1\nto 53. WEEKOFYEAR() is a compatibility function that is equivalent to\nWEEK(date,3).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT WEEKOFYEAR(\'2008-02-20\');\n -> 8\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(435,'SUBTIME',32,'Syntax:\nSUBTIME(expr1,expr2)\n\nSUBTIME() returns expr1 − expr2 expressed as a value in the same\nformat as expr1. expr1 is a time or datetime expression, and expr2 is a\ntime expression.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT SUBTIME(\'2007-12-31 23:59:59.999999\',\'1 1:1:1.000002\');\n -> \'2007-12-30 22:58:58.999997\'\nmysql> SELECT SUBTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'-00:59:59.999999\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(436,'LOG2',3,'Syntax:\nLOG2(X)\n\nReturns the base-2 logarithm of X.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT LOG2(65536);\n -> 16\nmysql> SELECT LOG2(-100);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(437,'UNCOMPRESSED_LENGTH',12,'Syntax:\nUNCOMPRESSED_LENGTH(compressed_string)\n\nReturns the length that the compressed string had before being\ncompressed.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SELECT UNCOMPRESSED_LENGTH(COMPRESS(REPEAT(\'a\',30)));\n -> 30\n','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(438,'POW',3,'Syntax:\nPOW(X,Y)\n\nReturns the value of X raised to the power of Y.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT POW(2,2);\n -> 4\nmysql> SELECT POW(2,-2);\n -> 0.25\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(439,'DROP TABLE',40,'Syntax:\nDROP [TEMPORARY] TABLE [IF EXISTS]\n tbl_name [, tbl_name] ...\n [RESTRICT | CASCADE]\n\nDROP TABLE removes one or more tables. You must have the DROP privilege\nfor each table.\n\nBe careful with this statement! It removes the table definition and all\ntable data. For a partitioned table, it permanently removes the table\ndefinition, all its partitions, and all data stored in those\npartitions. It also removes the partitioning definition (.par) file\nassociated with the dropped table.\n\nDROP TABLE causes an implicit commit, except when used with the\nTEMPORARY keyword. See\nhttp://dev.mysql.com/doc/refman/5.6/en/implicit-commit.html.\n\n*Important*:\n\nWhen a table is dropped, privileges granted specifically for the table\nare not automatically dropped. They must be dropped manually. See [HELP\nGRANT].\n\nIf any tables named in the argument list do not exist, the statement\nreturns an error indicating by name which nonexisting tables it was\nunable to drop, but also drops all tables in the list that do exist.\n\nUse IF EXISTS to prevent an error from occurring for tables that do not\nexist. Instead of an error, a NOTE is generated for each nonexistent\ntable; these notes can be displayed with SHOW WARNINGS. See [HELP SHOW\nWARNINGS].\n\nIF EXISTS can also be useful for dropping tables in unusual\ncircumstances under which there is an .frm file but no table managed by\nthe storage engine. (For example, if an abnormal server exit occurs\nafter removal of the table from the storage engine but before .frm file\nremoval.)\n\nThe TEMPORARY keyword has the following effects:\n\no The statement drops only TEMPORARY tables.\n\no The statement does not cause an implicit commit.\n\no No access rights are checked. A TEMPORARY table is visible only with\n the session that created it, so no check is necessary.\n\nUsing TEMPORARY is a good way to ensure that you do not accidentally\ndrop a non-TEMPORARY table.\n\nThe RESTRICT and CASCADE keywords do nothing. They are permitted to\nmake porting easier from other database systems.\n\nDROP TABLE is not supported with all innodb_force_recovery settings.\nSee\nhttp://dev.mysql.com/doc/refman/5.6/en/forcing-innodb-recovery.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/drop-table.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/drop-table.html'),(440,'NOW',32,'Syntax:\nNOW([fsp])\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context. The value is expressed in the current time\nzone.\n\nAs of MySQL 5.6.4, if the fsp argument is given to specify a fractional\nseconds precision from 0 to 6, the return value includes a fractional\nseconds part of that many digits. Before 5.6.4, any argument is\nignored.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT NOW();\n -> \'2007-12-15 23:50:26\'\nmysql> SELECT NOW() + 0;\n -> 20071215235026.000000\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(441,'SHOW ENGINES',27,'Syntax:\nSHOW [STORAGE] ENGINES\n\nSHOW ENGINES displays status information about the server\'s storage\nengines. This is particularly useful for checking whether a storage\nengine is supported, or to see what the default engine is. This\ninformation can also be obtained from the INFORMATION_SCHEMA ENGINES\ntable. See http://dev.mysql.com/doc/refman/5.6/en/engines-table.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-engines.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-engines.html'),(442,'ST_POINTFROMTEXT',4,'ST_PointFromText(wkt[, srid])\n\nConstructs a Point value using its WKT representation and SRID.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(443,'ST_ENDPOINT',13,'ST_EndPoint(ls)\n\nReturns the Point that is the endpoint of the LineString value ls. If\nthe argument is NULL or an empty geometry, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_AsText(ST_EndPoint(ST_GeomFromText(@ls)));\n+----------------------------------------------+\n| ST_AsText(ST_EndPoint(ST_GeomFromText(@ls))) |\n+----------------------------------------------+\n| POINT(3 3) |\n+----------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(444,'IS_IPV6',14,'Syntax:\nIS_IPV6(expr)\n\nReturns 1 if the argument is a valid IPv6 address specified as a\nstring, 0 otherwise. This function does not consider IPv4 addresses to\nbe valid IPv6 addresses.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT IS_IPV6(\'10.0.5.9\'), IS_IPV6(\'::1\');\n -> 0, 1\n','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(445,'LONGBLOB',23,'LONGBLOB\n\nA BLOB column with a maximum length of 4,294,967,295 or 4GB (232 − 1)\nbytes. The effective maximum length of LONGBLOB columns depends on the\nconfigured maximum packet size in the client/server protocol and\navailable memory. Each LONGBLOB value is stored using a 4-byte length\nprefix that indicates the number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html'),(446,'ST_OVERLAPS',31,'ST_Overlaps(g1, g2)\n\nTwo geometries spatially overlap if they intersect and their\nintersection results in a geometry of the same dimension but not equal\nto either of the given geometries.\n\nThis function returns 1 or 0 to indicate whether g1 spatially overlaps\ng2.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(447,'YEAR DATA TYPE',23,'YEAR[(2|4)]\n\nA year in two-digit or four-digit format. The default is four-digit\nformat. YEAR(2) or YEAR(4) differ in display format, but have the same\nrange of values. In four-digit format, values display as 1901 to 2155,\nand 0000. In two-digit format, values display as 70 to 69, representing\nyears from 1970 to 2069. MySQL displays YEAR values in YYYY or YY\nformat, but permits assignment of values to YEAR columns using either\nstrings or numbers.\n\n*Note*:\n\nThe YEAR(2) data type has certain issues that you should consider\nbefore choosing to use it. As of MySQL 5.6.6, YEAR(2) is deprecated.\nYEAR(2) columns in existing tables are treated as before, but YEAR(2)\nin new or altered tables are converted to YEAR(4). For more\ninformation, see\nhttp://dev.mysql.com/doc/refman/5.6/en/migrating-to-year4.html.\n\nFor additional information about YEAR display format and interpretation\nof input values, see http://dev.mysql.com/doc/refman/5.6/en/year.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-overview.html'),(448,'SUM',16,'Syntax:\nSUM([DISTINCT] expr)\n\nReturns the sum of expr. If the return set has no rows, SUM() returns\nNULL. The DISTINCT keyword can be used to sum only the distinct values\nof expr.\n\nIf there are no matching rows, SUM() returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(449,'REPEAT FUNCTION',38,'Syntax:\nREPEAT(str,count)\n\nReturns a string consisting of the string str repeated count times. If\ncount is less than 1, returns an empty string. Returns NULL if str or\ncount are NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT REPEAT(\'MySQL\', 3);\n -> \'MySQLMySQLMySQL\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(450,'SOUNDEX',38,'Syntax:\nSOUNDEX(str)\n\nReturns a soundex string from str. Two strings that sound almost the\nsame should have identical soundex strings. A standard soundex string\nis four characters long, but the SOUNDEX() function returns an\narbitrarily long string. You can use SUBSTRING() on the result to get a\nstandard soundex string. All nonalphabetic characters in str are\nignored. All international alphabetic characters outside the A-Z range\nare treated as vowels.\n\n*Important*:\n\nWhen using SOUNDEX(), you should be aware of the following limitations:\n\no This function, as currently implemented, is intended to work well\n with strings that are in the English language only. Strings in other\n languages may not produce reliable results.\n\no This function is not guaranteed to provide consistent results with\n strings that use multibyte character sets, including utf-8. See Bug\n #22638 for more information.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(451,'MBRTOUCHES',7,'MBRTouches(g1, g2)\n\nTwo geometries spatially touch if their interiors do not intersect, but\nthe boundary of one of the geometries intersects either the boundary or\nthe interior of the other.\n\nThis function returns 1 or 0 to indicate whether the minimum bounding\nrectangles of the two geometries g1 and g2 touch.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(452,'DROP EVENT',40,'Syntax:\nDROP EVENT [IF EXISTS] event_name\n\nThis statement drops the event named event_name. The event immediately\nceases being active, and is deleted completely from the server.\n\nIf the event does not exist, the error ERROR 1517 (HY000): Unknown\nevent \'event_name\' results. You can override this and cause the\nstatement to generate a warning for nonexistent events instead using IF\nEXISTS.\n\nThis statement requires the EVENT privilege for the schema to which the\nevent to be dropped belongs.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/drop-event.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/drop-event.html'),(453,'VARBINARY',23,'VARBINARY(M)\n\nThe VARBINARY type is similar to the VARCHAR type, but stores binary\nbyte strings rather than nonbinary character strings. M represents the\nmaximum column length in bytes.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html'),(454,'LOAD INDEX',27,'Syntax:\nLOAD INDEX INTO CACHE\n tbl_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [PARTITION (partition_list | ALL)]\n [[INDEX|KEY] (index_name[, index_name] ...)]\n [IGNORE LEAVES]\n\npartition_list:\n partition_name[, partition_name][, ...]\n\nThe LOAD INDEX INTO CACHE statement preloads a table index into the key\ncache to which it has been assigned by an explicit CACHE INDEX\nstatement, or into the default key cache otherwise.\n\nLOAD INDEX INTO CACHE is used only for MyISAM tables. In MySQL 5.6, it\nis also supported for partitioned MyISAM tables; in addition, indexes\non partitioned tables can be preloaded for one, several, or all\npartitions.\n\nThe IGNORE LEAVES modifier causes only blocks for the nonleaf nodes of\nthe index to be preloaded.\n\nIGNORE LEAVES is also supported for partitioned MyISAM tables.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/load-index.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/load-index.html'),(455,'UNION',28,'Syntax:\nSELECT ...\nUNION [ALL | DISTINCT] SELECT ...\n[UNION [ALL | DISTINCT] SELECT ...]\n\nUNION is used to combine the result from multiple SELECT statements\ninto a single result set.\n\nThe column names from the first SELECT statement are used as the column\nnames for the results returned. Selected columns listed in\ncorresponding positions of each SELECT statement should have the same\ndata type. (For example, the first column selected by the first\nstatement should have the same type as the first column selected by the\nother statements.)\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/union.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/union.html'),(456,'TO_DAYS',32,'Syntax:\nTO_DAYS(date)\n\nGiven a date date, returns a day number (the number of days since year\n0).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TO_DAYS(950501);\n -> 728779\nmysql> SELECT TO_DAYS(\'2007-10-07\');\n -> 733321\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(457,'SHOW INDEX',27,'Syntax:\nSHOW {INDEX | INDEXES | KEYS}\n {FROM | IN} tbl_name\n [{FROM | IN} db_name]\n [WHERE expr]\n\nSHOW INDEX returns table index information. The format resembles that\nof the SQLStatistics call in ODBC. This statement requires some\nprivilege for any column in the table.\n\nYou can use db_name.tbl_name as an alternative to the tbl_name FROM\ndb_name syntax. These two statements are equivalent:\n\nSHOW INDEX FROM mytable FROM mydb;\nSHOW INDEX FROM mydb.mytable;\n\nThe WHERE clause can be given to select rows using more general\nconditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nmysql> SHOW INDEX FROM City\\G\n*************************** 1. row ***************************\n Table: city\n Non_unique: 0\n Key_name: PRIMARY\n Seq_in_index: 1\n Column_name: ID\n Collation: A\n Cardinality: 4321\n Sub_part: NULL\n Packed: NULL\n Null: \n Index_type: BTREE\n Comment: \nIndex_comment: \n*************************** 2. row ***************************\n Table: city\n Non_unique: 1\n Key_name: CountryCode\n Seq_in_index: 1\n Column_name: CountryCode\n Collation: A\n Cardinality: 4321\n Sub_part: NULL\n Packed: NULL\n Null: \n Index_type: BTREE\n Comment: \nIndex_comment: \n\nSHOW INDEX returns the following fields:\n\no Table\n\n The name of the table.\n\no Non_unique\n\n 0 if the index cannot contain duplicates, 1 if it can.\n\no Key_name\n\n The name of the index. If the index is the primary key, the name is\n always PRIMARY.\n\no Seq_in_index\n\n The column sequence number in the index, starting with 1.\n\no Column_name\n\n The column name.\n\no Collation\n\n How the column is sorted in the index. This can have values A\n (ascending) or NULL (not sorted).\n\no Cardinality\n\n An estimate of the number of unique values in the index. To update\n this number, run ANALYZE TABLE or (for MyISAM tables) myisamchk -a.\n\n Cardinality is counted based on statistics stored as integers, so the\n value is not necessarily exact even for small tables. The higher the\n cardinality, the greater the chance that MySQL uses the index when\n doing joins.\n\no Sub_part\n\n The index prefix. That is, the number of indexed characters if the\n column is only partly indexed, NULL if the entire column is indexed.\n\n *Note*:\n\n Prefix limits are measured in bytes, whereas the prefix length in\n CREATE TABLE, ALTER TABLE, and CREATE INDEX statements is interpreted\n as number of characters for nonbinary string types (CHAR, VARCHAR,\n TEXT) and number of bytes for binary string types (BINARY, VARBINARY,\n BLOB). Take this into account when specifying a prefix length for a\n nonbinary string column that uses a multibyte character set.\n\n For additional information about index prefixes, see\n http://dev.mysql.com/doc/refman/5.6/en/column-indexes.html, and [HELP\n CREATE INDEX].\n\no Packed\n\n Indicates how the key is packed. NULL if it is not.\n\no Null\n\n Contains YES if the column may contain NULL values and \'\' if not.\n\no Index_type\n\n The index method used (BTREE, FULLTEXT, HASH, RTREE).\n\no Comment\n\n Information about the index not described in its own column, such as\n disabled if the index is disabled.\n\no Index_comment\n\n Any comment provided for the index with a COMMENT attribute when the\n index was created.\n\nYou can also obtain information about table indexes from\nINFORMATION_SCHEMA, which contains a STATISTICS table. See\nhttp://dev.mysql.com/doc/refman/5.6/en/statistics-table.html.\n\nYou can list a table\'s indexes with the mysqlshow -k db_name tbl_name\ncommand.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-index.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-index.html'),(458,'SHOW CREATE DATABASE',27,'Syntax:\nSHOW CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n\nShows the CREATE DATABASE statement that creates the named database. If\nthe SHOW statement includes an IF NOT EXISTS clause, the output too\nincludes such a clause. SHOW CREATE SCHEMA is a synonym for SHOW CREATE\nDATABASE.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-create-database.html\n\n','mysql> SHOW CREATE DATABASE test\\G\n*************************** 1. row ***************************\n Database: test\nCreate Database: CREATE DATABASE `test`\n /*!40100 DEFAULT CHARACTER SET latin1 */\n\nmysql> SHOW CREATE SCHEMA test\\G\n*************************** 1. row ***************************\n Database: test\nCreate Database: CREATE DATABASE `test`\n /*!40100 DEFAULT CHARACTER SET latin1 */\n','http://dev.mysql.com/doc/refman/5.6/en/show-create-database.html'),(459,'!',15,'Syntax:\nNOT, !\n\nLogical NOT. Evaluates to 1 if the operand is 0, to 0 if the operand is\nnonzero, and NOT NULL returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/logical-operators.html\n\n','mysql> SELECT NOT 10;\n -> 0\nmysql> SELECT NOT 0;\n -> 1\nmysql> SELECT NOT NULL;\n -> NULL\nmysql> SELECT ! (1+1);\n -> 0\nmysql> SELECT ! 1+1;\n -> 1\n','http://dev.mysql.com/doc/refman/5.6/en/logical-operators.html'),(460,'DOUBLE',23,'DOUBLE[(M,D)] [UNSIGNED] [ZEROFILL]\n\nA normal-size (double-precision) floating-point number. Permissible\nvalues are -1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and\n2.2250738585072014E-308 to 1.7976931348623157E+308. These are the\ntheoretical limits, based on the IEEE standard. The actual range might\nbe slightly smaller depending on your hardware or operating system.\n\nM is the total number of digits and D is the number of digits following\nthe decimal point. If M and D are omitted, values are stored to the\nlimits permitted by the hardware. A double-precision floating-point\nnumber is accurate to approximately 15 decimal places.\n\nUNSIGNED, if specified, disallows negative values.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html'),(461,'DECLARE HANDLER',24,'Syntax:\nDECLARE handler_action HANDLER\n FOR condition_value [, condition_value] ...\n statement\n\nhandler_action:\n CONTINUE\n | EXIT\n | UNDO\n\ncondition_value:\n mysql_error_code\n | SQLSTATE [VALUE] sqlstate_value\n | condition_name\n | SQLWARNING\n | NOT FOUND\n | SQLEXCEPTION\n\nThe DECLARE ... HANDLER statement specifies a handler that deals with\none or more conditions. If one of these conditions occurs, the\nspecified statement executes. statement can be a simple statement such\nas SET var_name = value, or a compound statement written using BEGIN\nand END (see [HELP BEGIN END]).\n\nHandler declarations must appear after variable or condition\ndeclarations.\n\nThe handler_action value indicates what action the handler takes after\nexecution of the handler statement:\n\no CONTINUE: Execution of the current program continues.\n\no EXIT: Execution terminates for the BEGIN ... END compound statement\n in which the handler is declared. This is true even if the condition\n occurs in an inner block.\n\no UNDO: Not supported.\n\nThe condition_value for DECLARE ... HANDLER indicates the specific\ncondition or class of conditions that activates the handler. It can\ntake the following forms:\n\no mysql_error_code: An integer literal indicating a MySQL error code,\n such as 1051 to specify \"unknown table\":\n\nDECLARE CONTINUE HANDLER FOR 1051\n BEGIN\n -- body of handler\n END;\n\n Do not use MySQL error code 0 because that indicates success rather\n than an error condition. For a list of MySQL error codes, see\n http://dev.mysql.com/doc/refman/5.6/en/error-messages-server.html.\n\no SQLSTATE [VALUE] sqlstate_value: A 5-character string literal\n indicating an SQLSTATE value, such as \'42S01\' to specify \"unknown\n table\":\n\nDECLARE CONTINUE HANDLER FOR SQLSTATE \'42S02\'\n BEGIN\n -- body of handler\n END;\n\n Do not use SQLSTATE values that begin with \'00\' because those\n indicate success rather than an error condition. For a list of\n SQLSTATE values, see\n http://dev.mysql.com/doc/refman/5.6/en/error-messages-server.html.\n\no condition_name: A condition name previously specified with DECLARE\n ... CONDITION. A condition name can be associated with a MySQL error\n code or SQLSTATE value. See [HELP DECLARE CONDITION].\n\no SQLWARNING: Shorthand for the class of SQLSTATE values that begin\n with \'01\'.\n\nDECLARE CONTINUE HANDLER FOR SQLWARNING\n BEGIN\n -- body of handler\n END;\n\no NOT FOUND: Shorthand for the class of SQLSTATE values that begin with\n \'02\'. This is relevant within the context of cursors and is used to\n control what happens when a cursor reaches the end of a data set. If\n no more rows are available, a No Data condition occurs with SQLSTATE\n value \'02000\'. To detect this condition, you can set up a handler for\n it or for a NOT FOUND condition.\n\nDECLARE CONTINUE HANDLER FOR NOT FOUND\n BEGIN\n -- body of handler\n END;\n\n For another example, see\n http://dev.mysql.com/doc/refman/5.6/en/cursors.html. The NOT FOUND\n condition also occurs for SELECT ... INTO var_list statements that\n retrieve no rows.\n\no SQLEXCEPTION: Shorthand for the class of SQLSTATE values that do not\n begin with \'00\', \'01\', or \'02\'.\n\nDECLARE CONTINUE HANDLER FOR SQLEXCEPTION\n BEGIN\n -- body of handler\n END;\n\nFor information about how the server chooses handlers when a condition\noccurs, see http://dev.mysql.com/doc/refman/5.6/en/handler-scope.html.\n\nIf a condition occurs for which no handler has been declared, the\naction taken depends on the condition class:\n\no For SQLEXCEPTION conditions, the stored program terminates at the\n statement that raised the condition, as if there were an EXIT\n handler. If the program was called by another stored program, the\n calling program handles the condition using the handler selection\n rules applied to its own handlers.\n\no For SQLWARNING conditions, the program continues executing, as if\n there were a CONTINUE handler.\n\no For NOT FOUND conditions, if the condition was raised normally, the\n action is CONTINUE. If it was raised by SIGNAL or RESIGNAL, the\n action is EXIT.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/declare-handler.html\n\n','mysql> CREATE TABLE test.t (s1 INT, PRIMARY KEY (s1));\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE handlerdemo ()\n -> BEGIN\n -> DECLARE CONTINUE HANDLER FOR SQLSTATE \'23000\' SET @x2 = 1;\n -> SET @x = 1;\n -> INSERT INTO test.t VALUES (1);\n -> SET @x = 2;\n -> INSERT INTO test.t VALUES (1);\n -> SET @x = 3;\n -> END;\n -> //\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> CALL handlerdemo()//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @x//\n +------+\n | @x |\n +------+\n | 3 |\n +------+\n 1 row in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.6/en/declare-handler.html'),(462,'TIME',23,'TIME[(fsp)]\n\nA time. The range is \'-838:59:59.000000\' to \'838:59:59.000000\'. MySQL\ndisplays TIME values in \'HH:MM:SS[.fraction]\' format, but permits\nassignment of values to TIME columns using either strings or numbers.\n\nAs of MySQL 5.6.4, an optional fsp value in the range from 0 to 6 may\nbe given to specify fractional seconds precision. A value of 0\nsignifies that there is no fractional part. If omitted, the default\nprecision is 0.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-overview.html'),(463,'SYSTEM_USER',17,'Syntax:\nSYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(464,'CURRENT_DATE',32,'Syntax:\nCURRENT_DATE, CURRENT_DATE()\n\nCURRENT_DATE and CURRENT_DATE() are synonyms for CURDATE().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(465,'TRUNCATE TABLE',40,'Syntax:\nTRUNCATE [TABLE] tbl_name\n\nTRUNCATE TABLE empties a table completely. It requires the DROP\nprivilege.\n\nLogically, TRUNCATE TABLE is similar to a DELETE statement that deletes\nall rows, or a sequence of DROP TABLE and CREATE TABLE statements. To\nachieve high performance, it bypasses the DML method of deleting data.\nThus, it cannot be rolled back, it does not cause ON DELETE triggers to\nfire, and it cannot be performed for InnoDB tables with parent-child\nforeign key relationships.\n\nAlthough TRUNCATE TABLE is similar to DELETE, it is classified as a DDL\nstatement rather than a DML statement. It differs from DELETE in the\nfollowing ways:\n\no Truncate operations drop and re-create the table, which is much\n faster than deleting rows one by one, particularly for large tables.\n\no Truncate operations cause an implicit commit, and so cannot be rolled\n back. See\n http://dev.mysql.com/doc/refman/5.6/en/implicit-commit.html.\n\no Truncation operations cannot be performed if the session holds an\n active table lock.\n\no TRUNCATE TABLE fails for an InnoDB table or NDB table if there are\n any FOREIGN KEY constraints from other tables that reference the\n table. Foreign key constraints between columns of the same table are\n permitted.\n\no Truncation operations do not return a meaningful value for the number\n of deleted rows. The usual result is \"0 rows affected,\" which should\n be interpreted as \"no information.\"\n\no As long as the table format file tbl_name.frm is valid, the table can\n be re-created as an empty table with TRUNCATE TABLE, even if the data\n or index files have become corrupted.\n\no Any AUTO_INCREMENT value is reset to its start value. This is true\n even for MyISAM and InnoDB, which normally do not reuse sequence\n values.\n\no When used with partitioned tables, TRUNCATE TABLE preserves the\n partitioning; that is, the data and index files are dropped and\n re-created, while the partition definitions (.par) file is\n unaffected.\n\no The TRUNCATE TABLE statement does not invoke ON DELETE triggers.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/truncate-table.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/truncate-table.html'),(466,'AREA',2,'Area(poly)\n\nST_Area() and Area() are synonyms. For more information, see the\ndescription of ST_Area().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(467,'START SLAVE',8,'Syntax:\nSTART SLAVE [thread_types] [until_option] [connection_options]\n\nthread_types:\n [thread_type [, thread_type] ... ]\n\nthread_type:\n IO_THREAD | SQL_THREAD\n\nuntil_option:\n UNTIL { {SQL_BEFORE_GTIDS | SQL_AFTER_GTIDS} = gtid_set\n | MASTER_LOG_FILE = \'log_name\', MASTER_LOG_POS = log_pos\n | RELAY_LOG_FILE = \'log_name\', RELAY_LOG_POS = log_pos\n | SQL_AFTER_MTS_GAPS }\n\nconnection_options:\n [USER=\'user_name\'] [PASSWORD=\'user_pass\'] [DEFAULT_AUTH=\'plugin_name\'] [PLUGIN_DIR=\'plugin_dir\']\n\n\ngtid_set:\n uuid_set [, uuid_set] ...\n | \'\'\n\nuuid_set:\n uuid:interval[:interval]...\n\nuuid:\n hhhhhhhh-hhhh-hhhh-hhhh-hhhhhhhhhhhh\n\nh:\n [0-9,A-F]\n\ninterval:\n n[-n]\n\n (n >= 1)\n\nSTART SLAVE with no thread_type options starts both of the slave\nthreads. The I/O thread reads events from the master server and stores\nthem in the relay log. The SQL thread reads events from the relay log\nand executes them. START SLAVE requires the SUPER privilege.\n\nIf START SLAVE succeeds in starting the slave threads, it returns\nwithout any error. However, even in that case, it might be that the\nslave threads start and then later stop (for example, because they do\nnot manage to connect to the master or read its binary log, or some\nother problem). START SLAVE does not warn you about this. You must\ncheck the slave\'s error log for error messages generated by the slave\nthreads, or check that they are running satisfactorily with SHOW SLAVE\nSTATUS.\n\nIn MySQL 5.6.7 and later, START SLAVE causes an implicit commit of an\nongoing transaction. See\nhttp://dev.mysql.com/doc/refman/5.6/en/implicit-commit.html.\n\nBeginning with MySQL 5.6.11, gtid_next must be set to AUTOMATIC before\nissuing this statement (Bug #16062608).\n\nMySQL 5.6.4 and later supports pluggable user-password authentication\nwith START SLAVE with the USER, PASSWORD, DEFAULT_AUTH and PLUGIN_DIR\noptions, as described in the following list:\n\no USER: User name. Cannot be set to an empty or null string, or left\n unset if PASSWORD is used.\n\no PASSWORD: Password.\n\no DEFAULT_AUTH: Name of plugin; default is MySQL native authentication.\n\no PLUGIN_DIR: Location of plugin.\n\nStarting with MySQL 5.6.4, you cannot use the SQL_THREAD option when\nspecifying any of USER, PASSWORD, DEFAULT_AUTH, or PLUGIN_DIR, unless\nthe IO_THREAD option is also provided (Bug #13083642).\n\nSee\nhttp://dev.mysql.com/doc/refman/5.6/en/pluggable-authentication.html,\nfor more information.\n\nIf an insecure connection is used with any these options, the server\nissues the warning Sending passwords in plain text without SSL/TLS is\nextremely insecure.\n\nStarting with MySQL 5.6.6, START SLAVE ... UNTIL supports two\nadditional options for use with global transaction identifiers (GTIDs)\n(see http://dev.mysql.com/doc/refman/5.6/en/replication-gtids.html).\nEach of these takes a set of one or more global transaction identifiers\ngtid_set as an argument (see\nhttp://dev.mysql.com/doc/refman/5.6/en/replication-gtids-concepts.html#\nreplication-gtids-concepts-gtid-sets, for more information).\n\nWhen no thread_type is specified, START SLAVE UNTIL SQL_BEFORE_GTIDS\ncauses the slave SQL thread to process transactions until it has\nreached the first transaction whose GTID is listed in the gtid_set.\nSTART SLAVE UNTIL SQL_AFTER_GTIDS causes the slave threads to process\nall transactions until the last transaction in the gtid_set has been\nprocessed by both threads. In other words, START SLAVE UNTIL\nSQL_BEFORE_GTIDS causes the slave SQL thread to process all\ntransactions occurring before the first GTID in the gtid_set is\nreached, and START SLAVE UNTIL SQL_AFTER_GTIDS causes the slave threads\nto handle all transactions, including those whose GTIDs are found in\ngtid_set, until each has encountered a transaction whose GTID is not\npart of the set. SQL_BEFORE_GTIDS and SQL_AFTER_GTIDS each support the\nSQL_THREAD and IO_THREAD options, although using IO_THREAD with them\ncurrently has no effect.\n\nFor example, START SLAVE SQL_THREAD UNTIL SQL_BEFORE_GTIDS =\n3E11FA47-71CA-11E1-9E33-C80AA9429562:11-56 causes the slave SQL thread\nto process all transactions originating from the master whose\nserver_uuid is 3E11FA47-71CA-11E1-9E33-C80AA9429562 until it encounters\nthe transaction having sequence number 11; it then stops without\nprocessing this transaction. In other words, all transactions up to and\nincluding the transaction with sequence number 10 are processed.\nExecuting START SLAVE SQL_THREAD UNTIL SQL_AFTER_GTIDS =\n3E11FA47-71CA-11E1-9E33-C80AA9429562:11-56, on the other hand, would\ncause the slave SQL thread to obtain all transactions just mentioned\nfrom the master, including all of the transactions having the sequence\nnumbers 11 through 56, and then to stop without processing any\nadditional transactions; that is, the transaction having sequence\nnumber 56 would be the last transaction fetched by the slave SQL\nthread.\n\nPrior to MySQL 5.6.14, SQL_AFTER_GTIDS did not stop the slave once the\nindicated transaction was completed, but waited until another GTID\nevent was received (Bug #14767986).\n\n*Note*:\n\nThe SQL_BEFORE_GTIDS and SQL_AFTER_GTIDS keywords are present in the\nMySQL 5.6.5 server; however, neither of them functioned correctly as\noptions with START SLAVE [SQL_THREAD | IO_THREAD] UNTIL in that\nversion, and are therefore supported beginning only with MySQL 5.6.6.\n(Bug#13810456)\n\nSTART SLAVE UNTIL SQL_AFTER_MTS_GAPS is available in MySQL 5.6.6 or\nlater. This statement causes a multithreaded slave\'s SQL threads to run\nuntil no more gaps are found in the relay log, and then to stop. This\nstatement can take an SQL_THREAD option, but the effects of the\nstatement remain unchanged. It has no effect on the slave I/O thread\n(and cannot be used with the IO_THREAD option). START SLAVE UNTIL\nSQL_AFTER_MTS_GAPS should be used before switching the slave from\nmultithreaded mode to single-threaded mode (that is, when resetting\nslave_parallel_workers back to 0 from a positive, nonzero value) after\nslave has failed with errors in multithreaded mode.\n\nTo change a failed multithreaded slave to single-threaded mode, you can\nissue the following series of statements, in the order shown:\n\nSTART SLAVE UNTIL SQL_AFTER_MTS_GAPS;\n\nSET @@GLOBAL.slave_parallel_workers = 0;\n\nSTART SLAVE SQL_THREAD;\n\nIf you were running the failed multithreaded slave with\nrelay_log_recovery enabled, then you must issue START SLAVE UNTIL\nSQL_AFTER_MTS_GAPS prior to executing CHANGE MASTER TO. Otherwise the\nlatter statement fails.\n\n*Note*:\n\nIt is possible to view the entire text of a running START SLAVE ...\nstatement, including any USER or PASSWORD values used, in the output of\nSHOW PROCESSLIST. This is also true for the text of a running CHANGE\nMASTER TO statement, including any values it employs for MASTER_USER or\nMASTER_PASSWORD.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/start-slave.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/start-slave.html'),(468,'SHOW WARNINGS',27,'Syntax:\nSHOW WARNINGS [LIMIT [offset,] row_count]\nSHOW COUNT(*) WARNINGS\n\nSHOW WARNINGS is a diagnostic statement that displays information about\nthe conditions (errors, warnings, and notes) resulting from executing a\nstatement in the current session. Warnings are generated for DML\nstatements such as INSERT, UPDATE, and LOAD DATA INFILE as well as DDL\nstatements such as CREATE TABLE and ALTER TABLE.\n\nThe LIMIT clause has the same syntax as for the SELECT statement. See\nhttp://dev.mysql.com/doc/refman/5.6/en/select.html.\n\nSHOW WARNINGS is also used following EXPLAIN EXTENDED, to display the\nextra information generated by EXPLAIN when the EXTENDED keyword is\nused. See http://dev.mysql.com/doc/refman/5.6/en/explain-extended.html.\n\nSHOW WARNINGS displays information about the conditions resulting from\nthe most recent statement in the current session that generated\nmessages. It shows nothing if the most recent statement used a table\nand generated no messages. (That is, statements that use a table but\ngenerate no messages clear the message list.) Statements that do not\nuse tables and do not generate messages have no effect on the message\nlist.\n\nThe SHOW COUNT(*) WARNINGS diagnostic statement displays the total\nnumber of errors, warnings, and notes. You can also retrieve this\nnumber from the warning_count system variable:\n\nSHOW COUNT(*) WARNINGS;\nSELECT @@warning_count;\n\nA related diagnostic statement, SHOW ERRORS, shows only error\nconditions (it excludes warnings and notes), and SHOW COUNT(*) ERRORS\nstatement displays the total number of errors. See [HELP SHOW ERRORS].\nGET DIAGNOSTICS can be used to examine information for individual\nconditions. See [HELP GET DIAGNOSTICS].\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-warnings.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-warnings.html'),(469,'ST_LINEFROMTEXT',4,'ST_LineFromText(wkt[, srid]), ST_LineStringFromText(wkt[, srid])\n\nConstructs a LineString value using its WKT representation and SRID.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(470,'DROP USER',10,'Syntax:\nDROP USER user [, user] ...\n\nThe DROP USER statement removes one or more MySQL accounts and their\nprivileges. It removes privilege rows for the account from all grant\ntables. An error occurs for accounts that do not exist.\n\nTo use DROP USER, you must have the global CREATE USER privilege, or\nthe DELETE privilege for the mysql database. When the read_only system\nvariable is enabled, DROP USER additionally requires the SUPER\nprivilege.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.6/en/account-names.html. For example:\n\nDROP USER \'jeffrey\'@\'localhost\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/drop-user.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/drop-user.html'),(471,'SUBSTRING',38,'Syntax:\nSUBSTRING(str,pos), SUBSTRING(str FROM pos), SUBSTRING(str,pos,len),\nSUBSTRING(str FROM pos FOR len)\n\nThe forms without a len argument return a substring from string str\nstarting at position pos. The forms with a len argument return a\nsubstring len characters long from string str, starting at position\npos. The forms that use FROM are standard SQL syntax. It is also\npossible to use a negative value for pos. In this case, the beginning\nof the substring is pos characters from the end of the string, rather\nthan the beginning. A negative value may be used for pos in any of the\nforms of this function.\n\nFor all forms of SUBSTRING(), the position of the first character in\nthe string from which the substring is to be extracted is reckoned as\n1.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT SUBSTRING(\'Quadratically\',5);\n -> \'ratically\'\nmysql> SELECT SUBSTRING(\'foobarbar\' FROM 4);\n -> \'barbar\'\nmysql> SELECT SUBSTRING(\'Quadratically\',5,6);\n -> \'ratica\'\nmysql> SELECT SUBSTRING(\'Sakila\', -3);\n -> \'ila\'\nmysql> SELECT SUBSTRING(\'Sakila\', -5, 3);\n -> \'aki\'\nmysql> SELECT SUBSTRING(\'Sakila\' FROM -4 FOR 2);\n -> \'ki\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(472,'ISEMPTY',37,'IsEmpty(g)\n\nST_IsEmpty() and IsEmpty() are synonyms. For more information, see the\ndescription of ST_IsEmpty().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(473,'SHOW FUNCTION STATUS',27,'Syntax:\nSHOW FUNCTION STATUS\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement is similar to SHOW PROCEDURE STATUS but for stored\nfunctions. See [HELP SHOW PROCEDURE STATUS].\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-function-status.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-function-status.html'),(474,'LTRIM',38,'Syntax:\nLTRIM(str)\n\nReturns the string str with leading space characters removed.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT LTRIM(\' barbar\');\n -> \'barbar\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(475,'ST_CROSSES',31,'ST_Crosses(g1, g2)\n\nThe term spatially crosses denotes a spatial relation between two given\ngeometries that has the following properties:\n\no The two geometries intersect.\n\no Their intersection results in a geometry that has a dimension that is\n one less than the maximum dimension of the two given geometries.\n\no Their intersection is not equal to either of the two given\n geometries.\n\nThis function returns 1 or 0 to indicate whether g1 spatially crosses\ng2. If g1 is a Polygon or a MultiPolygon, or if g2 is a Point or a\nMultiPoint, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(476,'MBRDISJOINT',7,'MBRDisjoint(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 are disjoint (do not intersect).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(477,'VALUES',14,'Syntax:\nVALUES(col_name)\n\nIn an INSERT ... ON DUPLICATE KEY UPDATE statement, you can use the\nVALUES(col_name) function in the UPDATE clause to refer to column\nvalues from the INSERT portion of the statement. In other words,\nVALUES(col_name) in the UPDATE clause refers to the value of col_name\nthat would be inserted, had no duplicate-key conflict occurred. This\nfunction is especially useful in multiple-row inserts. The VALUES()\nfunction is meaningful only in the ON DUPLICATE KEY UPDATE clause of\nINSERT statements and returns NULL otherwise. See\nhttp://dev.mysql.com/doc/refman/5.6/en/insert-on-duplicate.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> INSERT INTO table (a,b,c) VALUES (1,2,3),(4,5,6)\n -> ON DUPLICATE KEY UPDATE c=VALUES(a)+VALUES(b);\n','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(478,'CALL',28,'Syntax:\nCALL sp_name([parameter[,...]])\nCALL sp_name[()]\n\nThe CALL statement invokes a stored procedure that was defined\npreviously with CREATE PROCEDURE.\n\nStored procedures that take no arguments can be invoked without\nparentheses. That is, CALL p() and CALL p are equivalent.\n\nCALL can pass back values to its caller using parameters that are\ndeclared as OUT or INOUT parameters. When the procedure returns, a\nclient program can also obtain the number of rows affected for the\nfinal statement executed within the routine: At the SQL level, call the\nROW_COUNT() function; from the C API, call the mysql_affected_rows()\nfunction.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/call.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/call.html'),(479,'ENCODE',12,'Syntax:\nENCODE(str,pass_str)\n\nEncrypt str using pass_str as the password. The result is a binary\nstring of the same length as str. To decrypt the result, use DECODE().\n\nThe ENCODE() function should no longer be used. If you still need to\nuse ENCODE(), a salt value must be used with it to reduce risk. For\nexample:\n\nENCODE(\'cleartext\', CONCAT(\'my_random_salt\',\'my_secret_password\'))\n\nA new random salt value must be used whenever a password is updated.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(480,'SUBSTRING_INDEX',38,'Syntax:\nSUBSTRING_INDEX(str,delim,count)\n\nReturns the substring from string str before count occurrences of the\ndelimiter delim. If count is positive, everything to the left of the\nfinal delimiter (counting from the left) is returned. If count is\nnegative, everything to the right of the final delimiter (counting from\nthe right) is returned. SUBSTRING_INDEX() performs a case-sensitive\nmatch when searching for delim.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', 2);\n -> \'www.mysql\'\nmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', -2);\n -> \'mysql.com\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(481,'ST_X',11,'ST_X(p)\n\nReturns the X-coordinate value for the Point object p as a\ndouble-precision number.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-point-property-functions.html\n\n','mysql> SELECT ST_X(Point(56.7, 53.34));\n+--------------------------+\n| ST_X(Point(56.7, 53.34)) |\n+--------------------------+\n| 56.7 |\n+--------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-point-property-functions.html'),(482,'TIMESTAMPADD',32,'Syntax:\nTIMESTAMPADD(unit,interval,datetime_expr)\n\nAdds the integer expression interval to the date or datetime expression\ndatetime_expr. The unit for interval is given by the unit argument,\nwhich should be one of the following values: MICROSECOND\n(microseconds), SECOND, MINUTE, HOUR, DAY, WEEK, MONTH, QUARTER, or\nYEAR.\n\nThe unit value may be specified using one of keywords as shown, or with\na prefix of SQL_TSI_. For example, DAY and SQL_TSI_DAY both are legal.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMPADD(MINUTE,1,\'2003-01-02\');\n -> \'2003-01-02 00:01:00\'\nmysql> SELECT TIMESTAMPADD(WEEK,1,\'2003-01-02\');\n -> \'2003-01-09\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(483,'TRUNCATE',3,'Syntax:\nTRUNCATE(X,D)\n\nReturns the number X, truncated to D decimal places. If D is 0, the\nresult has no decimal point or fractional part. D can be negative to\ncause D digits left of the decimal point of the value X to become zero.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT TRUNCATE(1.223,1);\n -> 1.2\nmysql> SELECT TRUNCATE(1.999,1);\n -> 1.9\nmysql> SELECT TRUNCATE(1.999,0);\n -> 1\nmysql> SELECT TRUNCATE(-1.999,1);\n -> -1.9\nmysql> SELECT TRUNCATE(122,-2);\n -> 100\nmysql> SELECT TRUNCATE(10.28*100,0);\n -> 1028\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(484,'SHOW',27,'SHOW has many forms that provide information about databases, tables,\ncolumns, or status information about the server. This section describes\nthose following:\n\nSHOW AUTHORS\nSHOW {BINARY | MASTER} LOGS\nSHOW BINLOG EVENTS [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\nSHOW CHARACTER SET [like_or_where]\nSHOW COLLATION [like_or_where]\nSHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [like_or_where]\nSHOW CONTRIBUTORS\nSHOW CREATE DATABASE db_name\nSHOW CREATE EVENT event_name\nSHOW CREATE FUNCTION func_name\nSHOW CREATE PROCEDURE proc_name\nSHOW CREATE TABLE tbl_name\nSHOW CREATE TRIGGER trigger_name\nSHOW CREATE VIEW view_name\nSHOW DATABASES [like_or_where]\nSHOW ENGINE engine_name {STATUS | MUTEX}\nSHOW [STORAGE] ENGINES\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW EVENTS\nSHOW FUNCTION CODE func_name\nSHOW FUNCTION STATUS [like_or_where]\nSHOW GRANTS FOR user\nSHOW INDEX FROM tbl_name [FROM db_name]\nSHOW MASTER STATUS\nSHOW OPEN TABLES [FROM db_name] [like_or_where]\nSHOW PLUGINS\nSHOW PROCEDURE CODE proc_name\nSHOW PROCEDURE STATUS [like_or_where]\nSHOW PRIVILEGES\nSHOW [FULL] PROCESSLIST\nSHOW PROFILE [types] [FOR QUERY n] [OFFSET n] [LIMIT n]\nSHOW PROFILES\nSHOW RELAYLOG EVENTS [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\nSHOW SLAVE HOSTS\nSHOW SLAVE STATUS\nSHOW [GLOBAL | SESSION] STATUS [like_or_where]\nSHOW TABLE STATUS [FROM db_name] [like_or_where]\nSHOW [FULL] TABLES [FROM db_name] [like_or_where]\nSHOW TRIGGERS [FROM db_name] [like_or_where]\nSHOW [GLOBAL | SESSION] VARIABLES [like_or_where]\nSHOW WARNINGS [LIMIT [offset,] row_count]\n\nlike_or_where:\n LIKE \'pattern\'\n | WHERE expr\n\nIf the syntax for a given SHOW statement includes a LIKE \'pattern\'\npart, \'pattern\' is a string that can contain the SQL % and _ wildcard\ncharacters. The pattern is useful for restricting statement output to\nmatching values.\n\nSeveral SHOW statements also accept a WHERE clause that provides more\nflexibility in specifying which rows to display. See\nhttp://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show.html'),(485,'SHOW VARIABLES',27,'Syntax:\nSHOW [GLOBAL | SESSION] VARIABLES\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW VARIABLES shows the values of MySQL system variables (see\nhttp://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html).\nThis statement does not require any privilege. It requires only the\nability to connect to the server.\n\nSystem variable information is also available from these sources:\n\no The GLOBAL_VARIABLES and SESSION_VARIABLES tables. See\n http://dev.mysql.com/doc/refman/5.6/en/variables-table.html.\n\no The mysqladmin variables command. See\n http://dev.mysql.com/doc/refman/5.6/en/mysqladmin.html.\n\nFor SHOW VARIABLES, a LIKE clause, if present, indicates which variable\nnames to match. A WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttp://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nSHOW VARIABLES accepts an optional GLOBAL or SESSION variable scope\nmodifier:\n\no With a GLOBAL modifier, the statement displays global system variable\n values. These are the values used to initialize the corresponding\n session variables for new connections to MySQL. If a variable has no\n global value, no value is displayed.\n\no With a SESSION modifier, the statement displays the system varaible\n values that are in effect for the current connection. If a variable\n has no session value, the global value is displayed. LOCAL is a\n synonym for SESSION.\n\no If no modifier is present, the default is SESSION.\n\nThe scope for each system variable is listed at\nhttp://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nSHOW VARIABLES is subject to a version-dependent display-width limit.\nFor variables with very long values that are not completely displayed,\nuse SELECT as a workaround. For example:\n\nSELECT @@GLOBAL.innodb_data_file_path;\n\nMost system variables can be set at server startup (read-only variables\nsuch as version_comment are exceptions). Many can be changed at runtime\nwith the SET statement. See\nhttp://dev.mysql.com/doc/refman/5.6/en/using-system-variables.html, and\n[HELP SET].\nWith a LIKE clause, the statement displays only rows for those\nvariables with names that match the pattern. To obtain the row for a\nspecific variable, use a LIKE clause as shown:\n\nSHOW VARIABLES LIKE \'max_join_size\';\nSHOW SESSION VARIABLES LIKE \'max_join_size\';\n\nTo get a list of variables whose name match a pattern, use the %\nwildcard character in a LIKE clause:\n\nSHOW VARIABLES LIKE \'%size%\';\nSHOW GLOBAL VARIABLES LIKE \'%size%\';\n\nWildcard characters can be used in any position within the pattern to\nbe matched. Strictly speaking, because _ is a wildcard that matches any\nsingle character, you should escape it as \\_ to match it literally. In\npractice, this is rarely necessary.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-variables.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-variables.html'),(486,'BINLOG',27,'Syntax:\nBINLOG \'str\'\n\nBINLOG is an internal-use statement. It is generated by the mysqlbinlog\nprogram as the printable representation of certain events in binary log\nfiles. (See http://dev.mysql.com/doc/refman/5.6/en/mysqlbinlog.html.)\nThe \'str\' value is a base 64-encoded string the that server decodes to\ndetermine the data change indicated by the corresponding event. This\nstatement requires the SUPER privilege.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/binlog.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/binlog.html'),(487,'ST_DISJOINT',31,'ST_Disjoint(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially disjoint from (does\nnot intersect) g2.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(488,'ATAN2',3,'Syntax:\nATAN(Y,X), ATAN2(Y,X)\n\nReturns the arc tangent of the two variables X and Y. It is similar to\ncalculating the arc tangent of Y / X, except that the signs of both\narguments are used to determine the quadrant of the result.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT ATAN(-2,2);\n -> -0.78539816339745\nmysql> SELECT ATAN2(PI(),0);\n -> 1.5707963267949\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(489,'AND',15,'Syntax:\nAND, &&\n\nLogical AND. Evaluates to 1 if all operands are nonzero and not NULL,\nto 0 if one or more operands are 0, otherwise NULL is returned.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/logical-operators.html\n\n','mysql> SELECT 1 AND 1;\n -> 1\nmysql> SELECT 1 AND 0;\n -> 0\nmysql> SELECT 1 AND NULL;\n -> NULL\nmysql> SELECT 0 AND NULL;\n -> 0\nmysql> SELECT NULL AND 0;\n -> 0\n','http://dev.mysql.com/doc/refman/5.6/en/logical-operators.html'),(490,'HOUR',32,'Syntax:\nHOUR(time)\n\nReturns the hour for time. The range of the return value is 0 to 23 for\ntime-of-day values. However, the range of TIME values actually is much\nlarger, so HOUR can return values greater than 23.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT HOUR(\'10:05:03\');\n -> 10\nmysql> SELECT HOUR(\'272:59:59\');\n -> 272\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(491,'SELECT',28,'Syntax:\nSELECT\n [ALL | DISTINCT | DISTINCTROW ]\n [HIGH_PRIORITY]\n [STRAIGHT_JOIN]\n [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]\n [SQL_CACHE | SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS]\n select_expr [, select_expr ...]\n [FROM table_references\n [PARTITION partition_list]\n [WHERE where_condition]\n [GROUP BY {col_name | expr | position}\n [ASC | DESC], ... [WITH ROLLUP]]\n [HAVING where_condition]\n [ORDER BY {col_name | expr | position}\n [ASC | DESC], ...]\n [LIMIT {[offset,] row_count | row_count OFFSET offset}]\n [PROCEDURE procedure_name(argument_list)]\n [INTO OUTFILE \'file_name\'\n [CHARACTER SET charset_name]\n export_options\n | INTO DUMPFILE \'file_name\'\n | INTO var_name [, var_name]]\n [FOR UPDATE | LOCK IN SHARE MODE]]\n\nSELECT is used to retrieve rows selected from one or more tables, and\ncan include UNION statements and subqueries. See [HELP UNION], and\nhttp://dev.mysql.com/doc/refman/5.6/en/subqueries.html.\n\nThe most commonly used clauses of SELECT statements are these:\n\no Each select_expr indicates a column that you want to retrieve. There\n must be at least one select_expr.\n\no table_references indicates the table or tables from which to retrieve\n rows. Its syntax is described in [HELP JOIN].\n\no SELECT supports explicit partition selection using the PARTITION\n keyword with a list of partitions or subpartitions (or both)\n following the name of the table in a table_reference (see [HELP\n JOIN]). In this case, rows are selected only from the partitions\n listed, and any other partitions of the table are ignored. For more\n information and examples, see\n http://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html.\n\n SELECT ... PARTITION from tables using storage engines such as MyISAM\n that perform table-level locks (and thus partition locks) lock only\n the partitions or subpartitions named by the PARTITION option.\n\n For more information, see\n http://dev.mysql.com/doc/refman/5.6/en/partitioning-limitations-locki\n ng.html.\n\no The WHERE clause, if given, indicates the condition or conditions\n that rows must satisfy to be selected. where_condition is an\n expression that evaluates to true for each row to be selected. The\n statement selects all rows if there is no WHERE clause.\n\n In the WHERE expression, you can use any of the functions and\n operators that MySQL supports, except for aggregate (summary)\n functions. See\n http://dev.mysql.com/doc/refman/5.6/en/expressions.html, and\n http://dev.mysql.com/doc/refman/5.6/en/functions.html.\n\nSELECT can also be used to retrieve rows computed without reference to\nany table.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/select.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/select.html'),(492,'GROUP_CONCAT',16,'Syntax:\nGROUP_CONCAT(expr)\n\nThis function returns a string result with the concatenated non-NULL\nvalues from a group. It returns NULL if there are no non-NULL values.\nThe full syntax is as follows:\n\nGROUP_CONCAT([DISTINCT] expr [,expr ...]\n [ORDER BY {unsigned_integer | col_name | expr}\n [ASC | DESC] [,col_name ...]]\n [SEPARATOR str_val])\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','mysql> SELECT student_name,\n GROUP_CONCAT(test_score)\n FROM student\n GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(493,'BENCHMARK',17,'Syntax:\nBENCHMARK(count,expr)\n\nThe BENCHMARK() function executes the expression expr repeatedly count\ntimes. It may be used to time how quickly MySQL processes the\nexpression. The result value is always 0. The intended use is from\nwithin the mysql client, which reports query execution times:\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT BENCHMARK(1000000,AES_ENCRYPT(\'hello\',\'goodbye\'));\n+---------------------------------------------------+\n| BENCHMARK(1000000,AES_ENCRYPT(\'hello\',\'goodbye\')) |\n+---------------------------------------------------+\n| 0 |\n+---------------------------------------------------+\n1 row in set (4.74 sec)\n','http://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(494,'FROM_BASE64',38,'Syntax:\nFROM_BASE64(str)\n\nTakes a string encoded with the base-64 encoded rules used by\nTO_BASE64() and returns the decoded result as a binary string. The\nresult is NULL if the argument is NULL or not a valid base-64 string.\nSee the description of TO_BASE64() for details about the encoding and\ndecoding rules.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT TO_BASE64(\'abc\'), FROM_BASE64(TO_BASE64(\'abc\'));\n -> \'JWJj\', \'abc\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(495,'SHOW ENGINE',27,'Syntax:\nSHOW ENGINE engine_name {STATUS | MUTEX}\n\nSHOW ENGINE displays operational information about a storage engine. It\nrequires the PROCESS privilege. The statement has these variants:\n\nSHOW ENGINE INNODB STATUS\nSHOW ENGINE INNODB MUTEX\nSHOW ENGINE {NDB | NDBCLUSTER} STATUS\nSHOW ENGINE PERFORMANCE_SCHEMA STATUS\n\nSHOW ENGINE INNODB STATUS displays extensive information from the\nstandard InnoDB Monitor about the state of the InnoDB storage engine.\nFor information about the standard monitor and other InnoDB Monitors\nthat provide information about InnoDB processing, see\nhttp://dev.mysql.com/doc/refman/5.6/en/innodb-monitors.html.\n\nSHOW ENGINE INNODB MUTEX displays InnoDB mutex and rw-lock statistics.\n\n*Note*:\n\nMost SHOW ENGINE INNODB MUTEX output is removed in 5.6.14. SHOW ENGINE\nINNODB MUTEX output is removed entirely in MySQL 5.7.2. InnoDB mutexes\ncan be monitored using Performance Schema tables. For an example, see\nhttp://dev.mysql.com/doc/refman/5.6/en/monitor-innodb-mutex-waits-perfo\nrmance-schema.html.\n\no Type\n\n Always InnoDB.\n\no Name\n\n The source file where the mutex is implemented, and the line number\n in the file where the mutex is created. The line number is specific\n to your version of MySQL.\n\no Status\n\n The mutex status. This field displays several values if WITH_DEBUG\n was defined at MySQL compilation time. If WITH_DEBUG was not defined,\n the statement displays only the os_waits value. In the latter case\n (without WITH_DEBUG), the information on which the output is based is\n insufficient to distinguish regular mutexes and mutexes that protect\n rw-locks (which permit multiple readers or a single writer).\n Consequently, the output may appear to contain multiple rows for the\n same mutex.\n\n o count indicates how many times the mutex was requested.\n\n o spin_waits indicates how many times the spinlock had to run.\n\n o spin_rounds indicates the number of spinlock rounds. (spin_rounds\n divided by spin_waits provides the average round count.)\n\n o os_waits indicates the number of operating system waits. This\n occurs when the spinlock did not work (the mutex was not locked\n during the spinlock and it was necessary to yield to the operating\n system and wait).\n\n o os_yields indicates the number of times a thread trying to lock a\n mutex gave up its timeslice and yielded to the operating system (on\n the presumption that permitting other threads to run will free the\n mutex so that it can be locked).\n\n o os_wait_times indicates the amount of time (in ms) spent in\n operating system waits. In MySQL 5.6 timing is disabled and this\n value is always 0.\n\nSHOW ENGINE INNODB MUTEX skips the mutexes and rw-locks of buffer pool\nblocks, as the amount of output can be overwhelming on systems with a\nlarge buffer pool. (There is one mutex and one rw-lock in each 16K\nbuffer pool block, and there are 65,536 blocks per gigabyte.) SHOW\nENGINE INNODB MUTEX also does not list any mutexes or rw-locks that\nhave never been waited on (os_waits=0). Thus, SHOW ENGINE INNODB MUTEX\nonly displays information about mutexes and rw-locks outside of the\nbuffer pool that have caused at least one OS-level wait.\n\nSHOW ENGINE INNODB MUTEX information can be used to diagnose system\nproblems. For example, large values of spin_waits and spin_rounds may\nindicate scalability problems.\n\nUse SHOW ENGINE PERFORMANCE_SCHEMA STATUS to inspect the internal\noperation of the Performance Schema code:\n\nmysql> SHOW ENGINE PERFORMANCE_SCHEMA STATUS\\G\n...\n*************************** 3. row ***************************\n Type: performance_schema\n Name: events_waits_history.row_size\nStatus: 76\n*************************** 4. row ***************************\n Type: performance_schema\n Name: events_waits_history.row_count\nStatus: 10000\n*************************** 5. row ***************************\n Type: performance_schema\n Name: events_waits_history.memory\nStatus: 760000\n...\n*************************** 57. row ***************************\n Type: performance_schema\n Name: performance_schema.memory\nStatus: 26459600\n...\n\nThis statement is intended to help the DBA understand the effects that\ndifferent Performance Schema options have on memory requirements.\n\nName values consist of two parts, which name an internal buffer and a\nbuffer attribute, respectively. Interpret buffer names as follows:\n\no An internal buffer that is not exposed as a table is named within\n parentheses. Examples: (pfs_cond_class).row_size,\n (pfs_mutex_class).memory.\n\no An internal buffer that is exposed as a table in the\n performance_schema database is named after the table, without\n parentheses. Examples: events_waits_history.row_size,\n mutex_instances.row_count.\n\no A value that applies to the Performance Schema as a whole begins with\n performance_schema. Example: performance_schema.memory.\n\nBuffer attributes have these meanings:\n\no row_size is the size of the internal record used by the\n implementation, such as the size of a row in a table. row_size values\n cannot be changed.\n\no row_count is the number of internal records, such as the number of\n rows in a table. row_count values can be changed using Performance\n Schema configuration options.\n\no For a table, tbl_name.memory is the product of row_size and\n row_count. For the Performance Schema as a whole,\n performance_schema.memory is the sum of all the memory used (the sum\n of all other memory values).\n\nIn some cases, there is a direct relationship between a Performance\nSchema configuration parameter and a SHOW ENGINE value. For example,\nevents_waits_history_long.row_count corresponds to\nperformance_schema_events_waits_history_long_size. In other cases, the\nrelationship is more complex. For example,\nevents_waits_history.row_count corresponds to\nperformance_schema_events_waits_history_size (the number of rows per\nthread) multiplied by performance_schema_max_thread_instances ( the\nnumber of threads).\n\nSHOW ENGINE NDB STATUS If the server has the NDB storage engine\nenabled, SHOW ENGINE NDB STATUS displays cluster status information\nsuch as the number of connected data nodes, the cluster connectstring,\nand cluster binary log epochs, as well as counts of various Cluster API\nobjects created by the MySQL Server when connected to the cluster.\nSample output from this statement is shown here:\n\nmysql> SHOW ENGINE NDB STATUS;\n+------------+-----------------------+--------------------------------------------------+\n| Type | Name | Status |\n+------------+-----------------------+--------------------------------------------------+\n| ndbcluster | connection | cluster_node_id=7,\n connected_host=198.51.100.103, connected_port=1186, number_of_data_nodes=4,\n number_of_ready_data_nodes=3, connect_count=0 |\n| ndbcluster | NdbTransaction | created=6, free=0, sizeof=212 |\n| ndbcluster | NdbOperation | created=8, free=8, sizeof=660 |\n| ndbcluster | NdbIndexScanOperation | created=1, free=1, sizeof=744 |\n| ndbcluster | NdbIndexOperation | created=0, free=0, sizeof=664 |\n| ndbcluster | NdbRecAttr | created=1285, free=1285, sizeof=60 |\n| ndbcluster | NdbApiSignal | created=16, free=16, sizeof=136 |\n| ndbcluster | NdbLabel | created=0, free=0, sizeof=196 |\n| ndbcluster | NdbBranch | created=0, free=0, sizeof=24 |\n| ndbcluster | NdbSubroutine | created=0, free=0, sizeof=68 |\n| ndbcluster | NdbCall | created=0, free=0, sizeof=16 |\n| ndbcluster | NdbBlob | created=1, free=1, sizeof=264 |\n| ndbcluster | NdbReceiver | created=4, free=0, sizeof=68 |\n| ndbcluster | binlog | latest_epoch=155467, latest_trans_epoch=148126,\n latest_received_binlog_epoch=0, latest_handled_binlog_epoch=0,\n latest_applied_binlog_epoch=0 |\n+------------+-----------------------+--------------------------------------------------+\n\nThe Status column in each of these rows provides information about the\nMySQL server\'s connection to the cluster and about the cluster binary\nlog\'s status, respectively. The Status information is in the form of\ncomma-delimited set of name/value pairs.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-engine.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-engine.html'),(496,'NAME_CONST',14,'Syntax:\nNAME_CONST(name,value)\n\nReturns the given value. When used to produce a result set column,\nNAME_CONST() causes the column to have the given name. The arguments\nshould be constants.\n\nmysql> SELECT NAME_CONST(\'myname\', 14);\n+--------+\n| myname |\n+--------+\n| 14 |\n+--------+\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(497,'RELEASE_LOCK',14,'Syntax:\nRELEASE_LOCK(str)\n\nReleases the lock named by the string str that was obtained with\nGET_LOCK(). Returns 1 if the lock was released, 0 if the lock was not\nestablished by this thread (in which case the lock is not released),\nand NULL if the named lock did not exist. The lock does not exist if it\nwas never obtained by a call to GET_LOCK() or if it has previously been\nreleased.\n\nThe DO statement is convenient to use with RELEASE_LOCK(). See [HELP\nDO].\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(498,'WEEKDAY',32,'Syntax:\nWEEKDAY(date)\n\nReturns the weekday index for date (0 = Monday, 1 = Tuesday, ... 6 =\nSunday).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT WEEKDAY(\'2008-02-03 22:23:00\');\n -> 6\nmysql> SELECT WEEKDAY(\'2007-11-06\');\n -> 1\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(499,'TIME_TO_SEC',32,'Syntax:\nTIME_TO_SEC(time)\n\nReturns the time argument, converted to seconds.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TIME_TO_SEC(\'22:23:00\');\n -> 80580\nmysql> SELECT TIME_TO_SEC(\'00:39:38\');\n -> 2378\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(500,'CONVERT_TZ',32,'Syntax:\nCONVERT_TZ(dt,from_tz,to_tz)\n\nCONVERT_TZ() converts a datetime value dt from the time zone given by\nfrom_tz to the time zone given by to_tz and returns the resulting\nvalue. Time zones are specified as described in\nhttp://dev.mysql.com/doc/refman/5.6/en/time-zone-support.html. This\nfunction returns NULL if the arguments are invalid.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT CONVERT_TZ(\'2004-01-01 12:00:00\',\'GMT\',\'MET\');\n -> \'2004-01-01 13:00:00\'\nmysql> SELECT CONVERT_TZ(\'2004-01-01 12:00:00\',\'+00:00\',\'+10:00\');\n -> \'2004-01-01 22:00:00\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(501,'EXPORT_SET',38,'Syntax:\nEXPORT_SET(bits,on,off[,separator[,number_of_bits]])\n\nReturns a string such that for every bit set in the value bits, you get\nan on string and for every bit not set in the value, you get an off\nstring. Bits in bits are examined from right to left (from low-order to\nhigh-order bits). Strings are added to the result from left to right,\nseparated by the separator string (the default being the comma\ncharacter ,). The number of bits examined is given by number_of_bits,\nwhich has a default of 64 if not specified. number_of_bits is silently\nclipped to 64 if larger than 64. It is treated as an unsigned integer,\nso a value of −1 is effectively the same as 64.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT EXPORT_SET(5,\'Y\',\'N\',\',\',4);\n -> \'Y,N,Y,N\'\nmysql> SELECT EXPORT_SET(6,\'1\',\'0\',\',\',10);\n -> \'0,1,1,0,0,0,0,0,0,0\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(502,'CAST',38,'Syntax:\nCAST(expr AS type)\n\nThe CAST() function takes an expression of any type and produces a\nresult value of the specified type, similar to CONVERT(). For more\ninformation, see the description of CONVERT().\n\nCAST() is standard SQL syntax.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/cast-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/cast-functions.html'),(503,'SOUNDS LIKE',38,'Syntax:\nexpr1 SOUNDS LIKE expr2\n\nThis is the same as SOUNDEX(expr1) = SOUNDEX(expr2).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(504,'PERIOD_DIFF',32,'Syntax:\nPERIOD_DIFF(P1,P2)\n\nReturns the number of months between periods P1 and P2. P1 and P2\nshould be in the format YYMM or YYYYMM. Note that the period arguments\nP1 and P2 are not date values.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT PERIOD_DIFF(200802,200703);\n -> 11\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(505,'AVG',16,'Syntax:\nAVG([DISTINCT] expr)\n\nReturns the average value of expr. The DISTINCT option can be used to\nreturn the average of the distinct values of expr.\n\nIf there are no matching rows, AVG() returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','mysql> SELECT student_name, AVG(test_score)\n FROM student\n GROUP BY student_name;\n','http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(506,'QUOTE',38,'Syntax:\nQUOTE(str)\n\nQuotes a string to produce a result that can be used as a properly\nescaped data value in an SQL statement. The string is returned enclosed\nby single quotation marks and with each instance of backslash (\\),\nsingle quote (\'), ASCII NUL, and Control+Z preceded by a backslash. If\nthe argument is NULL, the return value is the word \"NULL\" without\nenclosing single quotation marks.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT QUOTE(\'Don\\\'t!\');\n -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(507,'IN',20,'Syntax:\nexpr IN (value,...)\n\nReturns 1 if expr is equal to any of the values in the IN list, else\nreturns 0. If all values are constants, they are evaluated according to\nthe type of expr and sorted. The search for the item then is done using\na binary search. This means IN is very quick if the IN value list\nconsists entirely of constants. Otherwise, type conversion takes place\naccording to the rules described in\nhttp://dev.mysql.com/doc/refman/5.6/en/type-conversion.html, but\napplied to all the arguments.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 2 IN (0,3,5,7);\n -> 0\nmysql> SELECT \'wefwf\' IN (\'wee\',\'wefwf\',\'weg\');\n -> 1\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(508,'QUARTER',32,'Syntax:\nQUARTER(date)\n\nReturns the quarter of the year for date, in the range 1 to 4.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT QUARTER(\'2008-04-01\');\n -> 2\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(509,'HELP COMMAND',27,'Syntax:\nmysql> help search_string\n\nIf you provide an argument to the help command, mysql uses it as a\nsearch string to access server-side help from the contents of the MySQL\nReference Manual. The proper operation of this command requires that\nthe help tables in the mysql database be initialized with help topic\ninformation (see\nhttp://dev.mysql.com/doc/refman/5.6/en/server-side-help-support.html).\n\nIf there is no match for the search string, the search fails:\n\nmysql> help me\n\nNothing found\nPlease try to run \'help contents\' for a list of all accessible topics\n\nUse help contents to see a list of the help categories:\n\nmysql> help contents\nYou asked for help about help category: \"Contents\"\nFor more information, type \'help <item>\', where <item> is one of the\nfollowing categories:\n Account Management\n Administration\n Data Definition\n Data Manipulation\n Data Types\n Functions\n Functions and Modifiers for Use with GROUP BY\n Geographic Features\n Language Structure\n Plugins\n Storage Engines\n Stored Routines\n Table Maintenance\n Transactions\n Triggers\n\nIf the search string matches multiple items, mysql shows a list of\nmatching topics:\n\nmysql> help logs\nMany help items for your request exist.\nTo make a more specific request, please type \'help <item>\',\nwhere <item> is one of the following topics:\n SHOW\n SHOW BINARY LOGS\n SHOW ENGINE\n SHOW LOGS\n\nUse a topic as the search string to see the help entry for that topic:\n\nmysql> help show binary logs\nName: \'SHOW BINARY LOGS\'\nDescription:\nSyntax:\nSHOW BINARY LOGS\nSHOW MASTER LOGS\n\nLists the binary log files on the server. This statement is used as\npart of the procedure described in [purge-binary-logs], that shows how\nto determine which logs can be purged.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| binlog.000015 | 724935 |\n| binlog.000016 | 733481 |\n+---------------+-----------+\n\nThe search string can contain the wildcard characters % and _. These\nhave the same meaning as for pattern-matching operations performed with\nthe LIKE operator. For example, HELP rep% returns a list of topics that\nbegin with rep:\n\nmysql> HELP rep%\nMany help items for your request exist.\nTo make a more specific request, please type \'help <item>\',\nwhere <item> is one of the following\ntopics:\n REPAIR TABLE\n REPEAT FUNCTION\n REPEAT LOOP\n REPLACE\n REPLACE FUNCTION\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mysql-server-side-help.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/mysql-server-side-help.html'),(510,'POSITION',38,'Syntax:\nPOSITION(substr IN str)\n\nPOSITION(substr IN str) is a synonym for LOCATE(substr,str).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(511,'IS_USED_LOCK',14,'Syntax:\nIS_USED_LOCK(str)\n\nChecks whether the lock named str is in use (that is, locked). If so,\nit returns the connection identifier of the client session that holds\nthe lock. Otherwise, it returns NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(512,'POLYFROMTEXT',4,'PolyFromText(wkt[, srid]), PolygonFromText(wkt[, srid])\n\nST_PolyFromText(), ST_PolygonFromText(), PolyFromText(), and\nPolygonFromText() are synonyms. For more information, see the\ndescription of ST_PolyFromText().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(513,'ST_SRID',37,'ST_SRID(g)\n\nReturns an integer indicating the spatial reference system ID\nassociated with the geometry value g, or NULL if the argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','mysql> SELECT ST_SRID(ST_GeomFromText(\'LineString(1 1,2 2)\',101));\n+-----------------------------------------------------+\n| ST_SRID(ST_GeomFromText(\'LineString(1 1,2 2)\',101)) |\n+-----------------------------------------------------+\n| 101 |\n+-----------------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(514,'ALTER USER',10,'Syntax:\nALTER USER user_specification [, user_specification] ...\n\nuser_specification:\n user PASSWORD EXPIRE\n\nThe ALTER USER statement modifies MySQL accounts. An error occurs if\nyou try to modify a nonexistent account.\n\nTo use ALTER USER, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql database. When the read_only system\nvariable is enabled, ALTER USER additionally requires the SUPER\nprivilege.\n\nEach account name uses the format described in\nhttp://dev.mysql.com/doc/refman/5.6/en/account-names.html. The host\nname part of the account name, if omitted, defaults to \'%\'. It is also\npossible to specify CURRENT_USER or CURRENT_USER() to refer to the\naccount associated with the current session.\n\nFor each account, ALTER USER expires its password. For example:\n\nALTER USER \'jeffrey\'@\'localhost\' PASSWORD EXPIRE;\n\nPassword expiration for an account affects the corresponding row of the\nmysql.user system table: The server sets the password_expired column to\n\'Y\'.\n\nA client session operates in restricted mode if the account password\nhas been expired. In restricted mode, operations performed within the\nsession result in an error until the user establishes a new account\npassword:\n\nmysql> SELECT 1;\nERROR 1820 (HY000): You must SET PASSWORD before executing this statement\n\nmysql> SET PASSWORD = PASSWORD(\'new_password\');\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SELECT 1;\n+---+\n| 1 |\n+---+\n| 1 |\n+---+\n1 row in set (0.00 sec)\n\nThis restricted mode of operation permits SET statements, which is\nuseful if the account password has a hashing format that requires\nold_passwords to be set to a value different from its default before\nusing SET PASSWORD.\n\nIt is possible for an administrative user to reset the account\npassword, but any existing sessions for the account remain restricted.\nA client using the account must disconnect and reconnect before\nstatements can be executed successfully.\n\n*Note*:\n\nIt is possible to \"reset\" a password by setting it to its current\nvalue. As a matter of good policy, it is preferable to choose a\ndifferent password.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/alter-user.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/alter-user.html'),(515,'DES_ENCRYPT',12,'Syntax:\nDES_ENCRYPT(str[,{key_num|key_str}])\n\nEncrypts the string with the given key using the Triple-DES algorithm.\n\nThis function works only if MySQL has been configured with SSL support.\nSee http://dev.mysql.com/doc/refman/5.6/en/encrypted-connections.html.\n\nThe encryption key to use is chosen based on the second argument to\nDES_ENCRYPT(), if one was given. With no argument, the first key from\nthe DES key file is used. With a key_num argument, the given key number\n(0 to 9) from the DES key file is used. With a key_str argument, the\ngiven key string is used to encrypt str.\n\nThe key file can be specified with the --des-key-file server option.\n\nThe return string is a binary string where the first character is\nCHAR(128 | key_num). If an error occurs, DES_ENCRYPT() returns NULL.\n\nThe 128 is added to make it easier to recognize an encrypted key. If\nyou use a string key, key_num is 127.\n\nThe string length for the result is given by this formula:\n\nnew_len = orig_len + (8 - (orig_len % 8)) + 1\n\nEach line in the DES key file has the following format:\n\nkey_num des_key_str\n\nEach key_num value must be a number in the range from 0 to 9. Lines in\nthe file may be in any order. des_key_str is the string that is used to\nencrypt the message. There should be at least one space between the\nnumber and the key. The first key is the default key that is used if\nyou do not specify any key argument to DES_ENCRYPT().\n\nYou can tell MySQL to read new key values from the key file with the\nFLUSH DES_KEY_FILE statement. This requires the RELOAD privilege.\n\nOne benefit of having a set of default keys is that it gives\napplications a way to check for the existence of encrypted column\nvalues, without giving the end user the right to decrypt those values.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SELECT customer_address FROM customer_table \n > WHERE crypted_credit_card = DES_ENCRYPT(\'credit_card_number\');\n','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(516,'CEIL',3,'Syntax:\nCEIL(X)\n\nCEIL() is a synonym for CEILING().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(517,'WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS',7,'Syntax:\nWAIT_UNTIL_SQL_THREAD_AFTER_GTIDS(gtid_set[, timeout])\n\nWait until the slave SQL thread has executed all of the transactions\nwhose global transaction identifiers are contained in gtid_set (see\nhttp://dev.mysql.com/doc/refman/5.6/en/replication-gtids-concepts.html,\nfor a definition of \"GTID sets\"), or until timeout seconds have\nelapsed, whichever occurs first. timeout is optional; the default\ntimeout is 0 seconds, in which case the master simply waits until all\nof the transactions in the GTID set have been executed.\n\nPrior to MySQL 5.6.9, WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() was named\nSQL_THREAD_WAIT_AFTER_GTIDS(). (Bug #14775984)\n\nFor more information, see\nhttp://dev.mysql.com/doc/refman/5.6/en/replication-gtids.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gtid-functions.html\n\n','mysql> SELECT WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:1-5\');\n -> 5\n','http://dev.mysql.com/doc/refman/5.6/en/gtid-functions.html'),(518,'LENGTH',38,'Syntax:\nLENGTH(str)\n\nReturns the length of the string str, measured in bytes. A multibyte\ncharacter counts as multiple bytes. This means that for a string\ncontaining five 2-byte characters, LENGTH() returns 10, whereas\nCHAR_LENGTH() returns 5.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT LENGTH(\'text\');\n -> 4\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(519,'WEIGHT_STRING',38,'Syntax:\nWEIGHT_STRING(str [AS {CHAR|BINARY}(N)] [LEVEL levels] [flags])\n\nlevels: N [ASC|DESC|REVERSE] [, N [ASC|DESC|REVERSE]] ...\n\nThis function returns the weight string for the input string. The\nreturn value is a binary string that represents the comparison and\nsorting value of the string. It has these properties:\n\no If WEIGHT_STRING(str1) = WEIGHT_STRING(str2), then str1 = str2 (str1\n and str2 are considered equal)\n\no If WEIGHT_STRING(str1) < WEIGHT_STRING(str2), then str1 < str2 (str1\n sorts before str2)\n\nWEIGHT_STRING() is a debugging function intended for internal use. Its\nbehavior can change without notice between MySQL versions. It can be\nused for testing and debugging of collations, especially if you are\nadding a new collation. See\nhttp://dev.mysql.com/doc/refman/5.6/en/adding-collation.html.\n\nThis list briefly summarizes the arguments. More details are given in\nthe discussion following the list.\n\no str: The input string expression.\n\no AS clause: Optional; cast the input string to a given type and\n length.\n\no LEVEL clause: Optional; specify weight levels for the return value.\n\no flags: Optional; unused.\n\nThe input string, str, is a string expression. If the input is a\nnonbinary (character) string such as a CHAR, VARCHAR, or TEXT value,\nthe return value contains the collation weights for the string. If the\ninput is a binary (byte) string such as a BINARY, VARBINARY, or BLOB\nvalue, the return value is the same as the input (the weight for each\nbyte in a binary string is the byte value). If the input is NULL,\nWEIGHT_STRING() returns NULL.\n\nExamples:\n\nmysql> SET @s = _latin1 \'AB\' COLLATE latin1_swedish_ci;\nmysql> SELECT @s, HEX(@s), HEX(WEIGHT_STRING(@s));\n+------+---------+------------------------+\n| @s | HEX(@s) | HEX(WEIGHT_STRING(@s)) |\n+------+---------+------------------------+\n| AB | 4142 | 4142 |\n+------+---------+------------------------+\n\nmysql> SET @s = _latin1 \'ab\' COLLATE latin1_swedish_ci;\nmysql> SELECT @s, HEX(@s), HEX(WEIGHT_STRING(@s));\n+------+---------+------------------------+\n| @s | HEX(@s) | HEX(WEIGHT_STRING(@s)) |\n+------+---------+------------------------+\n| ab | 6162 | 4142 |\n+------+---------+------------------------+\n\nmysql> SET @s = CAST(\'AB\' AS BINARY);\nmysql> SELECT @s, HEX(@s), HEX(WEIGHT_STRING(@s));\n+------+---------+------------------------+\n| @s | HEX(@s) | HEX(WEIGHT_STRING(@s)) |\n+------+---------+------------------------+\n| AB | 4142 | 4142 |\n+------+---------+------------------------+\n\nmysql> SET @s = CAST(\'ab\' AS BINARY);\nmysql> SELECT @s, HEX(@s), HEX(WEIGHT_STRING(@s));\n+------+---------+------------------------+\n| @s | HEX(@s) | HEX(WEIGHT_STRING(@s)) |\n+------+---------+------------------------+\n| ab | 6162 | 6162 |\n+------+---------+------------------------+\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(520,'ST_EQUALS',31,'ST_Equals(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially equal to g2.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','mysql> SET @g1 = Point(1,1), @g2 = Point(2,2);\nmysql> SELECT ST_Equals(@g1, @g1), ST_Equals(@g1, @g2);\n+---------------------+---------------------+\n| ST_Equals(@g1, @g1) | ST_Equals(@g1, @g2) |\n+---------------------+---------------------+\n| 1 | 0 |\n+---------------------+---------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(521,'ALTER EVENT',40,'Syntax:\nALTER\n [DEFINER = { user | CURRENT_USER }]\n EVENT event_name\n [ON SCHEDULE schedule]\n [ON COMPLETION [NOT] PRESERVE]\n [RENAME TO new_event_name]\n [ENABLE | DISABLE | DISABLE ON SLAVE]\n [COMMENT \'string\']\n [DO event_body]\n\nThe ALTER EVENT statement changes one or more of the characteristics of\nan existing event without the need to drop and recreate it. The syntax\nfor each of the DEFINER, ON SCHEDULE, ON COMPLETION, COMMENT, ENABLE /\nDISABLE, and DO clauses is exactly the same as when used with CREATE\nEVENT. (See [HELP CREATE EVENT].)\n\nAny user can alter an event defined on a database for which that user\nhas the EVENT privilege. When a user executes a successful ALTER EVENT\nstatement, that user becomes the definer for the affected event.\n\nALTER EVENT works only with an existing event:\n\nmysql> ALTER EVENT no_such_event \n > ON SCHEDULE \n > EVERY \'2:3\' DAY_HOUR;\nERROR 1517 (HY000): Unknown event \'no_such_event\'\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/alter-event.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/alter-event.html'),(522,'DATE_SUB',32,'Syntax:\nDATE_SUB(date,INTERVAL expr unit)\n\nSee the description for DATE_ADD().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(523,'|',19,'Syntax:\n|\n\nBitwise OR.\n\nThe result is an unsigned 64-bit integer.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/bit-functions.html\n\n','mysql> SELECT 29 | 15;\n -> 31\n','http://dev.mysql.com/doc/refman/5.6/en/bit-functions.html'),(524,'ASYMMETRIC_SIGN',7,'Syntax:\nASYMMETRIC_SIGN(algorithm, digest_str, priv_key_str, digest_type)\n\nSigns a digest string using a private key string, and returns the\nsignature as a binary string. If signing fails, the result is NULL.\n\ndigest_str is the digest string. It can be generated by calling\nCREATE_DIGEST(). digest_type indicates the digest algorithm used to\ngenerate the digest string.\n\npriv_key_str is the private key string to use for signing the digest\nstring. It must be a valid key string in PEM format. algorithm\nindicates the encryption algorithm used to create the key.\n\nSupported algorithm values: \'RSA\', \'DSA\'\n\nSupported digest_type values: \'SHA224\', \'SHA256\', \'SHA384\', \'SHA512\'\n\nFor a usage example, see the description of ASYMMETRIC_VERIFY().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(525,'GEOMFROMTEXT',4,'GeomFromText(wkt[, srid]), GeometryFromText(wkt[, srid])\n\nST_GeomFromText(), ST_GeometryFromText(), GeomFromText(), and\nGeometryFromText() are synonyms. For more information, see the\ndescription of ST_GeomFromText().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(526,'UUID_SHORT',14,'Syntax:\nUUID_SHORT()\n\nReturns a \"short\" universal identifier as a 64-bit unsigned integer.\nValues returned by UUID_SHORT() differ from the string-format 128-bit\nidentifiers returned by the UUID() function and have different\nuniqueness properties. The value of UUID_SHORT() is guaranteed to be\nunique if the following conditions hold:\n\no The server_id value of the current server is between 0 and 255 and is\n unique among your set of master and slave servers\n\no You do not set back the system time for your server host between\n mysqld restarts\n\no You invoke UUID_SHORT() on average fewer than 16 million times per\n second between mysqld restarts\n\nThe UUID_SHORT() return value is constructed this way:\n\n (server_id & 255) << 56\n+ (server_startup_time_in_seconds << 24)\n+ incremented_variable++;\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT UUID_SHORT();\n -> 92395783831158784\n','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(527,'DATEDIFF',32,'Syntax:\nDATEDIFF(expr1,expr2)\n\nDATEDIFF() returns expr1 − expr2 expressed as a value in days from\none date to the other. expr1 and expr2 are date or date-and-time\nexpressions. Only the date parts of the values are used in the\ncalculation.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DATEDIFF(\'2007-12-31 23:59:59\',\'2007-12-30\');\n -> 1\nmysql> SELECT DATEDIFF(\'2010-11-30 23:59:59\',\'2010-12-31\');\n -> -31\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(528,'DROP PROCEDURE',40,'Syntax:\nDROP {PROCEDURE | FUNCTION} [IF EXISTS] sp_name\n\nThis statement is used to drop a stored procedure or function. That is,\nthe specified routine is removed from the server. You must have the\nALTER ROUTINE privilege for the routine. (If the\nautomatic_sp_privileges system variable is enabled, that privilege and\nEXECUTE are granted automatically to the routine creator when the\nroutine is created and dropped from the creator when the routine is\ndropped. See\nhttp://dev.mysql.com/doc/refman/5.6/en/stored-routines-privileges.html.\n)\n\nThe IF EXISTS clause is a MySQL extension. It prevents an error from\noccurring if the procedure or function does not exist. A warning is\nproduced that can be viewed with SHOW WARNINGS.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/drop-procedure.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/drop-procedure.html'),(529,'INSTALL PLUGIN',5,'Syntax:\nINSTALL PLUGIN plugin_name SONAME \'shared_library_name\'\n\nThis statement installs a server plugin. It requires the INSERT\nprivilege for the mysql.plugin system table.\n\nplugin_name is the name of the plugin as defined in the plugin\ndescriptor structure contained in the library file (see\nhttp://dev.mysql.com/doc/refman/5.6/en/plugin-data-structures.html).\nPlugin names are not case-sensitive. For maximal compatibility, plugin\nnames should be limited to ASCII letters, digits, and underscore\nbecause they are used in C source files, shell command lines, M4 and\nBourne shell scripts, and SQL environments.\n\nshared_library_name is the name of the shared library that contains the\nplugin code. The name includes the file name extension (for example,\nlibmyplugin.so, libmyplugin.dll, or libmyplugin.dylib).\n\nThe shared library must be located in the plugin directory (the\ndirectory named by the plugin_dir system variable). The library must be\nin the plugin directory itself, not in a subdirectory. By default,\nplugin_dir is the plugin directory under the directory named by the\npkglibdir configuration variable, but it can be changed by setting the\nvalue of plugin_dir at server startup. For example, set its value in a\nmy.cnf file:\n\n[mysqld]\nplugin_dir=/path/to/plugin/directory\n\nIf the value of plugin_dir is a relative path name, it is taken to be\nrelative to the MySQL base directory (the value of the basedir system\nvariable).\n\nINSTALL PLUGIN loads and initializes the plugin code to make the plugin\navailable for use. A plugin is initialized by executing its\ninitialization function, which handles any setup that the plugin must\nperform before it can be used. When the server shuts down, it executes\nthe deinitialization function for each plugin that is loaded so that\nthe plugin has a chance to perform any final cleanup.\n\nINSTALL PLUGIN also registers the plugin by adding a line that\nindicates the plugin name and library file name to the mysql.plugin\ntable. At server startup, the server loads and initializes any plugin\nthat is listed in the mysql.plugin table. This means that a plugin is\ninstalled with INSTALL PLUGIN only once, not every time the server\nstarts. Plugin loading at startup does not occur if the server is\nstarted with the --skip-grant-tables option.\n\nA plugin library can contain multiple plugins. For each of them to be\ninstalled, use a separate INSTALL PLUGIN statement. Each statement\nnames a different plugin, but all of them specify the same library\nname.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/install-plugin.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/install-plugin.html'),(530,'LOAD DATA',28,'Syntax:\nLOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [CHARACTER SET charset_name]\n [{FIELDS | COLUMNS}\n [TERMINATED BY \'string\']\n [[OPTIONALLY] ENCLOSED BY \'char\']\n [ESCAPED BY \'char\']\n ]\n [LINES\n [STARTING BY \'string\']\n [TERMINATED BY \'string\']\n ]\n [IGNORE number {LINES | ROWS}]\n [(col_name_or_user_var\n [, col_name_or_user_var] ...)]\n [SET col_name={expr | DEFAULT},\n [, col_name={expr | DEFAULT}] ...]\n\nThe LOAD DATA INFILE statement reads rows from a text file into a table\nat a very high speed. LOAD DATA INFILE is the complement of SELECT ...\nINTO OUTFILE. (See\nhttp://dev.mysql.com/doc/refman/5.6/en/select-into.html.) To write data\nfrom a table to a file, use SELECT ... INTO OUTFILE. To read the file\nback into a table, use LOAD DATA INFILE. The syntax of the FIELDS and\nLINES clauses is the same for both statements. Both clauses are\noptional, but FIELDS must precede LINES if both are specified.\n\nYou can also load data files by using the mysqlimport utility; it\noperates by sending a LOAD DATA INFILE statement to the server. The\n--local option causes mysqlimport to read data files from the client\nhost. You can specify the --compress option to get better performance\nover slow networks if the client and server support the compressed\nprotocol. See http://dev.mysql.com/doc/refman/5.6/en/mysqlimport.html.\n\nFor more information about the efficiency of INSERT versus LOAD DATA\nINFILE and speeding up LOAD DATA INFILE, see\nhttp://dev.mysql.com/doc/refman/5.6/en/insert-optimization.html.\n\nThe file name must be given as a literal string. On Windows, specify\nbackslashes in path names as forward slashes or doubled backslashes.\nThe character_set_filesystem system variable controls the\ninterpretation of the file name.\n\nLOAD DATA supports explicit partition selection using the PARTITION\noption with a list of one or more comma-separated names of partitions,\nsubpartitions, or both. When this option is used, if any rows from the\nfile cannot be inserted into any of the partitions or subpartitions\nnamed in the list, the statement fails with the error Found a row not\nmatching the given partition set. For more information and examples,\nsee http://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html.\n\nFor partitioned tables using storage engines that employ table locks,\nsuch as MyISAM, LOAD DATA cannot prune any partition locks. This does\nnot apply to tables using storage engines which employ row-level\nlocking, such as InnoDB. For more information, see\nhttp://dev.mysql.com/doc/refman/5.6/en/partitioning-limitations-locking\n.html.\n\nThe server uses the character set indicated by the\ncharacter_set_database system variable to interpret the information in\nthe file. SET NAMES and the setting of character_set_client do not\naffect interpretation of input. If the contents of the input file use a\ncharacter set that differs from the default, it is usually preferable\nto specify the character set of the file by using the CHARACTER SET\nclause. A character set of binary specifies \"no conversion.\"\n\nLOAD DATA INFILE interprets all fields in the file as having the same\ncharacter set, regardless of the data types of the columns into which\nfield values are loaded. For proper interpretation of file contents,\nyou must ensure that it was written with the correct character set. For\nexample, if you write a data file with mysqldump -T or by issuing a\nSELECT ... INTO OUTFILE statement in mysql, be sure to use a\n--default-character-set option so that output is written in the\ncharacter set to be used when the file is loaded with LOAD DATA INFILE.\n\n*Note*:\n\nIt is not possible to load data files that use the ucs2, utf16,\nutf16le, or utf32 character set.\n\nIf you use LOW_PRIORITY, execution of the LOAD DATA statement is\ndelayed until no other clients are reading from the table. This affects\nonly storage engines that use only table-level locking (such as MyISAM,\nMEMORY, and MERGE).\n\nIf you specify CONCURRENT with a MyISAM table that satisfies the\ncondition for concurrent inserts (that is, it contains no free blocks\nin the middle), other threads can retrieve data from the table while\nLOAD DATA is executing. This option affects the performance of LOAD\nDATA a bit, even if no other thread is using the table at the same\ntime.\n\nWith row-based replication, CONCURRENT is replicated regardless of\nMySQL version. With statement-based replication CONCURRENT is not\nreplicated prior to MySQL 5.5.1 (see Bug #34628). For more information,\nsee\nhttp://dev.mysql.com/doc/refman/5.6/en/replication-features-load-data.h\ntml.\n\nThe LOCAL keyword affects expected location of the file and error\nhandling, as described later. LOCAL works only if your server and your\nclient both have been configured to permit it. For example, if mysqld\nwas started with the local_infile system variable disabled, LOCAL does\nnot work. See\nhttp://dev.mysql.com/doc/refman/5.6/en/load-data-local.html.\n\nThe LOCAL keyword affects where the file is expected to be found:\n\no If LOCAL is specified, the file is read by the client program on the\n client host and sent to the server. The file can be given as a full\n path name to specify its exact location. If given as a relative path\n name, the name is interpreted relative to the directory in which the\n client program was started.\n\n When using LOCAL with LOAD DATA, a copy of the file is created in the\n server\'s temporary directory. This is not the directory determined by\n the value of tmpdir or slave_load_tmpdir, but rather the operating\n system\'s temporary directory, and is not configurable in the MySQL\n Server. (Typically the system temporary directory is /tmp on Linux\n systems and C:\\WINDOWS\\TEMP on Windows.) Lack of sufficient space for\n the copy in this directory can cause the LOAD DATA LOCAL statement to\n fail.\n\no If LOCAL is not specified, the file must be located on the server\n host and is read directly by the server. The server uses the\n following rules to locate the file:\n\n o If the file name is an absolute path name, the server uses it as\n given.\n\n o If the file name is a relative path name with one or more leading\n components, the server searches for the file relative to the\n server\'s data directory.\n\n o If a file name with no leading components is given, the server\n looks for the file in the database directory of the default\n database.\n\nIn the non-LOCAL case, these rules mean that a file named as\n./myfile.txt is read from the server\'s data directory, whereas the file\nnamed as myfile.txt is read from the database directory of the default\ndatabase. For example, if db1 is the default database, the following\nLOAD DATA statement reads the file data.txt from the database directory\nfor db1, even though the statement explicitly loads the file into a\ntable in the db2 database:\n\nLOAD DATA INFILE \'data.txt\' INTO TABLE db2.my_table;\n\nNon-LOCAL load operations read text files located on the server. For\nsecurity reasons, such operations require that you have the FILE\nprivilege. See\nhttp://dev.mysql.com/doc/refman/5.6/en/privileges-provided.html. Also,\nnon-LOCAL load operations are subject to the secure_file_priv system\nvariable setting. If the variable value is a nonempty directory name,\nthe file to be loaded must be located in that directory. If the\nvariable value is empty (which is insecure), the file need only be\nreadable by the server.\n\nUsing LOCAL is a bit slower than letting the server access the files\ndirectly, because the contents of the file must be sent over the\nconnection by the client to the server. On the other hand, you do not\nneed the FILE privilege to load local files.\n\nLOCAL also affects error handling:\n\no With LOAD DATA INFILE, data-interpretation and duplicate-key errors\n terminate the operation.\n\no With LOAD DATA LOCAL INFILE, data-interpretation and duplicate-key\n errors become warnings and the operation continues because the server\n has no way to stop transmission of the file in the middle of the\n operation. For duplicate-key errors, this is the same as if IGNORE is\n specified. IGNORE is explained further later in this section.\n\nThe REPLACE and IGNORE keywords control handling of input rows that\nduplicate existing rows on unique key values:\n\no If you specify REPLACE, input rows replace existing rows. In other\n words, rows that have the same value for a primary key or unique\n index as an existing row. See [HELP REPLACE].\n\no If you specify IGNORE, rows that duplicate an existing row on a\n unique key value are discarded.\n\no If you do not specify either option, the behavior depends on whether\n the LOCAL keyword is specified. Without LOCAL, an error occurs when a\n duplicate key value is found, and the rest of the text file is\n ignored. With LOCAL, the default behavior is the same as if IGNORE is\n specified; this is because the server has no way to stop transmission\n of the file in the middle of the operation.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/load-data.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/load-data.html'),(531,'DECLARE CURSOR',24,'Syntax:\nDECLARE cursor_name CURSOR FOR select_statement\n\nThis statement declares a cursor and associates it with a SELECT\nstatement that retrieves the rows to be traversed by the cursor. To\nfetch the rows later, use a FETCH statement. The number of columns\nretrieved by the SELECT statement must match the number of output\nvariables specified in the FETCH statement.\n\nThe SELECT statement cannot have an INTO clause.\n\nCursor declarations must appear before handler declarations and after\nvariable and condition declarations.\n\nA stored program may contain multiple cursor declarations, but each\ncursor declared in a given block must have a unique name. For an\nexample, see http://dev.mysql.com/doc/refman/5.6/en/cursors.html.\n\nFor information available through SHOW statements, it is possible in\nmany cases to obtain equivalent information by using a cursor with an\nINFORMATION_SCHEMA table.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/declare-cursor.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/declare-cursor.html'),(532,'LOCALTIME',32,'Syntax:\nLOCALTIME, LOCALTIME([fsp])\n\nLOCALTIME and LOCALTIME() are synonyms for NOW().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(533,'ST_GEOMFROMWKB',33,'ST_GeomFromWKB(wkb[, srid]), ST_GeometryFromWKB(wkb[, srid])\n\nConstructs a geometry value of any type using its WKB representation\nand SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(534,'SHA1',12,'Syntax:\nSHA1(str), SHA(str)\n\nCalculates an SHA-1 160-bit checksum for the string, as described in\nRFC 3174 (Secure Hash Algorithm). The value is returned as a string of\n40 hexadecimal digits, or NULL if the argument was NULL. One of the\npossible uses for this function is as a hash key. See the notes at the\nbeginning of this section about storing hash values efficiently. You\ncan also use SHA1() as a cryptographic function for storing passwords.\nSHA() is synonymous with SHA1().\n\nThe return value is a string in the connection character set.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SELECT SHA1(\'abc\');\n -> \'a9993e364706816aba3e25717850c26c9cd0d89d\'\n','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(535,'BLOB',23,'BLOB[(M)]\n\nA BLOB column with a maximum length of 65,535 (216 − 1) bytes. Each\nBLOB value is stored using a 2-byte length prefix that indicates the\nnumber of bytes in the value.\n\nAn optional length M can be given for this type. If this is done, MySQL\ncreates the column as the smallest BLOB type large enough to hold\nvalues M bytes long.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html'),(536,'PASSWORD',12,'Syntax:\nPASSWORD(str)\n\nReturns a hashed password string calculated from the cleartext password\nstr. The return value is a string in the connection character set, or\nNULL if the argument is NULL. This function is the SQL interface to the\nalgorithm used by the server to encrypt MySQL passwords for storage in\nthe mysql.user grant table.\n\nThe old_passwords system variable controls the password hashing method\nused by the PASSWORD() function. It also influences password hashing\nperformed by CREATE USER and GRANT statements that specify a password\nusing an IDENTIFIED BY clause.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SET old_passwords = 0;\nmysql> SELECT PASSWORD(\'mypass\'), OLD_PASSWORD(\'mypass\');\n+-------------------------------------------+------------------------+\n| PASSWORD(\'mypass\') | OLD_PASSWORD(\'mypass\') |\n+-------------------------------------------+------------------------+\n| *6C8989366EAF75BB670AD8EA7A7FC1176A95CEF4 | 6f8c114b58f2ce9e |\n+-------------------------------------------+------------------------+\n\nmysql> SET old_passwords = 1;\nmysql> SELECT PASSWORD(\'mypass\'), OLD_PASSWORD(\'mypass\');\n+--------------------+------------------------+\n| PASSWORD(\'mypass\') | OLD_PASSWORD(\'mypass\') |\n+--------------------+------------------------+\n| 6f8c114b58f2ce9e | 6f8c114b58f2ce9e |\n+--------------------+------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(537,'UTC_DATE',32,'Syntax:\nUTC_DATE, UTC_DATE()\n\nReturns the current UTC date as a value in \'YYYY-MM-DD\' or YYYYMMDD\nformat, depending on whether the function is used in a string or\nnumeric context.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(538,'DIMENSION',37,'Dimension(g)\n\nST_Dimension() and Dimension() are synonyms. For more information, see\nthe description of ST_Dimension().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(539,'BIT',23,'BIT[(M)]\n\nA bit-value type. M indicates the number of bits per value, from 1 to\n64. The default is 1 if M is omitted.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/numeric-type-overview.html'),(540,'EQUALS',7,'Equals(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially equal to g2.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(541,'XA',8,'Syntax:\nXA {START|BEGIN} xid [JOIN|RESUME]\n\nXA END xid [SUSPEND [FOR MIGRATE]]\n\nXA PREPARE xid\n\nXA COMMIT xid [ONE PHASE]\n\nXA ROLLBACK xid\n\nXA RECOVER\n\nFor XA START, the JOIN and RESUME clauses are not supported.\n\nFor XA END the SUSPEND [FOR MIGRATE] clause is not supported.\n\nEach XA statement begins with the XA keyword, and most of them require\nan xid value. An xid is an XA transaction identifier. It indicates\nwhich transaction the statement applies to. xid values are supplied by\nthe client, or generated by the MySQL server. An xid value has from one\nto three parts:\n\nxid: gtrid [, bqual [, formatID ]]\n\ngtrid is a global transaction identifier, bqual is a branch qualifier,\nand formatID is a number that identifies the format used by the gtrid\nand bqual values. As indicated by the syntax, bqual and formatID are\noptional. The default bqual value is \'\' if not given. The default\nformatID value is 1 if not given.\n\ngtrid and bqual must be string literals, each up to 64 bytes (not\ncharacters) long. gtrid and bqual can be specified in several ways. You\ncan use a quoted string (\'ab\'), hex string (X\'6162\', 0x6162), or bit\nvalue (b\'nnnn\').\n\nformatID is an unsigned integer.\n\nThe gtrid and bqual values are interpreted in bytes by the MySQL\nserver\'s underlying XA support routines. However, while an SQL\nstatement containing an XA statement is being parsed, the server works\nwith some specific character set. To be safe, write gtrid and bqual as\nhex strings.\n\nxid values typically are generated by the Transaction Manager. Values\ngenerated by one TM must be different from values generated by other\nTMs. A given TM must be able to recognize its own xid values in a list\nof values returned by the XA RECOVER statement.\n\nXA START xid starts an XA transaction with the given xid value. Each XA\ntransaction must have a unique xid value, so the value must not\ncurrently be used by another XA transaction. Uniqueness is assessed\nusing the gtrid and bqual values. All following XA statements for the\nXA transaction must be specified using the same xid value as that given\nin the XA START statement. If you use any of those statements but\nspecify an xid value that does not correspond to some existing XA\ntransaction, an error occurs.\n\nOne or more XA transactions can be part of the same global transaction.\nAll XA transactions within a given global transaction must use the same\ngtrid value in the xid value. For this reason, gtrid values must be\nglobally unique so that there is no ambiguity about which global\ntransaction a given XA transaction is part of. The bqual part of the\nxid value must be different for each XA transaction within a global\ntransaction. (The requirement that bqual values be different is a\nlimitation of the current MySQL XA implementation. It is not part of\nthe XA specification.)\n\nThe XA RECOVER statement returns information for those XA transactions\non the MySQL server that are in the PREPARED state. (See\nhttp://dev.mysql.com/doc/refman/5.6/en/xa-states.html.) The output\nincludes a row for each such XA transaction on the server, regardless\nof which client started it.\n\nXA RECOVER output rows look like this (for an example xid value\nconsisting of the parts \'abc\', \'def\', and 7):\n\nmysql> XA RECOVER;\n+----------+--------------+--------------+--------+\n| formatID | gtrid_length | bqual_length | data |\n+----------+--------------+--------------+--------+\n| 7 | 3 | 3 | abcdef |\n+----------+--------------+--------------+--------+\n\nThe output columns have the following meanings:\n\no formatID is the formatID part of the transaction xid\n\no gtrid_length is the length in bytes of the gtrid part of the xid\n\no bqual_length is the length in bytes of the bqual part of the xid\n\no data is the concatenation of the gtrid and bqual parts of the xid\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/xa-statements.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/xa-statements.html'),(542,'CENTROID',2,'Centroid(mpoly)\n\nST_Centroid() and Centroid() are synonyms. For more information, see\nthe description of ST_Centroid().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(543,'OCTET_LENGTH',38,'Syntax:\nOCTET_LENGTH(str)\n\nOCTET_LENGTH() is a synonym for LENGTH().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(544,'UTC_TIMESTAMP',32,'Syntax:\nUTC_TIMESTAMP, UTC_TIMESTAMP([fsp])\n\nReturns the current UTC date and time as a value in \'YYYY-MM-DD\nHH:MM:SS\' or YYYYMMDDHHMMSS format, depending on whether the function\nis used in a string or numeric context.\n\nAs of MySQL 5.6.4, if the fsp argument is given to specify a fractional\nseconds precision from 0 to 6, the return value includes a fractional\nseconds part of that many digits. Before 5.6.4, any argument is\nignored.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;\n -> \'2003-08-14 18:08:04\', 20030814180804.000000\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(545,'AES_ENCRYPT',12,'Syntax:\nAES_ENCRYPT(str,key_str[,init_vector])\n\nAES_ENCRYPT() and AES_DECRYPT() implement encryption and decryption of\ndata using the official AES (Advanced Encryption Standard) algorithm,\npreviously known as \"Rijndael.\" The AES standard permits various key\nlengths. By default these functions implement AES with a 128-bit key\nlength. As of MySQL 5.6.17, key lengths of 196 or 256 bits can be used,\nas described later. The key length is a trade off between performance\nand security.\n\nAES_ENCRYPT() encrypts the string str using the key string key_str and\nreturns a binary string containing the encrypted output. AES_DECRYPT()\ndecrypts the encrypted string crypt_str using the key string key_str\nand returns the original cleartext string. If either function argument\nis NULL, the function returns NULL.\n\nThe str and crypt_str arguments can be any length, and padding is\nautomatically added to str so it is a multiple of a block as required\nby block-based algorithms such as AES. This padding is automatically\nremoved by the AES_DECRYPT() function. The length of crypt_str can be\ncalculated using this formula:\n\n16 * (trunc(string_length / 16) + 1)\n\nFor a key length of 128 bits, the most secure way to pass a key to the\nkey_str argument is to create a truly random 128-bit value and pass it\nas a binary value. For example:\n\nINSERT INTO t\nVALUES (1,AES_ENCRYPT(\'text\',UNHEX(\'F3229A0B371ED2D9441B830D21A390C3\')));\n\nA passphrase can be used to generate an AES key by hashing the\npassphrase. For example:\n\nINSERT INTO t\nVALUES (1,AES_ENCRYPT(\'text\', UNHEX(SHA2(\'My secret passphrase\',512))));\n\nDo not pass a password or passphrase directly to crypt_str, hash it\nfirst. Previous versions of this documentation suggested the former\napproach, but it is no longer recommended as the examples shown here\nare more secure.\n\nIf AES_DECRYPT() detects invalid data or incorrect padding, it returns\nNULL. However, it is possible for AES_DECRYPT() to return a non-NULL\nvalue (possibly garbage) if the input data or the key is invalid.\n\nAs of MySQL 5.6.17, AES_ENCRYPT() and AES_DECRYPT() permit control of\nthe block encryption mode and take an optional init_vector\ninitialization vector argument:\n\no The block_encryption_mode system variable controls the mode for\n block-based encryption algorithms. Its default value is aes-128-ecb,\n which signifies encryption using a key length of 128 bits and ECB\n mode. For a description of the permitted values of this variable, see\n http://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\no The optional init_vector argument provides an initialization vector\n for block encryption modes that require it.\n\nFor modes that require the optional init_vector argument, it must be 16\nbytes or longer (bytes in excess of 16 are ignored). An error occurs if\ninit_vector is missing.\n\nFor modes that do not require init_vector, it is ignored and a warning\nis generated if it is specified.\n\nA random string of bytes to use for the initialization vector can be\nproduced by calling RANDOM_BYTES(16). For encryption modes that require\nan initialization vector, the same vector must be used for encryption\nand decryption.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SET block_encryption_mode = \'aes-256-cbc\';\nmysql> SET @key_str = SHA2(\'My secret passphrase\',512);\nmysql> SET @init_vector = RANDOM_BYTES(16);\nmysql> SET @crypt_str = AES_ENCRYPT(\'text\',@key_str,@init_vector);\nmysql> SELECT AES_DECRYPT(@crypt_str,@key_str,@init_vector);\n+-----------------------------------------------+\n| AES_DECRYPT(@crypt_str,@key_str,@init_vector) |\n+-----------------------------------------------+\n| text |\n+-----------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(546,'+',3,'Syntax:\n+\n\nAddition:\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html\n\n','mysql> SELECT 3+5;\n -> 8\n','http://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html'),(547,'GTID_SUBTRACT',7,'Syntax:\nGTID_SUBTRACT(set,subset)\n\nGiven two sets of global transaction IDs subset and set, returns only\nthose GTIDs from set that are not in subset.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gtid-functions.html\n\n','mysql> SELECT GTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21\')\\G\n*************************** 1. row ***************************\nGTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21\'): 3e11fa47-71ca-11e1-9e33-c80aa9429562:22-57\n1 row in set (0.00 sec)\n\nmysql> SELECT GTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:20-25\')\\G\n*************************** 1. row ***************************\nGTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:20-25\'): 3e11fa47-71ca-11e1-9e33-c80aa9429562:26-57\n1 row in set (0.00 sec)\n\nmysql> SELECT GTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:23-24\')\\G\n*************************** 1. row ***************************\nGTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:23-24\'): 3e11fa47-71ca-11e1-9e33-c80aa9429562:21-22:25-57\n1 row in set (0.01 sec)\n','http://dev.mysql.com/doc/refman/5.6/en/gtid-functions.html'),(548,'INET_NTOA',14,'Syntax:\nINET_NTOA(expr)\n\nGiven a numeric IPv4 network address in network byte order, returns the\ndotted-quad string representation of the address as a string in the\nconnection character set. INET_NTOA() returns NULL if it does not\nunderstand its argument.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT INET_NTOA(167773449);\n -> \'10.0.5.9\'\n','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(549,'DAYOFWEEK',32,'Syntax:\nDAYOFWEEK(date)\n\nReturns the weekday index for date (1 = Sunday, 2 = Monday, ..., 7 =\nSaturday). These index values correspond to the ODBC standard.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFWEEK(\'2007-02-03\');\n -> 7\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(550,'CEILING',3,'Syntax:\nCEILING(X)\n\nReturns the smallest integer value not less than X.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEILING(-1.23);\n -> -1\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(551,'SHOW PROCESSLIST',27,'Syntax:\nSHOW [FULL] PROCESSLIST\n\nSHOW PROCESSLIST shows you which threads are running. You can also get\nthis information from the INFORMATION_SCHEMA PROCESSLIST table or the\nmysqladmin processlist command. If you have the PROCESS privilege, you\ncan see all threads. Otherwise, you can see only your own threads (that\nis, threads associated with the MySQL account that you are using). If\nyou do not use the FULL keyword, only the first 100 characters of each\nstatement are shown in the Info field.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-processlist.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-processlist.html'),(552,'LINEFROMWKB',33,'LineFromWKB(wkb[, srid]), LineStringFromWKB(wkb[, srid])\n\nST_LineFromWKB(), ST_LineStringFromWKB(), LineFromWKB(), and\nLineStringFromWKB() are synonyms. For more information, see the\ndescription of ST_LineFromWKB().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(553,'GEOMETRYTYPE',37,'GeometryType(g)\n\nST_GeometryType() and GeometryType() are synonyms. For more\ninformation, see the description of ST_GeometryType().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(554,'CREATE VIEW',40,'Syntax:\nCREATE\n [OR REPLACE]\n [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n [DEFINER = { user | CURRENT_USER }]\n [SQL SECURITY { DEFINER | INVOKER }]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]\n\nThe CREATE VIEW statement creates a new view, or replaces an existing\nview if the OR REPLACE clause is given. If the view does not exist,\nCREATE OR REPLACE VIEW is the same as CREATE VIEW. If the view does\nexist, CREATE OR REPLACE VIEW replaces it.\n\nFor information about restrictions on view use, see\nhttp://dev.mysql.com/doc/refman/5.6/en/view-restrictions.html.\n\nThe select_statement is a SELECT statement that provides the definition\nof the view. (Selecting from the view selects, in effect, using the\nSELECT statement.) The select_statement can select from base tables or\nother views.\n\nThe view definition is \"frozen\" at creation time and is not affected by\nsubsequent changes to the definitions of the underlying tables. For\nexample, if a view is defined as SELECT * on a table, new columns added\nto the table later do not become part of the view, and columns dropped\nfrom the table will result in an error when selecting from the view.\n\nThe ALGORITHM clause affects how MySQL processes the view. The DEFINER\nand SQL SECURITY clauses specify the security context to be used when\nchecking access privileges at view invocation time. The WITH CHECK\nOPTION clause can be given to constrain inserts or updates to rows in\ntables referenced by the view. These clauses are described later in\nthis section.\n\nThe CREATE VIEW statement requires the CREATE VIEW privilege for the\nview, and some privilege for each column selected by the SELECT\nstatement. For columns used elsewhere in the SELECT statement, you must\nhave the SELECT privilege. If the OR REPLACE clause is present, you\nmust also have the DROP privilege for the view. CREATE VIEW might also\nrequire the SUPER privilege, depending on the DEFINER value, as\ndescribed later in this section.\n\nWhen a view is referenced, privilege checking occurs as described later\nin this section.\n\nA view belongs to a database. By default, a new view is created in the\ndefault database. To create the view explicitly in a given database,\nuse db_name.view_name syntax to qualify the view name with the database\nname:\n\nCREATE VIEW test.v AS SELECT * FROM t;\n\nUnqualified table or view names in the SELECT statement are also\ninterpreted with respect to the default database. A view can refer to\ntables or views in other databases by qualifying the table or view name\nwith the appropriate database name.\n\nWithin a database, base tables and views share the same namespace, so a\nbase table and a view cannot have the same name.\n\nColumns retrieved by the SELECT statement can be simple references to\ntable columns, or expressions that use functions, constant values,\noperators, and so forth.\n\nA view must have unique column names with no duplicates, just like a\nbase table. By default, the names of the columns retrieved by the\nSELECT statement are used for the view column names. To define explicit\nnames for the view columns, specify the optional column_list clause as\na list of comma-separated identifiers. The number of names in\ncolumn_list must be the same as the number of columns retrieved by the\nSELECT statement.\n\nA view can be created from many kinds of SELECT statements. It can\nrefer to base tables or other views. It can use joins, UNION, and\nsubqueries. The SELECT need not even refer to any tables:\n\nCREATE VIEW v_today (today) AS SELECT CURRENT_DATE;\n\nThe following example defines a view that selects two columns from\nanother table as well as an expression calculated from those columns:\n\nmysql> CREATE TABLE t (qty INT, price INT);\nmysql> INSERT INTO t VALUES(3, 50);\nmysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;\nmysql> SELECT * FROM v;\n+------+-------+-------+\n| qty | price | value |\n+------+-------+-------+\n| 3 | 50 | 150 |\n+------+-------+-------+\n\nA view definition is subject to the following restrictions:\n\no The SELECT statement cannot contain a subquery in the FROM clause.\n\no The SELECT statement cannot refer to system variables or user-defined\n variables.\n\no Within a stored program, the SELECT statement cannot refer to program\n parameters or local variables.\n\no The SELECT statement cannot refer to prepared statement parameters.\n\no Any table or view referred to in the definition must exist. If, after\n the view has been created, a table or view that the definition refers\n to is dropped, use of the view results in an error. To check a view\n definition for problems of this kind, use the CHECK TABLE statement.\n\no The definition cannot refer to a TEMPORARY table, and you cannot\n create a TEMPORARY view.\n\no You cannot associate a trigger with a view.\n\no Aliases for column names in the SELECT statement are checked against\n the maximum column length of 64 characters (not the maximum alias\n length of 256 characters).\n\nORDER BY is permitted in a view definition, but it is ignored if you\nselect from a view using a statement that has its own ORDER BY or\nfiltering or grouping. When ORDER BY is combined with LIMIT or OFFSET\nin a view definition, the ordering is always enforced before the query\nresult is used by the outer query, but it does not guarantee that the\nsame ordering is used in the end result. As a workaround, add an ORDER\nBY clause to the outer query.\n\nFor other options or clauses in the definition, they are added to the\noptions or clauses of the statement that references the view, but the\neffect is undefined. For example, if a view definition includes a LIMIT\nclause, and you select from the view using a statement that has its own\nLIMIT clause, it is undefined which limit applies. This same principle\napplies to options such as ALL, DISTINCT, or SQL_SMALL_RESULT that\nfollow the SELECT keyword, and to clauses such as INTO, FOR UPDATE,\nLOCK IN SHARE MODE, and PROCEDURE.\n\nThe results obtained from a view may be affected if you change the\nquery processing environment by changing system variables:\n\nmysql> CREATE VIEW v (mycol) AS SELECT \'abc\';\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SET sql_mode = \'\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT \"mycol\" FROM v;\n+-------+\n| mycol |\n+-------+\n| mycol |\n+-------+\n1 row in set (0.01 sec)\n\nmysql> SET sql_mode = \'ANSI_QUOTES\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT \"mycol\" FROM v;\n+-------+\n| mycol |\n+-------+\n| abc |\n+-------+\n1 row in set (0.00 sec)\n\nThe DEFINER and SQL SECURITY clauses determine which MySQL account to\nuse when checking access privileges for the view when a statement is\nexecuted that references the view. The valid SQL SECURITY\ncharacteristic values are DEFINER (the default) and INVOKER. These\nindicate that the required privileges must be held by the user who\ndefined or invoked the view, respectively.\n\nIf a user value is given for the DEFINER clause, it should be a MySQL\naccount specified as \'user_name\'@\'host_name\', CURRENT_USER, or\nCURRENT_USER(). The default DEFINER value is the user who executes the\nCREATE VIEW statement. This is the same as specifying DEFINER =\nCURRENT_USER explicitly.\n\nIf the DEFINER clause is present, these rules determine the valid\nDEFINER user values:\n\no If you do not have the SUPER privilege, the only valid user value is\n your own account, either specified literally or by using\n CURRENT_USER. You cannot set the definer to some other account.\n\no If you have the SUPER privilege, you can specify any syntactically\n valid account name. If the account does not exist, a warning is\n generated.\n\no Although it is possible to create a view with a nonexistent DEFINER\n account, an error occurs when the view is referenced if the SQL\n SECURITY value is DEFINER but the definer account does not exist.\n\nFor more information about view security, see\nhttp://dev.mysql.com/doc/refman/5.6/en/stored-programs-security.html.\n\nWithin a view definition, CURRENT_USER returns the view\'s DEFINER value\nby default. For views defined with the SQL SECURITY INVOKER\ncharacteristic, CURRENT_USER returns the account for the view\'s\ninvoker. For information about user auditing within views, see\nhttp://dev.mysql.com/doc/refman/5.6/en/account-activity-auditing.html.\n\nWithin a stored routine that is defined with the SQL SECURITY DEFINER\ncharacteristic, CURRENT_USER returns the routine\'s DEFINER value. This\nalso affects a view defined within such a routine, if the view\ndefinition contains a DEFINER value of CURRENT_USER.\n\nMySQL checks view privileges like this:\n\no At view definition time, the view creator must have the privileges\n needed to use the top-level objects accessed by the view. For\n example, if the view definition refers to table columns, the creator\n must have some privilege for each column in the select list of the\n definition, and the SELECT privilege for each column used elsewhere\n in the definition. If the definition refers to a stored function,\n only the privileges needed to invoke the function can be checked. The\n privileges required at function invocation time can be checked only\n as it executes: For different invocations, different execution paths\n within the function might be taken.\n\no The user who references a view must have appropriate privileges to\n access it (SELECT to select from it, INSERT to insert into it, and so\n forth.)\n\no When a view has been referenced, privileges for objects accessed by\n the view are checked against the privileges held by the view DEFINER\n account or invoker, depending on whether the SQL SECURITY\n characteristic is DEFINER or INVOKER, respectively.\n\no If reference to a view causes execution of a stored function,\n privilege checking for statements executed within the function depend\n on whether the function SQL SECURITY characteristic is DEFINER or\n INVOKER. If the security characteristic is DEFINER, the function runs\n with the privileges of the DEFINER account. If the characteristic is\n INVOKER, the function runs with the privileges determined by the\n view\'s SQL SECURITY characteristic.\n\nExample: A view might depend on a stored function, and that function\nmight invoke other stored routines. For example, the following view\ninvokes a stored function f():\n\nCREATE VIEW v AS SELECT * FROM t WHERE t.id = f(t.name);\n\nSuppose that f() contains a statement such as this:\n\nIF name IS NULL then\n CALL p1();\nELSE\n CALL p2();\nEND IF;\n\nThe privileges required for executing statements within f() need to be\nchecked when f() executes. This might mean that privileges are needed\nfor p1() or p2(), depending on the execution path within f(). Those\nprivileges must be checked at runtime, and the user who must possess\nthe privileges is determined by the SQL SECURITY values of the view v\nand the function f().\n\nThe DEFINER and SQL SECURITY clauses for views are extensions to\nstandard SQL. In standard SQL, views are handled using the rules for\nSQL SECURITY DEFINER. The standard says that the definer of the view,\nwhich is the same as the owner of the view\'s schema, gets applicable\nprivileges on the view (for example, SELECT) and may grant them. MySQL\nhas no concept of a schema \"owner\", so MySQL adds a clause to identify\nthe definer. The DEFINER clause is an extension where the intent is to\nhave what the standard has; that is, a permanent record of who defined\nthe view. This is why the default DEFINER value is the account of the\nview creator.\n\nThe optional ALGORITHM clause is a MySQL extension to standard SQL. It\naffects how MySQL processes the view. ALGORITHM takes three values:\nMERGE, TEMPTABLE, or UNDEFINED. The default algorithm is UNDEFINED if\nno ALGORITHM clause is present. For more information, see\nhttp://dev.mysql.com/doc/refman/5.6/en/view-algorithms.html, as well as\nhttp://dev.mysql.com/doc/refman/5.6/en/derived-table-optimization.html.\n\nSome views are updatable. That is, you can use them in statements such\nas UPDATE, DELETE, or INSERT to update the contents of the underlying\ntable. For a view to be updatable, there must be a one-to-one\nrelationship between the rows in the view and the rows in the\nunderlying table. There are also certain other constructs that make a\nview nonupdatable.\n\nThe WITH CHECK OPTION clause can be given for an updatable view to\nprevent inserts or updates to rows except those for which the WHERE\nclause in the select_statement is true.\n\nIn a WITH CHECK OPTION clause for an updatable view, the LOCAL and\nCASCADED keywords determine the scope of check testing when the view is\ndefined in terms of another view. The LOCAL keyword restricts the CHECK\nOPTION only to the view being defined. CASCADED causes the checks for\nunderlying views to be evaluated as well. When neither keyword is\ngiven, the default is CASCADED.\n\nFor more information about updatable views and the WITH CHECK OPTION\nclause, see\nhttp://dev.mysql.com/doc/refman/5.6/en/view-updatability.html, and\nhttp://dev.mysql.com/doc/refman/5.6/en/view-check-option.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/create-view.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/create-view.html'),(555,'TRIM',38,'Syntax:\nTRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str), TRIM([remstr\nFROM] str)\n\nReturns the string str with all remstr prefixes or suffixes removed. If\nnone of the specifiers BOTH, LEADING, or TRAILING is given, BOTH is\nassumed. remstr is optional and, if not specified, spaces are removed.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT TRIM(\' bar \');\n -> \'bar\'\nmysql> SELECT TRIM(LEADING \'x\' FROM \'xxxbarxxx\');\n -> \'barxxx\'\nmysql> SELECT TRIM(BOTH \'x\' FROM \'xxxbarxxx\');\n -> \'bar\'\nmysql> SELECT TRIM(TRAILING \'xyz\' FROM \'barxxyz\');\n -> \'barx\'\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(556,'INET6_NTOA',14,'Syntax:\nINET6_NTOA(expr)\n\nGiven an IPv6 or IPv4 network address represented in numeric form as a\nbinary string, returns the string representation of the address as a\nstring in the connection character set. If the argument is not a valid\naddress, INET6_NTOA() returns NULL.\n\nINET6_NTOA() has these properties:\n\no It does not use operating system functions to perform conversions,\n thus the output string is platform independent.\n\no The return string has a maximum length of 39 (4 x 8 + 7). Given this\n statement:\n\nCREATE TABLE t AS SELECT INET6_NTOA(expr) AS c1;\n\n The resulting table would have this definition:\n\nCREATE TABLE t (c1 VARCHAR(39) CHARACTER SET utf8 DEFAULT NULL);\n\no The return string uses lowercase letters for IPv6 addresses.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT INET6_NTOA(INET6_ATON(\'fdfe::5a55:caff:fefa:9089\'));\n -> \'fdfe::5a55:caff:fefa:9089\'\nmysql> SELECT INET6_NTOA(INET6_ATON(\'10.0.5.9\'));\n -> \'10.0.5.9\'\n\nmysql> SELECT INET6_NTOA(UNHEX(\'FDFE0000000000005A55CAFFFEFA9089\'));\n -> \'fdfe::5a55:caff:fefa:9089\'\nmysql> SELECT INET6_NTOA(UNHEX(\'0A000509\'));\n -> \'10.0.5.9\'\n','http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(557,'SIGNAL',24,'Syntax:\nSIGNAL condition_value\n [SET signal_information_item\n [, signal_information_item] ...]\n\ncondition_value:\n SQLSTATE [VALUE] sqlstate_value\n | condition_name\n\nsignal_information_item:\n condition_information_item_name = simple_value_specification\n\ncondition_information_item_name:\n CLASS_ORIGIN\n | SUBCLASS_ORIGIN\n | MESSAGE_TEXT\n | MYSQL_ERRNO\n | CONSTRAINT_CATALOG\n | CONSTRAINT_SCHEMA\n | CONSTRAINT_NAME\n | CATALOG_NAME\n | SCHEMA_NAME\n | TABLE_NAME\n | COLUMN_NAME\n | CURSOR_NAME\n\ncondition_name, simple_value_specification:\n (see following discussion)\n\nSIGNAL is the way to \"return\" an error. SIGNAL provides error\ninformation to a handler, to an outer portion of the application, or to\nthe client. Also, it provides control over the error\'s characteristics\n(error number, SQLSTATE value, message). Without SIGNAL, it is\nnecessary to resort to workarounds such as deliberately referring to a\nnonexistent table to cause a routine to return an error.\n\nNo special privileges are required to execute the SIGNAL statement.\n\nTo retrieve information from the diagnostics area, use the GET\nDIAGNOSTICS statement (see [HELP GET DIAGNOSTICS]). For information\nabout the diagnostics area, see\nhttp://dev.mysql.com/doc/refman/5.6/en/diagnostics-area.html.\n\nThe condition_value in a SIGNAL statement indicates the error value to\nbe returned. It can be an SQLSTATE value (a 5-character string literal)\nor a condition_name that refers to a named condition previously defined\nwith DECLARE ... CONDITION (see [HELP DECLARE CONDITION]).\n\nAn SQLSTATE value can indicate errors, warnings, or \"not found.\" The\nfirst two characters of the value indicate its error class, as\ndiscussed in\nhttp://dev.mysql.com/doc/refman/5.6/en/signal.html#signal-condition-inf\normation-items. Some signal values cause statement termination; see\nhttp://dev.mysql.com/doc/refman/5.6/en/signal.html#signal-effects.\n\nThe SQLSTATE value for a SIGNAL statement should not start with \'00\'\nbecause such values indicate success and are not valid for signaling an\nerror. This is true whether the SQLSTATE value is specified directly in\nthe SIGNAL statement or in a named condition referred to in the\nstatement. If the value is invalid, a Bad SQLSTATE error occurs.\n\nTo signal a generic SQLSTATE value, use \'45000\', which means \"unhandled\nuser-defined exception.\"\n\nThe SIGNAL statement optionally includes a SET clause that contains\nmultiple signal items, in a comma-separated list of\ncondition_information_item_name = simple_value_specification\nassignments.\n\nEach condition_information_item_name may be specified only once in the\nSET clause. Otherwise, a Duplicate condition information item error\noccurs.\n\nValid simple_value_specification designators can be specified using\nstored procedure or function parameters, stored program local variables\ndeclared with DECLARE, user-defined variables, system variables, or\nliterals. A character literal may include a _charset introducer.\n\nFor information about permissible condition_information_item_name\nvalues, see\nhttp://dev.mysql.com/doc/refman/5.6/en/signal.html#signal-condition-inf\normation-items.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/signal.html\n\n','CREATE PROCEDURE p (pval INT)\nBEGIN\n DECLARE specialty CONDITION FOR SQLSTATE \'45000\';\n IF pval = 0 THEN\n SIGNAL SQLSTATE \'01000\';\n ELSEIF pval = 1 THEN\n SIGNAL SQLSTATE \'45000\'\n SET MESSAGE_TEXT = \'An error occurred\';\n ELSEIF pval = 2 THEN\n SIGNAL specialty\n SET MESSAGE_TEXT = \'An error occurred\';\n ELSE\n SIGNAL SQLSTATE \'01000\'\n SET MESSAGE_TEXT = \'A warning occurred\', MYSQL_ERRNO = 1000;\n SIGNAL SQLSTATE \'45000\'\n SET MESSAGE_TEXT = \'An error occurred\', MYSQL_ERRNO = 1001;\n END IF;\nEND;\n','http://dev.mysql.com/doc/refman/5.6/en/signal.html'),(558,'ST_NUMGEOMETRIES',26,'ST_NumGeometries(gc)\n\nReturns the number of geometries in the GeometryCollection value gc. If\nthe argument is NULL or an empty geometry, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-geometrycollection-property-functions.html\n\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT ST_NumGeometries(ST_GeomFromText(@gc));\n+----------------------------------------+\n| ST_NumGeometries(ST_GeomFromText(@gc)) |\n+----------------------------------------+\n| 2 |\n+----------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-geometrycollection-property-functions.html'),(559,'SAVEPOINT',8,'Syntax:\nSAVEPOINT identifier\nROLLBACK [WORK] TO [SAVEPOINT] identifier\nRELEASE SAVEPOINT identifier\n\nInnoDB supports the SQL statements SAVEPOINT, ROLLBACK TO SAVEPOINT,\nRELEASE SAVEPOINT and the optional WORK keyword for ROLLBACK.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/savepoint.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/savepoint.html'),(560,'MPOINTFROMWKB',33,'MPointFromWKB(wkb[, srid]), MultiPointFromWKB(wkb[, srid])\n\nConstructs a MultiPoint value using its WKB representation and SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(561,'ALTER TABLE',40,'Syntax:\nALTER [ONLINE|OFFLINE] [IGNORE] TABLE tbl_name\n [alter_specification [, alter_specification] ...]\n [partition_options]\n\nalter_specification:\n table_options\n | ADD [COLUMN] col_name column_definition\n [FIRST | AFTER col_name]\n | ADD [COLUMN] (col_name column_definition,...)\n | ADD {INDEX|KEY} [index_name]\n [index_type] (index_col_name,...) [index_option] ...\n | ADD [CONSTRAINT [symbol]] PRIMARY KEY\n [index_type] (index_col_name,...) [index_option] ...\n | ADD [CONSTRAINT [symbol]]\n UNIQUE [INDEX|KEY] [index_name]\n [index_type] (index_col_name,...) [index_option] ...\n | ADD FULLTEXT [INDEX|KEY] [index_name]\n (index_col_name,...) [index_option] ...\n | ADD SPATIAL [INDEX|KEY] [index_name]\n (index_col_name,...) [index_option] ...\n | ADD [CONSTRAINT [symbol]]\n FOREIGN KEY [index_name] (index_col_name,...)\n reference_definition\n | ALGORITHM [=] {DEFAULT|INPLACE|COPY}\n | ALTER [COLUMN] col_name {SET DEFAULT literal | DROP DEFAULT}\n | CHANGE [COLUMN] old_col_name new_col_name column_definition\n [FIRST|AFTER col_name]\n | [DEFAULT] CHARACTER SET [=] charset_name [COLLATE [=] collation_name]\n | CONVERT TO CHARACTER SET charset_name [COLLATE collation_name]\n | {DISABLE|ENABLE} KEYS\n | {DISCARD|IMPORT} TABLESPACE\n | DROP [COLUMN] col_name\n | DROP {INDEX|KEY} index_name\n | DROP PRIMARY KEY\n | DROP FOREIGN KEY fk_symbol\n | FORCE\n | LOCK [=] {DEFAULT|NONE|SHARED|EXCLUSIVE}\n | MODIFY [COLUMN] col_name column_definition\n [FIRST | AFTER col_name]\n | ORDER BY col_name [, col_name] ...\n | RENAME [TO|AS] new_tbl_name\n | ADD PARTITION (partition_definition)\n | DROP PARTITION partition_names\n | TRUNCATE PARTITION {partition_names | ALL}\n | COALESCE PARTITION number\n | REORGANIZE PARTITION partition_names INTO (partition_definitions)\n | EXCHANGE PARTITION partition_name WITH TABLE tbl_name\n | ANALYZE PARTITION {partition_names | ALL}\n | CHECK PARTITION {partition_names | ALL}\n | OPTIMIZE PARTITION {partition_names | ALL}\n | REBUILD PARTITION {partition_names | ALL}\n | REPAIR PARTITION {partition_names | ALL}\n | REMOVE PARTITIONING\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]\n\nindex_type:\n USING {BTREE | HASH}\n\nindex_option:\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n\ntable_options:\n table_option [[,] table_option] ...\n\ntable_option:\n AUTO_INCREMENT [=] value\n | AVG_ROW_LENGTH [=] value\n | [DEFAULT] CHARACTER SET [=] charset_name\n | CHECKSUM [=] {0 | 1}\n | [DEFAULT] COLLATE [=] collation_name\n | COMMENT [=] \'string\'\n | CONNECTION [=] \'connect_string\'\n | {DATA|INDEX} DIRECTORY [=] \'absolute path to directory\'\n | DELAY_KEY_WRITE [=] {0 | 1}\n | ENGINE [=] engine_name\n | INSERT_METHOD [=] { NO | FIRST | LAST }\n | KEY_BLOCK_SIZE [=] value\n | MAX_ROWS [=] value\n | MIN_ROWS [=] value\n | PACK_KEYS [=] {0 | 1 | DEFAULT}\n | PASSWORD [=] \'string\'\n | ROW_FORMAT [=] {DEFAULT|DYNAMIC|FIXED|COMPRESSED|REDUNDANT|COMPACT}\n | STATS_AUTO_RECALC [=] {DEFAULT|0|1}\n | STATS_PERSISTENT [=] {DEFAULT|0|1}\n | STATS_SAMPLE_PAGES [=] value\n | TABLESPACE tablespace_name [STORAGE {DISK|MEMORY|DEFAULT}]\n | UNION [=] (tbl_name[,tbl_name]...)\n\nALTER TABLE changes the structure of a table. For example, you can add\nor delete columns, create or destroy indexes, change the type of\nexisting columns, or rename columns or the table itself. You can also\nchange characteristics such as the storage engine used for the table or\nthe table comment.\n\no To use ALTER TABLE, you need ALTER, CREATE, and INSERT privileges for\n the table. Renaming a table requires ALTER and DROP on the old table,\n ALTER, CREATE, and INSERT on the new table.\n\no Following the table name, specify the alterations to be made. If none\n are given, ALTER TABLE does nothing.\n\no The syntax for many of the permissible alterations is similar to\n clauses of the CREATE TABLE statement. column_definition clauses use\n the same syntax for ADD and CHANGE as for CREATE TABLE. For more\n information, see [HELP CREATE TABLE].\n\no The word COLUMN is optional and can be omitted.\n\no Multiple ADD, ALTER, DROP, and CHANGE clauses are permitted in a\n single ALTER TABLE statement, separated by commas. This is a MySQL\n extension to standard SQL, which permits only one of each clause per\n ALTER TABLE statement. For example, to drop multiple columns in a\n single statement, do this:\n\nALTER TABLE t2 DROP COLUMN c, DROP COLUMN d;\n\no If a storage engine does not support an attempted ALTER TABLE\n operation, a warning may result. Such warnings can be displayed with\n SHOW WARNINGS. See [HELP SHOW WARNINGS]. For information on\n troubleshooting ALTER TABLE, see\n http://dev.mysql.com/doc/refman/5.6/en/alter-table-problems.html.\n\no For usage examples, see\n http://dev.mysql.com/doc/refman/5.6/en/alter-table-examples.html.\n\no With the mysql_info() C API function, you can find out how many rows\n were copied by ALTER TABLE, and (when IGNORE is used) how many rows\n were deleted due to duplication of unique key values. See\n http://dev.mysql.com/doc/refman/5.6/en/mysql-info.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/alter-table.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/alter-table.html'),(562,'LABELS',24,'Syntax:\n[begin_label:] BEGIN\n [statement_list]\nEND [end_label]\n\n[begin_label:] LOOP\n statement_list\nEND LOOP [end_label]\n\n[begin_label:] REPEAT\n statement_list\nUNTIL search_condition\nEND REPEAT [end_label]\n\n[begin_label:] WHILE search_condition DO\n statement_list\nEND WHILE [end_label]\n\nLabels are permitted for BEGIN ... END blocks and for the LOOP, REPEAT,\nand WHILE statements. Label use for those statements follows these\nrules:\n\no begin_label must be followed by a colon.\n\no begin_label can be given without end_label. If end_label is present,\n it must be the same as begin_label.\n\no end_label cannot be given without begin_label.\n\no Labels at the same nesting level must be distinct.\n\no Labels can be up to 16 characters long.\n\nTo refer to a label within the labeled construct, use an ITERATE or\nLEAVE statement. The following example uses those statements to\ncontinue iterating or terminate the loop:\n\nCREATE PROCEDURE doiterate(p1 INT)\nBEGIN\n label1: LOOP\n SET p1 = p1 + 1;\n IF p1 < 10 THEN ITERATE label1; END IF;\n LEAVE label1;\n END LOOP label1;\nEND;\n\nThe scope of a block label does not include the code for handlers\ndeclared within the block. For details, see [HELP DECLARE HANDLER].\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/statement-labels.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/statement-labels.html'),(563,'CHAR BYTE',23,'The CHAR BYTE data type is an alias for the BINARY data type. This is a\ncompatibility feature.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html'),(564,'>',20,'Syntax:\n>\n\nGreater than:\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 2 > 2;\n -> 0\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(565,'ANALYZE TABLE',21,'Syntax:\nANALYZE [NO_WRITE_TO_BINLOG | LOCAL]\n TABLE tbl_name [, tbl_name] ...\n\nANALYZE TABLE performs a key distribution analysis and stores the\ndistribution for the named table or tables. For MyISAM tables, this\nstatement is equivalent to using myisamchk --analyze.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nANALYZE TABLE works with InnoDB, NDB, and MyISAM tables. It does not\nwork with views.\n\nANALYZE TABLE is supported for partitioned tables, and you can use\nALTER TABLE ... ANALYZE PARTITION to analyze one or more partitions;\nfor more information, see [HELP ALTER TABLE], and\nhttp://dev.mysql.com/doc/refman/5.6/en/partitioning-maintenance.html.\n\nDuring the analysis, the table is locked with a read lock for InnoDB\nand MyISAM.\n\nBy default, the server writes ANALYZE TABLE statements to the binary\nlog so that they replicate to replication slaves. To suppress logging,\nspecify the optional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/analyze-table.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/analyze-table.html'),(566,'ST_EXTERIORRING',2,'ST_ExteriorRing(poly)\n\nReturns the exterior ring of the Polygon value poly as a LineString. If\nthe argument is NULL or an empty geometry, the return value is NULL.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n -> \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT ST_AsText(ST_ExteriorRing(ST_GeomFromText(@poly)));\n+----------------------------------------------------+\n| ST_AsText(ST_ExteriorRing(ST_GeomFromText(@poly))) |\n+----------------------------------------------------+\n| LINESTRING(0 0,0 3,3 3,3 0,0 0) |\n+----------------------------------------------------+\n','http://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(567,'FIELD',38,'Syntax:\nFIELD(str,str1,str2,str3,...)\n\nReturns the index (position) of str in the str1, str2, str3, ... list.\nReturns 0 if str is not found.\n\nIf all arguments to FIELD() are strings, all arguments are compared as\nstrings. If all arguments are numbers, they are compared as numbers.\nOtherwise, the arguments are compared as double.\n\nIf str is NULL, the return value is 0 because NULL fails equality\ncomparison with any value. FIELD() is the complement of ELT().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT FIELD(\'Bb\', \'Aa\', \'Bb\', \'Cc\', \'Dd\', \'Ff\');\n -> 2\nmysql> SELECT FIELD(\'Gg\', \'Aa\', \'Bb\', \'Cc\', \'Dd\', \'Ff\');\n -> 0\n','http://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(568,'CONSTRAINT',40,'MySQL supports foreign keys, which let you cross-reference related data\nacross tables, and foreign key constraints, which help keep this\nspread-out data consistent. The essential syntax for a foreign key\nconstraint definition in a CREATE TABLE or ALTER TABLE statement looks\nlike this:\n\n[CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (index_col_name, ...)\n REFERENCES tbl_name (index_col_name,...)\n [ON DELETE reference_option]\n [ON UPDATE reference_option]\n\nreference_option:\n RESTRICT | CASCADE | SET NULL | NO ACTION | SET DEFAULT\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/create-table-foreign-keys.html\n\n','CREATE TABLE product (\n category INT NOT NULL, id INT NOT NULL,\n price DECIMAL,\n PRIMARY KEY(category, id)\n) ENGINE=INNODB;\n\nCREATE TABLE customer (\n id INT NOT NULL,\n PRIMARY KEY (id)\n) ENGINE=INNODB;\n\nCREATE TABLE product_order (\n no INT NOT NULL AUTO_INCREMENT,\n product_category INT NOT NULL,\n product_id INT NOT NULL,\n customer_id INT NOT NULL,\n\n PRIMARY KEY(no),\n INDEX (product_category, product_id),\n INDEX (customer_id),\n\n FOREIGN KEY (product_category, product_id)\n REFERENCES product(category, id)\n ON UPDATE CASCADE ON DELETE RESTRICT,\n\n FOREIGN KEY (customer_id)\n REFERENCES customer(id)\n) ENGINE=INNODB;\n','http://dev.mysql.com/doc/refman/5.6/en/create-table-foreign-keys.html'),(569,'CREATE_ASYMMETRIC_PRIV_KEY',7,'Syntax:\nCREATE_ASYMMETRIC_PRIV_KEY(algorithm, {key_len|dh_secret})\n\nCreates a private key using the given algorithm and key length or DH\nsecret, and returns the key as a binary string in PEM format. If key\ngeneration fails, the result is NULL.\n\nSupported algorithm values: \'RSA\', \'DSA\', \'DH\'\n\nSupported key_len values: The minimum key length in bits is 1,024. The\nmaximum key length depends on the algorithm: 16,384 for RSA and 10,000\nfor DSA. These key-length limits are constraints imposed by OpenSSL.\nServer administrators can impose additional limits on maximum key\nlength by setting environment variables. See\nhttp://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-usage.html\n.\n\nFor DH keys, pass a shared DH secret instead of a key length. To create\nthe secret, pass the key length to CREATE_DH_PARAMETERS().\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','SET @priv = CREATE_ASYMMETRIC_PRIV_KEY(\'DSA\', 2048);\nSET @pub = CREATE_ASYMMETRIC_PUB_KEY(\'DSA\', @priv);\n','http://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(570,'ALTER TABLESPACE',40,'Syntax:\nALTER TABLESPACE tablespace_name\n {ADD|DROP} DATAFILE \'file_name\'\n [INITIAL_SIZE [=] size]\n [WAIT]\n ENGINE [=] engine_name\n\nThis statement can be used either to add a new data file, or to drop a\ndata file from a tablespace.\n\nThe ADD DATAFILE variant enables you to specify an initial size using\nan INITIAL_SIZE clause, where size is measured in bytes; the default\nvalue is 134217728 (128 MB). Prior to MySQL NDB Cluster 7.3.2, this\nvalue was required to be specified using digits (Bug #13116514, Bug\n#16104705, Bug #62858); in MySQL NDB Cluster 7.3.2 and later, you may\noptionally follow size with a one-letter abbreviation for an order of\nmagnitude, similar to those used in my.cnf. Generally, this is one of\nthe letters M (megabytes) or G (gigabytes).\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and an data file with the same name, or an undo log file and\na tablespace with the same name.\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nINITIAL_SIZE is rounded, explicitly, as for CREATE TABLESPACE.\n\nOnce a data file has been created, its size cannot be changed; however,\nyou can add more data files to the tablespace using additional ALTER\nTABLESPACE ... ADD DATAFILE statements.\n\nUsing DROP DATAFILE with ALTER TABLESPACE drops the data file\n\'file_name\' from the tablespace. You cannot drop a data file from a\ntablespace which is in use by any table; in other words, the data file\nmust be empty (no extents used). See\nhttp://dev.mysql.com/doc/refman/5.6/en/mysql-cluster-disk-data-objects.\nhtml. In addition, any data file to be dropped must previously have\nbeen added to the tablespace with CREATE TABLESPACE or ALTER\nTABLESPACE.\n\nBoth ALTER TABLESPACE ... ADD DATAFILE and ALTER TABLESPACE ... DROP\nDATAFILE require an ENGINE clause which specifies the storage engine\nused by the tablespace. Currently, the only accepted values for\nengine_name are NDB and NDBCLUSTER.\n\nWAIT is parsed but otherwise ignored, and so has no effect in MySQL\n5.6. It is intended for future expansion.\n\nWhen ALTER TABLESPACE ... ADD DATAFILE is used with ENGINE = NDB, a\ndata file is created on each Cluster data node. You can verify that the\ndata files were created and obtain information about them by querying\nthe INFORMATION_SCHEMA.FILES table. For example, the following query\nshows all data files belonging to the tablespace named newts:\n\nmysql> SELECT LOGFILE_GROUP_NAME, FILE_NAME, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE TABLESPACE_NAME = \'newts\' AND FILE_TYPE = \'DATAFILE\';\n+--------------------+--------------+----------------+\n| LOGFILE_GROUP_NAME | FILE_NAME | EXTRA |\n+--------------------+--------------+----------------+\n| lg_3 | newdata.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata.dat | CLUSTER_NODE=4 |\n| lg_3 | newdata2.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata2.dat | CLUSTER_NODE=4 |\n+--------------------+--------------+----------------+\n2 rows in set (0.03 sec)\n\nSee http://dev.mysql.com/doc/refman/5.6/en/files-table.html.\n\nALTER TABLESPACE is useful only with Disk Data storage for NDB Cluster.\nSee\nhttp://dev.mysql.com/doc/refman/5.6/en/mysql-cluster-disk-data.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/alter-tablespace.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/alter-tablespace.html'),(571,'ENUM',23,'ENUM(\'value1\',\'value2\',...) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nAn enumeration. A string object that can have only one value, chosen\nfrom the list of values \'value1\', \'value2\', ..., NULL or the special \'\'\nerror value. ENUM values are represented internally as integers.\n\nAn ENUM column can have a maximum of 65,535 distinct elements. (The\npractical limit is less than 3000.) A table can have no more than 255\nunique element list definitions among its ENUM and SET columns\nconsidered as a group. For more information on these limits, see\nhttp://dev.mysql.com/doc/refman/5.6/en/limits-frm-file.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html'),(572,'STRCMP',38,'Syntax:\nSTRCMP(expr1,expr2)\n\nSTRCMP() returns 0 if the strings are the same, -1 if the first\nargument is smaller than the second according to the current sort\norder, and 1 otherwise.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-comparison-functions.html\n\n','mysql> SELECT STRCMP(\'text\', \'text2\');\n -> -1\nmysql> SELECT STRCMP(\'text2\', \'text\');\n -> 1\nmysql> SELECT STRCMP(\'text\', \'text\');\n -> 0\n','http://dev.mysql.com/doc/refman/5.6/en/string-comparison-functions.html'),(573,'INSERT DELAYED',28,'Syntax:\nINSERT DELAYED ...\n\nThe DELAYED option for the INSERT statement is a MySQL extension to\nstandard SQL that can be used for certain kinds of tables (such as\nMyISAM). When a client uses INSERT DELAYED, it gets an okay from the\nserver at once, and the row is queued to be inserted when the table is\nnot in use by any other thread.\n\n*Note*:\n\nINSERT DELAYED is slower than a normal INSERT if the table is not\notherwise in use. There is also the additional overhead for the server\nto handle a separate thread for each table for which there are delayed\nrows. This means that you should use INSERT DELAYED only when you are\nreally sure that you need it.\n\nAs of MySQL 5.6.6, INSERT DELAYED is deprecated, and will be removed in\na future release. Use INSERT (without DELAYED) instead.\n\nThe queued rows are held only in memory until they are inserted into\nthe table. This means that if you terminate mysqld forcibly (for\nexample, with kill -9) or if mysqld dies unexpectedly, any queued rows\nthat have not been written to disk are lost.\n\nThere are some constraints on the use of DELAYED:\n\no INSERT DELAYED works only with MyISAM, MEMORY, ARCHIVE, and BLACKHOLE\n tables. For engines that do not support DELAYED, an error occurs.\n\no An error occurs for INSERT DELAYED if used with a table that has been\n locked with LOCK TABLES because the insert must be handled by a\n separate thread, not by the session that holds the lock.\n\no For MyISAM tables, if there are no free blocks in the middle of the\n data file, concurrent SELECT and INSERT statements are supported.\n Under these circumstances, you very seldom need to use INSERT DELAYED\n with MyISAM.\n\no INSERT DELAYED should be used only for INSERT statements that specify\n value lists. The server ignores DELAYED for INSERT ... SELECT or\n INSERT ... ON DUPLICATE KEY UPDATE statements.\n\no Because the INSERT DELAYED statement returns immediately, before the\n rows are inserted, you cannot use LAST_INSERT_ID() to get the\n AUTO_INCREMENT value that the statement might generate.\n\no DELAYED rows are not visible to SELECT statements until they actually\n have been inserted.\n\no INSERT DELAYED is handled as a simple INSERT (that is, without the\n DELAYED option) whenever the value of binlog_format is STATEMENT or\n MIXED. (In the latter case, the statement does not trigger a switch\n to row-based logging, and so is logged using the statement-based\n format.)\n\n This does not apply when using row-based binary logging mode\n (binlog_format set to ROW), in which INSERT DELAYED statements are\n always executed using the DELAYED option as specified, and logged as\n row-update events.\n\no DELAYED is ignored on slave replication servers, so that INSERT\n DELAYED is treated as a normal INSERT on slaves. This is because\n DELAYED could cause the slave to have different data than the master.\n\no Pending INSERT DELAYED statements are lost if a table is write locked\n and ALTER TABLE is used to modify the table structure.\n\no INSERT DELAYED is not supported for views.\n\no INSERT DELAYED is not supported for partitioned tables.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/insert-delayed.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/insert-delayed.html'),(574,'SHOW PROCEDURE CODE',27,'Syntax:\nSHOW PROCEDURE CODE proc_name\n\nThis statement is a MySQL extension that is available only for servers\nthat have been built with debugging support. It displays a\nrepresentation of the internal implementation of the named stored\nprocedure. A similar statement, SHOW FUNCTION CODE, displays\ninformation about stored functions (see [HELP SHOW FUNCTION CODE]).\n\nTo use either statement, you must be the owner of the routine or have\nSELECT access to the mysql.proc table.\n\nIf the named routine is available, each statement produces a result\nset. Each row in the result set corresponds to one \"instruction\" in the\nroutine. The first column is Pos, which is an ordinal number beginning\nwith 0. The second column is Instruction, which contains an SQL\nstatement (usually changed from the original source), or a directive\nwhich has meaning only to the stored-routine handler.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-procedure-code.html\n\n','mysql> DELIMITER //\nmysql> CREATE PROCEDURE p1 ()\n -> BEGIN\n -> DECLARE fanta INT DEFAULT 55;\n -> DROP TABLE t2;\n -> LOOP\n -> INSERT INTO t3 VALUES (fanta);\n -> END LOOP;\n -> END//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SHOW PROCEDURE CODE p1//\n+-----+----------------------------------------+\n| Pos | Instruction |\n+-----+----------------------------------------+\n| 0 | set fanta@0 55 |\n| 1 | stmt 9 \"DROP TABLE t2\" |\n| 2 | stmt 5 \"INSERT INTO t3 VALUES (fanta)\" |\n| 3 | jump 2 |\n+-----+----------------------------------------+\n4 rows in set (0.00 sec)\n','http://dev.mysql.com/doc/refman/5.6/en/show-procedure-code.html'),(575,'MEDIUMTEXT',23,'MEDIUMTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 16,777,215 (224 − 1)\ncharacters. The effective maximum length is less if the value contains\nmultibyte characters. Each MEDIUMTEXT value is stored using a 3-byte\nlength prefix that indicates the number of bytes in the value.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/string-type-overview.html'),(576,'SHOW COLLATION',27,'Syntax:\nSHOW COLLATION\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement lists collations supported by the server. By default,\nthe output from SHOW COLLATION includes all available collations. The\nLIKE clause, if present, indicates which collation names to match. The\nWHERE clause can be given to select rows using more general conditions,\nas discussed in\nhttp://dev.mysql.com/doc/refman/5.6/en/extended-show.html. For example:\n\nmysql> SHOW COLLATION WHERE Charset = \'latin1\';\n+-------------------+---------+----+---------+----------+---------+\n| Collation | Charset | Id | Default | Compiled | Sortlen |\n+-------------------+---------+----+---------+----------+---------+\n| latin1_german1_ci | latin1 | 5 | | Yes | 1 |\n| latin1_swedish_ci | latin1 | 8 | Yes | Yes | 1 |\n| latin1_danish_ci | latin1 | 15 | | Yes | 1 |\n| latin1_german2_ci | latin1 | 31 | | Yes | 2 |\n| latin1_bin | latin1 | 47 | | Yes | 1 |\n| latin1_general_ci | latin1 | 48 | | Yes | 1 |\n| latin1_general_cs | latin1 | 49 | | Yes | 1 |\n| latin1_spanish_ci | latin1 | 94 | | Yes | 1 |\n+-------------------+---------+----+---------+----------+---------+\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-collation.html\n\n','','http://dev.mysql.com/doc/refman/5.6/en/show-collation.html'),(577,'LOG',3,'Syntax:\nLOG(X), LOG(B,X)\n\nIf called with one parameter, this function returns the natural\nlogarithm of X. If X is less than or equal to 0, then NULL is returned.\n\nThe inverse of this function (when called with a single argument) is\nthe EXP() function.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT LOG(2);\n -> 0.69314718055995\nmysql> SELECT LOG(-2);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(578,'!=',20,'Syntax:\n<>, !=\n\nNot equal:\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT \'.01\' <> \'0.01\';\n -> 1\nmysql> SELECT .01 <> \'0.01\';\n -> 0\nmysql> SELECT \'zapp\' <> \'zappp\';\n -> 1\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(579,'WHILE',24,'Syntax:\n[begin_label:] WHILE search_condition DO\n statement_list\nEND WHILE [end_label]\n\nThe statement list within a WHILE statement is repeated as long as the\nsearch_condition expression is true. statement_list consists of one or\nmore SQL statements, each terminated by a semicolon (;) statement\ndelimiter.\n\nA WHILE statement can be labeled. For the rules regarding label use,\nsee [HELP labels].\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/while.html\n\n','CREATE PROCEDURE dowhile()\nBEGIN\n DECLARE v1 INT DEFAULT 5;\n\n WHILE v1 > 0 DO\n ...\n SET v1 = v1 - 1;\n END WHILE;\nEND;\n','http://dev.mysql.com/doc/refman/5.6/en/while.html'),(580,'DAYNAME',32,'Syntax:\nDAYNAME(date)\n\nReturns the name of the weekday for date. The language used for the\nname is controlled by the value of the lc_time_names system variable\n(http://dev.mysql.com/doc/refman/5.6/en/locale-support.html).\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DAYNAME(\'2007-02-03\');\n -> \'Saturday\'\n','http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(581,'RADIANS',3,'Syntax:\nRADIANS(X)\n\nReturns the argument X, converted from degrees to radians.\n\n*Note*:\n\nπ radians equals 180 degrees.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT RADIANS(90);\n -> 1.5707963267949\n','http://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(582,'COLLATION',17,'Syntax:\nCOLLATION(str)\n\nReturns the collation of the string argument.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT COLLATION(\'abc\');\n -> \'latin1_swedish_ci\'\nmysql> SELECT COLLATION(_utf8\'abc\');\n -> \'utf8_general_ci\'\n','http://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(583,'COALESCE',20,'Syntax:\nCOALESCE(value,...)\n\nReturns the first non-NULL value in the list, or NULL if there are no\nnon-NULL values.\n\nThe return type of COALESCE() is the aggregated type of the argument\ntypes.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT COALESCE(NULL,1);\n -> 1\nmysql> SELECT COALESCE(NULL,NULL,NULL);\n -> NULL\n','http://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(584,'VERSION',17,'Syntax:\nVERSION()\n\nReturns a string that indicates the MySQL server version. The string\nuses the utf8 character set. The value might have a suffix in addition\nto the version number. See the description of the version system\nvariable in\nhttp://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nURL: http://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT VERSION();\n -> \'5.6.42-standard\'\n','http://dev.mysql.com/doc/refman/5.6/en/information-functions.html');
/*!40000 ALTER TABLE `help_topic` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `innodb_index_stats`
--
DROP TABLE IF EXISTS `innodb_index_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `innodb_index_stats` (
`database_name` varchar(64) COLLATE utf8_bin NOT NULL,
`table_name` varchar(64) COLLATE utf8_bin NOT NULL,
`index_name` varchar(64) COLLATE utf8_bin NOT NULL,
`last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`stat_name` varchar(64) COLLATE utf8_bin NOT NULL,
`stat_value` bigint(20) unsigned NOT NULL,
`sample_size` bigint(20) unsigned DEFAULT NULL,
`stat_description` varchar(1024) COLLATE utf8_bin NOT NULL,
PRIMARY KEY (`database_name`,`table_name`,`index_name`,`stat_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin STATS_PERSISTENT=0;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `innodb_index_stats`
--
LOCK TABLES `innodb_index_stats` WRITE;
/*!40000 ALTER TABLE `innodb_index_stats` DISABLE KEYS */;
INSERT INTO `innodb_index_stats` VALUES ('sentora_core','countries','GEN_CLUST_INDEX','2018-08-23 14:43:52','n_diff_pfx01',246,1,'DB_ROW_ID'),('sentora_core','countries','GEN_CLUST_INDEX','2018-08-23 14:43:52','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','countries','GEN_CLUST_INDEX','2018-08-23 14:43:52','size',1,NULL,'Number of pages in the index'),('sentora_core','datacont','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',1,1,'id'),('sentora_core','datacont','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','datacont','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_accounts','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',1,1,'ac_id_pk'),('sentora_core','x_accounts','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_accounts','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_aliases','PRIMARY','2018-08-23 14:37:37','n_diff_pfx01',0,1,'al_id_pk'),('sentora_core','x_aliases','PRIMARY','2018-08-23 14:37:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_aliases','PRIMARY','2018-08-23 14:37:37','size',1,NULL,'Number of pages in the index'),('sentora_core','x_autorespond','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'vh_id'),('sentora_core','x_autorespond','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_autorespond','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_autouser','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'my_id_pk'),('sentora_core','x_autouser','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_autouser','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_backup_setting','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'bk_id'),('sentora_core','x_backup_setting','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_backup_setting','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_csr','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'csr_no'),('sentora_core','x_csr','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_csr','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_database_settings','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'ds_id_pk'),('sentora_core','x_database_settings','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_database_settings','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_diskusage','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'ac_id_pk'),('sentora_core','x_diskusage','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_diskusage','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_distlists','PRIMARY','2018-08-23 14:37:37','n_diff_pfx01',0,1,'dl_id_pk'),('sentora_core','x_distlists','PRIMARY','2018-08-23 14:37:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_distlists','PRIMARY','2018-08-23 14:37:37','size',1,NULL,'Number of pages in the index'),('sentora_core','x_distlistusers','PRIMARY','2018-08-23 14:37:37','n_diff_pfx01',0,1,'du_id_pk'),('sentora_core','x_distlistusers','PRIMARY','2018-08-23 14:37:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_distlistusers','PRIMARY','2018-08-23 14:37:37','size',1,NULL,'Number of pages in the index'),('sentora_core','x_dns','PRIMARY','2018-08-23 14:37:37','n_diff_pfx01',0,1,'dn_id_pk'),('sentora_core','x_dns','PRIMARY','2018-08-23 14:37:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_dns','PRIMARY','2018-08-23 14:37:37','size',1,NULL,'Number of pages in the index'),('sentora_core','x_dns_create','PRIMARY','2018-08-23 14:37:37','n_diff_pfx01',9,1,'dc_id_pk'),('sentora_core','x_dns_create','PRIMARY','2018-08-23 14:37:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_dns_create','PRIMARY','2018-08-23 14:37:37','size',1,NULL,'Number of pages in the index'),('sentora_core','x_faqs','PRIMARY','2018-08-23 14:37:37','n_diff_pfx01',14,1,'fq_id_pk'),('sentora_core','x_faqs','PRIMARY','2018-08-23 14:37:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_faqs','PRIMARY','2018-08-23 14:37:37','size',1,NULL,'Number of pages in the index'),('sentora_core','x_forwarders','PRIMARY','2018-08-23 14:37:37','n_diff_pfx01',0,1,'fw_id_pk'),('sentora_core','x_forwarders','PRIMARY','2018-08-23 14:37:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_forwarders','PRIMARY','2018-08-23 14:37:37','size',1,NULL,'Number of pages in the index'),('sentora_core','x_header_checks','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'x_id'),('sentora_core','x_header_checks','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_header_checks','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_htpasswd_file','PRIMARY','2018-08-23 14:37:37','n_diff_pfx01',0,1,'x_htpasswd_file_id'),('sentora_core','x_htpasswd_file','PRIMARY','2018-08-23 14:37:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_htpasswd_file','PRIMARY','2018-08-23 14:37:37','size',1,NULL,'Number of pages in the index'),('sentora_core','x_htpasswd_file','x_htpasswd_file_target','2018-08-23 14:37:37','n_diff_pfx01',0,1,'x_htpasswd_file_target'),('sentora_core','x_htpasswd_file','x_htpasswd_file_target','2018-08-23 14:37:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_htpasswd_file','x_htpasswd_file_target','2018-08-23 14:37:37','size',1,NULL,'Number of pages in the index'),('sentora_core','x_htpasswd_file','x_htpasswd_file_x_htpasswd_sentora_user_id_idx','2018-08-23 14:37:37','n_diff_pfx01',0,1,'x_htpasswd_sentora_user_id'),('sentora_core','x_htpasswd_file','x_htpasswd_file_x_htpasswd_sentora_user_id_idx','2018-08-23 14:37:37','n_diff_pfx02',0,1,'x_htpasswd_sentora_user_id,x_htpasswd_file_id'),('sentora_core','x_htpasswd_file','x_htpasswd_file_x_htpasswd_sentora_user_id_idx','2018-08-23 14:37:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_htpasswd_file','x_htpasswd_file_x_htpasswd_sentora_user_id_idx','2018-08-23 14:37:37','size',1,NULL,'Number of pages in the index'),('sentora_core','x_htpasswd_mapper','PRIMARY','2018-08-23 14:37:38','n_diff_pfx01',0,1,'x_htpasswd_mapper_id'),('sentora_core','x_htpasswd_mapper','PRIMARY','2018-08-23 14:37:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_htpasswd_mapper','PRIMARY','2018-08-23 14:37:38','size',1,NULL,'Number of pages in the index'),('sentora_core','x_htpasswd_mapper','x_htpasswd_mapper_x_htpasswd_file_id_idx','2018-08-23 14:37:38','n_diff_pfx01',0,1,'x_htpasswd_file_id'),('sentora_core','x_htpasswd_mapper','x_htpasswd_mapper_x_htpasswd_file_id_idx','2018-08-23 14:37:38','n_diff_pfx02',0,1,'x_htpasswd_file_id,x_htpasswd_mapper_id'),('sentora_core','x_htpasswd_mapper','x_htpasswd_mapper_x_htpasswd_file_id_idx','2018-08-23 14:37:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_htpasswd_mapper','x_htpasswd_mapper_x_htpasswd_file_id_idx','2018-08-23 14:37:38','size',1,NULL,'Number of pages in the index'),('sentora_core','x_htpasswd_mapper','x_htpasswd_mapper_x_htpasswd_user_id_idx','2018-08-23 14:37:38','n_diff_pfx01',0,1,'x_htpasswd_user_id'),('sentora_core','x_htpasswd_mapper','x_htpasswd_mapper_x_htpasswd_user_id_idx','2018-08-23 14:37:38','n_diff_pfx02',0,1,'x_htpasswd_user_id,x_htpasswd_mapper_id'),('sentora_core','x_htpasswd_mapper','x_htpasswd_mapper_x_htpasswd_user_id_idx','2018-08-23 14:37:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_htpasswd_mapper','x_htpasswd_mapper_x_htpasswd_user_id_idx','2018-08-23 14:37:38','size',1,NULL,'Number of pages in the index'),('sentora_core','x_htpasswd_user','PRIMARY','2018-08-23 14:37:38','n_diff_pfx01',0,1,'x_htpasswd_user_id'),('sentora_core','x_htpasswd_user','PRIMARY','2018-08-23 14:37:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_htpasswd_user','PRIMARY','2018-08-23 14:37:38','size',1,NULL,'Number of pages in the index'),('sentora_core','x_htpasswd_user','x_htpasswd_user_password','2018-08-23 14:37:38','n_diff_pfx01',0,1,'x_htpasswd_user_password'),('sentora_core','x_htpasswd_user','x_htpasswd_user_password','2018-08-23 14:37:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_htpasswd_user','x_htpasswd_user_password','2018-08-23 14:37:38','size',1,NULL,'Number of pages in the index'),('sentora_core','x_htpasswd_user','x_htpasswd_user_username','2018-08-23 14:37:38','n_diff_pfx01',0,1,'x_htpasswd_user_username'),('sentora_core','x_htpasswd_user','x_htpasswd_user_username','2018-08-23 14:37:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_htpasswd_user','x_htpasswd_user_username','2018-08-23 14:37:38','size',1,NULL,'Number of pages in the index'),('sentora_core','x_last_mail_exceed','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'x_id'),('sentora_core','x_last_mail_exceed','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_last_mail_exceed','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_logAttempts','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'log_id'),('sentora_core','x_logAttempts','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_logAttempts','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_logs','PRIMARY','2018-08-23 14:37:37','n_diff_pfx01',0,1,'lg_id_pk'),('sentora_core','x_logs','PRIMARY','2018-08-23 14:37:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_logs','PRIMARY','2018-08-23 14:37:37','size',1,NULL,'Number of pages in the index'),('sentora_core','x_mailboxes','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'mb_id_pk'),('sentora_core','x_mailboxes','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_mailboxes','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_modcats','PRIMARY','2018-08-23 14:37:37','n_diff_pfx01',8,1,'mc_id_pk'),('sentora_core','x_modcats','PRIMARY','2018-08-23 14:37:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_modcats','PRIMARY','2018-08-23 14:37:37','size',1,NULL,'Number of pages in the index'),('sentora_core','x_modules','PRIMARY','2018-08-23 14:44:02','n_diff_pfx01',63,1,'mo_id_pk'),('sentora_core','x_modules','PRIMARY','2018-08-23 14:44:02','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_modules','PRIMARY','2018-08-23 14:44:02','size',1,NULL,'Number of pages in the index'),('sentora_core','x_nodejs','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'nd_id'),('sentora_core','x_nodejs','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_nodejs','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_ns','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'ns_no'),('sentora_core','x_ns','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_ns','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_password_strength','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'ps_id_pk'),('sentora_core','x_password_strength','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_password_strength','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_picdata','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',1,1,'id'),('sentora_core','x_picdata','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_picdata','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_profiles','PRIMARY','2018-08-23 14:37:37','n_diff_pfx01',0,1,'ud_id_pk'),('sentora_core','x_profiles','PRIMARY','2018-08-23 14:37:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_profiles','PRIMARY','2018-08-23 14:37:37','size',1,NULL,'Number of pages in the index'),('sentora_core','x_remote_mysql_hosts','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'re_id_pk'),('sentora_core','x_remote_mysql_hosts','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_remote_mysql_hosts','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_serverip','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'id'),('sentora_core','x_serverip','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_serverip','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_settings','PRIMARY','2018-08-23 14:37:57','n_diff_pfx01',107,1,'so_id_pk'),('sentora_core','x_settings','PRIMARY','2018-08-23 14:37:57','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_settings','PRIMARY','2018-08-23 14:37:57','size',1,NULL,'Number of pages in the index'),('sentora_core','x_splitlog','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'x_id'),('sentora_core','x_splitlog','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_splitlog','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_ssl','PRIMARY','2018-08-23 14:43:42','n_diff_pfx01',0,1,'ssl_no'),('sentora_core','x_ssl','PRIMARY','2018-08-23 14:43:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_ssl','PRIMARY','2018-08-23 14:43:42','size',1,NULL,'Number of pages in the index'),('sentora_core','x_translations','PRIMARY','2018-08-23 14:37:47','n_diff_pfx01',60,1,'tr_id_pk'),('sentora_core','x_translations','PRIMARY','2018-08-23 14:37:47','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_core','x_translations','PRIMARY','2018-08-23 14:37:47','size',1,NULL,'Number of pages in the index'),('sentora_postfix','vacation','PRIMARY','2018-08-23 14:37:43','n_diff_pfx01',0,1,'email'),('sentora_postfix','vacation','PRIMARY','2018-08-23 14:37:43','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_postfix','vacation','PRIMARY','2018-08-23 14:37:43','size',1,NULL,'Number of pages in the index'),('sentora_postfix','vacation','email','2018-08-23 14:37:43','n_diff_pfx01',0,1,'email'),('sentora_postfix','vacation','email','2018-08-23 14:37:43','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_postfix','vacation','email','2018-08-23 14:37:43','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','cache','GEN_CLUST_INDEX','2018-08-23 14:39:00','n_diff_pfx01',0,1,'DB_ROW_ID'),('sentora_roundcube','cache','GEN_CLUST_INDEX','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','cache','GEN_CLUST_INDEX','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','cache','created_index','2018-08-23 14:39:00','n_diff_pfx01',0,1,'created'),('sentora_roundcube','cache','created_index','2018-08-23 14:39:00','n_diff_pfx02',0,1,'created,DB_ROW_ID'),('sentora_roundcube','cache','created_index','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','cache','created_index','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','cache','user_cache_index','2018-08-23 14:39:00','n_diff_pfx01',0,1,'user_id'),('sentora_roundcube','cache','user_cache_index','2018-08-23 14:39:00','n_diff_pfx02',0,1,'user_id,cache_key'),('sentora_roundcube','cache','user_cache_index','2018-08-23 14:39:00','n_diff_pfx03',0,1,'user_id,cache_key,DB_ROW_ID'),('sentora_roundcube','cache','user_cache_index','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','cache','user_cache_index','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','cache_index','PRIMARY','2018-08-23 14:39:00','n_diff_pfx01',0,1,'user_id'),('sentora_roundcube','cache_index','PRIMARY','2018-08-23 14:39:00','n_diff_pfx02',0,1,'user_id,mailbox'),('sentora_roundcube','cache_index','PRIMARY','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','cache_index','PRIMARY','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','cache_index','changed_index','2018-08-23 14:39:00','n_diff_pfx01',0,1,'changed'),('sentora_roundcube','cache_index','changed_index','2018-08-23 14:39:00','n_diff_pfx02',0,1,'changed,user_id'),('sentora_roundcube','cache_index','changed_index','2018-08-23 14:39:00','n_diff_pfx03',0,1,'changed,user_id,mailbox'),('sentora_roundcube','cache_index','changed_index','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','cache_index','changed_index','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','cache_messages','PRIMARY','2018-08-23 14:39:00','n_diff_pfx01',0,1,'user_id'),('sentora_roundcube','cache_messages','PRIMARY','2018-08-23 14:39:00','n_diff_pfx02',0,1,'user_id,mailbox'),('sentora_roundcube','cache_messages','PRIMARY','2018-08-23 14:39:00','n_diff_pfx03',0,1,'user_id,mailbox,uid'),('sentora_roundcube','cache_messages','PRIMARY','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','cache_messages','PRIMARY','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','cache_messages','changed_index','2018-08-23 14:39:00','n_diff_pfx01',0,1,'changed'),('sentora_roundcube','cache_messages','changed_index','2018-08-23 14:39:00','n_diff_pfx02',0,1,'changed,user_id'),('sentora_roundcube','cache_messages','changed_index','2018-08-23 14:39:00','n_diff_pfx03',0,1,'changed,user_id,mailbox'),('sentora_roundcube','cache_messages','changed_index','2018-08-23 14:39:00','n_diff_pfx04',0,1,'changed,user_id,mailbox,uid'),('sentora_roundcube','cache_messages','changed_index','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','cache_messages','changed_index','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','cache_thread','PRIMARY','2018-08-23 14:39:00','n_diff_pfx01',0,1,'user_id'),('sentora_roundcube','cache_thread','PRIMARY','2018-08-23 14:39:00','n_diff_pfx02',0,1,'user_id,mailbox'),('sentora_roundcube','cache_thread','PRIMARY','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','cache_thread','PRIMARY','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','cache_thread','changed_index','2018-08-23 14:39:00','n_diff_pfx01',0,1,'changed'),('sentora_roundcube','cache_thread','changed_index','2018-08-23 14:39:00','n_diff_pfx02',0,1,'changed,user_id'),('sentora_roundcube','cache_thread','changed_index','2018-08-23 14:39:00','n_diff_pfx03',0,1,'changed,user_id,mailbox'),('sentora_roundcube','cache_thread','changed_index','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','cache_thread','changed_index','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','contactgroupmembers','PRIMARY','2018-08-23 14:39:00','n_diff_pfx01',0,1,'contactgroup_id'),('sentora_roundcube','contactgroupmembers','PRIMARY','2018-08-23 14:39:00','n_diff_pfx02',0,1,'contactgroup_id,contact_id'),('sentora_roundcube','contactgroupmembers','PRIMARY','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','contactgroupmembers','PRIMARY','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','contactgroupmembers','contactgroupmembers_contact_index','2018-08-23 14:39:00','n_diff_pfx01',0,1,'contact_id'),('sentora_roundcube','contactgroupmembers','contactgroupmembers_contact_index','2018-08-23 14:39:00','n_diff_pfx02',0,1,'contact_id,contactgroup_id'),('sentora_roundcube','contactgroupmembers','contactgroupmembers_contact_index','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','contactgroupmembers','contactgroupmembers_contact_index','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','contactgroups','PRIMARY','2018-08-23 14:39:00','n_diff_pfx01',0,1,'contactgroup_id'),('sentora_roundcube','contactgroups','PRIMARY','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','contactgroups','PRIMARY','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','contactgroups','contactgroups_user_index','2018-08-23 14:39:00','n_diff_pfx01',0,1,'user_id'),('sentora_roundcube','contactgroups','contactgroups_user_index','2018-08-23 14:39:00','n_diff_pfx02',0,1,'user_id,del'),('sentora_roundcube','contactgroups','contactgroups_user_index','2018-08-23 14:39:00','n_diff_pfx03',0,1,'user_id,del,contactgroup_id'),('sentora_roundcube','contactgroups','contactgroups_user_index','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','contactgroups','contactgroups_user_index','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','contacts','PRIMARY','2018-08-23 14:39:00','n_diff_pfx01',0,1,'contact_id'),('sentora_roundcube','contacts','PRIMARY','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','contacts','PRIMARY','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','contacts','user_contacts_index','2018-08-23 14:39:00','n_diff_pfx01',0,1,'user_id'),('sentora_roundcube','contacts','user_contacts_index','2018-08-23 14:39:00','n_diff_pfx02',0,1,'user_id,del'),('sentora_roundcube','contacts','user_contacts_index','2018-08-23 14:39:00','n_diff_pfx03',0,1,'user_id,del,contact_id'),('sentora_roundcube','contacts','user_contacts_index','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','contacts','user_contacts_index','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','dictionary','GEN_CLUST_INDEX','2018-08-23 14:39:00','n_diff_pfx01',0,1,'DB_ROW_ID'),('sentora_roundcube','dictionary','GEN_CLUST_INDEX','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','dictionary','GEN_CLUST_INDEX','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','dictionary','uniqueness','2018-08-23 14:39:00','n_diff_pfx01',0,1,'user_id'),('sentora_roundcube','dictionary','uniqueness','2018-08-23 14:39:00','n_diff_pfx02',0,1,'user_id,language'),('sentora_roundcube','dictionary','uniqueness','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','dictionary','uniqueness','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','identities','PRIMARY','2018-08-23 14:39:00','n_diff_pfx01',0,1,'identity_id'),('sentora_roundcube','identities','PRIMARY','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','identities','PRIMARY','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','identities','email_identities_index','2018-08-23 14:39:00','n_diff_pfx01',0,1,'email'),('sentora_roundcube','identities','email_identities_index','2018-08-23 14:39:00','n_diff_pfx02',0,1,'email,del'),('sentora_roundcube','identities','email_identities_index','2018-08-23 14:39:00','n_diff_pfx03',0,1,'email,del,identity_id'),('sentora_roundcube','identities','email_identities_index','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','identities','email_identities_index','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','identities','user_identities_index','2018-08-23 14:39:00','n_diff_pfx01',0,1,'user_id'),('sentora_roundcube','identities','user_identities_index','2018-08-23 14:39:00','n_diff_pfx02',0,1,'user_id,del'),('sentora_roundcube','identities','user_identities_index','2018-08-23 14:39:00','n_diff_pfx03',0,1,'user_id,del,identity_id'),('sentora_roundcube','identities','user_identities_index','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','identities','user_identities_index','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','searches','PRIMARY','2018-08-23 14:39:00','n_diff_pfx01',0,1,'search_id'),('sentora_roundcube','searches','PRIMARY','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','searches','PRIMARY','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','searches','uniqueness','2018-08-23 14:39:00','n_diff_pfx01',0,1,'user_id'),('sentora_roundcube','searches','uniqueness','2018-08-23 14:39:00','n_diff_pfx02',0,1,'user_id,type'),('sentora_roundcube','searches','uniqueness','2018-08-23 14:39:00','n_diff_pfx03',0,1,'user_id,type,name'),('sentora_roundcube','searches','uniqueness','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','searches','uniqueness','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','session','PRIMARY','2018-08-23 14:38:58','n_diff_pfx01',0,1,'sess_id'),('sentora_roundcube','session','PRIMARY','2018-08-23 14:38:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','session','PRIMARY','2018-08-23 14:38:58','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','session','changed_index','2018-08-23 14:38:58','n_diff_pfx01',0,1,'changed'),('sentora_roundcube','session','changed_index','2018-08-23 14:38:58','n_diff_pfx02',0,1,'changed,sess_id'),('sentora_roundcube','session','changed_index','2018-08-23 14:38:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','session','changed_index','2018-08-23 14:38:58','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','system','PRIMARY','2018-08-23 14:39:00','n_diff_pfx01',0,1,'name'),('sentora_roundcube','system','PRIMARY','2018-08-23 14:39:00','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','system','PRIMARY','2018-08-23 14:39:00','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','users','PRIMARY','2018-08-23 14:38:58','n_diff_pfx01',0,1,'user_id'),('sentora_roundcube','users','PRIMARY','2018-08-23 14:38:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','users','PRIMARY','2018-08-23 14:38:58','size',1,NULL,'Number of pages in the index'),('sentora_roundcube','users','username','2018-08-23 14:38:58','n_diff_pfx01',0,1,'username'),('sentora_roundcube','users','username','2018-08-23 14:38:58','n_diff_pfx02',0,1,'username,mail_host'),('sentora_roundcube','users','username','2018-08-23 14:38:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sentora_roundcube','users','username','2018-08-23 14:38:58','size',1,NULL,'Number of pages in the index');
/*!40000 ALTER TABLE `innodb_index_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `innodb_table_stats`
--
DROP TABLE IF EXISTS `innodb_table_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `innodb_table_stats` (
`database_name` varchar(64) COLLATE utf8_bin NOT NULL,
`table_name` varchar(64) COLLATE utf8_bin NOT NULL,
`last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`n_rows` bigint(20) unsigned NOT NULL,
`clustered_index_size` bigint(20) unsigned NOT NULL,
`sum_of_other_index_sizes` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`database_name`,`table_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin STATS_PERSISTENT=0;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `innodb_table_stats`
--
LOCK TABLES `innodb_table_stats` WRITE;
/*!40000 ALTER TABLE `innodb_table_stats` DISABLE KEYS */;
INSERT INTO `innodb_table_stats` VALUES ('sentora_core','countries','2018-08-23 14:43:52',246,1,0),('sentora_core','datacont','2018-08-23 14:43:42',1,1,0),('sentora_core','x_accounts','2018-08-23 14:43:42',1,1,0),('sentora_core','x_aliases','2018-08-23 14:37:37',0,1,0),('sentora_core','x_autorespond','2018-08-23 14:43:42',0,1,0),('sentora_core','x_autouser','2018-08-23 14:43:42',0,1,0),('sentora_core','x_backup_setting','2018-08-23 14:43:42',0,1,0),('sentora_core','x_csr','2018-08-23 14:43:42',0,1,0),('sentora_core','x_database_settings','2018-08-23 14:43:42',0,1,0),('sentora_core','x_diskusage','2018-08-23 14:43:42',0,1,0),('sentora_core','x_distlists','2018-08-23 14:37:37',0,1,0),('sentora_core','x_distlistusers','2018-08-23 14:37:37',0,1,0),('sentora_core','x_dns','2018-08-23 14:37:37',0,1,0),('sentora_core','x_dns_create','2018-08-23 14:37:37',9,1,0),('sentora_core','x_faqs','2018-08-23 14:37:37',14,1,0),('sentora_core','x_forwarders','2018-08-23 14:37:37',0,1,0),('sentora_core','x_header_checks','2018-08-23 14:43:42',0,1,0),('sentora_core','x_htpasswd_file','2018-08-23 14:37:37',0,1,2),('sentora_core','x_htpasswd_mapper','2018-08-23 14:37:38',0,1,2),('sentora_core','x_htpasswd_user','2018-08-23 14:37:38',0,1,2),('sentora_core','x_last_mail_exceed','2018-08-23 14:43:42',0,1,0),('sentora_core','x_logAttempts','2018-08-23 14:43:42',0,1,0),('sentora_core','x_logs','2018-08-23 14:37:37',0,1,0),('sentora_core','x_mailboxes','2018-08-23 14:43:42',0,1,0),('sentora_core','x_modcats','2018-08-23 14:37:37',8,1,0),('sentora_core','x_modules','2018-08-23 14:44:02',63,1,0),('sentora_core','x_nodejs','2018-08-23 14:43:42',0,1,0),('sentora_core','x_ns','2018-08-23 14:43:42',0,1,0),('sentora_core','x_password_strength','2018-08-23 14:43:42',0,1,0),('sentora_core','x_picdata','2018-08-23 14:43:42',1,1,0),('sentora_core','x_profiles','2018-08-23 14:37:37',0,1,0),('sentora_core','x_remote_mysql_hosts','2018-08-23 14:43:42',0,1,0),('sentora_core','x_serverip','2018-08-23 14:43:42',0,1,0),('sentora_core','x_settings','2018-08-23 14:37:57',107,1,0),('sentora_core','x_splitlog','2018-08-23 14:43:42',0,1,0),('sentora_core','x_ssl','2018-08-23 14:43:42',0,1,0),('sentora_core','x_translations','2018-08-23 14:37:47',60,1,0),('sentora_postfix','vacation','2018-08-23 14:37:43',0,1,1),('sentora_roundcube','cache','2018-08-23 14:39:00',0,1,2),('sentora_roundcube','cache_index','2018-08-23 14:39:00',0,1,1),('sentora_roundcube','cache_messages','2018-08-23 14:39:00',0,1,1),('sentora_roundcube','cache_thread','2018-08-23 14:39:00',0,1,1),('sentora_roundcube','contactgroupmembers','2018-08-23 14:39:00',0,1,1),('sentora_roundcube','contactgroups','2018-08-23 14:39:00',0,1,1),('sentora_roundcube','contacts','2018-08-23 14:39:00',0,1,1),('sentora_roundcube','dictionary','2018-08-23 14:39:00',0,1,1),('sentora_roundcube','identities','2018-08-23 14:39:00',0,1,2),('sentora_roundcube','searches','2018-08-23 14:39:00',0,1,1),('sentora_roundcube','session','2018-08-23 14:38:58',0,1,1),('sentora_roundcube','system','2018-08-23 14:39:00',0,1,0),('sentora_roundcube','users','2018-08-23 14:38:58',0,1,1);
/*!40000 ALTER TABLE `innodb_table_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ndb_binlog_index`
--
DROP TABLE IF EXISTS `ndb_binlog_index`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ndb_binlog_index` (
`Position` bigint(20) unsigned NOT NULL,
`File` varchar(255) NOT NULL,
`epoch` bigint(20) unsigned NOT NULL,
`inserts` int(10) unsigned NOT NULL,
`updates` int(10) unsigned NOT NULL,
`deletes` int(10) unsigned NOT NULL,
`schemaops` int(10) unsigned NOT NULL,
`orig_server_id` int(10) unsigned NOT NULL,
`orig_epoch` bigint(20) unsigned NOT NULL,
`gci` int(10) unsigned NOT NULL,
PRIMARY KEY (`epoch`,`orig_server_id`,`orig_epoch`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ndb_binlog_index`
--
LOCK TABLES `ndb_binlog_index` WRITE;
/*!40000 ALTER TABLE `ndb_binlog_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `ndb_binlog_index` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `plugin`
--
DROP TABLE IF EXISTS `plugin`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `plugin` (
`name` varchar(64) NOT NULL DEFAULT '',
`dl` varchar(128) NOT NULL DEFAULT '',
PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='MySQL plugins';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `plugin`
--
LOCK TABLES `plugin` WRITE;
/*!40000 ALTER TABLE `plugin` DISABLE KEYS */;
/*!40000 ALTER TABLE `plugin` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `proc`
--
DROP TABLE IF EXISTS `proc`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `proc` (
`db` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`name` char(64) NOT NULL DEFAULT '',
`type` enum('FUNCTION','PROCEDURE') NOT NULL,
`specific_name` char(64) NOT NULL DEFAULT '',
`language` enum('SQL') NOT NULL DEFAULT 'SQL',
`sql_data_access` enum('CONTAINS_SQL','NO_SQL','READS_SQL_DATA','MODIFIES_SQL_DATA') NOT NULL DEFAULT 'CONTAINS_SQL',
`is_deterministic` enum('YES','NO') NOT NULL DEFAULT 'NO',
`security_type` enum('INVOKER','DEFINER') NOT NULL DEFAULT 'DEFINER',
`param_list` blob NOT NULL,
`returns` longblob NOT NULL,
`body` longblob NOT NULL,
`definer` char(77) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`sql_mode` set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH') NOT NULL DEFAULT '',
`comment` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`character_set_client` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`collation_connection` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`db_collation` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`body_utf8` longblob,
PRIMARY KEY (`db`,`name`,`type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stored Procedures';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `proc`
--
LOCK TABLES `proc` WRITE;
/*!40000 ALTER TABLE `proc` DISABLE KEYS */;
/*!40000 ALTER TABLE `proc` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `procs_priv`
--
DROP TABLE IF EXISTS `procs_priv`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `procs_priv` (
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
`Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
`User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '',
`Routine_name` char(64) CHARACTER SET utf8 NOT NULL DEFAULT '',
`Routine_type` enum('FUNCTION','PROCEDURE') COLLATE utf8_bin NOT NULL,
`Grantor` char(77) COLLATE utf8_bin NOT NULL DEFAULT '',
`Proc_priv` set('Execute','Alter Routine','Grant') CHARACTER SET utf8 NOT NULL DEFAULT '',
`Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`Host`,`Db`,`User`,`Routine_name`,`Routine_type`),
KEY `Grantor` (`Grantor`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Procedure privileges';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `procs_priv`
--
LOCK TABLES `procs_priv` WRITE;
/*!40000 ALTER TABLE `procs_priv` DISABLE KEYS */;
/*!40000 ALTER TABLE `procs_priv` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `proxies_priv`
--
DROP TABLE IF EXISTS `proxies_priv`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `proxies_priv` (
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
`User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '',
`Proxied_host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
`Proxied_user` char(16) COLLATE utf8_bin NOT NULL DEFAULT '',
`With_grant` tinyint(1) NOT NULL DEFAULT '0',
`Grantor` char(77) COLLATE utf8_bin NOT NULL DEFAULT '',
`Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`Host`,`User`,`Proxied_host`,`Proxied_user`),
KEY `Grantor` (`Grantor`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User proxy privileges';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `proxies_priv`
--
LOCK TABLES `proxies_priv` WRITE;
/*!40000 ALTER TABLE `proxies_priv` DISABLE KEYS */;
INSERT INTO `proxies_priv` VALUES ('localhost','root','','',1,'','2018-08-23 14:37:32'),('server.hrpaneltemplate2.6.com','root','','',1,'','2018-08-23 14:37:32');
/*!40000 ALTER TABLE `proxies_priv` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `servers`
--
DROP TABLE IF EXISTS `servers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `servers` (
`Server_name` char(64) NOT NULL DEFAULT '',
`Host` char(64) NOT NULL DEFAULT '',
`Db` char(64) NOT NULL DEFAULT '',
`Username` char(64) NOT NULL DEFAULT '',
`Password` char(64) NOT NULL DEFAULT '',
`Port` int(4) NOT NULL DEFAULT '0',
`Socket` char(64) NOT NULL DEFAULT '',
`Wrapper` char(64) NOT NULL DEFAULT '',
`Owner` char(64) NOT NULL DEFAULT '',
PRIMARY KEY (`Server_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='MySQL Foreign Servers table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `servers`
--
LOCK TABLES `servers` WRITE;
/*!40000 ALTER TABLE `servers` DISABLE KEYS */;
/*!40000 ALTER TABLE `servers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `slave_master_info`
--
DROP TABLE IF EXISTS `slave_master_info`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `slave_master_info` (
`Number_of_lines` int(10) unsigned NOT NULL COMMENT 'Number of lines in the file.',
`Master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The name of the master binary log currently being read from the master.',
`Master_log_pos` bigint(20) unsigned NOT NULL COMMENT 'The master log position of the last read event.',
`Host` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'The host name of the master.',
`User_name` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The user name used to connect to the master.',
`User_password` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The password used to connect to the master.',
`Port` int(10) unsigned NOT NULL COMMENT 'The network port used to connect to the master.',
`Connect_retry` int(10) unsigned NOT NULL COMMENT 'The period (in seconds) that the slave will wait before trying to reconnect to the master.',
`Enabled_ssl` tinyint(1) NOT NULL COMMENT 'Indicates whether the server supports SSL connections.',
`Ssl_ca` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The file used for the Certificate Authority (CA) certificate.',
`Ssl_capath` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The path to the Certificate Authority (CA) certificates.',
`Ssl_cert` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The name of the SSL certificate file.',
`Ssl_cipher` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The name of the cipher in use for the SSL connection.',
`Ssl_key` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The name of the SSL key file.',
`Ssl_verify_server_cert` tinyint(1) NOT NULL COMMENT 'Whether to verify the server certificate.',
`Heartbeat` float NOT NULL,
`Bind` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'Displays which interface is employed when connecting to the MySQL server',
`Ignored_server_ids` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The number of server IDs to be ignored, followed by the actual server IDs',
`Uuid` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The master server uuid.',
`Retry_count` bigint(20) unsigned NOT NULL COMMENT 'Number of reconnect attempts, to the master, before giving up.',
`Ssl_crl` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The file used for the Certificate Revocation List (CRL)',
`Ssl_crlpath` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The path used for Certificate Revocation List (CRL) files',
`Enabled_auto_position` tinyint(1) NOT NULL COMMENT 'Indicates whether GTIDs will be used to retrieve events from the master.',
PRIMARY KEY (`Host`,`Port`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Master Information';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `slave_master_info`
--
LOCK TABLES `slave_master_info` WRITE;
/*!40000 ALTER TABLE `slave_master_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `slave_master_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `slave_relay_log_info`
--
DROP TABLE IF EXISTS `slave_relay_log_info`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `slave_relay_log_info` (
`Number_of_lines` int(10) unsigned NOT NULL COMMENT 'Number of lines in the file or rows in the table. Used to version table definitions.',
`Relay_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The name of the current relay log file.',
`Relay_log_pos` bigint(20) unsigned NOT NULL COMMENT 'The relay log position of the last executed event.',
`Master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The name of the master binary log file from which the events in the relay log file were read.',
`Master_log_pos` bigint(20) unsigned NOT NULL COMMENT 'The master log position of the last executed event.',
`Sql_delay` int(11) NOT NULL COMMENT 'The number of seconds that the slave must lag behind the master.',
`Number_of_workers` int(10) unsigned NOT NULL,
`Id` int(10) unsigned NOT NULL COMMENT 'Internal Id that uniquely identifies this record.',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Relay Log Information';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `slave_relay_log_info`
--
LOCK TABLES `slave_relay_log_info` WRITE;
/*!40000 ALTER TABLE `slave_relay_log_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `slave_relay_log_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `slave_worker_info`
--
DROP TABLE IF EXISTS `slave_worker_info`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `slave_worker_info` (
`Id` int(10) unsigned NOT NULL,
`Relay_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Relay_log_pos` bigint(20) unsigned NOT NULL,
`Master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Master_log_pos` bigint(20) unsigned NOT NULL,
`Checkpoint_relay_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Checkpoint_relay_log_pos` bigint(20) unsigned NOT NULL,
`Checkpoint_master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Checkpoint_master_log_pos` bigint(20) unsigned NOT NULL,
`Checkpoint_seqno` int(10) unsigned NOT NULL,
`Checkpoint_group_size` int(10) unsigned NOT NULL,
`Checkpoint_group_bitmap` blob NOT NULL,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Worker Information';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `slave_worker_info`
--
LOCK TABLES `slave_worker_info` WRITE;
/*!40000 ALTER TABLE `slave_worker_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `slave_worker_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tables_priv`
--
DROP TABLE IF EXISTS `tables_priv`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tables_priv` (
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
`Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
`User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '',
`Table_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '',
`Grantor` char(77) COLLATE utf8_bin NOT NULL DEFAULT '',
`Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`Table_priv` set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter','Create View','Show view','Trigger') CHARACTER SET utf8 NOT NULL DEFAULT '',
`Column_priv` set('Select','Insert','Update','References') CHARACTER SET utf8 NOT NULL DEFAULT '',
PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`),
KEY `Grantor` (`Grantor`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table privileges';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tables_priv`
--
LOCK TABLES `tables_priv` WRITE;
/*!40000 ALTER TABLE `tables_priv` DISABLE KEYS */;
/*!40000 ALTER TABLE `tables_priv` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `time_zone`
--
DROP TABLE IF EXISTS `time_zone`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `time_zone` (
`Time_zone_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`Use_leap_seconds` enum('Y','N') NOT NULL DEFAULT 'N',
PRIMARY KEY (`Time_zone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1778 DEFAULT CHARSET=utf8 COMMENT='Time zones';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `time_zone`
--
LOCK TABLES `time_zone` WRITE;
/*!40000 ALTER TABLE `time_zone` DISABLE KEYS */;
INSERT INTO `time_zone` VALUES (1,'N'),(2,'N'),(3,'N'),(4,'N'),(5,'N'),(6,'N'),(7,'N'),(8,'N'),(9,'N'),(10,'N'),(11,'N'),(12,'N'),(13,'N'),(14,'N'),(15,'N'),(16,'N'),(17,'N'),(18,'N'),(19,'N'),(20,'N'),(21,'N'),(22,'N'),(23,'N'),(24,'N'),(25,'N'),(26,'N'),(27,'N'),(28,'N'),(29,'N'),(30,'N'),(31,'N'),(32,'N'),(33,'N'),(34,'N'),(35,'N'),(36,'N'),(37,'N'),(38,'N'),(39,'N'),(40,'N'),(41,'N'),(42,'N'),(43,'N'),(44,'N'),(45,'N'),(46,'N'),(47,'N'),(48,'N'),(49,'N'),(50,'N'),(51,'N'),(52,'N'),(53,'N'),(54,'N'),(55,'N'),(56,'N'),(57,'N'),(58,'N'),(59,'N'),(60,'N'),(61,'N'),(62,'N'),(63,'N'),(64,'N'),(65,'N'),(66,'N'),(67,'N'),(68,'N'),(69,'N'),(70,'N'),(71,'N'),(72,'N'),(73,'N'),(74,'N'),(75,'N'),(76,'N'),(77,'N'),(78,'N'),(79,'N'),(80,'N'),(81,'N'),(82,'N'),(83,'N'),(84,'N'),(85,'N'),(86,'N'),(87,'N'),(88,'N'),(89,'N'),(90,'N'),(91,'N'),(92,'N'),(93,'N'),(94,'N'),(95,'N'),(96,'N'),(97,'N'),(98,'N'),(99,'N'),(100,'N'),(101,'N'),(102,'N'),(103,'N'),(104,'N'),(105,'N'),(106,'N'),(107,'N'),(108,'N'),(109,'N'),(110,'N'),(111,'N'),(112,'N'),(113,'N'),(114,'N'),(115,'N'),(116,'N'),(117,'N'),(118,'N'),(119,'N'),(120,'N'),(121,'N'),(122,'N'),(123,'N'),(124,'N'),(125,'N'),(126,'N'),(127,'N'),(128,'N'),(129,'N'),(130,'N'),(131,'N'),(132,'N'),(133,'N'),(134,'N'),(135,'N'),(136,'N'),(137,'N'),(138,'N'),(139,'N'),(140,'N'),(141,'N'),(142,'N'),(143,'N'),(144,'N'),(145,'N'),(146,'N'),(147,'N'),(148,'N'),(149,'N'),(150,'N'),(151,'N'),(152,'N'),(153,'N'),(154,'N'),(155,'N'),(156,'N'),(157,'N'),(158,'N'),(159,'N'),(160,'N'),(161,'N'),(162,'N'),(163,'N'),(164,'N'),(165,'N'),(166,'N'),(167,'N'),(168,'N'),(169,'N'),(170,'N'),(171,'N'),(172,'N'),(173,'N'),(174,'N'),(175,'N'),(176,'N'),(177,'N'),(178,'N'),(179,'N'),(180,'N'),(181,'N'),(182,'N'),(183,'N'),(184,'N'),(185,'N'),(186,'N'),(187,'N'),(188,'N'),(189,'N'),(190,'N'),(191,'N'),(192,'N'),(193,'N'),(194,'N'),(195,'N'),(196,'N'),(197,'N'),(198,'N'),(199,'N'),(200,'N'),(201,'N'),(202,'N'),(203,'N'),(204,'N'),(205,'N'),(206,'N'),(207,'N'),(208,'N'),(209,'N'),(210,'N'),(211,'N'),(212,'N'),(213,'N'),(214,'N'),(215,'N'),(216,'N'),(217,'N'),(218,'N'),(219,'N'),(220,'N'),(221,'N'),(222,'N'),(223,'N'),(224,'N'),(225,'N'),(226,'N'),(227,'N'),(228,'N'),(229,'N'),(230,'N'),(231,'N'),(232,'N'),(233,'N'),(234,'N'),(235,'N'),(236,'N'),(237,'N'),(238,'N'),(239,'N'),(240,'N'),(241,'N'),(242,'N'),(243,'N'),(244,'N'),(245,'N'),(246,'N'),(247,'N'),(248,'N'),(249,'N'),(250,'N'),(251,'N'),(252,'N'),(253,'N'),(254,'N'),(255,'N'),(256,'N'),(257,'N'),(258,'N'),(259,'N'),(260,'N'),(261,'N'),(262,'N'),(263,'N'),(264,'N'),(265,'N'),(266,'N'),(267,'N'),(268,'N'),(269,'N'),(270,'N'),(271,'N'),(272,'N'),(273,'N'),(274,'N'),(275,'N'),(276,'N'),(277,'N'),(278,'N'),(279,'N'),(280,'N'),(281,'N'),(282,'N'),(283,'N'),(284,'N'),(285,'N'),(286,'N'),(287,'N'),(288,'N'),(289,'N'),(290,'N'),(291,'N'),(292,'N'),(293,'N'),(294,'N'),(295,'N'),(296,'N'),(297,'N'),(298,'N'),(299,'N'),(300,'N'),(301,'N'),(302,'N'),(303,'N'),(304,'N'),(305,'N'),(306,'N'),(307,'N'),(308,'N'),(309,'N'),(310,'N'),(311,'N'),(312,'N'),(313,'N'),(314,'N'),(315,'N'),(316,'N'),(317,'N'),(318,'N'),(319,'N'),(320,'N'),(321,'N'),(322,'N'),(323,'N'),(324,'N'),(325,'N'),(326,'N'),(327,'N'),(328,'N'),(329,'N'),(330,'N'),(331,'N'),(332,'N'),(333,'N'),(334,'N'),(335,'N'),(336,'N'),(337,'N'),(338,'N'),(339,'N'),(340,'N'),(341,'N'),(342,'N'),(343,'N'),(344,'N'),(345,'N'),(346,'N'),(347,'N'),(348,'N'),(349,'N'),(350,'N'),(351,'N'),(352,'N'),(353,'N'),(354,'N'),(355,'N'),(356,'N'),(357,'N'),(358,'N'),(359,'N'),(360,'N'),(361,'N'),(362,'N'),(363,'N'),(364,'N'),(365,'N'),(366,'N'),(367,'N'),(368,'N'),(369,'N'),(370,'N'),(371,'N'),(372,'N'),(373,'N'),(374,'N'),(375,'N'),(376,'N'),(377,'N'),(378,'N'),(379,'N'),(380,'N'),(381,'N'),(382,'N'),(383,'N'),(384,'N'),(385,'N'),(386,'N'),(387,'N'),(388,'N'),(389,'N'),(390,'N'),(391,'N'),(392,'N'),(393,'N'),(394,'N'),(395,'N'),(396,'N'),(397,'N'),(398,'N'),(399,'N'),(400,'N'),(401,'N'),(402,'N'),(403,'N'),(404,'N'),(405,'N'),(406,'N'),(407,'N'),(408,'N'),(409,'N'),(410,'N'),(411,'N'),(412,'N'),(413,'N'),(414,'N'),(415,'N'),(416,'N'),(417,'N'),(418,'N'),(419,'N'),(420,'N'),(421,'N'),(422,'N'),(423,'N'),(424,'N'),(425,'N'),(426,'N'),(427,'N'),(428,'N'),(429,'N'),(430,'N'),(431,'N'),(432,'N'),(433,'N'),(434,'N'),(435,'N'),(436,'N'),(437,'N'),(438,'N'),(439,'N'),(440,'N'),(441,'N'),(442,'N'),(443,'N'),(444,'N'),(445,'N'),(446,'N'),(447,'N'),(448,'N'),(449,'N'),(450,'N'),(451,'N'),(452,'N'),(453,'N'),(454,'N'),(455,'N'),(456,'N'),(457,'N'),(458,'N'),(459,'N'),(460,'N'),(461,'N'),(462,'N'),(463,'N'),(464,'N'),(465,'N'),(466,'N'),(467,'N'),(468,'N'),(469,'N'),(470,'N'),(471,'N'),(472,'N'),(473,'N'),(474,'N'),(475,'N'),(476,'N'),(477,'N'),(478,'N'),(479,'N'),(480,'N'),(481,'N'),(482,'N'),(483,'N'),(484,'N'),(485,'N'),(486,'N'),(487,'N'),(488,'N'),(489,'N'),(490,'N'),(491,'N'),(492,'N'),(493,'N'),(494,'N'),(495,'N'),(496,'N'),(497,'N'),(498,'N'),(499,'N'),(500,'N'),(501,'N'),(502,'N'),(503,'N'),(504,'N'),(505,'N'),(506,'N'),(507,'N'),(508,'N'),(509,'N'),(510,'N'),(511,'N'),(512,'N'),(513,'N'),(514,'N'),(515,'N'),(516,'N'),(517,'N'),(518,'N'),(519,'N'),(520,'N'),(521,'N'),(522,'N'),(523,'N'),(524,'N'),(525,'N'),(526,'N'),(527,'N'),(528,'N'),(529,'N'),(530,'N'),(531,'N'),(532,'N'),(533,'N'),(534,'N'),(535,'N'),(536,'N'),(537,'N'),(538,'N'),(539,'N'),(540,'N'),(541,'N'),(542,'N'),(543,'N'),(544,'N'),(545,'N'),(546,'N'),(547,'N'),(548,'N'),(549,'N'),(550,'N'),(551,'N'),(552,'N'),(553,'N'),(554,'N'),(555,'N'),(556,'N'),(557,'N'),(558,'N'),(559,'N'),(560,'N'),(561,'N'),(562,'N'),(563,'N'),(564,'N'),(565,'N'),(566,'N'),(567,'N'),(568,'N'),(569,'N'),(570,'N'),(571,'N'),(572,'N'),(573,'N'),(574,'N'),(575,'N'),(576,'N'),(577,'N'),(578,'N'),(579,'N'),(580,'N'),(581,'N'),(582,'N'),(583,'N'),(584,'N'),(585,'N'),(586,'N'),(587,'N'),(588,'N'),(589,'N'),(590,'N'),(591,'N'),(592,'N'),(593,'N'),(594,'N'),(595,'N'),(596,'N'),(597,'N'),(598,'N'),(599,'N'),(600,'N'),(601,'N'),(602,'N'),(603,'N'),(604,'N'),(605,'N'),(606,'N'),(607,'N'),(608,'N'),(609,'N'),(610,'N'),(611,'N'),(612,'N'),(613,'N'),(614,'N'),(615,'N'),(616,'N'),(617,'N'),(618,'N'),(619,'N'),(620,'N'),(621,'N'),(622,'N'),(623,'N'),(624,'N'),(625,'N'),(626,'N'),(627,'N'),(628,'N'),(629,'N'),(630,'N'),(631,'N'),(632,'N'),(633,'N'),(634,'N'),(635,'N'),(636,'N'),(637,'N'),(638,'N'),(639,'N'),(640,'N'),(641,'N'),(642,'N'),(643,'N'),(644,'N'),(645,'N'),(646,'N'),(647,'N'),(648,'N'),(649,'N'),(650,'N'),(651,'N'),(652,'N'),(653,'N'),(654,'N'),(655,'N'),(656,'N'),(657,'N'),(658,'N'),(659,'N'),(660,'N'),(661,'N'),(662,'N'),(663,'N'),(664,'N'),(665,'N'),(666,'N'),(667,'N'),(668,'N'),(669,'N'),(670,'N'),(671,'N'),(672,'N'),(673,'N'),(674,'N'),(675,'N'),(676,'N'),(677,'N'),(678,'N'),(679,'N'),(680,'N'),(681,'N'),(682,'N'),(683,'N'),(684,'N'),(685,'N'),(686,'N'),(687,'N'),(688,'N'),(689,'N'),(690,'N'),(691,'N'),(692,'N'),(693,'N'),(694,'N'),(695,'N'),(696,'N'),(697,'N'),(698,'N'),(699,'N'),(700,'N'),(701,'N'),(702,'N'),(703,'N'),(704,'N'),(705,'N'),(706,'N'),(707,'N'),(708,'N'),(709,'N'),(710,'N'),(711,'N'),(712,'N'),(713,'N'),(714,'N'),(715,'N'),(716,'N'),(717,'N'),(718,'N'),(719,'N'),(720,'N'),(721,'N'),(722,'N'),(723,'N'),(724,'N'),(725,'N'),(726,'N'),(727,'N'),(728,'N'),(729,'N'),(730,'N'),(731,'N'),(732,'N'),(733,'N'),(734,'N'),(735,'N'),(736,'N'),(737,'N'),(738,'N'),(739,'N'),(740,'N'),(741,'N'),(742,'N'),(743,'N'),(744,'N'),(745,'N'),(746,'N'),(747,'N'),(748,'N'),(749,'N'),(750,'N'),(751,'N'),(752,'N'),(753,'N'),(754,'N'),(755,'N'),(756,'N'),(757,'N'),(758,'N'),(759,'N'),(760,'N'),(761,'N'),(762,'N'),(763,'N'),(764,'N'),(765,'N'),(766,'N'),(767,'N'),(768,'N'),(769,'N'),(770,'N'),(771,'N'),(772,'N'),(773,'N'),(774,'N'),(775,'N'),(776,'N'),(777,'N'),(778,'N'),(779,'N'),(780,'N'),(781,'N'),(782,'N'),(783,'N'),(784,'N'),(785,'N'),(786,'N'),(787,'N'),(788,'N'),(789,'N'),(790,'N'),(791,'N'),(792,'N'),(793,'N'),(794,'N'),(795,'N'),(796,'N'),(797,'N'),(798,'N'),(799,'N'),(800,'N'),(801,'N'),(802,'N'),(803,'N'),(804,'N'),(805,'N'),(806,'N'),(807,'N'),(808,'N'),(809,'N'),(810,'N'),(811,'N'),(812,'N'),(813,'N'),(814,'N'),(815,'N'),(816,'N'),(817,'N'),(818,'N'),(819,'N'),(820,'N'),(821,'N'),(822,'N'),(823,'N'),(824,'N'),(825,'N'),(826,'N'),(827,'N'),(828,'N'),(829,'N'),(830,'N'),(831,'N'),(832,'N'),(833,'N'),(834,'N'),(835,'N'),(836,'N'),(837,'N'),(838,'N'),(839,'N'),(840,'N'),(841,'N'),(842,'N'),(843,'N'),(844,'N'),(845,'N'),(846,'N'),(847,'N'),(848,'N'),(849,'N'),(850,'N'),(851,'N'),(852,'N'),(853,'N'),(854,'N'),(855,'N'),(856,'N'),(857,'N'),(858,'N'),(859,'N'),(860,'N'),(861,'N'),(862,'N'),(863,'N'),(864,'N'),(865,'N'),(866,'N'),(867,'N'),(868,'N'),(869,'N'),(870,'N'),(871,'N'),(872,'N'),(873,'N'),(874,'N'),(875,'N'),(876,'N'),(877,'N'),(878,'N'),(879,'N'),(880,'N'),(881,'N'),(882,'N'),(883,'N'),(884,'N'),(885,'N'),(886,'N'),(887,'N'),(888,'N'),(889,'N'),(890,'N'),(891,'N'),(892,'N'),(893,'N'),(894,'N'),(895,'N'),(896,'N'),(897,'N'),(898,'N'),(899,'N'),(900,'N'),(901,'N'),(902,'N'),(903,'N'),(904,'N'),(905,'N'),(906,'N'),(907,'N'),(908,'N'),(909,'N'),(910,'N'),(911,'N'),(912,'N'),(913,'N'),(914,'N'),(915,'N'),(916,'N'),(917,'N'),(918,'N'),(919,'N'),(920,'N'),(921,'N'),(922,'N'),(923,'N'),(924,'N'),(925,'N'),(926,'N'),(927,'N'),(928,'N'),(929,'N'),(930,'N'),(931,'N'),(932,'N'),(933,'N'),(934,'N'),(935,'N'),(936,'N'),(937,'N'),(938,'N'),(939,'N'),(940,'N'),(941,'N'),(942,'N'),(943,'N'),(944,'N'),(945,'N'),(946,'N'),(947,'N'),(948,'N'),(949,'N'),(950,'N'),(951,'N'),(952,'N'),(953,'N'),(954,'N'),(955,'N'),(956,'N'),(957,'N'),(958,'N'),(959,'N'),(960,'N'),(961,'N'),(962,'N'),(963,'N'),(964,'N'),(965,'N'),(966,'N'),(967,'N'),(968,'N'),(969,'N'),(970,'N'),(971,'N'),(972,'N'),(973,'N'),(974,'N'),(975,'N'),(976,'N'),(977,'N'),(978,'N'),(979,'N'),(980,'N'),(981,'N'),(982,'N'),(983,'N'),(984,'N'),(985,'N'),(986,'N'),(987,'N'),(988,'N'),(989,'N'),(990,'N'),(991,'N'),(992,'N'),(993,'N'),(994,'N'),(995,'N'),(996,'N'),(997,'N'),(998,'N'),(999,'N'),(1000,'N'),(1001,'N'),(1002,'N'),(1003,'N'),(1004,'N'),(1005,'N'),(1006,'N'),(1007,'N'),(1008,'N'),(1009,'N'),(1010,'N'),(1011,'N'),(1012,'N'),(1013,'N'),(1014,'N'),(1015,'N'),(1016,'N'),(1017,'N'),(1018,'N'),(1019,'N'),(1020,'N'),(1021,'N'),(1022,'N'),(1023,'N'),(1024,'N'),(1025,'N'),(1026,'N'),(1027,'N'),(1028,'N'),(1029,'N'),(1030,'N'),(1031,'N'),(1032,'N'),(1033,'N'),(1034,'N'),(1035,'N'),(1036,'N'),(1037,'N'),(1038,'N'),(1039,'N'),(1040,'N'),(1041,'N'),(1042,'N'),(1043,'N'),(1044,'N'),(1045,'N'),(1046,'N'),(1047,'N'),(1048,'N'),(1049,'N'),(1050,'N'),(1051,'N'),(1052,'N'),(1053,'N'),(1054,'N'),(1055,'N'),(1056,'N'),(1057,'N'),(1058,'N'),(1059,'N'),(1060,'N'),(1061,'N'),(1062,'N'),(1063,'N'),(1064,'N'),(1065,'N'),(1066,'N'),(1067,'N'),(1068,'N'),(1069,'N'),(1070,'N'),(1071,'N'),(1072,'N'),(1073,'N'),(1074,'N'),(1075,'N'),(1076,'N'),(1077,'N'),(1078,'N'),(1079,'N'),(1080,'N'),(1081,'N'),(1082,'N'),(1083,'N'),(1084,'N'),(1085,'N'),(1086,'N'),(1087,'N'),(1088,'N'),(1089,'N'),(1090,'N'),(1091,'N'),(1092,'N'),(1093,'N'),(1094,'N'),(1095,'N'),(1096,'N'),(1097,'N'),(1098,'N'),(1099,'N'),(1100,'N'),(1101,'N'),(1102,'N'),(1103,'N'),(1104,'N'),(1105,'N'),(1106,'N'),(1107,'N'),(1108,'N'),(1109,'N'),(1110,'N'),(1111,'N'),(1112,'N'),(1113,'N'),(1114,'N'),(1115,'N'),(1116,'N'),(1117,'N'),(1118,'N'),(1119,'N'),(1120,'N'),(1121,'N'),(1122,'N'),(1123,'N'),(1124,'N'),(1125,'N'),(1126,'N'),(1127,'N'),(1128,'N'),(1129,'N'),(1130,'N'),(1131,'N'),(1132,'N'),(1133,'N'),(1134,'N'),(1135,'N'),(1136,'N'),(1137,'N'),(1138,'N'),(1139,'N'),(1140,'N'),(1141,'N'),(1142,'N'),(1143,'N'),(1144,'N'),(1145,'N'),(1146,'N'),(1147,'N'),(1148,'N'),(1149,'N'),(1150,'N'),(1151,'N'),(1152,'N'),(1153,'N'),(1154,'N'),(1155,'N'),(1156,'N'),(1157,'N'),(1158,'N'),(1159,'N'),(1160,'N'),(1161,'N'),(1162,'N'),(1163,'N'),(1164,'N'),(1165,'N'),(1166,'N'),(1167,'N'),(1168,'N'),(1169,'N'),(1170,'N'),(1171,'N'),(1172,'N'),(1173,'N'),(1174,'N'),(1175,'N'),(1176,'N'),(1177,'N'),(1178,'N'),(1179,'N'),(1180,'N'),(1181,'N'),(1182,'N'),(1183,'N'),(1184,'N'),(1185,'N'),(1186,'Y'),(1187,'Y'),(1188,'Y'),(1189,'Y'),(1190,'Y'),(1191,'Y'),(1192,'Y'),(1193,'Y'),(1194,'Y'),(1195,'Y'),(1196,'Y'),(1197,'Y'),(1198,'Y'),(1199,'Y'),(1200,'Y'),(1201,'Y'),(1202,'Y'),(1203,'Y'),(1204,'Y'),(1205,'Y'),(1206,'Y'),(1207,'Y'),(1208,'Y'),(1209,'Y'),(1210,'Y'),(1211,'Y'),(1212,'Y'),(1213,'Y'),(1214,'Y'),(1215,'Y'),(1216,'Y'),(1217,'Y'),(1218,'Y'),(1219,'Y'),(1220,'Y'),(1221,'Y'),(1222,'Y'),(1223,'Y'),(1224,'Y'),(1225,'Y'),(1226,'Y'),(1227,'Y'),(1228,'Y'),(1229,'Y'),(1230,'Y'),(1231,'Y'),(1232,'Y'),(1233,'Y'),(1234,'Y'),(1235,'Y'),(1236,'Y'),(1237,'Y'),(1238,'Y'),(1239,'Y'),(1240,'Y'),(1241,'Y'),(1242,'Y'),(1243,'Y'),(1244,'Y'),(1245,'Y'),(1246,'Y'),(1247,'Y'),(1248,'Y'),(1249,'Y'),(1250,'Y'),(1251,'Y'),(1252,'Y'),(1253,'Y'),(1254,'Y'),(1255,'Y'),(1256,'Y'),(1257,'Y'),(1258,'Y'),(1259,'Y'),(1260,'Y'),(1261,'Y'),(1262,'Y'),(1263,'Y'),(1264,'Y'),(1265,'Y'),(1266,'Y'),(1267,'Y'),(1268,'Y'),(1269,'Y'),(1270,'Y'),(1271,'Y'),(1272,'Y'),(1273,'Y'),(1274,'Y'),(1275,'Y'),(1276,'Y'),(1277,'Y'),(1278,'Y'),(1279,'Y'),(1280,'Y'),(1281,'Y'),(1282,'Y'),(1283,'Y'),(1284,'Y'),(1285,'Y'),(1286,'Y'),(1287,'Y'),(1288,'Y'),(1289,'Y'),(1290,'Y'),(1291,'Y'),(1292,'Y'),(1293,'Y'),(1294,'Y'),(1295,'Y'),(1296,'Y'),(1297,'Y'),(1298,'Y'),(1299,'Y'),(1300,'Y'),(1301,'Y'),(1302,'Y'),(1303,'Y'),(1304,'Y'),(1305,'Y'),(1306,'Y'),(1307,'Y'),(1308,'Y'),(1309,'Y'),(1310,'Y'),(1311,'Y'),(1312,'Y'),(1313,'Y'),(1314,'Y'),(1315,'Y'),(1316,'Y'),(1317,'Y'),(1318,'Y'),(1319,'Y'),(1320,'Y'),(1321,'Y'),(1322,'Y'),(1323,'Y'),(1324,'Y'),(1325,'Y'),(1326,'Y'),(1327,'Y'),(1328,'Y'),(1329,'Y'),(1330,'Y'),(1331,'Y'),(1332,'Y'),(1333,'Y'),(1334,'Y'),(1335,'Y'),(1336,'Y'),(1337,'Y'),(1338,'Y'),(1339,'Y'),(1340,'Y'),(1341,'Y'),(1342,'Y'),(1343,'Y'),(1344,'Y'),(1345,'Y'),(1346,'Y'),(1347,'Y'),(1348,'Y'),(1349,'Y'),(1350,'Y'),(1351,'Y'),(1352,'Y'),(1353,'Y'),(1354,'Y'),(1355,'Y'),(1356,'Y'),(1357,'Y'),(1358,'Y'),(1359,'Y'),(1360,'Y'),(1361,'Y'),(1362,'Y'),(1363,'Y'),(1364,'Y'),(1365,'Y'),(1366,'Y'),(1367,'Y'),(1368,'Y'),(1369,'Y'),(1370,'Y'),(1371,'Y'),(1372,'Y'),(1373,'Y'),(1374,'Y'),(1375,'Y'),(1376,'Y'),(1377,'Y'),(1378,'Y'),(1379,'Y'),(1380,'Y'),(1381,'Y'),(1382,'Y'),(1383,'Y'),(1384,'Y'),(1385,'Y'),(1386,'Y'),(1387,'Y'),(1388,'Y'),(1389,'Y'),(1390,'Y'),(1391,'Y'),(1392,'Y'),(1393,'Y'),(1394,'Y'),(1395,'Y'),(1396,'Y'),(1397,'Y'),(1398,'Y'),(1399,'Y'),(1400,'Y'),(1401,'Y'),(1402,'Y'),(1403,'Y'),(1404,'Y'),(1405,'Y'),(1406,'Y'),(1407,'Y'),(1408,'Y'),(1409,'Y'),(1410,'Y'),(1411,'Y'),(1412,'Y'),(1413,'Y'),(1414,'Y'),(1415,'Y'),(1416,'Y'),(1417,'Y'),(1418,'Y'),(1419,'Y'),(1420,'Y'),(1421,'Y'),(1422,'Y'),(1423,'Y'),(1424,'Y'),(1425,'Y'),(1426,'Y'),(1427,'Y'),(1428,'Y'),(1429,'Y'),(1430,'Y'),(1431,'Y'),(1432,'Y'),(1433,'Y'),(1434,'Y'),(1435,'Y'),(1436,'Y'),(1437,'Y'),(1438,'Y'),(1439,'Y'),(1440,'Y'),(1441,'Y'),(1442,'Y'),(1443,'Y'),(1444,'Y'),(1445,'Y'),(1446,'Y'),(1447,'Y'),(1448,'Y'),(1449,'Y'),(1450,'Y'),(1451,'Y'),(1452,'Y'),(1453,'Y'),(1454,'Y'),(1455,'Y'),(1456,'Y'),(1457,'Y'),(1458,'Y'),(1459,'Y'),(1460,'Y'),(1461,'Y'),(1462,'Y'),(1463,'Y'),(1464,'Y'),(1465,'Y'),(1466,'Y'),(1467,'Y'),(1468,'Y'),(1469,'Y'),(1470,'Y'),(1471,'Y'),(1472,'Y'),(1473,'Y'),(1474,'Y'),(1475,'Y'),(1476,'Y'),(1477,'Y'),(1478,'Y'),(1479,'Y'),(1480,'Y'),(1481,'Y'),(1482,'Y'),(1483,'Y'),(1484,'Y'),(1485,'Y'),(1486,'Y'),(1487,'Y'),(1488,'Y'),(1489,'Y'),(1490,'Y'),(1491,'Y'),(1492,'Y'),(1493,'Y'),(1494,'Y'),(1495,'Y'),(1496,'Y'),(1497,'Y'),(1498,'Y'),(1499,'Y'),(1500,'Y'),(1501,'Y'),(1502,'Y'),(1503,'Y'),(1504,'Y'),(1505,'Y'),(1506,'Y'),(1507,'Y'),(1508,'Y'),(1509,'Y'),(1510,'Y'),(1511,'Y'),(1512,'Y'),(1513,'Y'),(1514,'Y'),(1515,'Y'),(1516,'Y'),(1517,'Y'),(1518,'Y'),(1519,'Y'),(1520,'Y'),(1521,'Y'),(1522,'Y'),(1523,'Y'),(1524,'Y'),(1525,'Y'),(1526,'Y'),(1527,'Y'),(1528,'Y'),(1529,'Y'),(1530,'Y'),(1531,'Y'),(1532,'Y'),(1533,'Y'),(1534,'Y'),(1535,'Y'),(1536,'Y'),(1537,'Y'),(1538,'Y'),(1539,'Y'),(1540,'Y'),(1541,'Y'),(1542,'Y'),(1543,'Y'),(1544,'Y'),(1545,'Y'),(1546,'Y'),(1547,'Y'),(1548,'Y'),(1549,'Y'),(1550,'Y'),(1551,'Y'),(1552,'Y'),(1553,'Y'),(1554,'Y'),(1555,'Y'),(1556,'Y'),(1557,'Y'),(1558,'Y'),(1559,'Y'),(1560,'Y'),(1561,'Y'),(1562,'Y'),(1563,'Y'),(1564,'Y'),(1565,'Y'),(1566,'Y'),(1567,'Y'),(1568,'Y'),(1569,'Y'),(1570,'Y'),(1571,'Y'),(1572,'Y'),(1573,'Y'),(1574,'Y'),(1575,'Y'),(1576,'Y'),(1577,'Y'),(1578,'Y'),(1579,'Y'),(1580,'Y'),(1581,'Y'),(1582,'Y'),(1583,'Y'),(1584,'Y'),(1585,'Y'),(1586,'Y'),(1587,'Y'),(1588,'Y'),(1589,'Y'),(1590,'Y'),(1591,'Y'),(1592,'Y'),(1593,'Y'),(1594,'Y'),(1595,'Y'),(1596,'Y'),(1597,'Y'),(1598,'Y'),(1599,'Y'),(1600,'Y'),(1601,'Y'),(1602,'Y'),(1603,'Y'),(1604,'Y'),(1605,'Y'),(1606,'Y'),(1607,'Y'),(1608,'Y'),(1609,'Y'),(1610,'Y'),(1611,'Y'),(1612,'Y'),(1613,'Y'),(1614,'Y'),(1615,'Y'),(1616,'Y'),(1617,'Y'),(1618,'Y'),(1619,'Y'),(1620,'Y'),(1621,'Y'),(1622,'Y'),(1623,'Y'),(1624,'Y'),(1625,'Y'),(1626,'Y'),(1627,'Y'),(1628,'Y'),(1629,'Y'),(1630,'Y'),(1631,'Y'),(1632,'Y'),(1633,'Y'),(1634,'Y'),(1635,'Y'),(1636,'Y'),(1637,'Y'),(1638,'Y'),(1639,'Y'),(1640,'Y'),(1641,'Y'),(1642,'Y'),(1643,'Y'),(1644,'Y'),(1645,'Y'),(1646,'Y'),(1647,'Y'),(1648,'Y'),(1649,'Y'),(1650,'Y'),(1651,'Y'),(1652,'Y'),(1653,'Y'),(1654,'Y'),(1655,'Y'),(1656,'Y'),(1657,'Y'),(1658,'Y'),(1659,'Y'),(1660,'Y'),(1661,'Y'),(1662,'Y'),(1663,'Y'),(1664,'Y'),(1665,'Y'),(1666,'Y'),(1667,'Y'),(1668,'Y'),(1669,'Y'),(1670,'Y'),(1671,'Y'),(1672,'Y'),(1673,'Y'),(1674,'Y'),(1675,'Y'),(1676,'Y'),(1677,'Y'),(1678,'Y'),(1679,'Y'),(1680,'Y'),(1681,'Y'),(1682,'Y'),(1683,'Y'),(1684,'Y'),(1685,'Y'),(1686,'Y'),(1687,'Y'),(1688,'Y'),(1689,'Y'),(1690,'Y'),(1691,'Y'),(1692,'Y'),(1693,'Y'),(1694,'Y'),(1695,'Y'),(1696,'Y'),(1697,'Y'),(1698,'Y'),(1699,'Y'),(1700,'Y'),(1701,'Y'),(1702,'Y'),(1703,'Y'),(1704,'Y'),(1705,'Y'),(1706,'Y'),(1707,'Y'),(1708,'Y'),(1709,'Y'),(1710,'Y'),(1711,'Y'),(1712,'Y'),(1713,'Y'),(1714,'Y'),(1715,'Y'),(1716,'Y'),(1717,'Y'),(1718,'Y'),(1719,'Y'),(1720,'Y'),(1721,'Y'),(1722,'Y'),(1723,'Y'),(1724,'Y'),(1725,'Y'),(1726,'Y'),(1727,'Y'),(1728,'Y'),(1729,'Y'),(1730,'Y'),(1731,'Y'),(1732,'Y'),(1733,'Y'),(1734,'Y'),(1735,'Y'),(1736,'Y'),(1737,'Y'),(1738,'Y'),(1739,'Y'),(1740,'Y'),(1741,'Y'),(1742,'Y'),(1743,'Y'),(1744,'Y'),(1745,'Y'),(1746,'Y'),(1747,'Y'),(1748,'Y'),(1749,'Y'),(1750,'Y'),(1751,'Y'),(1752,'Y'),(1753,'Y'),(1754,'Y'),(1755,'Y'),(1756,'Y'),(1757,'Y'),(1758,'Y'),(1759,'Y'),(1760,'Y'),(1761,'Y'),(1762,'Y'),(1763,'Y'),(1764,'Y'),(1765,'Y'),(1766,'Y'),(1767,'Y'),(1768,'Y'),(1769,'Y'),(1770,'Y'),(1771,'Y'),(1772,'Y'),(1773,'Y'),(1774,'Y'),(1775,'Y'),(1776,'Y'),(1777,'Y');
/*!40000 ALTER TABLE `time_zone` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `time_zone_leap_second`
--
DROP TABLE IF EXISTS `time_zone_leap_second`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `time_zone_leap_second` (
`Transition_time` bigint(20) NOT NULL,
`Correction` int(11) NOT NULL,
PRIMARY KEY (`Transition_time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Leap seconds information for time zones';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `time_zone_leap_second`
--
LOCK TABLES `time_zone_leap_second` WRITE;
/*!40000 ALTER TABLE `time_zone_leap_second` DISABLE KEYS */;
/*!40000 ALTER TABLE `time_zone_leap_second` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `time_zone_name`
--
DROP TABLE IF EXISTS `time_zone_name`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `time_zone_name` (
`Name` char(64) NOT NULL,
`Time_zone_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`Name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone names';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `time_zone_name`
--
LOCK TABLES `time_zone_name` WRITE;
/*!40000 ALTER TABLE `time_zone_name` DISABLE KEYS */;
INSERT INTO `time_zone_name` VALUES ('Africa/Abidjan',1),('Africa/Accra',2),('Africa/Addis_Ababa',3),('Africa/Algiers',4),('Africa/Asmara',5),('Africa/Asmera',6),('Africa/Bamako',7),('Africa/Bangui',8),('Africa/Banjul',9),('Africa/Bissau',10),('Africa/Blantyre',11),('Africa/Brazzaville',12),('Africa/Bujumbura',13),('Africa/Cairo',14),('Africa/Casablanca',15),('Africa/Ceuta',16),('Africa/Conakry',17),('Africa/Dakar',18),('Africa/Dar_es_Salaam',19),('Africa/Djibouti',20),('Africa/Douala',21),('Africa/El_Aaiun',22),('Africa/Freetown',23),('Africa/Gaborone',24),('Africa/Harare',25),('Africa/Johannesburg',26),('Africa/Juba',27),('Africa/Kampala',28),('Africa/Khartoum',29),('Africa/Kigali',30),('Africa/Kinshasa',31),('Africa/Lagos',32),('Africa/Libreville',33),('Africa/Lome',34),('Africa/Luanda',35),('Africa/Lubumbashi',36),('Africa/Lusaka',37),('Africa/Malabo',38),('Africa/Maputo',39),('Africa/Maseru',40),('Africa/Mbabane',41),('Africa/Mogadishu',42),('Africa/Monrovia',43),('Africa/Nairobi',44),('Africa/Ndjamena',45),('Africa/Niamey',46),('Africa/Nouakchott',47),('Africa/Ouagadougou',48),('Africa/Porto-Novo',49),('Africa/Sao_Tome',50),('Africa/Timbuktu',51),('Africa/Tripoli',52),('Africa/Tunis',53),('Africa/Windhoek',54),('America/Adak',55),('America/Anchorage',56),('America/Anguilla',57),('America/Antigua',58),('America/Araguaina',59),('America/Argentina/Buenos_Aires',60),('America/Argentina/Catamarca',61),('America/Argentina/ComodRivadavia',62),('America/Argentina/Cordoba',63),('America/Argentina/Jujuy',64),('America/Argentina/La_Rioja',65),('America/Argentina/Mendoza',66),('America/Argentina/Rio_Gallegos',67),('America/Argentina/Salta',68),('America/Argentina/San_Juan',69),('America/Argentina/San_Luis',70),('America/Argentina/Tucuman',71),('America/Argentina/Ushuaia',72),('America/Aruba',73),('America/Asuncion',74),('America/Atikokan',75),('America/Atka',76),('America/Bahia',77),('America/Bahia_Banderas',78),('America/Barbados',79),('America/Belem',80),('America/Belize',81),('America/Blanc-Sablon',82),('America/Boa_Vista',83),('America/Bogota',84),('America/Boise',85),('America/Buenos_Aires',86),('America/Cambridge_Bay',87),('America/Campo_Grande',88),('America/Cancun',89),('America/Caracas',90),('America/Catamarca',91),('America/Cayenne',92),('America/Cayman',93),('America/Chicago',94),('America/Chihuahua',95),('America/Coral_Harbour',96),('America/Cordoba',97),('America/Costa_Rica',98),('America/Creston',99),('America/Cuiaba',100),('America/Curacao',101),('America/Danmarkshavn',102),('America/Dawson',103),('America/Dawson_Creek',104),('America/Denver',105),('America/Detroit',106),('America/Dominica',107),('America/Edmonton',108),('America/Eirunepe',109),('America/El_Salvador',110),('America/Ensenada',111),('America/Fort_Nelson',112),('America/Fort_Wayne',113),('America/Fortaleza',114),('America/Glace_Bay',115),('America/Godthab',116),('America/Goose_Bay',117),('America/Grand_Turk',118),('America/Grenada',119),('America/Guadeloupe',120),('America/Guatemala',121),('America/Guayaquil',122),('America/Guyana',123),('America/Halifax',124),('America/Havana',125),('America/Hermosillo',126),('America/Indiana/Indianapolis',127),('America/Indiana/Knox',128),('America/Indiana/Marengo',129),('America/Indiana/Petersburg',130),('America/Indiana/Tell_City',131),('America/Indiana/Vevay',132),('America/Indiana/Vincennes',133),('America/Indiana/Winamac',134),('America/Indianapolis',135),('America/Inuvik',136),('America/Iqaluit',137),('America/Jamaica',138),('America/Jujuy',139),('America/Juneau',140),('America/Kentucky/Louisville',141),('America/Kentucky/Monticello',142),('America/Knox_IN',143),('America/Kralendijk',144),('America/La_Paz',145),('America/Lima',146),('America/Los_Angeles',147),('America/Louisville',148),('America/Lower_Princes',149),('America/Maceio',150),('America/Managua',151),('America/Manaus',152),('America/Marigot',153),('America/Martinique',154),('America/Matamoros',155),('America/Mazatlan',156),('America/Mendoza',157),('America/Menominee',158),('America/Merida',159),('America/Metlakatla',160),('America/Mexico_City',161),('America/Miquelon',162),('America/Moncton',163),('America/Monterrey',164),('America/Montevideo',165),('America/Montreal',166),('America/Montserrat',167),('America/Nassau',168),('America/New_York',169),('America/Nipigon',170),('America/Nome',171),('America/Noronha',172),('America/North_Dakota/Beulah',173),('America/North_Dakota/Center',174),('America/North_Dakota/New_Salem',175),('America/Ojinaga',176),('America/Panama',177),('America/Pangnirtung',178),('America/Paramaribo',179),('America/Phoenix',180),('America/Port-au-Prince',181),('America/Port_of_Spain',182),('America/Porto_Acre',183),('America/Porto_Velho',184),('America/Puerto_Rico',185),('America/Punta_Arenas',186),('America/Rainy_River',187),('America/Rankin_Inlet',188),('America/Recife',189),('America/Regina',190),('America/Resolute',191),('America/Rio_Branco',192),('America/Rosario',193),('America/Santa_Isabel',194),('America/Santarem',195),('America/Santiago',196),('America/Santo_Domingo',197),('America/Sao_Paulo',198),('America/Scoresbysund',199),('America/Shiprock',200),('America/Sitka',201),('America/St_Barthelemy',202),('America/St_Johns',203),('America/St_Kitts',204),('America/St_Lucia',205),('America/St_Thomas',206),('America/St_Vincent',207),('America/Swift_Current',208),('America/Tegucigalpa',209),('America/Thule',210),('America/Thunder_Bay',211),('America/Tijuana',212),('America/Toronto',213),('America/Tortola',214),('America/Vancouver',215),('America/Virgin',216),('America/Whitehorse',217),('America/Winnipeg',218),('America/Yakutat',219),('America/Yellowknife',220),('Antarctica/Casey',221),('Antarctica/Davis',222),('Antarctica/DumontDUrville',223),('Antarctica/Macquarie',224),('Antarctica/Mawson',225),('Antarctica/McMurdo',226),('Antarctica/Palmer',227),('Antarctica/Rothera',228),('Antarctica/South_Pole',229),('Antarctica/Syowa',230),('Antarctica/Troll',231),('Antarctica/Vostok',232),('Arctic/Longyearbyen',233),('Asia/Aden',234),('Asia/Almaty',235),('Asia/Amman',236),('Asia/Anadyr',237),('Asia/Aqtau',238),('Asia/Aqtobe',239),('Asia/Ashgabat',240),('Asia/Ashkhabad',241),('Asia/Atyrau',242),('Asia/Baghdad',243),('Asia/Bahrain',244),('Asia/Baku',245),('Asia/Bangkok',246),('Asia/Barnaul',247),('Asia/Beirut',248),('Asia/Bishkek',249),('Asia/Brunei',250),('Asia/Calcutta',251),('Asia/Chita',252),('Asia/Choibalsan',253),('Asia/Chongqing',254),('Asia/Chungking',255),('Asia/Colombo',256),('Asia/Dacca',257),('Asia/Damascus',258),('Asia/Dhaka',259),('Asia/Dili',260),('Asia/Dubai',261),('Asia/Dushanbe',262),('Asia/Famagusta',263),('Asia/Gaza',264),('Asia/Harbin',265),('Asia/Hebron',266),('Asia/Ho_Chi_Minh',267),('Asia/Hong_Kong',268),('Asia/Hovd',269),('Asia/Irkutsk',270),('Asia/Istanbul',271),('Asia/Jakarta',272),('Asia/Jayapura',273),('Asia/Jerusalem',274),('Asia/Kabul',275),('Asia/Kamchatka',276),('Asia/Karachi',277),('Asia/Kashgar',278),('Asia/Kathmandu',279),('Asia/Katmandu',280),('Asia/Khandyga',281),('Asia/Kolkata',282),('Asia/Krasnoyarsk',283),('Asia/Kuala_Lumpur',284),('Asia/Kuching',285),('Asia/Kuwait',286),('Asia/Macao',287),('Asia/Macau',288),('Asia/Magadan',289),('Asia/Makassar',290),('Asia/Manila',291),('Asia/Muscat',292),('Asia/Nicosia',293),('Asia/Novokuznetsk',294),('Asia/Novosibirsk',295),('Asia/Omsk',296),('Asia/Oral',297),('Asia/Phnom_Penh',298),('Asia/Pontianak',299),('Asia/Pyongyang',300),('Asia/Qatar',301),('Asia/Qyzylorda',302),('Asia/Rangoon',303),('Asia/Riyadh',304),('Asia/Saigon',305),('Asia/Sakhalin',306),('Asia/Samarkand',307),('Asia/Seoul',308),('Asia/Shanghai',309),('Asia/Singapore',310),('Asia/Srednekolymsk',311),('Asia/Taipei',312),('Asia/Tashkent',313),('Asia/Tbilisi',314),('Asia/Tehran',315),('Asia/Tel_Aviv',316),('Asia/Thimbu',317),('Asia/Thimphu',318),('Asia/Tokyo',319),('Asia/Tomsk',320),('Asia/Ujung_Pandang',321),('Asia/Ulaanbaatar',322),('Asia/Ulan_Bator',323),('Asia/Urumqi',324),('Asia/Ust-Nera',325),('Asia/Vientiane',326),('Asia/Vladivostok',327),('Asia/Yakutsk',328),('Asia/Yangon',329),('Asia/Yekaterinburg',330),('Asia/Yerevan',331),('Atlantic/Azores',332),('Atlantic/Bermuda',333),('Atlantic/Canary',334),('Atlantic/Cape_Verde',335),('Atlantic/Faeroe',336),('Atlantic/Faroe',337),('Atlantic/Jan_Mayen',338),('Atlantic/Madeira',339),('Atlantic/Reykjavik',340),('Atlantic/South_Georgia',341),('Atlantic/St_Helena',342),('Atlantic/Stanley',343),('Australia/ACT',344),('Australia/Adelaide',345),('Australia/Brisbane',346),('Australia/Broken_Hill',347),('Australia/Canberra',348),('Australia/Currie',349),('Australia/Darwin',350),('Australia/Eucla',351),('Australia/Hobart',352),('Australia/LHI',353),('Australia/Lindeman',354),('Australia/Lord_Howe',355),('Australia/Melbourne',356),('Australia/NSW',357),('Australia/North',358),('Australia/Perth',359),('Australia/Queensland',360),('Australia/South',361),('Australia/Sydney',362),('Australia/Tasmania',363),('Australia/Victoria',364),('Australia/West',365),('Australia/Yancowinna',366),('Brazil/Acre',367),('Brazil/DeNoronha',368),('Brazil/East',369),('Brazil/West',370),('CET',371),('CST6CDT',372),('Canada/Atlantic',373),('Canada/Central',374),('Canada/Eastern',375),('Canada/Mountain',376),('Canada/Newfoundland',377),('Canada/Pacific',378),('Canada/Saskatchewan',379),('Canada/Yukon',380),('Chile/Continental',381),('Chile/EasterIsland',382),('Cuba',383),('EET',384),('EST',385),('EST5EDT',386),('Egypt',387),('Eire',388),('Etc/GMT',389),('Etc/GMT+0',390),('Etc/GMT+1',391),('Etc/GMT+10',392),('Etc/GMT+11',393),('Etc/GMT+12',394),('Etc/GMT+2',395),('Etc/GMT+3',396),('Etc/GMT+4',397),('Etc/GMT+5',398),('Etc/GMT+6',399),('Etc/GMT+7',400),('Etc/GMT+8',401),('Etc/GMT+9',402),('Etc/GMT-0',403),('Etc/GMT-1',404),('Etc/GMT-10',405),('Etc/GMT-11',406),('Etc/GMT-12',407),('Etc/GMT-13',408),('Etc/GMT-14',409),('Etc/GMT-2',410),('Etc/GMT-3',411),('Etc/GMT-4',412),('Etc/GMT-5',413),('Etc/GMT-6',414),('Etc/GMT-7',415),('Etc/GMT-8',416),('Etc/GMT-9',417),('Etc/GMT0',418),('Etc/Greenwich',419),('Etc/UCT',420),('Etc/UTC',421),('Etc/Universal',422),('Etc/Zulu',423),('Europe/Amsterdam',424),('Europe/Andorra',425),('Europe/Astrakhan',426),('Europe/Athens',427),('Europe/Belfast',428),('Europe/Belgrade',429),('Europe/Berlin',430),('Europe/Bratislava',431),('Europe/Brussels',432),('Europe/Bucharest',433),('Europe/Budapest',434),('Europe/Busingen',435),('Europe/Chisinau',436),('Europe/Copenhagen',437),('Europe/Dublin',438),('Europe/Gibraltar',439),('Europe/Guernsey',440),('Europe/Helsinki',441),('Europe/Isle_of_Man',442),('Europe/Istanbul',443),('Europe/Jersey',444),('Europe/Kaliningrad',445),('Europe/Kiev',446),('Europe/Kirov',447),('Europe/Lisbon',448),('Europe/Ljubljana',449),('Europe/London',450),('Europe/Luxembourg',451),('Europe/Madrid',452),('Europe/Malta',453),('Europe/Mariehamn',454),('Europe/Minsk',455),('Europe/Monaco',456),('Europe/Moscow',457),('Europe/Nicosia',458),('Europe/Oslo',459),('Europe/Paris',460),('Europe/Podgorica',461),('Europe/Prague',462),('Europe/Riga',463),('Europe/Rome',464),('Europe/Samara',465),('Europe/San_Marino',466),('Europe/Sarajevo',467),('Europe/Saratov',468),('Europe/Simferopol',469),('Europe/Skopje',470),('Europe/Sofia',471),('Europe/Stockholm',472),('Europe/Tallinn',473),('Europe/Tirane',474),('Europe/Tiraspol',475),('Europe/Ulyanovsk',476),('Europe/Uzhgorod',477),('Europe/Vaduz',478),('Europe/Vatican',479),('Europe/Vienna',480),('Europe/Vilnius',481),('Europe/Volgograd',482),('Europe/Warsaw',483),('Europe/Zagreb',484),('Europe/Zaporozhye',485),('Europe/Zurich',486),('GB',487),('GB-Eire',488),('GMT',489),('GMT+0',490),('GMT-0',491),('GMT0',492),('Greenwich',493),('HST',494),('Hongkong',495),('Iceland',496),('Indian/Antananarivo',497),('Indian/Chagos',498),('Indian/Christmas',499),('Indian/Cocos',500),('Indian/Comoro',501),('Indian/Kerguelen',502),('Indian/Mahe',503),('Indian/Maldives',504),('Indian/Mauritius',505),('Indian/Mayotte',506),('Indian/Reunion',507),('Iran',508),('Israel',509),('Jamaica',510),('Japan',511),('Kwajalein',512),('Libya',513),('MET',514),('MST',515),('MST7MDT',516),('Mexico/BajaNorte',517),('Mexico/BajaSur',518),('Mexico/General',519),('NZ',520),('NZ-CHAT',521),('Navajo',522),('PRC',523),('PST8PDT',524),('Pacific/Apia',525),('Pacific/Auckland',526),('Pacific/Bougainville',527),('Pacific/Chatham',528),('Pacific/Chuuk',529),('Pacific/Easter',530),('Pacific/Efate',531),('Pacific/Enderbury',532),('Pacific/Fakaofo',533),('Pacific/Fiji',534),('Pacific/Funafuti',535),('Pacific/Galapagos',536),('Pacific/Gambier',537),('Pacific/Guadalcanal',538),('Pacific/Guam',539),('Pacific/Honolulu',540),('Pacific/Johnston',541),('Pacific/Kiritimati',542),('Pacific/Kosrae',543),('Pacific/Kwajalein',544),('Pacific/Majuro',545),('Pacific/Marquesas',546),('Pacific/Midway',547),('Pacific/Nauru',548),('Pacific/Niue',549),('Pacific/Norfolk',550),('Pacific/Noumea',551),('Pacific/Pago_Pago',552),('Pacific/Palau',553),('Pacific/Pitcairn',554),('Pacific/Pohnpei',555),('Pacific/Ponape',556),('Pacific/Port_Moresby',557),('Pacific/Rarotonga',558),('Pacific/Saipan',559),('Pacific/Samoa',560),('Pacific/Tahiti',561),('Pacific/Tarawa',562),('Pacific/Tongatapu',563),('Pacific/Truk',564),('Pacific/Wake',565),('Pacific/Wallis',566),('Pacific/Yap',567),('Poland',568),('Portugal',569),('ROC',570),('ROK',571),('Singapore',572),('Turkey',573),('UCT',574),('US/Alaska',575),('US/Aleutian',576),('US/Arizona',577),('US/Central',578),('US/East-Indiana',579),('US/Eastern',580),('US/Hawaii',581),('US/Indiana-Starke',582),('US/Michigan',583),('US/Mountain',584),('US/Pacific',585),('US/Pacific-New',586),('US/Samoa',587),('UTC',588),('Universal',589),('W-SU',590),('WET',591),('Zulu',592),('posix/Africa/Abidjan',593),('posix/Africa/Accra',594),('posix/Africa/Addis_Ababa',595),('posix/Africa/Algiers',596),('posix/Africa/Asmara',597),('posix/Africa/Asmera',598),('posix/Africa/Bamako',599),('posix/Africa/Bangui',600),('posix/Africa/Banjul',601),('posix/Africa/Bissau',602),('posix/Africa/Blantyre',603),('posix/Africa/Brazzaville',604),('posix/Africa/Bujumbura',605),('posix/Africa/Cairo',606),('posix/Africa/Casablanca',607),('posix/Africa/Ceuta',608),('posix/Africa/Conakry',609),('posix/Africa/Dakar',610),('posix/Africa/Dar_es_Salaam',611),('posix/Africa/Djibouti',612),('posix/Africa/Douala',613),('posix/Africa/El_Aaiun',614),('posix/Africa/Freetown',615),('posix/Africa/Gaborone',616),('posix/Africa/Harare',617),('posix/Africa/Johannesburg',618),('posix/Africa/Juba',619),('posix/Africa/Kampala',620),('posix/Africa/Khartoum',621),('posix/Africa/Kigali',622),('posix/Africa/Kinshasa',623),('posix/Africa/Lagos',624),('posix/Africa/Libreville',625),('posix/Africa/Lome',626),('posix/Africa/Luanda',627),('posix/Africa/Lubumbashi',628),('posix/Africa/Lusaka',629),('posix/Africa/Malabo',630),('posix/Africa/Maputo',631),('posix/Africa/Maseru',632),('posix/Africa/Mbabane',633),('posix/Africa/Mogadishu',634),('posix/Africa/Monrovia',635),('posix/Africa/Nairobi',636),('posix/Africa/Ndjamena',637),('posix/Africa/Niamey',638),('posix/Africa/Nouakchott',639),('posix/Africa/Ouagadougou',640),('posix/Africa/Porto-Novo',641),('posix/Africa/Sao_Tome',642),('posix/Africa/Timbuktu',643),('posix/Africa/Tripoli',644),('posix/Africa/Tunis',645),('posix/Africa/Windhoek',646),('posix/America/Adak',647),('posix/America/Anchorage',648),('posix/America/Anguilla',649),('posix/America/Antigua',650),('posix/America/Araguaina',651),('posix/America/Argentina/Buenos_Aires',652),('posix/America/Argentina/Catamarca',653),('posix/America/Argentina/ComodRivadavia',654),('posix/America/Argentina/Cordoba',655),('posix/America/Argentina/Jujuy',656),('posix/America/Argentina/La_Rioja',657),('posix/America/Argentina/Mendoza',658),('posix/America/Argentina/Rio_Gallegos',659),('posix/America/Argentina/Salta',660),('posix/America/Argentina/San_Juan',661),('posix/America/Argentina/San_Luis',662),('posix/America/Argentina/Tucuman',663),('posix/America/Argentina/Ushuaia',664),('posix/America/Aruba',665),('posix/America/Asuncion',666),('posix/America/Atikokan',667),('posix/America/Atka',668),('posix/America/Bahia',669),('posix/America/Bahia_Banderas',670),('posix/America/Barbados',671),('posix/America/Belem',672),('posix/America/Belize',673),('posix/America/Blanc-Sablon',674),('posix/America/Boa_Vista',675),('posix/America/Bogota',676),('posix/America/Boise',677),('posix/America/Buenos_Aires',678),('posix/America/Cambridge_Bay',679),('posix/America/Campo_Grande',680),('posix/America/Cancun',681),('posix/America/Caracas',682),('posix/America/Catamarca',683),('posix/America/Cayenne',684),('posix/America/Cayman',685),('posix/America/Chicago',686),('posix/America/Chihuahua',687),('posix/America/Coral_Harbour',688),('posix/America/Cordoba',689),('posix/America/Costa_Rica',690),('posix/America/Creston',691),('posix/America/Cuiaba',692),('posix/America/Curacao',693),('posix/America/Danmarkshavn',694),('posix/America/Dawson',695),('posix/America/Dawson_Creek',696),('posix/America/Denver',697),('posix/America/Detroit',698),('posix/America/Dominica',699),('posix/America/Edmonton',700),('posix/America/Eirunepe',701),('posix/America/El_Salvador',702),('posix/America/Ensenada',703),('posix/America/Fort_Nelson',704),('posix/America/Fort_Wayne',705),('posix/America/Fortaleza',706),('posix/America/Glace_Bay',707),('posix/America/Godthab',708),('posix/America/Goose_Bay',709),('posix/America/Grand_Turk',710),('posix/America/Grenada',711),('posix/America/Guadeloupe',712),('posix/America/Guatemala',713),('posix/America/Guayaquil',714),('posix/America/Guyana',715),('posix/America/Halifax',716),('posix/America/Havana',717),('posix/America/Hermosillo',718),('posix/America/Indiana/Indianapolis',719),('posix/America/Indiana/Knox',720),('posix/America/Indiana/Marengo',721),('posix/America/Indiana/Petersburg',722),('posix/America/Indiana/Tell_City',723),('posix/America/Indiana/Vevay',724),('posix/America/Indiana/Vincennes',725),('posix/America/Indiana/Winamac',726),('posix/America/Indianapolis',727),('posix/America/Inuvik',728),('posix/America/Iqaluit',729),('posix/America/Jamaica',730),('posix/America/Jujuy',731),('posix/America/Juneau',732),('posix/America/Kentucky/Louisville',733),('posix/America/Kentucky/Monticello',734),('posix/America/Knox_IN',735),('posix/America/Kralendijk',736),('posix/America/La_Paz',737),('posix/America/Lima',738),('posix/America/Los_Angeles',739),('posix/America/Louisville',740),('posix/America/Lower_Princes',741),('posix/America/Maceio',742),('posix/America/Managua',743),('posix/America/Manaus',744),('posix/America/Marigot',745),('posix/America/Martinique',746),('posix/America/Matamoros',747),('posix/America/Mazatlan',748),('posix/America/Mendoza',749),('posix/America/Menominee',750),('posix/America/Merida',751),('posix/America/Metlakatla',752),('posix/America/Mexico_City',753),('posix/America/Miquelon',754),('posix/America/Moncton',755),('posix/America/Monterrey',756),('posix/America/Montevideo',757),('posix/America/Montreal',758),('posix/America/Montserrat',759),('posix/America/Nassau',760),('posix/America/New_York',761),('posix/America/Nipigon',762),('posix/America/Nome',763),('posix/America/Noronha',764),('posix/America/North_Dakota/Beulah',765),('posix/America/North_Dakota/Center',766),('posix/America/North_Dakota/New_Salem',767),('posix/America/Ojinaga',768),('posix/America/Panama',769),('posix/America/Pangnirtung',770),('posix/America/Paramaribo',771),('posix/America/Phoenix',772),('posix/America/Port-au-Prince',773),('posix/America/Port_of_Spain',774),('posix/America/Porto_Acre',775),('posix/America/Porto_Velho',776),('posix/America/Puerto_Rico',777),('posix/America/Punta_Arenas',778),('posix/America/Rainy_River',779),('posix/America/Rankin_Inlet',780),('posix/America/Recife',781),('posix/America/Regina',782),('posix/America/Resolute',783),('posix/America/Rio_Branco',784),('posix/America/Rosario',785),('posix/America/Santa_Isabel',786),('posix/America/Santarem',787),('posix/America/Santiago',788),('posix/America/Santo_Domingo',789),('posix/America/Sao_Paulo',790),('posix/America/Scoresbysund',791),('posix/America/Shiprock',792),('posix/America/Sitka',793),('posix/America/St_Barthelemy',794),('posix/America/St_Johns',795),('posix/America/St_Kitts',796),('posix/America/St_Lucia',797),('posix/America/St_Thomas',798),('posix/America/St_Vincent',799),('posix/America/Swift_Current',800),('posix/America/Tegucigalpa',801),('posix/America/Thule',802),('posix/America/Thunder_Bay',803),('posix/America/Tijuana',804),('posix/America/Toronto',805),('posix/America/Tortola',806),('posix/America/Vancouver',807),('posix/America/Virgin',808),('posix/America/Whitehorse',809),('posix/America/Winnipeg',810),('posix/America/Yakutat',811),('posix/America/Yellowknife',812),('posix/Antarctica/Casey',813),('posix/Antarctica/Davis',814),('posix/Antarctica/DumontDUrville',815),('posix/Antarctica/Macquarie',816),('posix/Antarctica/Mawson',817),('posix/Antarctica/McMurdo',818),('posix/Antarctica/Palmer',819),('posix/Antarctica/Rothera',820),('posix/Antarctica/South_Pole',821),('posix/Antarctica/Syowa',822),('posix/Antarctica/Troll',823),('posix/Antarctica/Vostok',824),('posix/Arctic/Longyearbyen',825),('posix/Asia/Aden',826),('posix/Asia/Almaty',827),('posix/Asia/Amman',828),('posix/Asia/Anadyr',829),('posix/Asia/Aqtau',830),('posix/Asia/Aqtobe',831),('posix/Asia/Ashgabat',832),('posix/Asia/Ashkhabad',833),('posix/Asia/Atyrau',834),('posix/Asia/Baghdad',835),('posix/Asia/Bahrain',836),('posix/Asia/Baku',837),('posix/Asia/Bangkok',838),('posix/Asia/Barnaul',839),('posix/Asia/Beirut',840),('posix/Asia/Bishkek',841),('posix/Asia/Brunei',842),('posix/Asia/Calcutta',843),('posix/Asia/Chita',844),('posix/Asia/Choibalsan',845),('posix/Asia/Chongqing',846),('posix/Asia/Chungking',847),('posix/Asia/Colombo',848),('posix/Asia/Dacca',849),('posix/Asia/Damascus',850),('posix/Asia/Dhaka',851),('posix/Asia/Dili',852),('posix/Asia/Dubai',853),('posix/Asia/Dushanbe',854),('posix/Asia/Famagusta',855),('posix/Asia/Gaza',856),('posix/Asia/Harbin',857),('posix/Asia/Hebron',858),('posix/Asia/Ho_Chi_Minh',859),('posix/Asia/Hong_Kong',860),('posix/Asia/Hovd',861),('posix/Asia/Irkutsk',862),('posix/Asia/Istanbul',863),('posix/Asia/Jakarta',864),('posix/Asia/Jayapura',865),('posix/Asia/Jerusalem',866),('posix/Asia/Kabul',867),('posix/Asia/Kamchatka',868),('posix/Asia/Karachi',869),('posix/Asia/Kashgar',870),('posix/Asia/Kathmandu',871),('posix/Asia/Katmandu',872),('posix/Asia/Khandyga',873),('posix/Asia/Kolkata',874),('posix/Asia/Krasnoyarsk',875),('posix/Asia/Kuala_Lumpur',876),('posix/Asia/Kuching',877),('posix/Asia/Kuwait',878),('posix/Asia/Macao',879),('posix/Asia/Macau',880),('posix/Asia/Magadan',881),('posix/Asia/Makassar',882),('posix/Asia/Manila',883),('posix/Asia/Muscat',884),('posix/Asia/Nicosia',885),('posix/Asia/Novokuznetsk',886),('posix/Asia/Novosibirsk',887),('posix/Asia/Omsk',888),('posix/Asia/Oral',889),('posix/Asia/Phnom_Penh',890),('posix/Asia/Pontianak',891),('posix/Asia/Pyongyang',892),('posix/Asia/Qatar',893),('posix/Asia/Qyzylorda',894),('posix/Asia/Rangoon',895),('posix/Asia/Riyadh',896),('posix/Asia/Saigon',897),('posix/Asia/Sakhalin',898),('posix/Asia/Samarkand',899),('posix/Asia/Seoul',900),('posix/Asia/Shanghai',901),('posix/Asia/Singapore',902),('posix/Asia/Srednekolymsk',903),('posix/Asia/Taipei',904),('posix/Asia/Tashkent',905),('posix/Asia/Tbilisi',906),('posix/Asia/Tehran',907),('posix/Asia/Tel_Aviv',908),('posix/Asia/Thimbu',909),('posix/Asia/Thimphu',910),('posix/Asia/Tokyo',911),('posix/Asia/Tomsk',912),('posix/Asia/Ujung_Pandang',913),('posix/Asia/Ulaanbaatar',914),('posix/Asia/Ulan_Bator',915),('posix/Asia/Urumqi',916),('posix/Asia/Ust-Nera',917),('posix/Asia/Vientiane',918),('posix/Asia/Vladivostok',919),('posix/Asia/Yakutsk',920),('posix/Asia/Yangon',921),('posix/Asia/Yekaterinburg',922),('posix/Asia/Yerevan',923),('posix/Atlantic/Azores',924),('posix/Atlantic/Bermuda',925),('posix/Atlantic/Canary',926),('posix/Atlantic/Cape_Verde',927),('posix/Atlantic/Faeroe',928),('posix/Atlantic/Faroe',929),('posix/Atlantic/Jan_Mayen',930),('posix/Atlantic/Madeira',931),('posix/Atlantic/Reykjavik',932),('posix/Atlantic/South_Georgia',933),('posix/Atlantic/St_Helena',934),('posix/Atlantic/Stanley',935),('posix/Australia/ACT',936),('posix/Australia/Adelaide',937),('posix/Australia/Brisbane',938),('posix/Australia/Broken_Hill',939),('posix/Australia/Canberra',940),('posix/Australia/Currie',941),('posix/Australia/Darwin',942),('posix/Australia/Eucla',943),('posix/Australia/Hobart',944),('posix/Australia/LHI',945),('posix/Australia/Lindeman',946),('posix/Australia/Lord_Howe',947),('posix/Australia/Melbourne',948),('posix/Australia/NSW',949),('posix/Australia/North',950),('posix/Australia/Perth',951),('posix/Australia/Queensland',952),('posix/Australia/South',953),('posix/Australia/Sydney',954),('posix/Australia/Tasmania',955),('posix/Australia/Victoria',956),('posix/Australia/West',957),('posix/Australia/Yancowinna',958),('posix/Brazil/Acre',959),('posix/Brazil/DeNoronha',960),('posix/Brazil/East',961),('posix/Brazil/West',962),('posix/CET',963),('posix/CST6CDT',964),('posix/Canada/Atlantic',965),('posix/Canada/Central',966),('posix/Canada/Eastern',967),('posix/Canada/Mountain',968),('posix/Canada/Newfoundland',969),('posix/Canada/Pacific',970),('posix/Canada/Saskatchewan',971),('posix/Canada/Yukon',972),('posix/Chile/Continental',973),('posix/Chile/EasterIsland',974),('posix/Cuba',975),('posix/EET',976),('posix/EST',977),('posix/EST5EDT',978),('posix/Egypt',979),('posix/Eire',980),('posix/Etc/GMT',981),('posix/Etc/GMT+0',982),('posix/Etc/GMT+1',983),('posix/Etc/GMT+10',984),('posix/Etc/GMT+11',985),('posix/Etc/GMT+12',986),('posix/Etc/GMT+2',987),('posix/Etc/GMT+3',988),('posix/Etc/GMT+4',989),('posix/Etc/GMT+5',990),('posix/Etc/GMT+6',991),('posix/Etc/GMT+7',992),('posix/Etc/GMT+8',993),('posix/Etc/GMT+9',994),('posix/Etc/GMT-0',995),('posix/Etc/GMT-1',996),('posix/Etc/GMT-10',997),('posix/Etc/GMT-11',998),('posix/Etc/GMT-12',999),('posix/Etc/GMT-13',1000),('posix/Etc/GMT-14',1001),('posix/Etc/GMT-2',1002),('posix/Etc/GMT-3',1003),('posix/Etc/GMT-4',1004),('posix/Etc/GMT-5',1005),('posix/Etc/GMT-6',1006),('posix/Etc/GMT-7',1007),('posix/Etc/GMT-8',1008),('posix/Etc/GMT-9',1009),('posix/Etc/GMT0',1010),('posix/Etc/Greenwich',1011),('posix/Etc/UCT',1012),('posix/Etc/UTC',1013),('posix/Etc/Universal',1014),('posix/Etc/Zulu',1015),('posix/Europe/Amsterdam',1016),('posix/Europe/Andorra',1017),('posix/Europe/Astrakhan',1018),('posix/Europe/Athens',1019),('posix/Europe/Belfast',1020),('posix/Europe/Belgrade',1021),('posix/Europe/Berlin',1022),('posix/Europe/Bratislava',1023),('posix/Europe/Brussels',1024),('posix/Europe/Bucharest',1025),('posix/Europe/Budapest',1026),('posix/Europe/Busingen',1027),('posix/Europe/Chisinau',1028),('posix/Europe/Copenhagen',1029),('posix/Europe/Dublin',1030),('posix/Europe/Gibraltar',1031),('posix/Europe/Guernsey',1032),('posix/Europe/Helsinki',1033),('posix/Europe/Isle_of_Man',1034),('posix/Europe/Istanbul',1035),('posix/Europe/Jersey',1036),('posix/Europe/Kaliningrad',1037),('posix/Europe/Kiev',1038),('posix/Europe/Kirov',1039),('posix/Europe/Lisbon',1040),('posix/Europe/Ljubljana',1041),('posix/Europe/London',1042),('posix/Europe/Luxembourg',1043),('posix/Europe/Madrid',1044),('posix/Europe/Malta',1045),('posix/Europe/Mariehamn',1046),('posix/Europe/Minsk',1047),('posix/Europe/Monaco',1048),('posix/Europe/Moscow',1049),('posix/Europe/Nicosia',1050),('posix/Europe/Oslo',1051),('posix/Europe/Paris',1052),('posix/Europe/Podgorica',1053),('posix/Europe/Prague',1054),('posix/Europe/Riga',1055),('posix/Europe/Rome',1056),('posix/Europe/Samara',1057),('posix/Europe/San_Marino',1058),('posix/Europe/Sarajevo',1059),('posix/Europe/Saratov',1060),('posix/Europe/Simferopol',1061),('posix/Europe/Skopje',1062),('posix/Europe/Sofia',1063),('posix/Europe/Stockholm',1064),('posix/Europe/Tallinn',1065),('posix/Europe/Tirane',1066),('posix/Europe/Tiraspol',1067),('posix/Europe/Ulyanovsk',1068),('posix/Europe/Uzhgorod',1069),('posix/Europe/Vaduz',1070),('posix/Europe/Vatican',1071),('posix/Europe/Vienna',1072),('posix/Europe/Vilnius',1073),('posix/Europe/Volgograd',1074),('posix/Europe/Warsaw',1075),('posix/Europe/Zagreb',1076),('posix/Europe/Zaporozhye',1077),('posix/Europe/Zurich',1078),('posix/GB',1079),('posix/GB-Eire',1080),('posix/GMT',1081),('posix/GMT+0',1082),('posix/GMT-0',1083),('posix/GMT0',1084),('posix/Greenwich',1085),('posix/HST',1086),('posix/Hongkong',1087),('posix/Iceland',1088),('posix/Indian/Antananarivo',1089),('posix/Indian/Chagos',1090),('posix/Indian/Christmas',1091),('posix/Indian/Cocos',1092),('posix/Indian/Comoro',1093),('posix/Indian/Kerguelen',1094),('posix/Indian/Mahe',1095),('posix/Indian/Maldives',1096),('posix/Indian/Mauritius',1097),('posix/Indian/Mayotte',1098),('posix/Indian/Reunion',1099),('posix/Iran',1100),('posix/Israel',1101),('posix/Jamaica',1102),('posix/Japan',1103),('posix/Kwajalein',1104),('posix/Libya',1105),('posix/MET',1106),('posix/MST',1107),('posix/MST7MDT',1108),('posix/Mexico/BajaNorte',1109),('posix/Mexico/BajaSur',1110),('posix/Mexico/General',1111),('posix/NZ',1112),('posix/NZ-CHAT',1113),('posix/Navajo',1114),('posix/PRC',1115),('posix/PST8PDT',1116),('posix/Pacific/Apia',1117),('posix/Pacific/Auckland',1118),('posix/Pacific/Bougainville',1119),('posix/Pacific/Chatham',1120),('posix/Pacific/Chuuk',1121),('posix/Pacific/Easter',1122),('posix/Pacific/Efate',1123),('posix/Pacific/Enderbury',1124),('posix/Pacific/Fakaofo',1125),('posix/Pacific/Fiji',1126),('posix/Pacific/Funafuti',1127),('posix/Pacific/Galapagos',1128),('posix/Pacific/Gambier',1129),('posix/Pacific/Guadalcanal',1130),('posix/Pacific/Guam',1131),('posix/Pacific/Honolulu',1132),('posix/Pacific/Johnston',1133),('posix/Pacific/Kiritimati',1134),('posix/Pacific/Kosrae',1135),('posix/Pacific/Kwajalein',1136),('posix/Pacific/Majuro',1137),('posix/Pacific/Marquesas',1138),('posix/Pacific/Midway',1139),('posix/Pacific/Nauru',1140),('posix/Pacific/Niue',1141),('posix/Pacific/Norfolk',1142),('posix/Pacific/Noumea',1143),('posix/Pacific/Pago_Pago',1144),('posix/Pacific/Palau',1145),('posix/Pacific/Pitcairn',1146),('posix/Pacific/Pohnpei',1147),('posix/Pacific/Ponape',1148),('posix/Pacific/Port_Moresby',1149),('posix/Pacific/Rarotonga',1150),('posix/Pacific/Saipan',1151),('posix/Pacific/Samoa',1152),('posix/Pacific/Tahiti',1153),('posix/Pacific/Tarawa',1154),('posix/Pacific/Tongatapu',1155),('posix/Pacific/Truk',1156),('posix/Pacific/Wake',1157),('posix/Pacific/Wallis',1158),('posix/Pacific/Yap',1159),('posix/Poland',1160),('posix/Portugal',1161),('posix/ROC',1162),('posix/ROK',1163),('posix/Singapore',1164),('posix/Turkey',1165),('posix/UCT',1166),('posix/US/Alaska',1167),('posix/US/Aleutian',1168),('posix/US/Arizona',1169),('posix/US/Central',1170),('posix/US/East-Indiana',1171),('posix/US/Eastern',1172),('posix/US/Hawaii',1173),('posix/US/Indiana-Starke',1174),('posix/US/Michigan',1175),('posix/US/Mountain',1176),('posix/US/Pacific',1177),('posix/US/Pacific-New',1178),('posix/US/Samoa',1179),('posix/UTC',1180),('posix/Universal',1181),('posix/W-SU',1182),('posix/WET',1183),('posix/Zulu',1184),('posixrules',1185),('right/Africa/Abidjan',1186),('right/Africa/Accra',1187),('right/Africa/Addis_Ababa',1188),('right/Africa/Algiers',1189),('right/Africa/Asmara',1190),('right/Africa/Asmera',1191),('right/Africa/Bamako',1192),('right/Africa/Bangui',1193),('right/Africa/Banjul',1194),('right/Africa/Bissau',1195),('right/Africa/Blantyre',1196),('right/Africa/Brazzaville',1197),('right/Africa/Bujumbura',1198),('right/Africa/Cairo',1199),('right/Africa/Casablanca',1200),('right/Africa/Ceuta',1201),('right/Africa/Conakry',1202),('right/Africa/Dakar',1203),('right/Africa/Dar_es_Salaam',1204),('right/Africa/Djibouti',1205),('right/Africa/Douala',1206),('right/Africa/El_Aaiun',1207),('right/Africa/Freetown',1208),('right/Africa/Gaborone',1209),('right/Africa/Harare',1210),('right/Africa/Johannesburg',1211),('right/Africa/Juba',1212),('right/Africa/Kampala',1213),('right/Africa/Khartoum',1214),('right/Africa/Kigali',1215),('right/Africa/Kinshasa',1216),('right/Africa/Lagos',1217),('right/Africa/Libreville',1218),('right/Africa/Lome',1219),('right/Africa/Luanda',1220),('right/Africa/Lubumbashi',1221),('right/Africa/Lusaka',1222),('right/Africa/Malabo',1223),('right/Africa/Maputo',1224),('right/Africa/Maseru',1225),('right/Africa/Mbabane',1226),('right/Africa/Mogadishu',1227),('right/Africa/Monrovia',1228),('right/Africa/Nairobi',1229),('right/Africa/Ndjamena',1230),('right/Africa/Niamey',1231),('right/Africa/Nouakchott',1232),('right/Africa/Ouagadougou',1233),('right/Africa/Porto-Novo',1234),('right/Africa/Sao_Tome',1235),('right/Africa/Timbuktu',1236),('right/Africa/Tripoli',1237),('right/Africa/Tunis',1238),('right/Africa/Windhoek',1239),('right/America/Adak',1240),('right/America/Anchorage',1241),('right/America/Anguilla',1242),('right/America/Antigua',1243),('right/America/Araguaina',1244),('right/America/Argentina/Buenos_Aires',1245),('right/America/Argentina/Catamarca',1246),('right/America/Argentina/ComodRivadavia',1247),('right/America/Argentina/Cordoba',1248),('right/America/Argentina/Jujuy',1249),('right/America/Argentina/La_Rioja',1250),('right/America/Argentina/Mendoza',1251),('right/America/Argentina/Rio_Gallegos',1252),('right/America/Argentina/Salta',1253),('right/America/Argentina/San_Juan',1254),('right/America/Argentina/San_Luis',1255),('right/America/Argentina/Tucuman',1256),('right/America/Argentina/Ushuaia',1257),('right/America/Aruba',1258),('right/America/Asuncion',1259),('right/America/Atikokan',1260),('right/America/Atka',1261),('right/America/Bahia',1262),('right/America/Bahia_Banderas',1263),('right/America/Barbados',1264),('right/America/Belem',1265),('right/America/Belize',1266),('right/America/Blanc-Sablon',1267),('right/America/Boa_Vista',1268),('right/America/Bogota',1269),('right/America/Boise',1270),('right/America/Buenos_Aires',1271),('right/America/Cambridge_Bay',1272),('right/America/Campo_Grande',1273),('right/America/Cancun',1274),('right/America/Caracas',1275),('right/America/Catamarca',1276),('right/America/Cayenne',1277),('right/America/Cayman',1278),('right/America/Chicago',1279),('right/America/Chihuahua',1280),('right/America/Coral_Harbour',1281),('right/America/Cordoba',1282),('right/America/Costa_Rica',1283),('right/America/Creston',1284),('right/America/Cuiaba',1285),('right/America/Curacao',1286),('right/America/Danmarkshavn',1287),('right/America/Dawson',1288),('right/America/Dawson_Creek',1289),('right/America/Denver',1290),('right/America/Detroit',1291),('right/America/Dominica',1292),('right/America/Edmonton',1293),('right/America/Eirunepe',1294),('right/America/El_Salvador',1295),('right/America/Ensenada',1296),('right/America/Fort_Nelson',1297),('right/America/Fort_Wayne',1298),('right/America/Fortaleza',1299),('right/America/Glace_Bay',1300),('right/America/Godthab',1301),('right/America/Goose_Bay',1302),('right/America/Grand_Turk',1303),('right/America/Grenada',1304),('right/America/Guadeloupe',1305),('right/America/Guatemala',1306),('right/America/Guayaquil',1307),('right/America/Guyana',1308),('right/America/Halifax',1309),('right/America/Havana',1310),('right/America/Hermosillo',1311),('right/America/Indiana/Indianapolis',1312),('right/America/Indiana/Knox',1313),('right/America/Indiana/Marengo',1314),('right/America/Indiana/Petersburg',1315),('right/America/Indiana/Tell_City',1316),('right/America/Indiana/Vevay',1317),('right/America/Indiana/Vincennes',1318),('right/America/Indiana/Winamac',1319),('right/America/Indianapolis',1320),('right/America/Inuvik',1321),('right/America/Iqaluit',1322),('right/America/Jamaica',1323),('right/America/Jujuy',1324),('right/America/Juneau',1325),('right/America/Kentucky/Louisville',1326),('right/America/Kentucky/Monticello',1327),('right/America/Knox_IN',1328),('right/America/Kralendijk',1329),('right/America/La_Paz',1330),('right/America/Lima',1331),('right/America/Los_Angeles',1332),('right/America/Louisville',1333),('right/America/Lower_Princes',1334),('right/America/Maceio',1335),('right/America/Managua',1336),('right/America/Manaus',1337),('right/America/Marigot',1338),('right/America/Martinique',1339),('right/America/Matamoros',1340),('right/America/Mazatlan',1341),('right/America/Mendoza',1342),('right/America/Menominee',1343),('right/America/Merida',1344),('right/America/Metlakatla',1345),('right/America/Mexico_City',1346),('right/America/Miquelon',1347),('right/America/Moncton',1348),('right/America/Monterrey',1349),('right/America/Montevideo',1350),('right/America/Montreal',1351),('right/America/Montserrat',1352),('right/America/Nassau',1353),('right/America/New_York',1354),('right/America/Nipigon',1355),('right/America/Nome',1356),('right/America/Noronha',1357),('right/America/North_Dakota/Beulah',1358),('right/America/North_Dakota/Center',1359),('right/America/North_Dakota/New_Salem',1360),('right/America/Ojinaga',1361),('right/America/Panama',1362),('right/America/Pangnirtung',1363),('right/America/Paramaribo',1364),('right/America/Phoenix',1365),('right/America/Port-au-Prince',1366),('right/America/Port_of_Spain',1367),('right/America/Porto_Acre',1368),('right/America/Porto_Velho',1369),('right/America/Puerto_Rico',1370),('right/America/Punta_Arenas',1371),('right/America/Rainy_River',1372),('right/America/Rankin_Inlet',1373),('right/America/Recife',1374),('right/America/Regina',1375),('right/America/Resolute',1376),('right/America/Rio_Branco',1377),('right/America/Rosario',1378),('right/America/Santa_Isabel',1379),('right/America/Santarem',1380),('right/America/Santiago',1381),('right/America/Santo_Domingo',1382),('right/America/Sao_Paulo',1383),('right/America/Scoresbysund',1384),('right/America/Shiprock',1385),('right/America/Sitka',1386),('right/America/St_Barthelemy',1387),('right/America/St_Johns',1388),('right/America/St_Kitts',1389),('right/America/St_Lucia',1390),('right/America/St_Thomas',1391),('right/America/St_Vincent',1392),('right/America/Swift_Current',1393),('right/America/Tegucigalpa',1394),('right/America/Thule',1395),('right/America/Thunder_Bay',1396),('right/America/Tijuana',1397),('right/America/Toronto',1398),('right/America/Tortola',1399),('right/America/Vancouver',1400),('right/America/Virgin',1401),('right/America/Whitehorse',1402),('right/America/Winnipeg',1403),('right/America/Yakutat',1404),('right/America/Yellowknife',1405),('right/Antarctica/Casey',1406),('right/Antarctica/Davis',1407),('right/Antarctica/DumontDUrville',1408),('right/Antarctica/Macquarie',1409),('right/Antarctica/Mawson',1410),('right/Antarctica/McMurdo',1411),('right/Antarctica/Palmer',1412),('right/Antarctica/Rothera',1413),('right/Antarctica/South_Pole',1414),('right/Antarctica/Syowa',1415),('right/Antarctica/Troll',1416),('right/Antarctica/Vostok',1417),('right/Arctic/Longyearbyen',1418),('right/Asia/Aden',1419),('right/Asia/Almaty',1420),('right/Asia/Amman',1421),('right/Asia/Anadyr',1422),('right/Asia/Aqtau',1423),('right/Asia/Aqtobe',1424),('right/Asia/Ashgabat',1425),('right/Asia/Ashkhabad',1426),('right/Asia/Atyrau',1427),('right/Asia/Baghdad',1428),('right/Asia/Bahrain',1429),('right/Asia/Baku',1430),('right/Asia/Bangkok',1431),('right/Asia/Barnaul',1432),('right/Asia/Beirut',1433),('right/Asia/Bishkek',1434),('right/Asia/Brunei',1435),('right/Asia/Calcutta',1436),('right/Asia/Chita',1437),('right/Asia/Choibalsan',1438),('right/Asia/Chongqing',1439),('right/Asia/Chungking',1440),('right/Asia/Colombo',1441),('right/Asia/Dacca',1442),('right/Asia/Damascus',1443),('right/Asia/Dhaka',1444),('right/Asia/Dili',1445),('right/Asia/Dubai',1446),('right/Asia/Dushanbe',1447),('right/Asia/Famagusta',1448),('right/Asia/Gaza',1449),('right/Asia/Harbin',1450),('right/Asia/Hebron',1451),('right/Asia/Ho_Chi_Minh',1452),('right/Asia/Hong_Kong',1453),('right/Asia/Hovd',1454),('right/Asia/Irkutsk',1455),('right/Asia/Istanbul',1456),('right/Asia/Jakarta',1457),('right/Asia/Jayapura',1458),('right/Asia/Jerusalem',1459),('right/Asia/Kabul',1460),('right/Asia/Kamchatka',1461),('right/Asia/Karachi',1462),('right/Asia/Kashgar',1463),('right/Asia/Kathmandu',1464),('right/Asia/Katmandu',1465),('right/Asia/Khandyga',1466),('right/Asia/Kolkata',1467),('right/Asia/Krasnoyarsk',1468),('right/Asia/Kuala_Lumpur',1469),('right/Asia/Kuching',1470),('right/Asia/Kuwait',1471),('right/Asia/Macao',1472),('right/Asia/Macau',1473),('right/Asia/Magadan',1474),('right/Asia/Makassar',1475),('right/Asia/Manila',1476),('right/Asia/Muscat',1477),('right/Asia/Nicosia',1478),('right/Asia/Novokuznetsk',1479),('right/Asia/Novosibirsk',1480),('right/Asia/Omsk',1481),('right/Asia/Oral',1482),('right/Asia/Phnom_Penh',1483),('right/Asia/Pontianak',1484),('right/Asia/Pyongyang',1485),('right/Asia/Qatar',1486),('right/Asia/Qyzylorda',1487),('right/Asia/Rangoon',1488),('right/Asia/Riyadh',1489),('right/Asia/Saigon',1490),('right/Asia/Sakhalin',1491),('right/Asia/Samarkand',1492),('right/Asia/Seoul',1493),('right/Asia/Shanghai',1494),('right/Asia/Singapore',1495),('right/Asia/Srednekolymsk',1496),('right/Asia/Taipei',1497),('right/Asia/Tashkent',1498),('right/Asia/Tbilisi',1499),('right/Asia/Tehran',1500),('right/Asia/Tel_Aviv',1501),('right/Asia/Thimbu',1502),('right/Asia/Thimphu',1503),('right/Asia/Tokyo',1504),('right/Asia/Tomsk',1505),('right/Asia/Ujung_Pandang',1506),('right/Asia/Ulaanbaatar',1507),('right/Asia/Ulan_Bator',1508),('right/Asia/Urumqi',1509),('right/Asia/Ust-Nera',1510),('right/Asia/Vientiane',1511),('right/Asia/Vladivostok',1512),('right/Asia/Yakutsk',1513),('right/Asia/Yangon',1514),('right/Asia/Yekaterinburg',1515),('right/Asia/Yerevan',1516),('right/Atlantic/Azores',1517),('right/Atlantic/Bermuda',1518),('right/Atlantic/Canary',1519),('right/Atlantic/Cape_Verde',1520),('right/Atlantic/Faeroe',1521),('right/Atlantic/Faroe',1522),('right/Atlantic/Jan_Mayen',1523),('right/Atlantic/Madeira',1524),('right/Atlantic/Reykjavik',1525),('right/Atlantic/South_Georgia',1526),('right/Atlantic/St_Helena',1527),('right/Atlantic/Stanley',1528),('right/Australia/ACT',1529),('right/Australia/Adelaide',1530),('right/Australia/Brisbane',1531),('right/Australia/Broken_Hill',1532),('right/Australia/Canberra',1533),('right/Australia/Currie',1534),('right/Australia/Darwin',1535),('right/Australia/Eucla',1536),('right/Australia/Hobart',1537),('right/Australia/LHI',1538),('right/Australia/Lindeman',1539),('right/Australia/Lord_Howe',1540),('right/Australia/Melbourne',1541),('right/Australia/NSW',1542),('right/Australia/North',1543),('right/Australia/Perth',1544),('right/Australia/Queensland',1545),('right/Australia/South',1546),('right/Australia/Sydney',1547),('right/Australia/Tasmania',1548),('right/Australia/Victoria',1549),('right/Australia/West',1550),('right/Australia/Yancowinna',1551),('right/Brazil/Acre',1552),('right/Brazil/DeNoronha',1553),('right/Brazil/East',1554),('right/Brazil/West',1555),('right/CET',1556),('right/CST6CDT',1557),('right/Canada/Atlantic',1558),('right/Canada/Central',1559),('right/Canada/Eastern',1560),('right/Canada/Mountain',1561),('right/Canada/Newfoundland',1562),('right/Canada/Pacific',1563),('right/Canada/Saskatchewan',1564),('right/Canada/Yukon',1565),('right/Chile/Continental',1566),('right/Chile/EasterIsland',1567),('right/Cuba',1568),('right/EET',1569),('right/EST',1570),('right/EST5EDT',1571),('right/Egypt',1572),('right/Eire',1573),('right/Etc/GMT',1574),('right/Etc/GMT+0',1575),('right/Etc/GMT+1',1576),('right/Etc/GMT+10',1577),('right/Etc/GMT+11',1578),('right/Etc/GMT+12',1579),('right/Etc/GMT+2',1580),('right/Etc/GMT+3',1581),('right/Etc/GMT+4',1582),('right/Etc/GMT+5',1583),('right/Etc/GMT+6',1584),('right/Etc/GMT+7',1585),('right/Etc/GMT+8',1586),('right/Etc/GMT+9',1587),('right/Etc/GMT-0',1588),('right/Etc/GMT-1',1589),('right/Etc/GMT-10',1590),('right/Etc/GMT-11',1591),('right/Etc/GMT-12',1592),('right/Etc/GMT-13',1593),('right/Etc/GMT-14',1594),('right/Etc/GMT-2',1595),('right/Etc/GMT-3',1596),('right/Etc/GMT-4',1597),('right/Etc/GMT-5',1598),('right/Etc/GMT-6',1599),('right/Etc/GMT-7',1600),('right/Etc/GMT-8',1601),('right/Etc/GMT-9',1602),('right/Etc/GMT0',1603),('right/Etc/Greenwich',1604),('right/Etc/UCT',1605),('right/Etc/UTC',1606),('right/Etc/Universal',1607),('right/Etc/Zulu',1608),('right/Europe/Amsterdam',1609),('right/Europe/Andorra',1610),('right/Europe/Astrakhan',1611),('right/Europe/Athens',1612),('right/Europe/Belfast',1613),('right/Europe/Belgrade',1614),('right/Europe/Berlin',1615),('right/Europe/Bratislava',1616),('right/Europe/Brussels',1617),('right/Europe/Bucharest',1618),('right/Europe/Budapest',1619),('right/Europe/Busingen',1620),('right/Europe/Chisinau',1621),('right/Europe/Copenhagen',1622),('right/Europe/Dublin',1623),('right/Europe/Gibraltar',1624),('right/Europe/Guernsey',1625),('right/Europe/Helsinki',1626),('right/Europe/Isle_of_Man',1627),('right/Europe/Istanbul',1628),('right/Europe/Jersey',1629),('right/Europe/Kaliningrad',1630),('right/Europe/Kiev',1631),('right/Europe/Kirov',1632),('right/Europe/Lisbon',1633),('right/Europe/Ljubljana',1634),('right/Europe/London',1635),('right/Europe/Luxembourg',1636),('right/Europe/Madrid',1637),('right/Europe/Malta',1638),('right/Europe/Mariehamn',1639),('right/Europe/Minsk',1640),('right/Europe/Monaco',1641),('right/Europe/Moscow',1642),('right/Europe/Nicosia',1643),('right/Europe/Oslo',1644),('right/Europe/Paris',1645),('right/Europe/Podgorica',1646),('right/Europe/Prague',1647),('right/Europe/Riga',1648),('right/Europe/Rome',1649),('right/Europe/Samara',1650),('right/Europe/San_Marino',1651),('right/Europe/Sarajevo',1652),('right/Europe/Saratov',1653),('right/Europe/Simferopol',1654),('right/Europe/Skopje',1655),('right/Europe/Sofia',1656),('right/Europe/Stockholm',1657),('right/Europe/Tallinn',1658),('right/Europe/Tirane',1659),('right/Europe/Tiraspol',1660),('right/Europe/Ulyanovsk',1661),('right/Europe/Uzhgorod',1662),('right/Europe/Vaduz',1663),('right/Europe/Vatican',1664),('right/Europe/Vienna',1665),('right/Europe/Vilnius',1666),('right/Europe/Volgograd',1667),('right/Europe/Warsaw',1668),('right/Europe/Zagreb',1669),('right/Europe/Zaporozhye',1670),('right/Europe/Zurich',1671),('right/GB',1672),('right/GB-Eire',1673),('right/GMT',1674),('right/GMT+0',1675),('right/GMT-0',1676),('right/GMT0',1677),('right/Greenwich',1678),('right/HST',1679),('right/Hongkong',1680),('right/Iceland',1681),('right/Indian/Antananarivo',1682),('right/Indian/Chagos',1683),('right/Indian/Christmas',1684),('right/Indian/Cocos',1685),('right/Indian/Comoro',1686),('right/Indian/Kerguelen',1687),('right/Indian/Mahe',1688),('right/Indian/Maldives',1689),('right/Indian/Mauritius',1690),('right/Indian/Mayotte',1691),('right/Indian/Reunion',1692),('right/Iran',1693),('right/Israel',1694),('right/Jamaica',1695),('right/Japan',1696),('right/Kwajalein',1697),('right/Libya',1698),('right/MET',1699),('right/MST',1700),('right/MST7MDT',1701),('right/Mexico/BajaNorte',1702),('right/Mexico/BajaSur',1703),('right/Mexico/General',1704),('right/NZ',1705),('right/NZ-CHAT',1706),('right/Navajo',1707),('right/PRC',1708),('right/PST8PDT',1709),('right/Pacific/Apia',1710),('right/Pacific/Auckland',1711),('right/Pacific/Bougainville',1712),('right/Pacific/Chatham',1713),('right/Pacific/Chuuk',1714),('right/Pacific/Easter',1715),('right/Pacific/Efate',1716),('right/Pacific/Enderbury',1717),('right/Pacific/Fakaofo',1718),('right/Pacific/Fiji',1719),('right/Pacific/Funafuti',1720),('right/Pacific/Galapagos',1721),('right/Pacific/Gambier',1722),('right/Pacific/Guadalcanal',1723),('right/Pacific/Guam',1724),('right/Pacific/Honolulu',1725),('right/Pacific/Johnston',1726),('right/Pacific/Kiritimati',1727),('right/Pacific/Kosrae',1728),('right/Pacific/Kwajalein',1729),('right/Pacific/Majuro',1730),('right/Pacific/Marquesas',1731),('right/Pacific/Midway',1732),('right/Pacific/Nauru',1733),('right/Pacific/Niue',1734),('right/Pacific/Norfolk',1735),('right/Pacific/Noumea',1736),('right/Pacific/Pago_Pago',1737),('right/Pacific/Palau',1738),('right/Pacific/Pitcairn',1739),('right/Pacific/Pohnpei',1740),('right/Pacific/Ponape',1741),('right/Pacific/Port_Moresby',1742),('right/Pacific/Rarotonga',1743),('right/Pacific/Saipan',1744),('right/Pacific/Samoa',1745),('right/Pacific/Tahiti',1746),('right/Pacific/Tarawa',1747),('right/Pacific/Tongatapu',1748),('right/Pacific/Truk',1749),('right/Pacific/Wake',1750),('right/Pacific/Wallis',1751),('right/Pacific/Yap',1752),('right/Poland',1753),('right/Portugal',1754),('right/ROC',1755),('right/ROK',1756),('right/Singapore',1757),('right/Turkey',1758),('right/UCT',1759),('right/US/Alaska',1760),('right/US/Aleutian',1761),('right/US/Arizona',1762),('right/US/Central',1763),('right/US/East-Indiana',1764),('right/US/Eastern',1765),('right/US/Hawaii',1766),('right/US/Indiana-Starke',1767),('right/US/Michigan',1768),('right/US/Mountain',1769),('right/US/Pacific',1770),('right/US/Pacific-New',1771),('right/US/Samoa',1772),('right/UTC',1773),('right/Universal',1774),('right/W-SU',1775),('right/WET',1776),('right/Zulu',1777);
/*!40000 ALTER TABLE `time_zone_name` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `time_zone_transition`
--
DROP TABLE IF EXISTS `time_zone_transition`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `time_zone_transition` (
`Time_zone_id` int(10) unsigned NOT NULL,
`Transition_time` bigint(20) NOT NULL,
`Transition_type_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`Time_zone_id`,`Transition_time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transitions';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `time_zone_transition`
--
LOCK TABLES `time_zone_transition` WRITE;
/*!40000 ALTER TABLE `time_zone_transition` DISABLE KEYS */;
INSERT INTO `time_zone_transition` VALUES (1,-1830383032,1),(2,-1640995148,2),(2,-1556841600,1),(2,-1546388400,2),(2,-1525305600,1),(2,-1514852400,2),(2,-1493769600,1),(2,-1483316400,2),(2,-1462233600,1),(2,-1451780400,2),(2,-1430611200,1),(2,-1420158000,2),(2,-1399075200,1),(2,-1388622000,2),(2,-1367539200,1),(2,-1357086000,2),(2,-1336003200,1),(2,-1325550000,2),(2,-1304380800,1),(2,-1293927600,2),(2,-1272844800,1),(2,-1262391600,2),(2,-1241308800,1),(2,-1230855600,2),(2,-1209772800,1),(2,-1199319600,2),(2,-1178150400,1),(2,-1167697200,2),(2,-1146614400,1),(2,-1136161200,2),(2,-1115078400,1),(2,-1104625200,2),(2,-1083542400,1),(2,-1073089200,2),(2,-1051920000,1),(2,-1041466800,2),(2,-1020384000,1),(2,-1009930800,2),(2,-988848000,1),(2,-978394800,2),(2,-957312000,1),(2,-946858800,2),(2,-925689600,1),(2,-915236400,2),(2,-894153600,1),(2,-883700400,2),(2,-862617600,1),(2,-852164400,2),(3,-1309746436,1),(3,-1262314800,2),(3,-946780200,3),(3,-315629100,1),(4,-1855958961,3),(4,-1689814800,1),(4,-1680397200,2),(4,-1665363600,1),(4,-1648342800,2),(4,-1635123600,1),(4,-1616893200,2),(4,-1604278800,1),(4,-1585443600,2),(4,-1574038800,1),(4,-1552266000,2),(4,-1539997200,1),(4,-1531443600,2),(4,-956365200,1),(4,-950486400,3),(4,-942012000,5),(4,-812502000,4),(4,-796262400,5),(4,-781052400,4),(4,-766630800,5),(4,-733280400,3),(4,-439430400,5),(4,-212029200,3),(4,41468400,1),(4,54774000,2),(4,231724800,6),(4,246236400,5),(4,259545600,4),(4,275274000,5),(4,309740400,3),(4,325468800,6),(4,341802000,3),(4,357523200,5),(5,-1309746436,1),(5,-1262314800,2),(5,-946780200,3),(5,-315629100,1),(6,-1309746436,1),(6,-1262314800,2),(6,-946780200,3),(6,-315629100,1),(7,-1830383032,1),(8,-1588464816,1),(9,-1830383032,1),(10,-1830380400,1),(10,157770000,2),(11,-2109291020,1),(12,-1588464816,1),(13,-2109291020,1),(14,-929844000,0),(14,-923108400,1),(14,-906170400,0),(14,-892868400,1),(14,-875844000,0),(14,-857790000,1),(14,-844308000,0),(14,-825822000,1),(14,-812685600,0),(14,-794199600,1),(14,-779853600,0),(14,-762663600,1),(14,-399088800,0),(14,-386650800,1),(14,-368330400,0),(14,-355114800,1),(14,-336790800,0),(14,-323654400,1),(14,-305168400,0),(14,-292032000,1),(14,-273632400,0),(14,-260496000,1),(14,-242096400,0),(14,-228960000,1),(14,-210560400,0),(14,-197424000,1),(14,-178938000,0),(14,-165801600,1),(14,-147402000,0),(14,-134265600,1),(14,-115866000,0),(14,-102643200,1),(14,-84330000,0),(14,-71107200,1),(14,-52707600,0),(14,-39484800,1),(14,-21171600,0),(14,-7948800,1),(14,10364400,0),(14,23587200,1),(14,41900400,0),(14,55123200,1),(14,73522800,0),(14,86745600,1),(14,105058800,0),(14,118281600,1),(14,136594800,0),(14,149817600,1),(14,168130800,0),(14,181353600,1),(14,199753200,0),(14,212976000,1),(14,231289200,0),(14,244512000,1),(14,262825200,0),(14,276048000,1),(14,294361200,0),(14,307584000,1),(14,325983600,0),(14,339206400,1),(14,357519600,0),(14,370742400,1),(14,396399600,0),(14,402278400,1),(14,426812400,0),(14,433814400,1),(14,452214000,0),(14,465436800,1),(14,483750000,0),(14,496972800,1),(14,515286000,0),(14,528508800,1),(14,546822000,0),(14,560044800,1),(14,578444400,0),(14,591667200,1),(14,610412400,0),(14,623203200,1),(14,641516400,0),(14,654739200,1),(14,673052400,0),(14,686275200,1),(14,704674800,0),(14,717897600,1),(14,736210800,0),(14,749433600,1),(14,767746800,0),(14,780969600,1),(14,799020000,2),(14,812322000,1),(14,830469600,2),(14,843771600,1),(14,861919200,2),(14,875221200,1),(14,893368800,2),(14,906670800,1),(14,925423200,2),(14,938725200,1),(14,956872800,2),(14,970174800,1),(14,988322400,2),(14,1001624400,1),(14,1019772000,2),(14,1033074000,1),(14,1051221600,2),(14,1064523600,1),(14,1083276000,2),(14,1096578000,1),(14,1114725600,2),(14,1128027600,1),(14,1146175200,2),(14,1158872400,1),(14,1177624800,2),(14,1189112400,1),(14,1209074400,2),(14,1219957200,1),(14,1240524000,2),(14,1250802000,1),(14,1272578400,2),(14,1281474000,1),(14,1284069600,0),(14,1285880400,1),(14,1400191200,0),(14,1403816400,1),(14,1406844000,0),(14,1411678800,1),(15,-1773012580,2),(15,-956361600,1),(15,-950490000,2),(15,-942019200,1),(15,-761187600,2),(15,-617241600,1),(15,-605149200,2),(15,-81432000,1),(15,-71110800,2),(15,141264000,1),(15,147222000,2),(15,199756800,1),(15,207702000,2),(15,231292800,1),(15,244249200,2),(15,265507200,1),(15,271033200,2),(15,448243200,3),(15,504918000,2),(15,1212278400,1),(15,1220223600,2),(15,1243814400,1),(15,1250809200,2),(15,1272758400,1),(15,1281222000,2),(15,1301788800,1),(15,1312066800,2),(15,1335664800,1),(15,1342749600,2),(15,1345428000,1),(15,1348970400,2),(15,1367114400,1),(15,1373162400,2),(15,1376100000,1),(15,1382839200,2),(15,1396144800,1),(15,1403920800,2),(15,1406944800,1),(15,1414288800,2),(15,1427594400,1),(15,1434247200,2),(15,1437271200,1),(15,1445738400,2),(15,1459044000,1),(15,1465092000,2),(15,1468116000,1),(15,1477792800,2),(15,1490493600,1),(15,1495332000,2),(15,1498960800,1),(15,1509242400,2),(15,1521943200,1),(15,1526176800,2),(15,1529200800,1),(15,1540692000,2),(15,1553997600,1),(15,1557021600,2),(15,1560045600,1),(15,1572141600,2),(15,1585447200,1),(15,1587261600,2),(15,1590285600,1),(15,1603591200,2),(15,1616896800,1),(15,1618106400,2),(15,1621130400,1),(15,1635645600,2),(15,1651975200,1),(15,1667095200,2),(15,1682215200,1),(15,1698544800,2),(15,1713060000,1),(15,1729994400,2),(15,1743904800,1),(15,1761444000,2),(15,1774749600,1),(15,1792893600,2),(15,1806199200,1),(15,1824948000,2),(15,1837648800,1),(15,1856397600,2),(15,1869098400,1),(15,1887847200,2),(15,1901152800,1),(15,1919296800,2),(15,1932602400,1),(15,1950746400,2),(15,1964052000,1),(15,1982800800,2),(15,1995501600,1),(15,2014250400,2),(15,2026951200,1),(15,2045700000,2),(15,2058400800,1),(15,2077149600,2),(15,2090455200,1),(15,2107994400,2),(15,2121904800,1),(15,2138234400,2),(16,-1630112400,1),(16,-1616810400,0),(16,-1442451600,1),(16,-1427673600,2),(16,-1379293200,1),(16,-1364774400,2),(16,-1348448400,1),(16,-1333324800,2),(16,-1316390400,1),(16,-1301270400,2),(16,-1293840000,0),(16,-81432000,1),(16,-71110800,0),(16,141264000,1),(16,147222000,0),(16,199756800,1),(16,207702000,0),(16,231292800,1),(16,244249200,0),(16,265507200,1),(16,271033200,0),(16,448243200,3),(16,512528400,4),(16,528253200,5),(16,543978000,4),(16,559702800,5),(16,575427600,4),(16,591152400,5),(16,606877200,4),(16,622602000,5),(16,638326800,4),(16,654656400,5),(16,670381200,4),(16,686106000,5),(16,701830800,4),(16,717555600,5),(16,733280400,4),(16,749005200,5),(16,764730000,4),(16,780454800,5),(16,796179600,4),(16,811904400,5),(16,828234000,4),(16,846378000,5),(16,859683600,4),(16,877827600,5),(16,891133200,4),(16,909277200,5),(16,922582800,4),(16,941331600,5),(16,954032400,4),(16,972781200,5),(16,985482000,4),(16,1004230800,5),(16,1017536400,4),(16,1035680400,5),(16,1048986000,4),(16,1067130000,5),(16,1080435600,4),(16,1099184400,5),(16,1111885200,4),(16,1130634000,5),(16,1143334800,4),(16,1162083600,5),(16,1174784400,4),(16,1193533200,5),(16,1206838800,4),(16,1224982800,5),(16,1238288400,4),(16,1256432400,5),(16,1269738000,4),(16,1288486800,5),(16,1301187600,4),(16,1319936400,5),(16,1332637200,4),(16,1351386000,5),(16,1364691600,4),(16,1382835600,5),(16,1396141200,4),(16,1414285200,5),(16,1427590800,4),(16,1445734800,5),(16,1459040400,4),(16,1477789200,5),(16,1490490000,4),(16,1509238800,5),(16,1521939600,4),(16,1540688400,5),(16,1553994000,4),(16,1572138000,5),(16,1585443600,4),(16,1603587600,5),(16,1616893200,4),(16,1635642000,5),(16,1648342800,4),(16,1667091600,5),(16,1679792400,4),(16,1698541200,5),(16,1711846800,4),(16,1729990800,5),(16,1743296400,4),(16,1761440400,5),(16,1774746000,4),(16,1792890000,5),(16,1806195600,4),(16,1824944400,5),(16,1837645200,4),(16,1856394000,5),(16,1869094800,4),(16,1887843600,5),(16,1901149200,4),(16,1919293200,5),(16,1932598800,4),(16,1950742800,5),(16,1964048400,4),(16,1982797200,5),(16,1995498000,4),(16,2014246800,5),(16,2026947600,4),(16,2045696400,5),(16,2058397200,4),(16,2077146000,5),(16,2090451600,4),(16,2108595600,5),(16,2121901200,4),(16,2140045200,5),(17,-1830383032,1),(18,-1830383032,1),(19,-1309746436,1),(19,-1262314800,2),(19,-946780200,3),(19,-315629100,1),(20,-1309746436,1),(20,-1262314800,2),(20,-946780200,3),(20,-315629100,1),(21,-1588464816,1),(22,-1136070432,1),(22,198291600,3),(22,199756800,2),(22,207702000,3),(22,231292800,2),(22,244249200,3),(22,265507200,2),(22,271033200,3),(22,1212278400,2),(22,1220223600,3),(22,1243814400,2),(22,1250809200,3),(22,1272758400,2),(22,1281222000,3),(22,1301788800,2),(22,1312066800,3),(22,1335664800,2),(22,1342749600,3),(22,1345428000,2),(22,1348970400,3),(22,1367114400,2),(22,1373162400,3),(22,1376100000,2),(22,1382839200,3),(22,1396144800,2),(22,1403920800,3),(22,1406944800,2),(22,1414288800,3),(22,1427594400,2),(22,1434247200,3),(22,1437271200,2),(22,1445738400,3),(22,1459044000,2),(22,1465092000,3),(22,1468116000,2),(22,1477792800,3),(22,1490493600,2),(22,1495332000,3),(22,1498960800,2),(22,1509242400,3),(22,1521943200,2),(22,1526176800,3),(22,1529200800,2),(22,1540692000,3),(22,1553997600,2),(22,1557021600,3),(22,1560045600,2),(22,1572141600,3),(22,1585447200,2),(22,1587261600,3),(22,1590285600,2),(22,1603591200,3),(22,1616896800,2),(22,1618106400,3),(22,1621130400,2),(22,1635645600,3),(22,1651975200,2),(22,1667095200,3),(22,1682215200,2),(22,1698544800,3),(22,1713060000,2),(22,1729994400,3),(22,1743904800,2),(22,1761444000,3),(22,1774749600,2),(22,1792893600,3),(22,1806199200,2),(22,1824948000,3),(22,1837648800,2),(22,1856397600,3),(22,1869098400,2),(22,1887847200,3),(22,1901152800,2),(22,1919296800,3),(22,1932602400,2),(22,1950746400,3),(22,1964052000,2),(22,1982800800,3),(22,1995501600,2),(22,2014250400,3),(22,2026951200,2),(22,2045700000,3),(22,2058400800,2),(22,2077149600,3),(22,2090455200,2),(22,2107994400,3),(22,2121904800,2),(22,2138234400,3),(23,-1830383032,1),(24,-2109291020,1),(25,-2109291020,1),(26,-2109288600,2),(26,-860976000,1),(26,-845254800,2),(26,-829526400,1),(26,-813805200,2),(27,-1230775588,2),(27,10360800,1),(27,24786000,2),(27,41810400,1),(27,56322000,2),(27,73432800,1),(27,87944400,2),(27,104882400,1),(27,119480400,2),(27,136332000,1),(27,151016400,2),(27,167781600,1),(27,182552400,2),(27,199231200,1),(27,214174800,2),(27,230680800,1),(27,245710800,2),(27,262735200,1),(27,277246800,2),(27,294184800,1),(27,308782800,2),(27,325634400,1),(27,340405200,2),(27,357084000,1),(27,371941200,2),(27,388533600,1),(27,403477200,2),(27,419983200,1),(27,435013200,2),(27,452037600,1),(27,466635600,2),(27,483487200,1),(27,498171600,2),(27,947930400,3),(28,-1309746436,1),(28,-1262314800,2),(28,-946780200,3),(28,-315629100,1),(29,-1230775808,2),(29,10360800,1),(29,24786000,2),(29,41810400,1),(29,56322000,2),(29,73432800,1),(29,87944400,2),(29,104882400,1),(29,119480400,2),(29,136332000,1),(29,151016400,2),(29,167781600,1),(29,182552400,2),(29,199231200,1),(29,214174800,2),(29,230680800,1),(29,245710800,2),(29,262735200,1),(29,277246800,2),(29,294184800,1),(29,308782800,2),(29,325634400,1),(29,340405200,2),(29,357084000,1),(29,371941200,2),(29,388533600,1),(29,403477200,2),(29,419983200,1),(29,435013200,2),(29,452037600,1),(29,466635600,2),(29,483487200,1),(29,498171600,2),(29,947930400,3),(29,1509483600,2),(30,-2109291020,1),(31,-1588464816,1),(32,-1588464816,1),(33,-1588464816,1),(34,-1830383032,1),(35,-1588464816,1),(36,-2109291020,1),(37,-2109291020,1),(38,-1588464816,1),(39,-2109291020,1),(40,-2109288600,2),(40,-860976000,1),(40,-845254800,2),(40,-829526400,1),(40,-813805200,2),(41,-2109288600,2),(41,-860976000,1),(41,-845254800,2),(41,-829526400,1),(41,-813805200,2),(42,-1309746436,1),(42,-1262314800,2),(42,-946780200,3),(42,-315629100,1),(43,-1604359012,1),(43,63593070,2),(44,-1309746436,1),(44,-1262314800,2),(44,-946780200,3),(44,-315629100,1),(45,-1830387612,1),(45,308703600,2),(45,321314400,1),(46,-1588464816,1),(47,-1830383032,1),(48,-1830383032,1),(49,-1588464816,1),(50,-1830384000,1),(50,1514768400,2),(51,-1830383032,1),(52,-1577926364,2),(52,-574902000,1),(52,-568087200,2),(52,-512175600,1),(52,-504928800,2),(52,-449888400,1),(52,-441856800,2),(52,-347158800,3),(52,378684000,2),(52,386463600,1),(52,402271200,2),(52,417999600,1),(52,433807200,2),(52,449622000,1),(52,465429600,2),(52,481590000,1),(52,496965600,2),(52,512953200,1),(52,528674400,2),(52,544230000,1),(52,560037600,2),(52,575852400,1),(52,591660000,2),(52,607388400,1),(52,623196000,2),(52,641775600,3),(52,844034400,2),(52,860108400,1),(52,875916000,3),(52,1352505600,2),(52,1364515200,1),(52,1382659200,3),(53,-1855958961,3),(53,-969242400,1),(53,-950493600,2),(53,-941940000,1),(53,-891136800,3),(53,-877827600,4),(53,-857257200,3),(53,-844556400,4),(53,-842918400,3),(53,-842223600,4),(53,-828230400,3),(53,-812502000,4),(53,-796269600,3),(53,-781052400,4),(53,-766634400,3),(53,231202800,1),(53,243903600,2),(53,262825200,1),(53,276044400,2),(53,581122800,1),(53,591145200,2),(53,606870000,1),(53,622594800,2),(53,641516400,1),(53,654649200,2),(53,1114902000,1),(53,1128038400,2),(53,1143334800,1),(53,1162083600,2),(53,1174784400,1),(53,1193533200,2),(53,1206838800,1),(53,1224982800,2),(54,-2109288600,1),(54,-860976000,2),(54,-845254800,1),(54,637970400,3),(54,764200800,4),(54,778640400,5),(54,796780800,4),(54,810090000,5),(54,828835200,4),(54,841539600,5),(54,860284800,4),(54,873594000,5),(54,891734400,4),(54,905043600,5),(54,923184000,4),(54,936493200,5),(54,954633600,4),(54,967942800,5),(54,986083200,4),(54,999392400,5),(54,1018137600,4),(54,1030842000,5),(54,1049587200,4),(54,1062896400,5),(54,1081036800,4),(54,1094346000,5),(54,1112486400,4),(54,1125795600,5),(54,1143936000,4),(54,1157245200,5),(54,1175385600,4),(54,1188694800,5),(54,1207440000,4),(54,1220749200,5),(54,1238889600,4),(54,1252198800,5),(54,1270339200,4),(54,1283648400,5),(54,1301788800,4),(54,1315098000,5),(54,1333238400,4),(54,1346547600,5),(54,1365292800,4),(54,1377997200,5),(54,1396742400,4),(54,1410051600,5),(54,1428192000,4),(54,1441501200,5),(54,1459641600,4),(54,1472950800,5),(54,1491091200,4),(54,1504400400,5),(54,1508796000,3),(55,-880196400,1),(55,-769395600,2),(55,-765374400,0),(55,-86878800,3),(55,-21466800,4),(55,-5745600,3),(55,9982800,4),(55,25704000,3),(55,41432400,4),(55,57758400,3),(55,73486800,4),(55,89208000,3),(55,104936400,4),(55,120657600,3),(55,126709200,4),(55,152107200,3),(55,162392400,4),(55,183556800,3),(55,199285200,4),(55,215611200,3),(55,230734800,4),(55,247060800,3),(55,262789200,4),(55,278510400,3),(55,294238800,4),(55,309960000,3),(55,325688400,4),(55,341409600,3),(55,357138000,4),(55,372859200,3),(55,388587600,4),(55,404913600,3),(55,420037200,4),(55,436363200,5),(55,439034400,7),(55,452088000,6),(55,467809200,7),(55,483537600,6),(55,499258800,7),(55,514987200,6),(55,530708400,7),(55,544622400,6),(55,562158000,7),(55,576072000,6),(55,594212400,7),(55,607521600,6),(55,625662000,7),(55,638971200,6),(55,657111600,7),(55,671025600,6),(55,688561200,7),(55,702475200,6),(55,720010800,7),(55,733924800,6),(55,752065200,7),(55,765374400,6),(55,783514800,7),(55,796824000,6),(55,814964400,7),(55,828878400,6),(55,846414000,7),(55,860328000,6),(55,877863600,7),(55,891777600,6),(55,909313200,7),(55,923227200,6),(55,941367600,7),(55,954676800,6),(55,972817200,7),(55,986126400,6),(55,1004266800,7),(55,1018180800,6),(55,1035716400,7),(55,1049630400,6),(55,1067166000,7),(55,1081080000,6),(55,1099220400,7),(55,1112529600,6),(55,1130670000,7),(55,1143979200,6),(55,1162119600,7),(55,1173614400,6),(55,1194174000,7),(55,1205064000,6),(55,1225623600,7),(55,1236513600,6),(55,1257073200,7),(55,1268568000,6),(55,1289127600,7),(55,1300017600,6),(55,1320577200,7),(55,1331467200,6),(55,1352026800,7),(55,1362916800,6),(55,1383476400,7),(55,1394366400,6),(55,1414926000,7),(55,1425816000,6),(55,1446375600,7),(55,1457870400,6),(55,1478430000,7),(55,1489320000,6),(55,1509879600,7),(55,1520769600,6),(55,1541329200,7),(55,1552219200,6),(55,1572778800,7),(55,1583668800,6),(55,1604228400,7),(55,1615723200,6),(55,1636282800,7),(55,1647172800,6),(55,1667732400,7),(55,1678622400,6),(55,1699182000,7),(55,1710072000,6),(55,1730631600,7),(55,1741521600,6),(55,1762081200,7),(55,1772971200,6),(55,1793530800,7),(55,1805025600,6),(55,1825585200,7),(55,1836475200,6),(55,1857034800,7),(55,1867924800,6),(55,1888484400,7),(55,1899374400,6),(55,1919934000,7),(55,1930824000,6),(55,1951383600,7),(55,1962878400,6),(55,1983438000,7),(55,1994328000,6),(55,2014887600,7),(55,2025777600,6),(55,2046337200,7),(55,2057227200,6),(55,2077786800,7),(55,2088676800,6),(55,2109236400,7),(55,2120126400,6),(55,2140686000,7),(56,-880200000,1),(56,-769395600,2),(56,-765378000,0),(56,-86882400,3),(56,-21470400,4),(56,-5749200,3),(56,9979200,4),(56,25700400,3),(56,41428800,4),(56,57754800,3),(56,73483200,4),(56,89204400,3),(56,104932800,4),(56,120654000,3),(56,126705600,4),(56,152103600,3),(56,162388800,4),(56,183553200,3),(56,199281600,4),(56,215607600,3),(56,230731200,4),(56,247057200,3),(56,262785600,4),(56,278506800,3),(56,294235200,4),(56,309956400,3),(56,325684800,4),(56,341406000,3),(56,357134400,4),(56,372855600,3),(56,388584000,4),(56,404910000,3),(56,420033600,4),(56,436359600,5),(56,439030800,7),(56,452084400,6),(56,467805600,7),(56,483534000,6),(56,499255200,7),(56,514983600,6),(56,530704800,7),(56,544618800,6),(56,562154400,7),(56,576068400,6),(56,594208800,7),(56,607518000,6),(56,625658400,7),(56,638967600,6),(56,657108000,7),(56,671022000,6),(56,688557600,7),(56,702471600,6),(56,720007200,7),(56,733921200,6),(56,752061600,7),(56,765370800,6),(56,783511200,7),(56,796820400,6),(56,814960800,7),(56,828874800,6),(56,846410400,7),(56,860324400,6),(56,877860000,7),(56,891774000,6),(56,909309600,7),(56,923223600,6),(56,941364000,7),(56,954673200,6),(56,972813600,7),(56,986122800,6),(56,1004263200,7),(56,1018177200,6),(56,1035712800,7),(56,1049626800,6),(56,1067162400,7),(56,1081076400,6),(56,1099216800,7),(56,1112526000,6),(56,1130666400,7),(56,1143975600,6),(56,1162116000,7),(56,1173610800,6),(56,1194170400,7),(56,1205060400,6),(56,1225620000,7),(56,1236510000,6),(56,1257069600,7),(56,1268564400,6),(56,1289124000,7),(56,1300014000,6),(56,1320573600,7),(56,1331463600,6),(56,1352023200,7),(56,1362913200,6),(56,1383472800,7),(56,1394362800,6),(56,1414922400,7),(56,1425812400,6),(56,1446372000,7),(56,1457866800,6),(56,1478426400,7),(56,1489316400,6),(56,1509876000,7),(56,1520766000,6),(56,1541325600,7),(56,1552215600,6),(56,1572775200,7),(56,1583665200,6),(56,1604224800,7),(56,1615719600,6),(56,1636279200,7),(56,1647169200,6),(56,1667728800,7),(56,1678618800,6),(56,1699178400,7),(56,1710068400,6),(56,1730628000,7),(56,1741518000,6),(56,1762077600,7),(56,1772967600,6),(56,1793527200,7),(56,1805022000,6),(56,1825581600,7),(56,1836471600,6),(56,1857031200,7),(56,1867921200,6),(56,1888480800,7),(56,1899370800,6),(56,1919930400,7),(56,1930820400,6),(56,1951380000,7),(56,1962874800,6),(56,1983434400,7),(56,1994324400,6),(56,2014884000,7),(56,2025774000,6),(56,2046333600,7),(56,2057223600,6),(56,2077783200,7),(56,2088673200,6),(56,2109232800,7),(56,2120122800,6),(56,2140682400,7),(57,-1825098836,1),(58,-1825098836,1),(59,-1767214032,2),(59,-1206957600,1),(59,-1191362400,2),(59,-1175374800,1),(59,-1159826400,2),(59,-633819600,1),(59,-622069200,2),(59,-602283600,1),(59,-591832800,2),(59,-570747600,1),(59,-560210400,2),(59,-539125200,1),(59,-531352800,2),(59,-191365200,1),(59,-184197600,2),(59,-155163600,1),(59,-150069600,2),(59,-128898000,1),(59,-121125600,2),(59,-99954000,1),(59,-89589600,2),(59,-68418000,1),(59,-57967200,2),(59,499748400,1),(59,511236000,2),(59,530593200,1),(59,540266400,2),(59,562129200,1),(59,571197600,2),(59,592974000,1),(59,602042400,2),(59,624423600,1),(59,634701600,2),(59,813726000,1),(59,824004000,2),(59,844570800,1),(59,856058400,2),(59,876106800,1),(59,888717600,2),(59,908074800,1),(59,919562400,2),(59,938919600,1),(59,951616800,2),(59,970974000,1),(59,982461600,2),(59,1003028400,1),(59,1013911200,2),(59,1036292400,1),(59,1045360800,2),(59,1350788400,1),(59,1361066400,2),(60,-1567453392,1),(60,-1233432000,2),(60,-1222981200,1),(60,-1205956800,2),(60,-1194037200,1),(60,-1172865600,2),(60,-1162501200,1),(60,-1141329600,2),(60,-1130965200,1),(60,-1109793600,2),(60,-1099429200,1),(60,-1078257600,2),(60,-1067806800,1),(60,-1046635200,2),(60,-1036270800,1),(60,-1015099200,2),(60,-1004734800,1),(60,-983563200,2),(60,-973198800,1),(60,-952027200,2),(60,-941576400,1),(60,-931032000,2),(60,-900882000,1),(60,-890337600,2),(60,-833749200,1),(60,-827265600,2),(60,-752274000,1),(60,-733780800,2),(60,-197326800,1),(60,-190843200,2),(60,-184194000,1),(60,-164491200,2),(60,-152658000,1),(60,-132955200,2),(60,-121122000,1),(60,-101419200,2),(60,-86821200,1),(60,-71092800,2),(60,-54766800,1),(60,-39038400,2),(60,-23317200,1),(60,-7588800,4),(60,128142000,3),(60,136605600,4),(60,596948400,3),(60,605066400,4),(60,624423600,3),(60,636516000,4),(60,656478000,3),(60,667965600,4),(60,687927600,3),(60,699415200,4),(60,719377200,3),(60,731469600,4),(60,938919600,2),(60,952052400,4),(60,1198983600,3),(60,1205632800,4),(60,1224385200,3),(60,1237082400,4),(61,-1567453392,1),(61,-1233432000,2),(61,-1222981200,1),(61,-1205956800,2),(61,-1194037200,1),(61,-1172865600,2),(61,-1162501200,1),(61,-1141329600,2),(61,-1130965200,1),(61,-1109793600,2),(61,-1099429200,1),(61,-1078257600,2),(61,-1067806800,1),(61,-1046635200,2),(61,-1036270800,1),(61,-1015099200,2),(61,-1004734800,1),(61,-983563200,2),(61,-973198800,1),(61,-952027200,2),(61,-941576400,1),(61,-931032000,2),(61,-900882000,1),(61,-890337600,2),(61,-833749200,1),(61,-827265600,2),(61,-752274000,1),(61,-733780800,2),(61,-197326800,1),(61,-190843200,2),(61,-184194000,1),(61,-164491200,2),(61,-152658000,1),(61,-132955200,2),(61,-121122000,1),(61,-101419200,2),(61,-86821200,1),(61,-71092800,2),(61,-54766800,1),(61,-39038400,2),(61,-23317200,1),(61,-7588800,4),(61,128142000,3),(61,136605600,4),(61,596948400,3),(61,605066400,4),(61,624423600,3),(61,636516000,4),(61,656478000,3),(61,667965600,1),(61,687931200,3),(61,699415200,4),(61,719377200,3),(61,731469600,4),(61,938919600,2),(61,952052400,4),(61,1086058800,1),(61,1087704000,4),(61,1198983600,3),(61,1205632800,4),(62,-1567453392,1),(62,-1233432000,2),(62,-1222981200,1),(62,-1205956800,2),(62,-1194037200,1),(62,-1172865600,2),(62,-1162501200,1),(62,-1141329600,2),(62,-1130965200,1),(62,-1109793600,2),(62,-1099429200,1),(62,-1078257600,2),(62,-1067806800,1),(62,-1046635200,2),(62,-1036270800,1),(62,-1015099200,2),(62,-1004734800,1),(62,-983563200,2),(62,-973198800,1),(62,-952027200,2),(62,-941576400,1),(62,-931032000,2),(62,-900882000,1),(62,-890337600,2),(62,-833749200,1),(62,-827265600,2),(62,-752274000,1),(62,-733780800,2),(62,-197326800,1),(62,-190843200,2),(62,-184194000,1),(62,-164491200,2),(62,-152658000,1),(62,-132955200,2),(62,-121122000,1),(62,-101419200,2),(62,-86821200,1),(62,-71092800,2),(62,-54766800,1),(62,-39038400,2),(62,-23317200,1),(62,-7588800,4),(62,128142000,3),(62,136605600,4),(62,596948400,3),(62,605066400,4),(62,624423600,3),(62,636516000,4),(62,656478000,3),(62,667965600,1),(62,687931200,3),(62,699415200,4),(62,719377200,3),(62,731469600,4),(62,938919600,2),(62,952052400,4),(62,1086058800,1),(62,1087704000,4),(62,1198983600,3),(62,1205632800,4),(63,-1567453392,1),(63,-1233432000,2),(63,-1222981200,1),(63,-1205956800,2),(63,-1194037200,1),(63,-1172865600,2),(63,-1162501200,1),(63,-1141329600,2),(63,-1130965200,1),(63,-1109793600,2),(63,-1099429200,1),(63,-1078257600,2),(63,-1067806800,1),(63,-1046635200,2),(63,-1036270800,1),(63,-1015099200,2),(63,-1004734800,1),(63,-983563200,2),(63,-973198800,1),(63,-952027200,2),(63,-941576400,1),(63,-931032000,2),(63,-900882000,1),(63,-890337600,2),(63,-833749200,1),(63,-827265600,2),(63,-752274000,1),(63,-733780800,2),(63,-197326800,1),(63,-190843200,2),(63,-184194000,1),(63,-164491200,2),(63,-152658000,1),(63,-132955200,2),(63,-121122000,1),(63,-101419200,2),(63,-86821200,1),(63,-71092800,2),(63,-54766800,1),(63,-39038400,2),(63,-23317200,1),(63,-7588800,4),(63,128142000,3),(63,136605600,4),(63,596948400,3),(63,605066400,4),(63,624423600,3),(63,636516000,4),(63,656478000,3),(63,667965600,1),(63,687931200,3),(63,699415200,4),(63,719377200,3),(63,731469600,4),(63,938919600,2),(63,952052400,4),(63,1198983600,3),(63,1205632800,4),(63,1224385200,3),(63,1237082400,4),(64,-1567453392,1),(64,-1233432000,2),(64,-1222981200,1),(64,-1205956800,2),(64,-1194037200,1),(64,-1172865600,2),(64,-1162501200,1),(64,-1141329600,2),(64,-1130965200,1),(64,-1109793600,2),(64,-1099429200,1),(64,-1078257600,2),(64,-1067806800,1),(64,-1046635200,2),(64,-1036270800,1),(64,-1015099200,2),(64,-1004734800,1),(64,-983563200,2),(64,-973198800,1),(64,-952027200,2),(64,-941576400,1),(64,-931032000,2),(64,-900882000,1),(64,-890337600,2),(64,-833749200,1),(64,-827265600,2),(64,-752274000,1),(64,-733780800,2),(64,-197326800,1),(64,-190843200,2),(64,-184194000,1),(64,-164491200,2),(64,-152658000,1),(64,-132955200,2),(64,-121122000,1),(64,-101419200,2),(64,-86821200,1),(64,-71092800,2),(64,-54766800,1),(64,-39038400,2),(64,-23317200,1),(64,-7588800,4),(64,128142000,3),(64,136605600,4),(64,596948400,3),(64,605066400,4),(64,624423600,3),(64,636516000,1),(64,657086400,2),(64,669178800,1),(64,686721600,3),(64,699415200,4),(64,719377200,3),(64,731469600,4),(64,938919600,2),(64,952052400,4),(64,1198983600,3),(64,1205632800,4),(65,-1567453392,1),(65,-1233432000,2),(65,-1222981200,1),(65,-1205956800,2),(65,-1194037200,1),(65,-1172865600,2),(65,-1162501200,1),(65,-1141329600,2),(65,-1130965200,1),(65,-1109793600,2),(65,-1099429200,1),(65,-1078257600,2),(65,-1067806800,1),(65,-1046635200,2),(65,-1036270800,1),(65,-1015099200,2),(65,-1004734800,1),(65,-983563200,2),(65,-973198800,1),(65,-952027200,2),(65,-941576400,1),(65,-931032000,2),(65,-900882000,1),(65,-890337600,2),(65,-833749200,1),(65,-827265600,2),(65,-752274000,1),(65,-733780800,2),(65,-197326800,1),(65,-190843200,2),(65,-184194000,1),(65,-164491200,2),(65,-152658000,1),(65,-132955200,2),(65,-121122000,1),(65,-101419200,2),(65,-86821200,1),(65,-71092800,2),(65,-54766800,1),(65,-39038400,2),(65,-23317200,1),(65,-7588800,4),(65,128142000,3),(65,136605600,4),(65,596948400,3),(65,605066400,4),(65,624423600,3),(65,636516000,4),(65,656478000,3),(65,667792800,1),(65,673588800,4),(65,687927600,3),(65,699415200,4),(65,719377200,3),(65,731469600,4),(65,938919600,2),(65,952052400,4),(65,1086058800,1),(65,1087704000,4),(65,1198983600,3),(65,1205632800,4),(66,-1567453392,1),(66,-1233432000,2),(66,-1222981200,1),(66,-1205956800,2),(66,-1194037200,1),(66,-1172865600,2),(66,-1162501200,1),(66,-1141329600,2),(66,-1130965200,1),(66,-1109793600,2),(66,-1099429200,1),(66,-1078257600,2),(66,-1067806800,1),(66,-1046635200,2),(66,-1036270800,1),(66,-1015099200,2),(66,-1004734800,1),(66,-983563200,2),(66,-973198800,1),(66,-952027200,2),(66,-941576400,1),(66,-931032000,2),(66,-900882000,1),(66,-890337600,2),(66,-833749200,1),(66,-827265600,2),(66,-752274000,1),(66,-733780800,2),(66,-197326800,1),(66,-190843200,2),(66,-184194000,1),(66,-164491200,2),(66,-152658000,1),(66,-132955200,2),(66,-121122000,1),(66,-101419200,2),(66,-86821200,1),(66,-71092800,2),(66,-54766800,1),(66,-39038400,2),(66,-23317200,1),(66,-7588800,4),(66,128142000,3),(66,136605600,4),(66,596948400,3),(66,605066400,4),(66,624423600,3),(66,636516000,1),(66,655963200,2),(66,667796400,1),(66,687499200,2),(66,699418800,1),(66,719380800,3),(66,731469600,4),(66,938919600,2),(66,952052400,4),(66,1085281200,1),(66,1096171200,4),(66,1198983600,3),(66,1205632800,4),(67,-1567453392,1),(67,-1233432000,2),(67,-1222981200,1),(67,-1205956800,2),(67,-1194037200,1),(67,-1172865600,2),(67,-1162501200,1),(67,-1141329600,2),(67,-1130965200,1),(67,-1109793600,2),(67,-1099429200,1),(67,-1078257600,2),(67,-1067806800,1),(67,-1046635200,2),(67,-1036270800,1),(67,-1015099200,2),(67,-1004734800,1),(67,-983563200,2),(67,-973198800,1),(67,-952027200,2),(67,-941576400,1),(67,-931032000,2),(67,-900882000,1),(67,-890337600,2),(67,-833749200,1),(67,-827265600,2),(67,-752274000,1),(67,-733780800,2),(67,-197326800,1),(67,-190843200,2),(67,-184194000,1),(67,-164491200,2),(67,-152658000,1),(67,-132955200,2),(67,-121122000,1),(67,-101419200,2),(67,-86821200,1),(67,-71092800,2),(67,-54766800,1),(67,-39038400,2),(67,-23317200,1),(67,-7588800,4),(67,128142000,3),(67,136605600,4),(67,596948400,3),(67,605066400,4),(67,624423600,3),(67,636516000,4),(67,656478000,3),(67,667965600,4),(67,687927600,3),(67,699415200,4),(67,719377200,3),(67,731469600,4),(67,938919600,2),(67,952052400,4),(67,1086058800,1),(67,1087704000,4),(67,1198983600,3),(67,1205632800,4),(68,-1567453392,1),(68,-1233432000,2),(68,-1222981200,1),(68,-1205956800,2),(68,-1194037200,1),(68,-1172865600,2),(68,-1162501200,1),(68,-1141329600,2),(68,-1130965200,1),(68,-1109793600,2),(68,-1099429200,1),(68,-1078257600,2),(68,-1067806800,1),(68,-1046635200,2),(68,-1036270800,1),(68,-1015099200,2),(68,-1004734800,1),(68,-983563200,2),(68,-973198800,1),(68,-952027200,2),(68,-941576400,1),(68,-931032000,2),(68,-900882000,1),(68,-890337600,2),(68,-833749200,1),(68,-827265600,2),(68,-752274000,1),(68,-733780800,2),(68,-197326800,1),(68,-190843200,2),(68,-184194000,1),(68,-164491200,2),(68,-152658000,1),(68,-132955200,2),(68,-121122000,1),(68,-101419200,2),(68,-86821200,1),(68,-71092800,2),(68,-54766800,1),(68,-39038400,2),(68,-23317200,1),(68,-7588800,4),(68,128142000,3),(68,136605600,4),(68,596948400,3),(68,605066400,4),(68,624423600,3),(68,636516000,4),(68,656478000,3),(68,667965600,1),(68,687931200,3),(68,699415200,4),(68,719377200,3),(68,731469600,4),(68,938919600,2),(68,952052400,4),(68,1198983600,3),(68,1205632800,4),(69,-1567453392,1),(69,-1233432000,2),(69,-1222981200,1),(69,-1205956800,2),(69,-1194037200,1),(69,-1172865600,2),(69,-1162501200,1),(69,-1141329600,2),(69,-1130965200,1),(69,-1109793600,2),(69,-1099429200,1),(69,-1078257600,2),(69,-1067806800,1),(69,-1046635200,2),(69,-1036270800,1),(69,-1015099200,2),(69,-1004734800,1),(69,-983563200,2),(69,-973198800,1),(69,-952027200,2),(69,-941576400,1),(69,-931032000,2),(69,-900882000,1),(69,-890337600,2),(69,-833749200,1),(69,-827265600,2),(69,-752274000,1),(69,-733780800,2),(69,-197326800,1),(69,-190843200,2),(69,-184194000,1),(69,-164491200,2),(69,-152658000,1),(69,-132955200,2),(69,-121122000,1),(69,-101419200,2),(69,-86821200,1),(69,-71092800,2),(69,-54766800,1),(69,-39038400,2),(69,-23317200,1),(69,-7588800,4),(69,128142000,3),(69,136605600,4),(69,596948400,3),(69,605066400,4),(69,624423600,3),(69,636516000,4),(69,656478000,3),(69,667792800,1),(69,673588800,4),(69,687927600,3),(69,699415200,4),(69,719377200,3),(69,731469600,4),(69,938919600,2),(69,952052400,4),(69,1085972400,1),(69,1090728000,4),(69,1198983600,3),(69,1205632800,4),(70,-1567453392,1),(70,-1233432000,2),(70,-1222981200,1),(70,-1205956800,2),(70,-1194037200,1),(70,-1172865600,2),(70,-1162501200,1),(70,-1141329600,2),(70,-1130965200,1),(70,-1109793600,2),(70,-1099429200,1),(70,-1078257600,2),(70,-1067806800,1),(70,-1046635200,2),(70,-1036270800,1),(70,-1015099200,2),(70,-1004734800,1),(70,-983563200,2),(70,-973198800,1),(70,-952027200,2),(70,-941576400,1),(70,-931032000,2),(70,-900882000,1),(70,-890337600,2),(70,-833749200,1),(70,-827265600,2),(70,-752274000,1),(70,-733780800,2),(70,-197326800,1),(70,-190843200,2),(70,-184194000,1),(70,-164491200,2),(70,-152658000,1),(70,-132955200,2),(70,-121122000,1),(70,-101419200,2),(70,-86821200,1),(70,-71092800,2),(70,-54766800,1),(70,-39038400,2),(70,-23317200,1),(70,-7588800,4),(70,128142000,3),(70,136605600,4),(70,596948400,3),(70,605066400,4),(70,624423600,3),(70,637380000,1),(70,655963200,2),(70,667796400,1),(70,675748800,4),(70,938919600,2),(70,952052400,4),(70,1085972400,1),(70,1090728000,4),(70,1198983600,3),(70,1200880800,2),(70,1205031600,1),(70,1223784000,2),(70,1236481200,1),(70,1255233600,4),(71,-1567453392,1),(71,-1233432000,2),(71,-1222981200,1),(71,-1205956800,2),(71,-1194037200,1),(71,-1172865600,2),(71,-1162501200,1),(71,-1141329600,2),(71,-1130965200,1),(71,-1109793600,2),(71,-1099429200,1),(71,-1078257600,2),(71,-1067806800,1),(71,-1046635200,2),(71,-1036270800,1),(71,-1015099200,2),(71,-1004734800,1),(71,-983563200,2),(71,-973198800,1),(71,-952027200,2),(71,-941576400,1),(71,-931032000,2),(71,-900882000,1),(71,-890337600,2),(71,-833749200,1),(71,-827265600,2),(71,-752274000,1),(71,-733780800,2),(71,-197326800,1),(71,-190843200,2),(71,-184194000,1),(71,-164491200,2),(71,-152658000,1),(71,-132955200,2),(71,-121122000,1),(71,-101419200,2),(71,-86821200,1),(71,-71092800,2),(71,-54766800,1),(71,-39038400,2),(71,-23317200,1),(71,-7588800,4),(71,128142000,3),(71,136605600,4),(71,596948400,3),(71,605066400,4),(71,624423600,3),(71,636516000,4),(71,656478000,3),(71,667965600,1),(71,687931200,3),(71,699415200,4),(71,719377200,3),(71,731469600,4),(71,938919600,2),(71,952052400,4),(71,1086058800,1),(71,1087099200,4),(71,1198983600,3),(71,1205632800,4),(71,1224385200,3),(71,1237082400,4),(72,-1567453392,1),(72,-1233432000,2),(72,-1222981200,1),(72,-1205956800,2),(72,-1194037200,1),(72,-1172865600,2),(72,-1162501200,1),(72,-1141329600,2),(72,-1130965200,1),(72,-1109793600,2),(72,-1099429200,1),(72,-1078257600,2),(72,-1067806800,1),(72,-1046635200,2),(72,-1036270800,1),(72,-1015099200,2),(72,-1004734800,1),(72,-983563200,2),(72,-973198800,1),(72,-952027200,2),(72,-941576400,1),(72,-931032000,2),(72,-900882000,1),(72,-890337600,2),(72,-833749200,1),(72,-827265600,2),(72,-752274000,1),(72,-733780800,2),(72,-197326800,1),(72,-190843200,2),(72,-184194000,1),(72,-164491200,2),(72,-152658000,1),(72,-132955200,2),(72,-121122000,1),(72,-101419200,2),(72,-86821200,1),(72,-71092800,2),(72,-54766800,1),(72,-39038400,2),(72,-23317200,1),(72,-7588800,4),(72,128142000,3),(72,136605600,4),(72,596948400,3),(72,605066400,4),(72,624423600,3),(72,636516000,4),(72,656478000,3),(72,667965600,4),(72,687927600,3),(72,699415200,4),(72,719377200,3),(72,731469600,4),(72,938919600,2),(72,952052400,4),(72,1085886000,1),(72,1087704000,4),(72,1198983600,3),(72,1205632800,4),(73,-1826738653,1),(73,-157750200,2),(74,-1206389360,1),(74,86760000,2),(74,134017200,1),(74,181368000,3),(74,194497200,1),(74,212990400,3),(74,226033200,1),(74,244526400,3),(74,257569200,1),(74,276062400,3),(74,291783600,1),(74,307598400,3),(74,323406000,1),(74,339220800,3),(74,354942000,1),(74,370756800,3),(74,386478000,1),(74,402292800,3),(74,418014000,1),(74,433828800,3),(74,449636400,1),(74,465451200,3),(74,481172400,1),(74,496987200,3),(74,512708400,1),(74,528523200,3),(74,544244400,1),(74,560059200,3),(74,575866800,1),(74,591681600,3),(74,607402800,1),(74,625032000,3),(74,638938800,1),(74,654753600,3),(74,670474800,1),(74,686721600,3),(74,699418800,1),(74,718257600,3),(74,733546800,1),(74,749448000,3),(74,762318000,1),(74,780984000,3),(74,793767600,1),(74,812520000,3),(74,825649200,1),(74,844574400,3),(74,856666800,1),(74,876024000,3),(74,888721200,1),(74,907473600,3),(74,920775600,1),(74,938923200,3),(74,952225200,1),(74,970372800,3),(74,983674800,1),(74,1002427200,3),(74,1018148400,1),(74,1030852800,3),(74,1049598000,1),(74,1062907200,3),(74,1081047600,1),(74,1097985600,3),(74,1110682800,1),(74,1129435200,3),(74,1142132400,1),(74,1160884800,3),(74,1173582000,1),(74,1192939200,3),(74,1205031600,1),(74,1224388800,3),(74,1236481200,1),(74,1255838400,3),(74,1270954800,1),(74,1286078400,3),(74,1302404400,1),(74,1317528000,3),(74,1333854000,1),(74,1349582400,3),(74,1364094000,1),(74,1381032000,3),(74,1395543600,1),(74,1412481600,3),(74,1426993200,1),(74,1443931200,3),(74,1459047600,1),(74,1475380800,3),(74,1490497200,1),(74,1506830400,3),(74,1521946800,1),(74,1538884800,3),(74,1553396400,1),(74,1570334400,3),(74,1584846000,1),(74,1601784000,3),(74,1616900400,1),(74,1633233600,3),(74,1648350000,1),(74,1664683200,3),(74,1679799600,1),(74,1696132800,3),(74,1711249200,1),(74,1728187200,3),(74,1742698800,1),(74,1759636800,3),(74,1774148400,1),(74,1791086400,3),(74,1806202800,1),(74,1822536000,3),(74,1837652400,1),(74,1853985600,3),(74,1869102000,1),(74,1886040000,3),(74,1900551600,1),(74,1917489600,3),(74,1932001200,1),(74,1948939200,3),(74,1964055600,1),(74,1980388800,3),(74,1995505200,1),(74,2011838400,3),(74,2026954800,1),(74,2043288000,3),(74,2058404400,1),(74,2075342400,3),(74,2089854000,1),(74,2106792000,3),(74,2121303600,1),(74,2138241600,3),(75,-1632067200,0),(75,-1615136400,1),(75,-923248800,0),(75,-880214400,2),(75,-769395600,3),(75,-765392400,4),(76,-880196400,1),(76,-769395600,2),(76,-765374400,0),(76,-86878800,3),(76,-21466800,4),(76,-5745600,3),(76,9982800,4),(76,25704000,3),(76,41432400,4),(76,57758400,3),(76,73486800,4),(76,89208000,3),(76,104936400,4),(76,120657600,3),(76,126709200,4),(76,152107200,3),(76,162392400,4),(76,183556800,3),(76,199285200,4),(76,215611200,3),(76,230734800,4),(76,247060800,3),(76,262789200,4),(76,278510400,3),(76,294238800,4),(76,309960000,3),(76,325688400,4),(76,341409600,3),(76,357138000,4),(76,372859200,3),(76,388587600,4),(76,404913600,3),(76,420037200,4),(76,436363200,5),(76,439034400,7),(76,452088000,6),(76,467809200,7),(76,483537600,6),(76,499258800,7),(76,514987200,6),(76,530708400,7),(76,544622400,6),(76,562158000,7),(76,576072000,6),(76,594212400,7),(76,607521600,6),(76,625662000,7),(76,638971200,6),(76,657111600,7),(76,671025600,6),(76,688561200,7),(76,702475200,6),(76,720010800,7),(76,733924800,6),(76,752065200,7),(76,765374400,6),(76,783514800,7),(76,796824000,6),(76,814964400,7),(76,828878400,6),(76,846414000,7),(76,860328000,6),(76,877863600,7),(76,891777600,6),(76,909313200,7),(76,923227200,6),(76,941367600,7),(76,954676800,6),(76,972817200,7),(76,986126400,6),(76,1004266800,7),(76,1018180800,6),(76,1035716400,7),(76,1049630400,6),(76,1067166000,7),(76,1081080000,6),(76,1099220400,7),(76,1112529600,6),(76,1130670000,7),(76,1143979200,6),(76,1162119600,7),(76,1173614400,6),(76,1194174000,7),(76,1205064000,6),(76,1225623600,7),(76,1236513600,6),(76,1257073200,7),(76,1268568000,6),(76,1289127600,7),(76,1300017600,6),(76,1320577200,7),(76,1331467200,6),(76,1352026800,7),(76,1362916800,6),(76,1383476400,7),(76,1394366400,6),(76,1414926000,7),(76,1425816000,6),(76,1446375600,7),(76,1457870400,6),(76,1478430000,7),(76,1489320000,6),(76,1509879600,7),(76,1520769600,6),(76,1541329200,7),(76,1552219200,6),(76,1572778800,7),(76,1583668800,6),(76,1604228400,7),(76,1615723200,6),(76,1636282800,7),(76,1647172800,6),(76,1667732400,7),(76,1678622400,6),(76,1699182000,7),(76,1710072000,6),(76,1730631600,7),(76,1741521600,6),(76,1762081200,7),(76,1772971200,6),(76,1793530800,7),(76,1805025600,6),(76,1825585200,7),(76,1836475200,6),(76,1857034800,7),(76,1867924800,6),(76,1888484400,7),(76,1899374400,6),(76,1919934000,7),(76,1930824000,6),(76,1951383600,7),(76,1962878400,6),(76,1983438000,7),(76,1994328000,6),(76,2014887600,7),(76,2025777600,6),(76,2046337200,7),(76,2057227200,6),(76,2077786800,7),(76,2088676800,6),(76,2109236400,7),(76,2120126400,6),(76,2140686000,7),(77,-1767216356,2),(77,-1206957600,1),(77,-1191362400,2),(77,-1175374800,1),(77,-1159826400,2),(77,-633819600,1),(77,-622069200,2),(77,-602283600,1),(77,-591832800,2),(77,-570747600,1),(77,-560210400,2),(77,-539125200,1),(77,-531352800,2),(77,-191365200,1),(77,-184197600,2),(77,-155163600,1),(77,-150069600,2),(77,-128898000,1),(77,-121125600,2),(77,-99954000,1),(77,-89589600,2),(77,-68418000,1),(77,-57967200,2),(77,499748400,1),(77,511236000,2),(77,530593200,1),(77,540266400,2),(77,562129200,1),(77,571197600,2),(77,592974000,1),(77,602042400,2),(77,624423600,1),(77,634701600,2),(77,656478000,1),(77,666756000,2),(77,687927600,1),(77,697600800,2),(77,719982000,1),(77,728445600,2),(77,750826800,1),(77,761709600,2),(77,782276400,1),(77,793159200,2),(77,813726000,1),(77,824004000,2),(77,844570800,1),(77,856058400,2),(77,876106800,1),(77,888717600,2),(77,908074800,1),(77,919562400,2),(77,938919600,1),(77,951616800,2),(77,970974000,1),(77,982461600,2),(77,1003028400,1),(77,1013911200,2),(77,1036292400,1),(77,1045360800,2),(77,1318734000,1),(77,1330221600,2),(78,-1514739600,1),(78,-1343066400,2),(78,-1234807200,1),(78,-1220292000,2),(78,-1207159200,1),(78,-1191344400,2),(78,-873828000,1),(78,-661539600,3),(78,28800,1),(78,828867600,4),(78,846403200,1),(78,860317200,4),(78,877852800,1),(78,891766800,4),(78,909302400,1),(78,923216400,4),(78,941356800,1),(78,954666000,4),(78,972806400,1),(78,989139600,4),(78,1001836800,1),(78,1018170000,4),(78,1035705600,1),(78,1049619600,4),(78,1067155200,1),(78,1081069200,4),(78,1099209600,1),(78,1112518800,4),(78,1130659200,1),(78,1143968400,4),(78,1162108800,1),(78,1175418000,4),(78,1193558400,1),(78,1207472400,4),(78,1225008000,1),(78,1238922000,4),(78,1256457600,1),(78,1270371600,5),(78,1288508400,2),(78,1301817600,5),(78,1319958000,2),(78,1333267200,5),(78,1351407600,2),(78,1365321600,5),(78,1382857200,2),(78,1396771200,5),(78,1414306800,2),(78,1428220800,5),(78,1445756400,2),(78,1459670400,5),(78,1477810800,2),(78,1491120000,5),(78,1509260400,2),(78,1522569600,5),(78,1540710000,2),(78,1554624000,5),(78,1572159600,2),(78,1586073600,5),(78,1603609200,2),(78,1617523200,5),(78,1635663600,2),(78,1648972800,5),(78,1667113200,2),(78,1680422400,5),(78,1698562800,2),(78,1712476800,5),(78,1730012400,2),(78,1743926400,5),(78,1761462000,2),(78,1775376000,5),(78,1792911600,2),(78,1806825600,5),(78,1824966000,2),(78,1838275200,5),(78,1856415600,2),(78,1869724800,5),(78,1887865200,2),(78,1901779200,5),(78,1919314800,2),(78,1933228800,5),(78,1950764400,2),(78,1964678400,5),(78,1982818800,2),(78,1996128000,5),(78,2014268400,2),(78,2027577600,5),(78,2045718000,2),(78,2059027200,5),(78,2077167600,2),(78,2091081600,5),(78,2108617200,2),(78,2122531200,5),(78,2140066800,2),(79,-1451678491,1),(79,-1199217691,3),(79,234943200,2),(79,244616400,3),(79,261554400,2),(79,276066000,3),(79,293004000,2),(79,307515600,3),(79,325058400,2),(79,338706000,3),(80,-1767213964,2),(80,-1206957600,1),(80,-1191362400,2),(80,-1175374800,1),(80,-1159826400,2),(80,-633819600,1),(80,-622069200,2),(80,-602283600,1),(80,-591832800,2),(80,-570747600,1),(80,-560210400,2),(80,-539125200,1),(80,-531352800,2),(80,-191365200,1),(80,-184197600,2),(80,-155163600,1),(80,-150069600,2),(80,-128898000,1),(80,-121125600,2),(80,-99954000,1),(80,-89589600,2),(80,-68418000,1),(80,-57967200,2),(80,499748400,1),(80,511236000,2),(80,530593200,1),(80,540266400,2),(80,562129200,1),(80,571197600,2),(81,-1822500432,2),(81,-1616954400,1),(81,-1606069800,2),(81,-1585504800,1),(81,-1574015400,2),(81,-1554055200,1),(81,-1542565800,2),(81,-1522605600,1),(81,-1511116200,2),(81,-1490551200,1),(81,-1479666600,2),(81,-1459101600,1),(81,-1448217000,2),(81,-1427652000,1),(81,-1416162600,2),(81,-1396202400,1),(81,-1384713000,2),(81,-1364752800,1),(81,-1353263400,2),(81,-1333303200,1),(81,-1321813800,2),(81,-1301248800,1),(81,-1290364200,2),(81,-1269799200,1),(81,-1258914600,2),(81,-1238349600,1),(81,-1226860200,2),(81,-1206900000,1),(81,-1195410600,2),(81,-1175450400,1),(81,-1163961000,2),(81,-1143396000,1),(81,-1132511400,2),(81,-1111946400,1),(81,-1101061800,2),(81,-1080496800,1),(81,-1069612200,2),(81,-1049047200,1),(81,-1037557800,2),(81,-1017597600,1),(81,-1006108200,2),(81,-986148000,1),(81,-974658600,2),(81,-954093600,1),(81,-943209000,2),(81,-922644000,1),(81,-911759400,2),(81,-891194400,1),(81,-879705000,2),(81,-859744800,1),(81,-848255400,2),(81,123919200,3),(81,129618000,2),(81,409039200,3),(81,413874000,2),(82,-1632074400,0),(82,-1615143600,1),(82,-880221600,2),(82,-769395600,3),(82,-765399600,1),(83,-1767211040,2),(83,-1206954000,1),(83,-1191358800,2),(83,-1175371200,1),(83,-1159822800,2),(83,-633816000,1),(83,-622065600,2),(83,-602280000,1),(83,-591829200,2),(83,-570744000,1),(83,-560206800,2),(83,-539121600,1),(83,-531349200,2),(83,-191361600,1),(83,-184194000,2),(83,-155160000,1),(83,-150066000,2),(83,-128894400,1),(83,-121122000,2),(83,-99950400,1),(83,-89586000,2),(83,-68414400,1),(83,-57963600,2),(83,499752000,1),(83,511239600,2),(83,530596800,1),(83,540270000,2),(83,562132800,1),(83,571201200,2),(83,938923200,1),(83,951620400,2),(83,970977600,1),(83,971578800,2),(84,-1739041424,2),(84,704869200,1),(84,733896000,2),(85,-1633269600,0),(85,-1615129200,1),(85,-1601820000,0),(85,-1583679600,1),(85,-1471788000,4),(85,-880210800,2),(85,-769395600,3),(85,-765388800,4),(85,-84380400,5),(85,-68659200,4),(85,-52930800,5),(85,-37209600,4),(85,-21481200,5),(85,-5760000,4),(85,9968400,5),(85,25689600,4),(85,41418000,5),(85,57744000,4),(85,73472400,5),(85,89193600,4),(85,104922000,5),(85,120643200,4),(85,129114000,5),(85,152092800,4),(85,162378000,5),(85,183542400,4),(85,199270800,5),(85,215596800,4),(85,230720400,5),(85,247046400,4),(85,262774800,5),(85,278496000,4),(85,294224400,5),(85,309945600,4),(85,325674000,5),(85,341395200,4),(85,357123600,5),(85,372844800,4),(85,388573200,5),(85,404899200,4),(85,420022800,5),(85,436348800,4),(85,452077200,5),(85,467798400,4),(85,483526800,5),(85,499248000,4),(85,514976400,5),(85,530697600,4),(85,544611600,5),(85,562147200,4),(85,576061200,5),(85,594201600,4),(85,607510800,5),(85,625651200,4),(85,638960400,5),(85,657100800,4),(85,671014800,5),(85,688550400,4),(85,702464400,5),(85,720000000,4),(85,733914000,5),(85,752054400,4),(85,765363600,5),(85,783504000,4),(85,796813200,5),(85,814953600,4),(85,828867600,5),(85,846403200,4),(85,860317200,5),(85,877852800,4),(85,891766800,5),(85,909302400,4),(85,923216400,5),(85,941356800,4),(85,954666000,5),(85,972806400,4),(85,986115600,5),(85,1004256000,4),(85,1018170000,5),(85,1035705600,4),(85,1049619600,5),(85,1067155200,4),(85,1081069200,5),(85,1099209600,4),(85,1112518800,5),(85,1130659200,4),(85,1143968400,5),(85,1162108800,4),(85,1173603600,5),(85,1194163200,4),(85,1205053200,5),(85,1225612800,4),(85,1236502800,5),(85,1257062400,4),(85,1268557200,5),(85,1289116800,4),(85,1300006800,5),(85,1320566400,4),(85,1331456400,5),(85,1352016000,4),(85,1362906000,5),(85,1383465600,4),(85,1394355600,5),(85,1414915200,4),(85,1425805200,5),(85,1446364800,4),(85,1457859600,5),(85,1478419200,4),(85,1489309200,5),(85,1509868800,4),(85,1520758800,5),(85,1541318400,4),(85,1552208400,5),(85,1572768000,4),(85,1583658000,5),(85,1604217600,4),(85,1615712400,5),(85,1636272000,4),(85,1647162000,5),(85,1667721600,4),(85,1678611600,5),(85,1699171200,4),(85,1710061200,5),(85,1730620800,4),(85,1741510800,5),(85,1762070400,4),(85,1772960400,5),(85,1793520000,4),(85,1805014800,5),(85,1825574400,4),(85,1836464400,5),(85,1857024000,4),(85,1867914000,5),(85,1888473600,4),(85,1899363600,5),(85,1919923200,4),(85,1930813200,5),(85,1951372800,4),(85,1962867600,5),(85,1983427200,4),(85,1994317200,5),(85,2014876800,4),(85,2025766800,5),(85,2046326400,4),(85,2057216400,5),(85,2077776000,4),(85,2088666000,5),(85,2109225600,4),(85,2120115600,5),(85,2140675200,4),(86,-1567453392,1),(86,-1233432000,2),(86,-1222981200,1),(86,-1205956800,2),(86,-1194037200,1),(86,-1172865600,2),(86,-1162501200,1),(86,-1141329600,2),(86,-1130965200,1),(86,-1109793600,2),(86,-1099429200,1),(86,-1078257600,2),(86,-1067806800,1),(86,-1046635200,2),(86,-1036270800,1),(86,-1015099200,2),(86,-1004734800,1),(86,-983563200,2),(86,-973198800,1),(86,-952027200,2),(86,-941576400,1),(86,-931032000,2),(86,-900882000,1),(86,-890337600,2),(86,-833749200,1),(86,-827265600,2),(86,-752274000,1),(86,-733780800,2),(86,-197326800,1),(86,-190843200,2),(86,-184194000,1),(86,-164491200,2),(86,-152658000,1),(86,-132955200,2),(86,-121122000,1),(86,-101419200,2),(86,-86821200,1),(86,-71092800,2),(86,-54766800,1),(86,-39038400,2),(86,-23317200,1),(86,-7588800,4),(86,128142000,3),(86,136605600,4),(86,596948400,3),(86,605066400,4),(86,624423600,3),(86,636516000,4),(86,656478000,3),(86,667965600,4),(86,687927600,3),(86,699415200,4),(86,719377200,3),(86,731469600,4),(86,938919600,2),(86,952052400,4),(86,1198983600,3),(86,1205632800,4),(86,1224385200,3),(86,1237082400,4),(87,-1577923200,3),(87,-880210800,1),(87,-769395600,2),(87,-765388800,3),(87,-147891600,4),(87,-131562000,3),(87,325674000,5),(87,341395200,3),(87,357123600,5),(87,372844800,3),(87,388573200,5),(87,404899200,3),(87,420022800,5),(87,436348800,3),(87,452077200,5),(87,467798400,3),(87,483526800,5),(87,499248000,3),(87,514976400,5),(87,530697600,3),(87,544611600,5),(87,562147200,3),(87,576061200,5),(87,594201600,3),(87,607510800,5),(87,625651200,3),(87,638960400,5),(87,657100800,3),(87,671014800,5),(87,688550400,3),(87,702464400,5),(87,720000000,3),(87,733914000,5),(87,752054400,3),(87,765363600,5),(87,783504000,3),(87,796813200,5),(87,814953600,3),(87,828867600,5),(87,846403200,3),(87,860317200,5),(87,877852800,3),(87,891766800,5),(87,909302400,3),(87,923216400,5),(87,941356800,7),(87,954662400,6),(87,972802800,8),(87,973400400,7),(87,986115600,5),(87,1004256000,3),(87,1018170000,5),(87,1035705600,3),(87,1049619600,5),(87,1067155200,3),(87,1081069200,5),(87,1099209600,3),(87,1112518800,5),(87,1130659200,3),(87,1143968400,5),(87,1162108800,3),(87,1173603600,5),(87,1194163200,3),(87,1205053200,5),(87,1225612800,3),(87,1236502800,5),(87,1257062400,3),(87,1268557200,5),(87,1289116800,3),(87,1300006800,5),(87,1320566400,3),(87,1331456400,5),(87,1352016000,3),(87,1362906000,5),(87,1383465600,3),(87,1394355600,5),(87,1414915200,3),(87,1425805200,5),(87,1446364800,3),(87,1457859600,5),(87,1478419200,3),(87,1489309200,5),(87,1509868800,3),(87,1520758800,5),(87,1541318400,3),(87,1552208400,5),(87,1572768000,3),(87,1583658000,5),(87,1604217600,3),(87,1615712400,5),(87,1636272000,3),(87,1647162000,5),(87,1667721600,3),(87,1678611600,5),(87,1699171200,3),(87,1710061200,5),(87,1730620800,3),(87,1741510800,5),(87,1762070400,3),(87,1772960400,5),(87,1793520000,3),(87,1805014800,5),(87,1825574400,3),(87,1836464400,5),(87,1857024000,3),(87,1867914000,5),(87,1888473600,3),(87,1899363600,5),(87,1919923200,3),(87,1930813200,5),(87,1951372800,3),(87,1962867600,5),(87,1983427200,3),(87,1994317200,5),(87,2014876800,3),(87,2025766800,5),(87,2046326400,3),(87,2057216400,5),(87,2077776000,3),(87,2088666000,5),(87,2109225600,3),(87,2120115600,5),(87,2140675200,3),(88,-1767212492,2),(88,-1206954000,1),(88,-1191358800,2),(88,-1175371200,1),(88,-1159822800,2),(88,-633816000,1),(88,-622065600,2),(88,-602280000,1),(88,-591829200,2),(88,-570744000,1),(88,-560206800,2),(88,-539121600,1),(88,-531349200,2),(88,-191361600,1),(88,-184194000,2),(88,-155160000,1),(88,-150066000,2),(88,-128894400,1),(88,-121122000,2),(88,-99950400,1),(88,-89586000,2),(88,-68414400,1),(88,-57963600,2),(88,499752000,1),(88,511239600,2),(88,530596800,1),(88,540270000,2),(88,562132800,1),(88,571201200,2),(88,592977600,1),(88,602046000,2),(88,624427200,1),(88,634705200,2),(88,656481600,1),(88,666759600,2),(88,687931200,1),(88,697604400,2),(88,719985600,1),(88,728449200,2),(88,750830400,1),(88,761713200,2),(88,782280000,1),(88,793162800,2),(88,813729600,1),(88,824007600,2),(88,844574400,1),(88,856062000,2),(88,876110400,1),(88,888721200,2),(88,908078400,1),(88,919566000,2),(88,938923200,1),(88,951620400,2),(88,970977600,1),(88,982465200,2),(88,1003032000,1),(88,1013914800,2),(88,1036296000,1),(88,1045364400,2),(88,1066536000,1),(88,1076814000,2),(88,1099368000,1),(88,1108868400,2),(88,1129435200,1),(88,1140318000,2),(88,1162699200,1),(88,1172372400,2),(88,1192334400,1),(88,1203217200,2),(88,1224388800,1),(88,1234666800,2),(88,1255838400,1),(88,1266721200,2),(88,1287288000,1),(88,1298170800,2),(88,1318737600,1),(88,1330225200,2),(88,1350792000,1),(88,1361070000,2),(88,1382241600,1),(88,1392519600,2),(88,1413691200,1),(88,1424574000,2),(88,1445140800,1),(88,1456023600,2),(88,1476590400,1),(88,1487473200,2),(88,1508040000,1),(88,1518922800,2),(88,1541304000,1),(88,1550372400,2),(88,1572753600,1),(88,1581822000,2),(88,1604203200,1),(88,1613876400,2),(88,1636257600,1),(88,1645326000,2),(88,1667707200,1),(88,1677380400,2),(88,1699156800,1),(88,1708225200,2),(88,1730606400,1),(88,1739674800,2),(88,1762056000,1),(88,1771729200,2),(88,1793505600,1),(88,1803178800,2),(88,1825560000,1),(88,1834628400,2),(88,1857009600,1),(88,1866078000,2),(88,1888459200,1),(88,1897527600,2),(88,1919908800,1),(88,1928977200,2),(88,1951358400,1),(88,1960426800,2),(88,1983412800,1),(88,1992481200,2),(88,2014862400,1),(88,2024535600,2),(88,2046312000,1),(88,2055380400,2),(88,2077761600,1),(88,2086830000,2),(88,2109211200,1),(88,2118884400,2),(88,2140660800,1),(89,-1514743200,1),(89,377935200,3),(89,828860400,2),(89,846396000,3),(89,860310000,2),(89,877845600,3),(89,891759600,2),(89,902037600,4),(89,909298800,1),(89,923212800,4),(89,941353200,1),(89,954662400,4),(89,972802800,1),(89,989136000,4),(89,1001833200,1),(89,1018166400,4),(89,1035702000,1),(89,1049616000,4),(89,1067151600,1),(89,1081065600,4),(89,1099206000,1),(89,1112515200,4),(89,1130655600,1),(89,1143964800,4),(89,1162105200,1),(89,1175414400,4),(89,1193554800,1),(89,1207468800,4),(89,1225004400,1),(89,1238918400,4),(89,1256454000,1),(89,1270368000,4),(89,1288508400,1),(89,1301817600,4),(89,1319958000,1),(89,1333267200,4),(89,1351407600,1),(89,1365321600,4),(89,1382857200,1),(89,1396771200,4),(89,1414306800,1),(89,1422777600,3),(90,-1826739140,1),(90,-157750200,2),(90,1197183600,1),(90,1462086000,2),(91,-1567453392,1),(91,-1233432000,2),(91,-1222981200,1),(91,-1205956800,2),(91,-1194037200,1),(91,-1172865600,2),(91,-1162501200,1),(91,-1141329600,2),(91,-1130965200,1),(91,-1109793600,2),(91,-1099429200,1),(91,-1078257600,2),(91,-1067806800,1),(91,-1046635200,2),(91,-1036270800,1),(91,-1015099200,2),(91,-1004734800,1),(91,-983563200,2),(91,-973198800,1),(91,-952027200,2),(91,-941576400,1),(91,-931032000,2),(91,-900882000,1),(91,-890337600,2),(91,-833749200,1),(91,-827265600,2),(91,-752274000,1),(91,-733780800,2),(91,-197326800,1),(91,-190843200,2),(91,-184194000,1),(91,-164491200,2),(91,-152658000,1),(91,-132955200,2),(91,-121122000,1),(91,-101419200,2),(91,-86821200,1),(91,-71092800,2),(91,-54766800,1),(91,-39038400,2),(91,-23317200,1),(91,-7588800,4),(91,128142000,3),(91,136605600,4),(91,596948400,3),(91,605066400,4),(91,624423600,3),(91,636516000,4),(91,656478000,3),(91,667965600,1),(91,687931200,3),(91,699415200,4),(91,719377200,3),(91,731469600,4),(91,938919600,2),(91,952052400,4),(91,1086058800,1),(91,1087704000,4),(91,1198983600,3),(91,1205632800,4),(92,-1846269040,1),(92,-71092800,2),(93,-1946918424,1),(94,-1633276800,0),(94,-1615136400,1),(94,-1601827200,0),(94,-1583686800,1),(94,-1563724800,0),(94,-1551632400,1),(94,-1538928000,0),(94,-1520182800,1),(94,-1504454400,0),(94,-1491757200,1),(94,-1473004800,0),(94,-1459702800,1),(94,-1441555200,0),(94,-1428253200,1),(94,-1410105600,0),(94,-1396803600,1),(94,-1378656000,0),(94,-1365354000,1),(94,-1347206400,0),(94,-1333904400,1),(94,-1315152000,0),(94,-1301850000,1),(94,-1283702400,0),(94,-1270400400,1),(94,-1252252800,0),(94,-1238950800,1),(94,-1220803200,0),(94,-1207501200,1),(94,-1189353600,0),(94,-1176051600,1),(94,-1157299200,0),(94,-1144602000,1),(94,-1125849600,0),(94,-1112547600,1),(94,-1094400000,0),(94,-1081098000,1),(94,-1067788800,2),(94,-1045414800,1),(94,-1031500800,0),(94,-1018198800,1),(94,-1000051200,0),(94,-986749200,1),(94,-967996800,0),(94,-955299600,1),(94,-936547200,0),(94,-923245200,1),(94,-905097600,0),(94,-891795600,1),(94,-880214400,3),(94,-769395600,4),(94,-765392400,1),(94,-747244800,0),(94,-733942800,1),(94,-715795200,0),(94,-702493200,1),(94,-684345600,0),(94,-671043600,1),(94,-652896000,0),(94,-639594000,1),(94,-620841600,0),(94,-608144400,1),(94,-589392000,0),(94,-576090000,1),(94,-557942400,0),(94,-544640400,1),(94,-526492800,0),(94,-513190800,1),(94,-495043200,0),(94,-481741200,1),(94,-463593600,0),(94,-447267600,1),(94,-431539200,0),(94,-415818000,1),(94,-400089600,0),(94,-384368400,1),(94,-368640000,0),(94,-352918800,1),(94,-337190400,0),(94,-321469200,1),(94,-305740800,0),(94,-289414800,1),(94,-273686400,0),(94,-257965200,1),(94,-242236800,0),(94,-226515600,1),(94,-210787200,0),(94,-195066000,1),(94,-179337600,0),(94,-163616400,1),(94,-147888000,0),(94,-131562000,1),(94,-116438400,0),(94,-100112400,1),(94,-84384000,0),(94,-68662800,1),(94,-52934400,0),(94,-37213200,1),(94,-21484800,0),(94,-5763600,1),(94,9964800,0),(94,25686000,1),(94,41414400,0),(94,57740400,1),(94,73468800,0),(94,89190000,1),(94,104918400,0),(94,120639600,1),(94,126691200,0),(94,152089200,1),(94,162374400,0),(94,183538800,1),(94,199267200,0),(94,215593200,1),(94,230716800,0),(94,247042800,1),(94,262771200,0),(94,278492400,1),(94,294220800,0),(94,309942000,1),(94,325670400,0),(94,341391600,1),(94,357120000,0),(94,372841200,1),(94,388569600,0),(94,404895600,1),(94,420019200,0),(94,436345200,1),(94,452073600,0),(94,467794800,1),(94,483523200,0),(94,499244400,1),(94,514972800,0),(94,530694000,1),(94,544608000,0),(94,562143600,1),(94,576057600,0),(94,594198000,1),(94,607507200,0),(94,625647600,1),(94,638956800,0),(94,657097200,1),(94,671011200,0),(94,688546800,1),(94,702460800,0),(94,719996400,1),(94,733910400,0),(94,752050800,1),(94,765360000,0),(94,783500400,1),(94,796809600,0),(94,814950000,1),(94,828864000,0),(94,846399600,1),(94,860313600,0),(94,877849200,1),(94,891763200,0),(94,909298800,1),(94,923212800,0),(94,941353200,1),(94,954662400,0),(94,972802800,1),(94,986112000,0),(94,1004252400,1),(94,1018166400,0),(94,1035702000,1),(94,1049616000,0),(94,1067151600,1),(94,1081065600,0),(94,1099206000,1),(94,1112515200,0),(94,1130655600,1),(94,1143964800,0),(94,1162105200,1),(94,1173600000,0),(94,1194159600,1),(94,1205049600,0),(94,1225609200,1),(94,1236499200,0),(94,1257058800,1),(94,1268553600,0),(94,1289113200,1),(94,1300003200,0),(94,1320562800,1),(94,1331452800,0),(94,1352012400,1),(94,1362902400,0),(94,1383462000,1),(94,1394352000,0),(94,1414911600,1),(94,1425801600,0),(94,1446361200,1),(94,1457856000,0),(94,1478415600,1),(94,1489305600,0),(94,1509865200,1),(94,1520755200,0),(94,1541314800,1),(94,1552204800,0),(94,1572764400,1),(94,1583654400,0),(94,1604214000,1),(94,1615708800,0),(94,1636268400,1),(94,1647158400,0),(94,1667718000,1),(94,1678608000,0),(94,1699167600,1),(94,1710057600,0),(94,1730617200,1),(94,1741507200,0),(94,1762066800,1),(94,1772956800,0),(94,1793516400,1),(94,1805011200,0),(94,1825570800,1),(94,1836460800,0),(94,1857020400,1),(94,1867910400,0),(94,1888470000,1),(94,1899360000,0),(94,1919919600,1),(94,1930809600,0),(94,1951369200,1),(94,1962864000,0),(94,1983423600,1),(94,1994313600,0),(94,2014873200,1),(94,2025763200,0),(94,2046322800,1),(94,2057212800,0),(94,2077772400,1),(94,2088662400,0),(94,2109222000,1),(94,2120112000,0),(94,2140671600,1),(95,-1514739600,1),(95,-1343066400,2),(95,-1234807200,1),(95,-1220292000,2),(95,-1207159200,1),(95,-1191344400,2),(95,828864000,3),(95,846399600,2),(95,860313600,3),(95,877849200,2),(95,891766800,4),(95,909302400,1),(95,923216400,4),(95,941356800,1),(95,954666000,4),(95,972806400,1),(95,989139600,4),(95,1001836800,1),(95,1018170000,4),(95,1035705600,1),(95,1049619600,4),(95,1067155200,1),(95,1081069200,4),(95,1099209600,1),(95,1112518800,4),(95,1130659200,1),(95,1143968400,4),(95,1162108800,1),(95,1175418000,4),(95,1193558400,1),(95,1207472400,4),(95,1225008000,1),(95,1238922000,4),(95,1256457600,1),(95,1270371600,4),(95,1288512000,1),(95,1301821200,4),(95,1319961600,1),(95,1333270800,4),(95,1351411200,1),(95,1365325200,4),(95,1382860800,1),(95,1396774800,4),(95,1414310400,1),(95,1428224400,4),(95,1445760000,1),(95,1459674000,4),(95,1477814400,1),(95,1491123600,4),(95,1509264000,1),(95,1522573200,4),(95,1540713600,1),(95,1554627600,4),(95,1572163200,1),(95,1586077200,4),(95,1603612800,1),(95,1617526800,4),(95,1635667200,1),(95,1648976400,4),(95,1667116800,1),(95,1680426000,4),(95,1698566400,1),(95,1712480400,4),(95,1730016000,1),(95,1743930000,4),(95,1761465600,1),(95,1775379600,4),(95,1792915200,1),(95,1806829200,4),(95,1824969600,1),(95,1838278800,4),(95,1856419200,1),(95,1869728400,4),(95,1887868800,1),(95,1901782800,4),(95,1919318400,1),(95,1933232400,4),(95,1950768000,1),(95,1964682000,4),(95,1982822400,1),(95,1996131600,4),(95,2014272000,1),(95,2027581200,4),(95,2045721600,1),(95,2059030800,4),(95,2077171200,1),(95,2091085200,4),(95,2108620800,1),(95,2122534800,4),(95,2140070400,1),(96,-1632067200,0),(96,-1615136400,1),(96,-923248800,0),(96,-880214400,2),(96,-769395600,3),(96,-765392400,4),(97,-1567453392,1),(97,-1233432000,2),(97,-1222981200,1),(97,-1205956800,2),(97,-1194037200,1),(97,-1172865600,2),(97,-1162501200,1),(97,-1141329600,2),(97,-1130965200,1),(97,-1109793600,2),(97,-1099429200,1),(97,-1078257600,2),(97,-1067806800,1),(97,-1046635200,2),(97,-1036270800,1),(97,-1015099200,2),(97,-1004734800,1),(97,-983563200,2),(97,-973198800,1),(97,-952027200,2),(97,-941576400,1),(97,-931032000,2),(97,-900882000,1),(97,-890337600,2),(97,-833749200,1),(97,-827265600,2),(97,-752274000,1),(97,-733780800,2),(97,-197326800,1),(97,-190843200,2),(97,-184194000,1),(97,-164491200,2),(97,-152658000,1),(97,-132955200,2),(97,-121122000,1),(97,-101419200,2),(97,-86821200,1),(97,-71092800,2),(97,-54766800,1),(97,-39038400,2),(97,-23317200,1),(97,-7588800,4),(97,128142000,3),(97,136605600,4),(97,596948400,3),(97,605066400,4),(97,624423600,3),(97,636516000,4),(97,656478000,3),(97,667965600,1),(97,687931200,3),(97,699415200,4),(97,719377200,3),(97,731469600,4),(97,938919600,2),(97,952052400,4),(97,1198983600,3),(97,1205632800,4),(97,1224385200,3),(97,1237082400,4),(98,-1545071027,2),(98,288770400,1),(98,297234000,2),(98,320220000,1),(98,328683600,2),(98,664264800,1),(98,678344400,2),(98,695714400,1),(98,700635600,2),(99,-1680454800,1),(99,-1627833600,0),(100,-1767212140,2),(100,-1206954000,1),(100,-1191358800,2),(100,-1175371200,1),(100,-1159822800,2),(100,-633816000,1),(100,-622065600,2),(100,-602280000,1),(100,-591829200,2),(100,-570744000,1),(100,-560206800,2),(100,-539121600,1),(100,-531349200,2),(100,-191361600,1),(100,-184194000,2),(100,-155160000,1),(100,-150066000,2),(100,-128894400,1),(100,-121122000,2),(100,-99950400,1),(100,-89586000,2),(100,-68414400,1),(100,-57963600,2),(100,499752000,1),(100,511239600,2),(100,530596800,1),(100,540270000,2),(100,562132800,1),(100,571201200,2),(100,592977600,1),(100,602046000,2),(100,624427200,1),(100,634705200,2),(100,656481600,1),(100,666759600,2),(100,687931200,1),(100,697604400,2),(100,719985600,1),(100,728449200,2),(100,750830400,1),(100,761713200,2),(100,782280000,1),(100,793162800,2),(100,813729600,1),(100,824007600,2),(100,844574400,1),(100,856062000,2),(100,876110400,1),(100,888721200,2),(100,908078400,1),(100,919566000,2),(100,938923200,1),(100,951620400,2),(100,970977600,1),(100,982465200,2),(100,1003032000,1),(100,1013914800,2),(100,1036296000,1),(100,1045364400,2),(100,1099368000,1),(100,1108868400,2),(100,1129435200,1),(100,1140318000,2),(100,1162699200,1),(100,1172372400,2),(100,1192334400,1),(100,1203217200,2),(100,1224388800,1),(100,1234666800,2),(100,1255838400,1),(100,1266721200,2),(100,1287288000,1),(100,1298170800,2),(100,1318737600,1),(100,1330225200,2),(100,1350792000,1),(100,1361070000,2),(100,1382241600,1),(100,1392519600,2),(100,1413691200,1),(100,1424574000,2),(100,1445140800,1),(100,1456023600,2),(100,1476590400,1),(100,1487473200,2),(100,1508040000,1),(100,1518922800,2),(100,1541304000,1),(100,1550372400,2),(100,1572753600,1),(100,1581822000,2),(100,1604203200,1),(100,1613876400,2),(100,1636257600,1),(100,1645326000,2),(100,1667707200,1),(100,1677380400,2),(100,1699156800,1),(100,1708225200,2),(100,1730606400,1),(100,1739674800,2),(100,1762056000,1),(100,1771729200,2),(100,1793505600,1),(100,1803178800,2),(100,1825560000,1),(100,1834628400,2),(100,1857009600,1),(100,1866078000,2),(100,1888459200,1),(100,1897527600,2),(100,1919908800,1),(100,1928977200,2),(100,1951358400,1),(100,1960426800,2),(100,1983412800,1),(100,1992481200,2),(100,2014862400,1),(100,2024535600,2),(100,2046312000,1),(100,2055380400,2),(100,2077761600,1),(100,2086830000,2),(100,2109211200,1),(100,2118884400,2),(100,2140660800,1),(101,-1826738653,1),(101,-157750200,2),(102,-1686091520,1),(102,323845200,4),(102,338950800,2),(102,354675600,3),(102,370400400,2),(102,386125200,3),(102,401850000,2),(102,417574800,3),(102,433299600,2),(102,449024400,3),(102,465354000,2),(102,481078800,3),(102,496803600,2),(102,512528400,3),(102,528253200,2),(102,543978000,3),(102,559702800,2),(102,575427600,3),(102,591152400,2),(102,606877200,3),(102,622602000,2),(102,638326800,3),(102,654656400,2),(102,670381200,3),(102,686106000,2),(102,701830800,3),(102,717555600,2),(102,733280400,3),(102,749005200,2),(102,764730000,3),(102,780454800,2),(102,796179600,3),(102,811904400,2),(102,820465200,5),(103,-1632056400,0),(103,-1615125600,1),(103,-1596978000,0),(103,-1583164800,1),(103,-880203600,2),(103,-769395600,3),(103,-765381600,1),(103,-147884400,4),(103,-131554800,1),(103,120646800,5),(103,325677600,6),(103,341398800,5),(103,357127200,6),(103,372848400,5),(103,388576800,6),(103,404902800,5),(103,420026400,6),(103,436352400,5),(103,452080800,6),(103,467802000,5),(103,483530400,6),(103,499251600,5),(103,514980000,6),(103,530701200,5),(103,544615200,6),(103,562150800,5),(103,576064800,6),(103,594205200,5),(103,607514400,6),(103,625654800,5),(103,638964000,6),(103,657104400,5),(103,671018400,6),(103,688554000,5),(103,702468000,6),(103,720003600,5),(103,733917600,6),(103,752058000,5),(103,765367200,6),(103,783507600,5),(103,796816800,6),(103,814957200,5),(103,828871200,6),(103,846406800,5),(103,860320800,6),(103,877856400,5),(103,891770400,6),(103,909306000,5),(103,923220000,6),(103,941360400,5),(103,954669600,6),(103,972810000,5),(103,986119200,6),(103,1004259600,5),(103,1018173600,6),(103,1035709200,5),(103,1049623200,6),(103,1067158800,5),(103,1081072800,6),(103,1099213200,5),(103,1112522400,6),(103,1130662800,5),(103,1143972000,6),(103,1162112400,5),(103,1173607200,6),(103,1194166800,5),(103,1205056800,6),(103,1225616400,5),(103,1236506400,6),(103,1257066000,5),(103,1268560800,6),(103,1289120400,5),(103,1300010400,6),(103,1320570000,5),(103,1331460000,6),(103,1352019600,5),(103,1362909600,6),(103,1383469200,5),(103,1394359200,6),(103,1414918800,5),(103,1425808800,6),(103,1446368400,5),(103,1457863200,6),(103,1478422800,5),(103,1489312800,6),(103,1509872400,5),(103,1520762400,6),(103,1541322000,5),(103,1552212000,6),(103,1572771600,5),(103,1583661600,6),(103,1604221200,5),(103,1615716000,6),(103,1636275600,5),(103,1647165600,6),(103,1667725200,5),(103,1678615200,6),(103,1699174800,5),(103,1710064800,6),(103,1730624400,5),(103,1741514400,6),(103,1762074000,5),(103,1772964000,6),(103,1793523600,5),(103,1805018400,6),(103,1825578000,5),(103,1836468000,6),(103,1857027600,5),(103,1867917600,6),(103,1888477200,5),(103,1899367200,6),(103,1919926800,5),(103,1930816800,6),(103,1951376400,5),(103,1962871200,6),(103,1983430800,5),(103,1994320800,6),(103,2014880400,5),(103,2025770400,6),(103,2046330000,5),(103,2057220000,6),(103,2077779600,5),(103,2088669600,6),(103,2109229200,5),(103,2120119200,6),(103,2140678800,5),(104,-1632060000,0),(104,-1615129200,1),(104,-880207200,2),(104,-769395600,3),(104,-765385200,1),(104,-715788000,0),(104,-702486000,1),(104,-684338400,0),(104,-671036400,1),(104,-652888800,0),(104,-639586800,1),(104,-620834400,0),(104,-608137200,1),(104,-589384800,0),(104,-576082800,1),(104,-557935200,0),(104,-544633200,1),(104,-526485600,0),(104,-513183600,1),(104,-495036000,0),(104,-481734000,1),(104,-463586400,0),(104,-450284400,1),(104,-431532000,0),(104,-418230000,1),(104,-400082400,0),(104,-386780400,1),(104,-368632800,0),(104,-355330800,1),(104,-337183200,0),(104,-323881200,1),(104,-305733600,0),(104,-292431600,1),(104,-273679200,0),(104,-260982000,1),(104,-242229600,0),(104,-226508400,1),(104,-210780000,0),(104,-195058800,1),(104,-179330400,0),(104,-163609200,1),(104,-147880800,0),(104,-131554800,1),(104,-116431200,0),(104,-100105200,1),(104,-84376800,0),(104,-68655600,1),(104,-52927200,0),(104,-37206000,1),(104,-21477600,0),(104,-5756400,1),(104,9972000,0),(104,25693200,1),(104,41421600,0),(104,57747600,1),(104,73476000,0),(104,84013200,4),(105,-1633273200,0),(105,-1615132800,1),(105,-1601823600,0),(105,-1583683200,1),(105,-1570374000,0),(105,-1551628800,1),(105,-1538924400,0),(105,-1534089600,1),(105,-880210800,2),(105,-769395600,3),(105,-765388800,1),(105,-147884400,0),(105,-131558400,1),(105,-116434800,0),(105,-100108800,1),(105,-84380400,0),(105,-68659200,1),(105,-52930800,0),(105,-37209600,1),(105,-21481200,0),(105,-5760000,1),(105,9968400,0),(105,25689600,1),(105,41418000,0),(105,57744000,1),(105,73472400,0),(105,89193600,1),(105,104922000,0),(105,120643200,1),(105,126694800,0),(105,152092800,1),(105,162378000,0),(105,183542400,1),(105,199270800,0),(105,215596800,1),(105,230720400,0),(105,247046400,1),(105,262774800,0),(105,278496000,1),(105,294224400,0),(105,309945600,1),(105,325674000,0),(105,341395200,1),(105,357123600,0),(105,372844800,1),(105,388573200,0),(105,404899200,1),(105,420022800,0),(105,436348800,1),(105,452077200,0),(105,467798400,1),(105,483526800,0),(105,499248000,1),(105,514976400,0),(105,530697600,1),(105,544611600,0),(105,562147200,1),(105,576061200,0),(105,594201600,1),(105,607510800,0),(105,625651200,1),(105,638960400,0),(105,657100800,1),(105,671014800,0),(105,688550400,1),(105,702464400,0),(105,720000000,1),(105,733914000,0),(105,752054400,1),(105,765363600,0),(105,783504000,1),(105,796813200,0),(105,814953600,1),(105,828867600,0),(105,846403200,1),(105,860317200,0),(105,877852800,1),(105,891766800,0),(105,909302400,1),(105,923216400,0),(105,941356800,1),(105,954666000,0),(105,972806400,1),(105,986115600,0),(105,1004256000,1),(105,1018170000,0),(105,1035705600,1),(105,1049619600,0),(105,1067155200,1),(105,1081069200,0),(105,1099209600,1),(105,1112518800,0),(105,1130659200,1),(105,1143968400,0),(105,1162108800,1),(105,1173603600,0),(105,1194163200,1),(105,1205053200,0),(105,1225612800,1),(105,1236502800,0),(105,1257062400,1),(105,1268557200,0),(105,1289116800,1),(105,1300006800,0),(105,1320566400,1),(105,1331456400,0),(105,1352016000,1),(105,1362906000,0),(105,1383465600,1),(105,1394355600,0),(105,1414915200,1),(105,1425805200,0),(105,1446364800,1),(105,1457859600,0),(105,1478419200,1),(105,1489309200,0),(105,1509868800,1),(105,1520758800,0),(105,1541318400,1),(105,1552208400,0),(105,1572768000,1),(105,1583658000,0),(105,1604217600,1),(105,1615712400,0),(105,1636272000,1),(105,1647162000,0),(105,1667721600,1),(105,1678611600,0),(105,1699171200,1),(105,1710061200,0),(105,1730620800,1),(105,1741510800,0),(105,1762070400,1),(105,1772960400,0),(105,1793520000,1),(105,1805014800,0),(105,1825574400,1),(105,1836464400,0),(105,1857024000,1),(105,1867914000,0),(105,1888473600,1),(105,1899363600,0),(105,1919923200,1),(105,1930813200,0),(105,1951372800,1),(105,1962867600,0),(105,1983427200,1),(105,1994317200,0),(105,2014876800,1),(105,2025766800,0),(105,2046326400,1),(105,2057216400,0),(105,2077776000,1),(105,2088666000,0),(105,2109225600,1),(105,2120115600,0),(105,2140675200,1),(106,-2051202469,1),(106,-1724083200,2),(106,-880218000,3),(106,-769395600,4),(106,-765396000,2),(106,-684349200,5),(106,-671047200,2),(106,104914800,5),(106,120636000,2),(106,126687600,5),(106,152085600,2),(106,167814000,5),(106,183535200,2),(106,199263600,5),(106,215589600,2),(106,230713200,5),(106,247039200,2),(106,262767600,5),(106,278488800,2),(106,294217200,5),(106,309938400,2),(106,325666800,5),(106,341388000,2),(106,357116400,5),(106,372837600,2),(106,388566000,5),(106,404892000,2),(106,420015600,5),(106,436341600,2),(106,452070000,5),(106,467791200,2),(106,483519600,5),(106,499240800,2),(106,514969200,5),(106,530690400,2),(106,544604400,5),(106,562140000,2),(106,576054000,5),(106,594194400,2),(106,607503600,5),(106,625644000,2),(106,638953200,5),(106,657093600,2),(106,671007600,5),(106,688543200,2),(106,702457200,5),(106,719992800,2),(106,733906800,5),(106,752047200,2),(106,765356400,5),(106,783496800,2),(106,796806000,5),(106,814946400,2),(106,828860400,5),(106,846396000,2),(106,860310000,5),(106,877845600,2),(106,891759600,5),(106,909295200,2),(106,923209200,5),(106,941349600,2),(106,954658800,5),(106,972799200,2),(106,986108400,5),(106,1004248800,2),(106,1018162800,5),(106,1035698400,2),(106,1049612400,5),(106,1067148000,2),(106,1081062000,5),(106,1099202400,2),(106,1112511600,5),(106,1130652000,2),(106,1143961200,5),(106,1162101600,2),(106,1173596400,5),(106,1194156000,2),(106,1205046000,5),(106,1225605600,2),(106,1236495600,5),(106,1257055200,2),(106,1268550000,5),(106,1289109600,2),(106,1299999600,5),(106,1320559200,2),(106,1331449200,5),(106,1352008800,2),(106,1362898800,5),(106,1383458400,2),(106,1394348400,5),(106,1414908000,2),(106,1425798000,5),(106,1446357600,2),(106,1457852400,5),(106,1478412000,2),(106,1489302000,5),(106,1509861600,2),(106,1520751600,5),(106,1541311200,2),(106,1552201200,5),(106,1572760800,2),(106,1583650800,5),(106,1604210400,2),(106,1615705200,5),(106,1636264800,2),(106,1647154800,5),(106,1667714400,2),(106,1678604400,5),(106,1699164000,2),(106,1710054000,5),(106,1730613600,2),(106,1741503600,5),(106,1762063200,2),(106,1772953200,5),(106,1793512800,2),(106,1805007600,5),(106,1825567200,2),(106,1836457200,5),(106,1857016800,2),(106,1867906800,5),(106,1888466400,2),(106,1899356400,5),(106,1919916000,2),(106,1930806000,5),(106,1951365600,2),(106,1962860400,5),(106,1983420000,2),(106,1994310000,5),(106,2014869600,2),(106,2025759600,5),(106,2046319200,2),(106,2057209200,5),(106,2077768800,2),(106,2088658800,5),(106,2109218400,2),(106,2120108400,5),(106,2140668000,2),(107,-1825098836,1),(108,-1998663968,2),(108,-1632063600,1),(108,-1615132800,2),(108,-1600614000,1),(108,-1596816000,2),(108,-1567954800,1),(108,-1551628800,2),(108,-1536505200,1),(108,-1523203200,2),(108,-1504450800,1),(108,-1491753600,2),(108,-1473001200,1),(108,-1459699200,2),(108,-880210800,3),(108,-769395600,4),(108,-765388800,2),(108,-715791600,1),(108,-702489600,2),(108,-84380400,1),(108,-68659200,2),(108,-21481200,1),(108,-5760000,2),(108,73472400,1),(108,89193600,2),(108,104922000,1),(108,120643200,2),(108,136371600,1),(108,152092800,2),(108,167821200,1),(108,183542400,2),(108,199270800,1),(108,215596800,2),(108,230720400,1),(108,247046400,2),(108,262774800,1),(108,278496000,2),(108,294224400,1),(108,309945600,2),(108,325674000,1),(108,341395200,2),(108,357123600,1),(108,372844800,2),(108,388573200,1),(108,404899200,2),(108,420022800,1),(108,436348800,2),(108,452077200,1),(108,467798400,2),(108,483526800,1),(108,499248000,2),(108,514976400,1),(108,530697600,2),(108,544611600,1),(108,562147200,2),(108,576061200,1),(108,594201600,2),(108,607510800,1),(108,625651200,2),(108,638960400,1),(108,657100800,2),(108,671014800,1),(108,688550400,2),(108,702464400,1),(108,720000000,2),(108,733914000,1),(108,752054400,2),(108,765363600,1),(108,783504000,2),(108,796813200,1),(108,814953600,2),(108,828867600,1),(108,846403200,2),(108,860317200,1),(108,877852800,2),(108,891766800,1),(108,909302400,2),(108,923216400,1),(108,941356800,2),(108,954666000,1),(108,972806400,2),(108,986115600,1),(108,1004256000,2),(108,1018170000,1),(108,1035705600,2),(108,1049619600,1),(108,1067155200,2),(108,1081069200,1),(108,1099209600,2),(108,1112518800,1),(108,1130659200,2),(108,1143968400,1),(108,1162108800,2),(108,1173603600,1),(108,1194163200,2),(108,1205053200,1),(108,1225612800,2),(108,1236502800,1),(108,1257062400,2),(108,1268557200,1),(108,1289116800,2),(108,1300006800,1),(108,1320566400,2),(108,1331456400,1),(108,1352016000,2),(108,1362906000,1),(108,1383465600,2),(108,1394355600,1),(108,1414915200,2),(108,1425805200,1),(108,1446364800,2),(108,1457859600,1),(108,1478419200,2),(108,1489309200,1),(108,1509868800,2),(108,1520758800,1),(108,1541318400,2),(108,1552208400,1),(108,1572768000,2),(108,1583658000,1),(108,1604217600,2),(108,1615712400,1),(108,1636272000,2),(108,1647162000,1),(108,1667721600,2),(108,1678611600,1),(108,1699171200,2),(108,1710061200,1),(108,1730620800,2),(108,1741510800,1),(108,1762070400,2),(108,1772960400,1),(108,1793520000,2),(108,1805014800,1),(108,1825574400,2),(108,1836464400,1),(108,1857024000,2),(108,1867914000,1),(108,1888473600,2),(108,1899363600,1),(108,1919923200,2),(108,1930813200,1),(108,1951372800,2),(108,1962867600,1),(108,1983427200,2),(108,1994317200,1),(108,2014876800,2),(108,2025766800,1),(108,2046326400,2),(108,2057216400,1),(108,2077776000,2),(108,2088666000,1),(108,2109225600,2),(108,2120115600,1),(108,2140675200,2),(109,-1767208832,2),(109,-1206950400,1),(109,-1191355200,2),(109,-1175367600,1),(109,-1159819200,2),(109,-633812400,1),(109,-622062000,2),(109,-602276400,1),(109,-591825600,2),(109,-570740400,1),(109,-560203200,2),(109,-539118000,1),(109,-531345600,2),(109,-191358000,1),(109,-184190400,2),(109,-155156400,1),(109,-150062400,2),(109,-128890800,1),(109,-121118400,2),(109,-99946800,1),(109,-89582400,2),(109,-68410800,1),(109,-57960000,2),(109,499755600,1),(109,511243200,2),(109,530600400,1),(109,540273600,2),(109,562136400,1),(109,571204800,2),(109,750834000,1),(109,761716800,2),(109,1214283600,3),(109,1384056000,2),(110,-1546279392,2),(110,547020000,1),(110,559717200,2),(110,578469600,1),(110,591166800,2),(111,-1514736000,1),(111,-1451667600,2),(111,-1343062800,1),(111,-1234803600,2),(111,-1222963200,3),(111,-1207242000,2),(111,-873820800,4),(111,-769395600,5),(111,-761677200,2),(111,-686073600,3),(111,-661539600,2),(111,-495039600,3),(111,-481734000,2),(111,-463590000,3),(111,-450284400,2),(111,-431535600,3),(111,-418230000,2),(111,-400086000,3),(111,-386780400,2),(111,-368636400,3),(111,-355330800,2),(111,-337186800,3),(111,-323881200,2),(111,-305737200,3),(111,-292431600,2),(111,199274400,3),(111,215600400,2),(111,230724000,3),(111,247050000,2),(111,262778400,3),(111,278499600,2),(111,294228000,3),(111,309949200,2),(111,325677600,3),(111,341398800,2),(111,357127200,3),(111,372848400,2),(111,388576800,3),(111,404902800,2),(111,420026400,3),(111,436352400,2),(111,452080800,3),(111,467802000,2),(111,483530400,3),(111,499251600,2),(111,514980000,3),(111,530701200,2),(111,544615200,3),(111,562150800,2),(111,576064800,3),(111,594205200,2),(111,607514400,3),(111,625654800,2),(111,638964000,3),(111,657104400,2),(111,671018400,3),(111,688554000,2),(111,702468000,3),(111,720003600,2),(111,733917600,3),(111,752058000,2),(111,765367200,3),(111,783507600,2),(111,796816800,3),(111,814957200,2),(111,828871200,3),(111,846406800,2),(111,860320800,3),(111,877856400,2),(111,891770400,3),(111,909306000,2),(111,923220000,3),(111,941360400,2),(111,954669600,3),(111,972810000,2),(111,986119200,3),(111,1004259600,2),(111,1018173600,3),(111,1035709200,2),(111,1049623200,3),(111,1067158800,2),(111,1081072800,3),(111,1099213200,2),(111,1112522400,3),(111,1130662800,2),(111,1143972000,3),(111,1162112400,2),(111,1175421600,3),(111,1193562000,2),(111,1207476000,3),(111,1225011600,2),(111,1238925600,3),(111,1256461200,2),(111,1268560800,3),(111,1289120400,2),(111,1300010400,3),(111,1320570000,2),(111,1331460000,3),(111,1352019600,2),(111,1362909600,3),(111,1383469200,2),(111,1394359200,3),(111,1414918800,2),(111,1425808800,3),(111,1446368400,2),(111,1457863200,3),(111,1478422800,2),(111,1489312800,3),(111,1509872400,2),(111,1520762400,3),(111,1541322000,2),(111,1552212000,3),(111,1572771600,2),(111,1583661600,3),(111,1604221200,2),(111,1615716000,3),(111,1636275600,2),(111,1647165600,3),(111,1667725200,2),(111,1678615200,3),(111,1699174800,2),(111,1710064800,3),(111,1730624400,2),(111,1741514400,3),(111,1762074000,2),(111,1772964000,3),(111,1793523600,2),(111,1805018400,3),(111,1825578000,2),(111,1836468000,3),(111,1857027600,2),(111,1867917600,3),(111,1888477200,2),(111,1899367200,3),(111,1919926800,2),(111,1930816800,3),(111,1951376400,2),(111,1962871200,3),(111,1983430800,2),(111,1994320800,3),(111,2014880400,2),(111,2025770400,3),(111,2046330000,2),(111,2057220000,3),(111,2077779600,2),(111,2088669600,3),(111,2109229200,2),(111,2120119200,3),(111,2140678800,2),(112,-1632060000,0),(112,-1615129200,1),(112,-880207200,2),(112,-769395600,3),(112,-765385200,1),(112,-715788000,0),(112,-702486000,1),(112,-684338400,0),(112,-671036400,1),(112,-652888800,0),(112,-639586800,1),(112,-620834400,0),(112,-608137200,1),(112,-589384800,0),(112,-576082800,1),(112,-557935200,0),(112,-544633200,1),(112,-526485600,0),(112,-513183600,1),(112,-495036000,0),(112,-481734000,1),(112,-463586400,0),(112,-450284400,1),(112,-431532000,0),(112,-418230000,1),(112,-400082400,0),(112,-386780400,1),(112,-368632800,0),(112,-355330800,1),(112,-337183200,0),(112,-323881200,1),(112,-305733600,0),(112,-292431600,1),(112,-273679200,0),(112,-260982000,1),(112,-242229600,0),(112,-226508400,1),(112,-210780000,0),(112,-195058800,1),(112,-179330400,0),(112,-163609200,1),(112,-147880800,0),(112,-131554800,1),(112,-116431200,0),(112,-100105200,1),(112,-84376800,0),(112,-68655600,1),(112,-52927200,0),(112,-37206000,1),(112,-21477600,0),(112,-5756400,1),(112,9972000,0),(112,25693200,1),(112,41421600,0),(112,57747600,1),(112,73476000,0),(112,89197200,1),(112,104925600,0),(112,120646800,1),(112,136375200,0),(112,152096400,1),(112,167824800,0),(112,183546000,1),(112,199274400,0),(112,215600400,1),(112,230724000,0),(112,247050000,1),(112,262778400,0),(112,278499600,1),(112,294228000,0),(112,309949200,1),(112,325677600,0),(112,341398800,1),(112,357127200,0),(112,372848400,1),(112,388576800,0),(112,404902800,1),(112,420026400,0),(112,436352400,1),(112,452080800,0),(112,467802000,1),(112,483530400,0),(112,499251600,1),(112,514980000,0),(112,530701200,1),(112,544615200,0),(112,562150800,1),(112,576064800,0),(112,594205200,1),(112,607514400,0),(112,625654800,1),(112,638964000,0),(112,657104400,1),(112,671018400,0),(112,688554000,1),(112,702468000,0),(112,720003600,1),(112,733917600,0),(112,752058000,1),(112,765367200,0),(112,783507600,1),(112,796816800,0),(112,814957200,1),(112,828871200,0),(112,846406800,1),(112,860320800,0),(112,877856400,1),(112,891770400,0),(112,909306000,1),(112,923220000,0),(112,941360400,1),(112,954669600,0),(112,972810000,1),(112,986119200,0),(112,1004259600,1),(112,1018173600,0),(112,1035709200,1),(112,1049623200,0),(112,1067158800,1),(112,1081072800,0),(112,1099213200,1),(112,1112522400,0),(112,1130662800,1),(112,1143972000,0),(112,1162112400,1),(112,1173607200,0),(112,1194166800,1),(112,1205056800,0),(112,1225616400,1),(112,1236506400,0),(112,1257066000,1),(112,1268560800,0),(112,1289120400,1),(112,1300010400,0),(112,1320570000,1),(112,1331460000,0),(112,1352019600,1),(112,1362909600,0),(112,1383469200,1),(112,1394359200,0),(112,1414918800,1),(112,1425808800,4),(113,-1633276800,0),(113,-1615136400,1),(113,-1601827200,0),(113,-1583686800,1),(113,-900259200,0),(113,-891795600,1),(113,-880214400,2),(113,-769395600,3),(113,-765392400,1),(113,-747244800,0),(113,-733942800,1),(113,-715795200,0),(113,-702493200,1),(113,-684345600,0),(113,-671043600,1),(113,-652896000,0),(113,-639594000,1),(113,-620841600,0),(113,-608144400,1),(113,-589392000,0),(113,-576090000,1),(113,-557942400,0),(113,-544640400,1),(113,-526492800,0),(113,-513190800,1),(113,-495043200,0),(113,-481741200,1),(113,-463593600,4),(113,-386787600,1),(113,-368640000,4),(113,-21488400,5),(113,-5767200,4),(113,9961200,5),(113,25682400,4),(113,1143961200,5),(113,1162101600,4),(113,1173596400,5),(113,1194156000,4),(113,1205046000,5),(113,1225605600,4),(113,1236495600,5),(113,1257055200,4),(113,1268550000,5),(113,1289109600,4),(113,1299999600,5),(113,1320559200,4),(113,1331449200,5),(113,1352008800,4),(113,1362898800,5),(113,1383458400,4),(113,1394348400,5),(113,1414908000,4),(113,1425798000,5),(113,1446357600,4),(113,1457852400,5),(113,1478412000,4),(113,1489302000,5),(113,1509861600,4),(113,1520751600,5),(113,1541311200,4),(113,1552201200,5),(113,1572760800,4),(113,1583650800,5),(113,1604210400,4),(113,1615705200,5),(113,1636264800,4),(113,1647154800,5),(113,1667714400,4),(113,1678604400,5),(113,1699164000,4),(113,1710054000,5),(113,1730613600,4),(113,1741503600,5),(113,1762063200,4),(113,1772953200,5),(113,1793512800,4),(113,1805007600,5),(113,1825567200,4),(113,1836457200,5),(113,1857016800,4),(113,1867906800,5),(113,1888466400,4),(113,1899356400,5),(113,1919916000,4),(113,1930806000,5),(113,1951365600,4),(113,1962860400,5),(113,1983420000,4),(113,1994310000,5),(113,2014869600,4),(113,2025759600,5),(113,2046319200,4),(113,2057209200,5),(113,2077768800,4),(113,2088658800,5),(113,2109218400,4),(113,2120108400,5),(113,2140668000,4),(114,-1767216360,2),(114,-1206957600,1),(114,-1191362400,2),(114,-1175374800,1),(114,-1159826400,2),(114,-633819600,1),(114,-622069200,2),(114,-602283600,1),(114,-591832800,2),(114,-570747600,1),(114,-560210400,2),(114,-539125200,1),(114,-531352800,2),(114,-191365200,1),(114,-184197600,2),(114,-155163600,1),(114,-150069600,2),(114,-128898000,1),(114,-121125600,2),(114,-99954000,1),(114,-89589600,2),(114,-68418000,1),(114,-57967200,2),(114,499748400,1),(114,511236000,2),(114,530593200,1),(114,540266400,2),(114,562129200,1),(114,571197600,2),(114,592974000,1),(114,602042400,2),(114,624423600,1),(114,634701600,2),(114,938919600,1),(114,951616800,2),(114,970974000,1),(114,972180000,2),(114,1003028400,1),(114,1013911200,2),(115,-2131646412,2),(115,-1632074400,1),(115,-1615143600,2),(115,-880221600,3),(115,-769395600,4),(115,-765399600,2),(115,-526500000,1),(115,-513198000,2),(115,73461600,1),(115,89182800,2),(115,104911200,1),(115,120632400,2),(115,136360800,1),(115,152082000,2),(115,167810400,1),(115,183531600,2),(115,199260000,1),(115,215586000,2),(115,230709600,1),(115,247035600,2),(115,262764000,1),(115,278485200,2),(115,294213600,1),(115,309934800,2),(115,325663200,1),(115,341384400,2),(115,357112800,1),(115,372834000,2),(115,388562400,1),(115,404888400,2),(115,420012000,1),(115,436338000,2),(115,452066400,1),(115,467787600,2),(115,483516000,1),(115,499237200,2),(115,514965600,1),(115,530686800,2),(115,544600800,1),(115,562136400,2),(115,576050400,1),(115,594190800,2),(115,607500000,1),(115,625640400,2),(115,638949600,1),(115,657090000,2),(115,671004000,1),(115,688539600,2),(115,702453600,1),(115,719989200,2),(115,733903200,1),(115,752043600,2),(115,765352800,1),(115,783493200,2),(115,796802400,1),(115,814942800,2),(115,828856800,1),(115,846392400,2),(115,860306400,1),(115,877842000,2),(115,891756000,1),(115,909291600,2),(115,923205600,1),(115,941346000,2),(115,954655200,1),(115,972795600,2),(115,986104800,1),(115,1004245200,2),(115,1018159200,1),(115,1035694800,2),(115,1049608800,1),(115,1067144400,2),(115,1081058400,1),(115,1099198800,2),(115,1112508000,1),(115,1130648400,2),(115,1143957600,1),(115,1162098000,2),(115,1173592800,1),(115,1194152400,2),(115,1205042400,1),(115,1225602000,2),(115,1236492000,1),(115,1257051600,2),(115,1268546400,1),(115,1289106000,2),(115,1299996000,1),(115,1320555600,2),(115,1331445600,1),(115,1352005200,2),(115,1362895200,1),(115,1383454800,2),(115,1394344800,1),(115,1414904400,2),(115,1425794400,1),(115,1446354000,2),(115,1457848800,1),(115,1478408400,2),(115,1489298400,1),(115,1509858000,2),(115,1520748000,1),(115,1541307600,2),(115,1552197600,1),(115,1572757200,2),(115,1583647200,1),(115,1604206800,2),(115,1615701600,1),(115,1636261200,2),(115,1647151200,1),(115,1667710800,2),(115,1678600800,1),(115,1699160400,2),(115,1710050400,1),(115,1730610000,2),(115,1741500000,1),(115,1762059600,2),(115,1772949600,1),(115,1793509200,2),(115,1805004000,1),(115,1825563600,2),(115,1836453600,1),(115,1857013200,2),(115,1867903200,1),(115,1888462800,2),(115,1899352800,1),(115,1919912400,2),(115,1930802400,1),(115,1951362000,2),(115,1962856800,1),(115,1983416400,2),(115,1994306400,1),(115,2014866000,2),(115,2025756000,1),(115,2046315600,2),(115,2057205600,1),(115,2077765200,2),(115,2088655200,1),(115,2109214800,2),(115,2120104800,1),(115,2140664400,2),(116,-1686083584,1),(116,323845200,4),(116,338950800,2),(116,354675600,3),(116,370400400,2),(116,386125200,3),(116,401850000,2),(116,417574800,3),(116,433299600,2),(116,449024400,3),(116,465354000,2),(116,481078800,3),(116,496803600,2),(116,512528400,3),(116,528253200,2),(116,543978000,3),(116,559702800,2),(116,575427600,3),(116,591152400,2),(116,606877200,3),(116,622602000,2),(116,638326800,3),(116,654656400,2),(116,670381200,3),(116,686106000,2),(116,701830800,3),(116,717555600,2),(116,733280400,3),(116,749005200,2),(116,764730000,3),(116,780454800,2),(116,796179600,3),(116,811904400,2),(116,828234000,3),(116,846378000,2),(116,859683600,3),(116,877827600,2),(116,891133200,3),(116,909277200,2),(116,922582800,3),(116,941331600,2),(116,954032400,3),(116,972781200,2),(116,985482000,3),(116,1004230800,2),(116,1017536400,3),(116,1035680400,2),(116,1048986000,3),(116,1067130000,2),(116,1080435600,3),(116,1099184400,2),(116,1111885200,3),(116,1130634000,2),(116,1143334800,3),(116,1162083600,2),(116,1174784400,3),(116,1193533200,2),(116,1206838800,3),(116,1224982800,2),(116,1238288400,3),(116,1256432400,2),(116,1269738000,3),(116,1288486800,2),(116,1301187600,3),(116,1319936400,2),(116,1332637200,3),(116,1351386000,2),(116,1364691600,3),(116,1382835600,2),(116,1396141200,3),(116,1414285200,2),(116,1427590800,3),(116,1445734800,2),(116,1459040400,3),(116,1477789200,2),(116,1490490000,3),(116,1509238800,2),(116,1521939600,3),(116,1540688400,2),(116,1553994000,3),(116,1572138000,2),(116,1585443600,3),(116,1603587600,2),(116,1616893200,3),(116,1635642000,2),(116,1648342800,3),(116,1667091600,2),(116,1679792400,3),(116,1698541200,2),(116,1711846800,3),(116,1729990800,2),(116,1743296400,3),(116,1761440400,2),(116,1774746000,3),(116,1792890000,2),(116,1806195600,3),(116,1824944400,2),(116,1837645200,3),(116,1856394000,2),(116,1869094800,3),(116,1887843600,2),(116,1901149200,3),(116,1919293200,2),(116,1932598800,3),(116,1950742800,2),(116,1964048400,3),(116,1982797200,2),(116,1995498000,3),(116,2014246800,2),(116,2026947600,3),(116,2045696400,2),(116,2058397200,3),(116,2077146000,2),(116,2090451600,3),(116,2108595600,2),(116,2121901200,3),(116,2140045200,2),(117,-1632076148,1),(117,-1615145348,0),(117,-1096921748,2),(117,-1061670600,3),(117,-1048973400,2),(117,-1030221000,3),(117,-1017523800,2),(117,-998771400,3),(117,-986074200,2),(117,-966717000,3),(117,-954624600,2),(117,-935267400,3),(117,-922570200,2),(117,-903817800,3),(117,-891120600,2),(117,-872368200,5),(117,-769395600,4),(117,-765401400,2),(117,-746044200,3),(117,-733347000,2),(117,-714594600,3),(117,-701897400,2),(117,-683145000,3),(117,-670447800,2),(117,-651695400,3),(117,-638998200,2),(117,-619641000,3),(117,-606943800,2),(117,-589401000,3),(117,-576099000,2),(117,-557951400,3),(117,-544649400,2),(117,-526501800,3),(117,-513199800,2),(117,-495052200,3),(117,-481750200,2),(117,-463602600,3),(117,-450300600,2),(117,-431548200,3),(117,-418246200,2),(117,-400098600,3),(117,-386796600,2),(117,-368649000,3),(117,-355347000,2),(117,-337199400,3),(117,-323897400,2),(117,-305749800,3),(117,-289423800,2),(117,-273695400,3),(117,-257974200,2),(117,-242245800,3),(117,-226524600,2),(117,-210796200,3),(117,-195075000,2),(117,-179346600,3),(117,-163625400,2),(117,-147897000,3),(117,-131571000,2),(117,-119903400,7),(117,-116445600,6),(117,-100119600,7),(117,-84391200,6),(117,-68670000,7),(117,-52941600,6),(117,-37220400,7),(117,-21492000,6),(117,-5770800,7),(117,9957600,6),(117,25678800,7),(117,41407200,6),(117,57733200,7),(117,73461600,6),(117,89182800,7),(117,104911200,6),(117,120632400,7),(117,136360800,6),(117,152082000,7),(117,167810400,6),(117,183531600,7),(117,199260000,6),(117,215586000,7),(117,230709600,6),(117,247035600,7),(117,262764000,6),(117,278485200,7),(117,294213600,6),(117,309934800,7),(117,325663200,6),(117,341384400,7),(117,357112800,6),(117,372834000,7),(117,388562400,6),(117,404888400,7),(117,420012000,6),(117,436338000,7),(117,452066400,6),(117,467787600,7),(117,483516000,6),(117,499237200,7),(117,514965600,6),(117,530686800,7),(117,544593660,6),(117,562129260,7),(117,576043260,8),(117,594180060,7),(117,607492860,6),(117,625633260,7),(117,638942460,6),(117,657082860,7),(117,670996860,6),(117,688532460,7),(117,702446460,6),(117,719982060,7),(117,733896060,6),(117,752036460,7),(117,765345660,6),(117,783486060,7),(117,796795260,6),(117,814935660,7),(117,828849660,6),(117,846385260,7),(117,860299260,6),(117,877834860,7),(117,891748860,6),(117,909284460,7),(117,923198460,6),(117,941338860,7),(117,954648060,6),(117,972788460,7),(117,986097660,6),(117,1004238060,7),(117,1018152060,6),(117,1035687660,7),(117,1049601660,6),(117,1067137260,7),(117,1081051260,6),(117,1099191660,7),(117,1112500860,6),(117,1130641260,7),(117,1143950460,6),(117,1162090860,7),(117,1173585660,6),(117,1194145260,7),(117,1205035260,6),(117,1225594860,7),(117,1236484860,6),(117,1257044460,7),(117,1268539260,6),(117,1289098860,7),(117,1299988860,6),(117,1320555600,7),(117,1331445600,6),(117,1352005200,7),(117,1362895200,6),(117,1383454800,7),(117,1394344800,6),(117,1414904400,7),(117,1425794400,6),(117,1446354000,7),(117,1457848800,6),(117,1478408400,7),(117,1489298400,6),(117,1509858000,7),(117,1520748000,6),(117,1541307600,7),(117,1552197600,6),(117,1572757200,7),(117,1583647200,6),(117,1604206800,7),(117,1615701600,6),(117,1636261200,7),(117,1647151200,6),(117,1667710800,7),(117,1678600800,6),(117,1699160400,7),(117,1710050400,6),(117,1730610000,7),(117,1741500000,6),(117,1762059600,7),(117,1772949600,6),(117,1793509200,7),(117,1805004000,6),(117,1825563600,7),(117,1836453600,6),(117,1857013200,7),(117,1867903200,6),(117,1888462800,7),(117,1899352800,6),(117,1919912400,7),(117,1930802400,6),(117,1951362000,7),(117,1962856800,6),(117,1983416400,7),(117,1994306400,6),(117,2014866000,7),(117,2025756000,6),(117,2046315600,7),(117,2057205600,6),(117,2077765200,7),(117,2088655200,6),(117,2109214800,7),(117,2120104800,6),(117,2140664400,7),(118,-1827687170,1),(118,294217200,2),(118,309938400,1),(118,325666800,2),(118,341388000,1),(118,357116400,2),(118,372837600,1),(118,388566000,2),(118,404892000,1),(118,420015600,2),(118,436341600,1),(118,452070000,2),(118,467791200,1),(118,483519600,2),(118,499240800,1),(118,514969200,2),(118,530690400,1),(118,544604400,2),(118,562140000,1),(118,576054000,2),(118,594194400,1),(118,607503600,2),(118,625644000,1),(118,638953200,2),(118,657093600,1),(118,671007600,2),(118,688543200,1),(118,702457200,2),(118,719992800,1),(118,733906800,2),(118,752047200,1),(118,765356400,2),(118,783496800,1),(118,796806000,2),(118,814946400,1),(118,828860400,2),(118,846396000,1),(118,860310000,2),(118,877845600,1),(118,891759600,2),(118,909295200,1),(118,923209200,2),(118,941349600,1),(118,954658800,2),(118,972799200,1),(118,986108400,2),(118,1004248800,1),(118,1018162800,2),(118,1035698400,1),(118,1049612400,2),(118,1067148000,1),(118,1081062000,2),(118,1099202400,1),(118,1112511600,2),(118,1130652000,1),(118,1143961200,2),(118,1162101600,1),(118,1173596400,2),(118,1194156000,1),(118,1205046000,2),(118,1225605600,1),(118,1236495600,2),(118,1257055200,1),(118,1268550000,2),(118,1289109600,1),(118,1299999600,2),(118,1320559200,1),(118,1331449200,2),(118,1352008800,1),(118,1362898800,2),(118,1383458400,1),(118,1394348400,2),(118,1414908000,1),(118,1425798000,2),(118,1446357600,3),(118,1520751600,2),(118,1541311200,1),(118,1552201200,2),(118,1572760800,1),(118,1583650800,2),(118,1604210400,1),(118,1615705200,2),(118,1636264800,1),(118,1647154800,2),(118,1667714400,1),(118,1678604400,2),(118,1699164000,1),(118,1710054000,2),(118,1730613600,1),(118,1741503600,2),(118,1762063200,1),(118,1772953200,2),(118,1793512800,1),(118,1805007600,2),(118,1825567200,1),(118,1836457200,2),(118,1857016800,1),(118,1867906800,2),(118,1888466400,1),(118,1899356400,2),(118,1919916000,1),(118,1930806000,2),(118,1951365600,1),(118,1962860400,2),(118,1983420000,1),(118,1994310000,2),(118,2014869600,1),(118,2025759600,2),(118,2046319200,1),(118,2057209200,2),(118,2077768800,1),(118,2088658800,2),(118,2109218400,1),(118,2120108400,2),(118,2140668000,1),(119,-1825098836,1),(120,-1825098836,1),(121,-1617040676,2),(121,123055200,1),(121,130914000,2),(121,422344800,1),(121,433054800,2),(121,669708000,1),(121,684219600,2),(121,1146376800,1),(121,1159678800,2),(122,-1230749160,2),(122,722926800,1),(122,728884800,2),(123,-1730578040,1),(123,176010300,2),(123,662698800,3),(124,-2131645536,2),(124,-1696276800,1),(124,-1680469200,2),(124,-1632074400,1),(124,-1615143600,2),(124,-1566763200,1),(124,-1557090000,2),(124,-1535486400,1),(124,-1524949200,2),(124,-1504468800,1),(124,-1493413200,2),(124,-1472414400,1),(124,-1461963600,2),(124,-1440964800,1),(124,-1429390800,2),(124,-1409515200,1),(124,-1396731600,2),(124,-1376856000,1),(124,-1366491600,2),(124,-1346616000,1),(124,-1333832400,2),(124,-1313956800,1),(124,-1303678800,2),(124,-1282507200,1),(124,-1272661200,2),(124,-1251057600,1),(124,-1240088400,2),(124,-1219608000,1),(124,-1207429200,2),(124,-1188763200,1),(124,-1175979600,2),(124,-1157313600,1),(124,-1143925200,2),(124,-1124049600,1),(124,-1113771600,2),(124,-1091390400,1),(124,-1081026000,2),(124,-1059854400,1),(124,-1050786000,2),(124,-1030910400,1),(124,-1018126800,2),(124,-999460800,1),(124,-986677200,2),(124,-965592000,1),(124,-955227600,2),(124,-935956800,1),(124,-923173200,2),(124,-904507200,1),(124,-891723600,2),(124,-880221600,3),(124,-769395600,4),(124,-765399600,2),(124,-747252000,1),(124,-733950000,2),(124,-715802400,1),(124,-702500400,2),(124,-684352800,1),(124,-671050800,2),(124,-652903200,1),(124,-639601200,2),(124,-589399200,1),(124,-576097200,2),(124,-557949600,1),(124,-544647600,2),(124,-526500000,1),(124,-513198000,2),(124,-495050400,1),(124,-481748400,2),(124,-431546400,1),(124,-418244400,2),(124,-400096800,1),(124,-386794800,2),(124,-368647200,1),(124,-355345200,2),(124,-337197600,1),(124,-323895600,2),(124,-242244000,1),(124,-226522800,2),(124,-210794400,1),(124,-195073200,2),(124,-179344800,1),(124,-163623600,2),(124,-147895200,1),(124,-131569200,2),(124,-116445600,1),(124,-100119600,2),(124,-84391200,1),(124,-68670000,2),(124,-52941600,1),(124,-37220400,2),(124,-21492000,1),(124,-5770800,2),(124,9957600,1),(124,25678800,2),(124,41407200,1),(124,57733200,2),(124,73461600,1),(124,89182800,2),(124,104911200,1),(124,120632400,2),(124,136360800,1),(124,152082000,2),(124,167810400,1),(124,183531600,2),(124,199260000,1),(124,215586000,2),(124,230709600,1),(124,247035600,2),(124,262764000,1),(124,278485200,2),(124,294213600,1),(124,309934800,2),(124,325663200,1),(124,341384400,2),(124,357112800,1),(124,372834000,2),(124,388562400,1),(124,404888400,2),(124,420012000,1),(124,436338000,2),(124,452066400,1),(124,467787600,2),(124,483516000,1),(124,499237200,2),(124,514965600,1),(124,530686800,2),(124,544600800,1),(124,562136400,2),(124,576050400,1),(124,594190800,2),(124,607500000,1),(124,625640400,2),(124,638949600,1),(124,657090000,2),(124,671004000,1),(124,688539600,2),(124,702453600,1),(124,719989200,2),(124,733903200,1),(124,752043600,2),(124,765352800,1),(124,783493200,2),(124,796802400,1),(124,814942800,2),(124,828856800,1),(124,846392400,2),(124,860306400,1),(124,877842000,2),(124,891756000,1),(124,909291600,2),(124,923205600,1),(124,941346000,2),(124,954655200,1),(124,972795600,2),(124,986104800,1),(124,1004245200,2),(124,1018159200,1),(124,1035694800,2),(124,1049608800,1),(124,1067144400,2),(124,1081058400,1),(124,1099198800,2),(124,1112508000,1),(124,1130648400,2),(124,1143957600,1),(124,1162098000,2),(124,1173592800,1),(124,1194152400,2),(124,1205042400,1),(124,1225602000,2),(124,1236492000,1),(124,1257051600,2),(124,1268546400,1),(124,1289106000,2),(124,1299996000,1),(124,1320555600,2),(124,1331445600,1),(124,1352005200,2),(124,1362895200,1),(124,1383454800,2),(124,1394344800,1),(124,1414904400,2),(124,1425794400,1),(124,1446354000,2),(124,1457848800,1),(124,1478408400,2),(124,1489298400,1),(124,1509858000,2),(124,1520748000,1),(124,1541307600,2),(124,1552197600,1),(124,1572757200,2),(124,1583647200,1),(124,1604206800,2),(124,1615701600,1),(124,1636261200,2),(124,1647151200,1),(124,1667710800,2),(124,1678600800,1),(124,1699160400,2),(124,1710050400,1),(124,1730610000,2),(124,1741500000,1),(124,1762059600,2),(124,1772949600,1),(124,1793509200,2),(124,1805004000,1),(124,1825563600,2),(124,1836453600,1),(124,1857013200,2),(124,1867903200,1),(124,1888462800,2),(124,1899352800,1),(124,1919912400,2),(124,1930802400,1),(124,1951362000,2),(124,1962856800,1),(124,1983416400,2),(124,1994306400,1),(124,2014866000,2),(124,2025756000,1),(124,2046315600,2),(124,2057205600,1),(124,2077765200,2),(124,2088655200,1),(124,2109214800,2),(124,2120104800,1),(124,2140664400,2),(125,-1402813824,2),(125,-1311534000,1),(125,-1300996800,2),(125,-933534000,1),(125,-925675200,2),(125,-902084400,1),(125,-893620800,2),(125,-870030000,1),(125,-862171200,2),(125,-775681200,1),(125,-767822400,2),(125,-744231600,1),(125,-736372800,2),(125,-144702000,1),(125,-134251200,2),(125,-113425200,1),(125,-102542400,2),(125,-86295600,1),(125,-72907200,2),(125,-54154800,1),(125,-41457600,2),(125,-21495600,1),(125,-5774400,2),(125,9954000,1),(125,25675200,2),(125,41403600,1),(125,57729600,2),(125,73458000,1),(125,87364800,2),(125,104907600,1),(125,118900800,2),(125,136357200,1),(125,150436800,2),(125,167806800,1),(125,183528000,2),(125,199256400,1),(125,215582400,2),(125,230706000,1),(125,247032000,2),(125,263365200,1),(125,276667200,2),(125,290581200,1),(125,308721600,2),(125,322030800,1),(125,340171200,2),(125,358318800,1),(125,371620800,2),(125,389768400,1),(125,403070400,2),(125,421218000,1),(125,434520000,2),(125,452667600,1),(125,466574400,2),(125,484117200,1),(125,498024000,2),(125,511333200,1),(125,529473600,2),(125,542782800,1),(125,560923200,2),(125,574837200,1),(125,592372800,2),(125,606286800,1),(125,623822400,2),(125,638946000,1),(125,655876800,2),(125,671000400,1),(125,687330000,3),(125,702450000,1),(125,718779600,3),(125,733899600,1),(125,750229200,3),(125,765349200,1),(125,781678800,3),(125,796798800,1),(125,813128400,3),(125,828853200,1),(125,844578000,3),(125,860302800,1),(125,876632400,3),(125,891147600,4),(125,909291600,3),(125,922597200,4),(125,941346000,3),(125,954651600,4),(125,972795600,3),(125,986101200,4),(125,1004245200,3),(125,1018155600,4),(125,1035694800,3),(125,1049605200,4),(125,1067144400,3),(125,1080450000,4),(125,1162098000,3),(125,1173589200,4),(125,1193547600,3),(125,1205643600,4),(125,1224997200,3),(125,1236488400,4),(125,1256446800,3),(125,1268542800,4),(125,1288501200,3),(125,1300597200,4),(125,1321160400,3),(125,1333256400,4),(125,1352005200,3),(125,1362891600,4),(125,1383454800,3),(125,1394341200,4),(125,1414904400,3),(125,1425790800,4),(125,1446354000,3),(125,1457845200,4),(125,1478408400,3),(125,1489294800,4),(125,1509858000,3),(125,1520744400,4),(125,1541307600,3),(125,1552194000,4),(125,1572757200,3),(125,1583643600,4),(125,1604206800,3),(125,1615698000,4),(125,1636261200,3),(125,1647147600,4),(125,1667710800,3),(125,1678597200,4),(125,1699160400,3),(125,1710046800,4),(125,1730610000,3),(125,1741496400,4),(125,1762059600,3),(125,1772946000,4),(125,1793509200,3),(125,1805000400,4),(125,1825563600,3),(125,1836450000,4),(125,1857013200,3),(125,1867899600,4),(125,1888462800,3),(125,1899349200,4),(125,1919912400,3),(125,1930798800,4),(125,1951362000,3),(125,1962853200,4),(125,1983416400,3),(125,1994302800,4),(125,2014866000,3),(125,2025752400,4),(125,2046315600,3),(125,2057202000,4),(125,2077765200,3),(125,2088651600,4),(125,2109214800,3),(125,2120101200,4),(125,2140664400,3),(126,-1514739600,1),(126,-1343066400,2),(126,-1234807200,1),(126,-1220292000,2),(126,-1207159200,1),(126,-1191344400,2),(126,-873828000,1),(126,-661539600,3),(126,28800,1),(126,828867600,4),(126,846403200,1),(126,860317200,4),(126,877852800,1),(126,891766800,4),(126,909302400,1),(127,-1633276800,0),(127,-1615136400,1),(127,-1601827200,0),(127,-1583686800,1),(127,-900259200,0),(127,-891795600,1),(127,-880214400,2),(127,-769395600,3),(127,-765392400,1),(127,-747244800,0),(127,-733942800,1),(127,-715795200,0),(127,-702493200,1),(127,-684345600,0),(127,-671043600,1),(127,-652896000,0),(127,-639594000,1),(127,-620841600,0),(127,-608144400,1),(127,-589392000,0),(127,-576090000,1),(127,-557942400,0),(127,-544640400,1),(127,-526492800,0),(127,-513190800,1),(127,-495043200,0),(127,-481741200,1),(127,-463593600,4),(127,-386787600,1),(127,-368640000,4),(127,-21488400,5),(127,-5767200,4),(127,9961200,5),(127,25682400,4),(127,1143961200,5),(127,1162101600,4),(127,1173596400,5),(127,1194156000,4),(127,1205046000,5),(127,1225605600,4),(127,1236495600,5),(127,1257055200,4),(127,1268550000,5),(127,1289109600,4),(127,1299999600,5),(127,1320559200,4),(127,1331449200,5),(127,1352008800,4),(127,1362898800,5),(127,1383458400,4),(127,1394348400,5),(127,1414908000,4),(127,1425798000,5),(127,1446357600,4),(127,1457852400,5),(127,1478412000,4),(127,1489302000,5),(127,1509861600,4),(127,1520751600,5),(127,1541311200,4),(127,1552201200,5),(127,1572760800,4),(127,1583650800,5),(127,1604210400,4),(127,1615705200,5),(127,1636264800,4),(127,1647154800,5),(127,1667714400,4),(127,1678604400,5),(127,1699164000,4),(127,1710054000,5),(127,1730613600,4),(127,1741503600,5),(127,1762063200,4),(127,1772953200,5),(127,1793512800,4),(127,1805007600,5),(127,1825567200,4),(127,1836457200,5),(127,1857016800,4),(127,1867906800,5),(127,1888466400,4),(127,1899356400,5),(127,1919916000,4),(127,1930806000,5),(127,1951365600,4),(127,1962860400,5),(127,1983420000,4),(127,1994310000,5),(127,2014869600,4),(127,2025759600,5),(127,2046319200,4),(127,2057209200,5),(127,2077768800,4),(127,2088658800,5),(127,2109218400,4),(127,2120108400,5),(127,2140668000,4),(128,-1633276800,0),(128,-1615136400,1),(128,-1601827200,0),(128,-1583686800,1),(128,-880214400,2),(128,-769395600,3),(128,-765392400,1),(128,-715795200,0),(128,-702493200,1),(128,-684345600,0),(128,-671043600,1),(128,-652896000,0),(128,-639594000,1),(128,-620841600,0),(128,-608144400,1),(128,-589392000,0),(128,-576090000,1),(128,-557942400,0),(128,-544640400,1),(128,-526492800,0),(128,-513190800,1),(128,-495043200,0),(128,-481741200,1),(128,-463593600,0),(128,-447267600,1),(128,-431539200,0),(128,-415818000,1),(128,-400089600,0),(128,-386787600,1),(128,-368640000,0),(128,-355338000,1),(128,-337190400,0),(128,-321469200,1),(128,-305740800,0),(128,-289414800,1),(128,-273686400,0),(128,-257965200,1),(128,-242236800,4),(128,-195066000,1),(128,-84384000,0),(128,-68662800,1),(128,-52934400,0),(128,-37213200,1),(128,-21484800,0),(128,-5763600,1),(128,9964800,0),(128,25686000,1),(128,41414400,0),(128,57740400,1),(128,73468800,0),(128,89190000,1),(128,104918400,0),(128,120639600,1),(128,126691200,0),(128,152089200,1),(128,162374400,0),(128,183538800,1),(128,199267200,0),(128,215593200,1),(128,230716800,0),(128,247042800,1),(128,262771200,0),(128,278492400,1),(128,294220800,0),(128,309942000,1),(128,325670400,0),(128,341391600,1),(128,357120000,0),(128,372841200,1),(128,388569600,0),(128,404895600,1),(128,420019200,0),(128,436345200,1),(128,452073600,0),(128,467794800,1),(128,483523200,0),(128,499244400,1),(128,514972800,0),(128,530694000,1),(128,544608000,0),(128,562143600,1),(128,576057600,0),(128,594198000,1),(128,607507200,0),(128,625647600,1),(128,638956800,0),(128,657097200,1),(128,671011200,0),(128,688546800,4),(128,1143961200,0),(128,1162105200,1),(128,1173600000,0),(128,1194159600,1),(128,1205049600,0),(128,1225609200,1),(128,1236499200,0),(128,1257058800,1),(128,1268553600,0),(128,1289113200,1),(128,1300003200,0),(128,1320562800,1),(128,1331452800,0),(128,1352012400,1),(128,1362902400,0),(128,1383462000,1),(128,1394352000,0),(128,1414911600,1),(128,1425801600,0),(128,1446361200,1),(128,1457856000,0),(128,1478415600,1),(128,1489305600,0),(128,1509865200,1),(128,1520755200,0),(128,1541314800,1),(128,1552204800,0),(128,1572764400,1),(128,1583654400,0),(128,1604214000,1),(128,1615708800,0),(128,1636268400,1),(128,1647158400,0),(128,1667718000,1),(128,1678608000,0),(128,1699167600,1),(128,1710057600,0),(128,1730617200,1),(128,1741507200,0),(128,1762066800,1),(128,1772956800,0),(128,1793516400,1),(128,1805011200,0),(128,1825570800,1),(128,1836460800,0),(128,1857020400,1),(128,1867910400,0),(128,1888470000,1),(128,1899360000,0),(128,1919919600,1),(128,1930809600,0),(128,1951369200,1),(128,1962864000,0),(128,1983423600,1),(128,1994313600,0),(128,2014873200,1),(128,2025763200,0),(128,2046322800,1),(128,2057212800,0),(128,2077772400,1),(128,2088662400,0),(128,2109222000,1),(128,2120112000,0),(128,2140671600,1),(129,-1633276800,0),(129,-1615136400,1),(129,-1601827200,0),(129,-1583686800,1),(129,-880214400,2),(129,-769395600,3),(129,-765392400,1),(129,-589392000,0),(129,-576090000,1),(129,-495043200,0),(129,-481741200,1),(129,-463593600,0),(129,-450291600,1),(129,-431539200,0),(129,-418237200,1),(129,-400089600,0),(129,-386787600,1),(129,-368640000,0),(129,-355338000,1),(129,-337190400,0),(129,-323888400,1),(129,-305740800,0),(129,-292438800,1),(129,-273686400,4),(129,-21488400,5),(129,-5767200,4),(129,9961200,5),(129,25682400,4),(129,41410800,5),(129,57736800,4),(129,73465200,5),(129,89186400,4),(129,104914800,5),(129,120636000,4),(129,126687600,0),(129,152089200,4),(129,162370800,5),(129,183535200,4),(129,1143961200,5),(129,1162101600,4),(129,1173596400,5),(129,1194156000,4),(129,1205046000,5),(129,1225605600,4),(129,1236495600,5),(129,1257055200,4),(129,1268550000,5),(129,1289109600,4),(129,1299999600,5),(129,1320559200,4),(129,1331449200,5),(129,1352008800,4),(129,1362898800,5),(129,1383458400,4),(129,1394348400,5),(129,1414908000,4),(129,1425798000,5),(129,1446357600,4),(129,1457852400,5),(129,1478412000,4),(129,1489302000,5),(129,1509861600,4),(129,1520751600,5),(129,1541311200,4),(129,1552201200,5),(129,1572760800,4),(129,1583650800,5),(129,1604210400,4),(129,1615705200,5),(129,1636264800,4),(129,1647154800,5),(129,1667714400,4),(129,1678604400,5),(129,1699164000,4),(129,1710054000,5),(129,1730613600,4),(129,1741503600,5),(129,1762063200,4),(129,1772953200,5),(129,1793512800,4),(129,1805007600,5),(129,1825567200,4),(129,1836457200,5),(129,1857016800,4),(129,1867906800,5),(129,1888466400,4),(129,1899356400,5),(129,1919916000,4),(129,1930806000,5),(129,1951365600,4),(129,1962860400,5),(129,1983420000,4),(129,1994310000,5),(129,2014869600,4),(129,2025759600,5),(129,2046319200,4),(129,2057209200,5),(129,2077768800,4),(129,2088658800,5),(129,2109218400,4),(129,2120108400,5),(129,2140668000,4),(130,-1633276800,0),(130,-1615136400,1),(130,-1601827200,0),(130,-1583686800,1),(130,-880214400,2),(130,-769395600,3),(130,-765392400,1),(130,-462996000,0),(130,-450291600,1),(130,-431539200,0),(130,-418237200,1),(130,-400089600,0),(130,-386787600,1),(130,-368640000,0),(130,-355338000,1),(130,-337190400,0),(130,-323888400,1),(130,-305740800,0),(130,-292438800,1),(130,-273686400,0),(130,-257965200,1),(130,-242236800,0),(130,-226515600,1),(130,-210787200,0),(130,-195066000,1),(130,-179337600,0),(130,-163616400,1),(130,-147888000,4),(130,-100112400,1),(130,-84384000,0),(130,-68662800,1),(130,-52934400,0),(130,-37213200,1),(130,-21484800,0),(130,-5763600,1),(130,9964800,0),(130,25686000,1),(130,41414400,0),(130,57740400,1),(130,73468800,0),(130,89190000,1),(130,104918400,0),(130,120639600,1),(130,126691200,0),(130,152089200,1),(130,162374400,0),(130,183538800,1),(130,199267200,0),(130,215593200,1),(130,230716800,0),(130,247042800,4),(130,1143961200,0),(130,1162105200,1),(130,1173600000,0),(130,1194159600,4),(130,1205046000,5),(130,1225605600,4),(130,1236495600,5),(130,1257055200,4),(130,1268550000,5),(130,1289109600,4),(130,1299999600,5),(130,1320559200,4),(130,1331449200,5),(130,1352008800,4),(130,1362898800,5),(130,1383458400,4),(130,1394348400,5),(130,1414908000,4),(130,1425798000,5),(130,1446357600,4),(130,1457852400,5),(130,1478412000,4),(130,1489302000,5),(130,1509861600,4),(130,1520751600,5),(130,1541311200,4),(130,1552201200,5),(130,1572760800,4),(130,1583650800,5),(130,1604210400,4),(130,1615705200,5),(130,1636264800,4),(130,1647154800,5),(130,1667714400,4),(130,1678604400,5),(130,1699164000,4),(130,1710054000,5),(130,1730613600,4),(130,1741503600,5),(130,1762063200,4),(130,1772953200,5),(130,1793512800,4),(130,1805007600,5),(130,1825567200,4),(130,1836457200,5),(130,1857016800,4),(130,1867906800,5),(130,1888466400,4),(130,1899356400,5),(130,1919916000,4),(130,1930806000,5),(130,1951365600,4),(130,1962860400,5),(130,1983420000,4),(130,1994310000,5),(130,2014869600,4),(130,2025759600,5),(130,2046319200,4),(130,2057209200,5),(130,2077768800,4),(130,2088658800,5),(130,2109218400,4),(130,2120108400,5),(130,2140668000,4),(131,-1633276800,0),(131,-1615136400,1),(131,-1601827200,0),(131,-1583686800,1),(131,-880214400,2),(131,-769395600,3),(131,-765392400,1),(131,-747244800,0),(131,-733942800,1),(131,-526492800,0),(131,-513190800,1),(131,-495043200,0),(131,-481741200,1),(131,-462996000,0),(131,-450291600,1),(131,-431539200,0),(131,-418237200,1),(131,-400089600,0),(131,-386787600,1),(131,-368640000,0),(131,-355338000,1),(131,-337190400,0),(131,-323888400,1),(131,-305740800,0),(131,-289414800,1),(131,-273686400,0),(131,-260989200,1),(131,-242236800,0),(131,-226515600,1),(131,-210787200,0),(131,-195066000,1),(131,-179337600,4),(131,-21488400,5),(131,-5767200,4),(131,9961200,5),(131,25682400,4),(131,1143961200,0),(131,1162105200,1),(131,1173600000,0),(131,1194159600,1),(131,1205049600,0),(131,1225609200,1),(131,1236499200,0),(131,1257058800,1),(131,1268553600,0),(131,1289113200,1),(131,1300003200,0),(131,1320562800,1),(131,1331452800,0),(131,1352012400,1),(131,1362902400,0),(131,1383462000,1),(131,1394352000,0),(131,1414911600,1),(131,1425801600,0),(131,1446361200,1),(131,1457856000,0),(131,1478415600,1),(131,1489305600,0),(131,1509865200,1),(131,1520755200,0),(131,1541314800,1),(131,1552204800,0),(131,1572764400,1),(131,1583654400,0),(131,1604214000,1),(131,1615708800,0),(131,1636268400,1),(131,1647158400,0),(131,1667718000,1),(131,1678608000,0),(131,1699167600,1),(131,1710057600,0),(131,1730617200,1),(131,1741507200,0),(131,1762066800,1),(131,1772956800,0),(131,1793516400,1),(131,1805011200,0),(131,1825570800,1),(131,1836460800,0),(131,1857020400,1),(131,1867910400,0),(131,1888470000,1),(131,1899360000,0),(131,1919919600,1),(131,1930809600,0),(131,1951369200,1),(131,1962864000,0),(131,1983423600,1),(131,1994313600,0),(131,2014873200,1),(131,2025763200,0),(131,2046322800,1),(131,2057212800,0),(131,2077772400,1),(131,2088662400,0),(131,2109222000,1),(131,2120112000,0),(131,2140671600,1),(132,-1633276800,0),(132,-1615136400,1),(132,-1601827200,0),(132,-1583686800,1),(132,-880214400,2),(132,-769395600,3),(132,-765392400,1),(132,-495043200,4),(132,-21488400,5),(132,-5767200,4),(132,9961200,5),(132,25682400,4),(132,41410800,5),(132,57736800,4),(132,73465200,5),(132,89186400,4),(132,1143961200,5),(132,1162101600,4),(132,1173596400,5),(132,1194156000,4),(132,1205046000,5),(132,1225605600,4),(132,1236495600,5),(132,1257055200,4),(132,1268550000,5),(132,1289109600,4),(132,1299999600,5),(132,1320559200,4),(132,1331449200,5),(132,1352008800,4),(132,1362898800,5),(132,1383458400,4),(132,1394348400,5),(132,1414908000,4),(132,1425798000,5),(132,1446357600,4),(132,1457852400,5),(132,1478412000,4),(132,1489302000,5),(132,1509861600,4),(132,1520751600,5),(132,1541311200,4),(132,1552201200,5),(132,1572760800,4),(132,1583650800,5),(132,1604210400,4),(132,1615705200,5),(132,1636264800,4),(132,1647154800,5),(132,1667714400,4),(132,1678604400,5),(132,1699164000,4),(132,1710054000,5),(132,1730613600,4),(132,1741503600,5),(132,1762063200,4),(132,1772953200,5),(132,1793512800,4),(132,1805007600,5),(132,1825567200,4),(132,1836457200,5),(132,1857016800,4),(132,1867906800,5),(132,1888466400,4),(132,1899356400,5),(132,1919916000,4),(132,1930806000,5),(132,1951365600,4),(132,1962860400,5),(132,1983420000,4),(132,1994310000,5),(132,2014869600,4),(132,2025759600,5),(132,2046319200,4),(132,2057209200,5),(132,2077768800,4),(132,2088658800,5),(132,2109218400,4),(132,2120108400,5),(132,2140668000,4),(133,-1633276800,0),(133,-1615136400,1),(133,-1601827200,0),(133,-1583686800,1),(133,-880214400,2),(133,-769395600,3),(133,-765392400,1),(133,-747244800,0),(133,-733942800,1),(133,-526492800,0),(133,-513190800,1),(133,-495043200,0),(133,-481741200,1),(133,-462996000,0),(133,-450291600,1),(133,-431539200,0),(133,-418237200,1),(133,-400089600,0),(133,-386787600,1),(133,-368640000,0),(133,-355338000,1),(133,-337190400,0),(133,-323888400,1),(133,-305740800,0),(133,-289414800,1),(133,-273686400,0),(133,-260989200,1),(133,-242236800,0),(133,-226515600,1),(133,-210787200,0),(133,-195066000,1),(133,-179337600,4),(133,-21488400,5),(133,-5767200,4),(133,9961200,5),(133,25682400,4),(133,1143961200,0),(133,1162105200,1),(133,1173600000,0),(133,1194159600,4),(133,1205046000,5),(133,1225605600,4),(133,1236495600,5),(133,1257055200,4),(133,1268550000,5),(133,1289109600,4),(133,1299999600,5),(133,1320559200,4),(133,1331449200,5),(133,1352008800,4),(133,1362898800,5),(133,1383458400,4),(133,1394348400,5),(133,1414908000,4),(133,1425798000,5),(133,1446357600,4),(133,1457852400,5),(133,1478412000,4),(133,1489302000,5),(133,1509861600,4),(133,1520751600,5),(133,1541311200,4),(133,1552201200,5),(133,1572760800,4),(133,1583650800,5),(133,1604210400,4),(133,1615705200,5),(133,1636264800,4),(133,1647154800,5),(133,1667714400,4),(133,1678604400,5),(133,1699164000,4),(133,1710054000,5),(133,1730613600,4),(133,1741503600,5),(133,1762063200,4),(133,1772953200,5),(133,1793512800,4),(133,1805007600,5),(133,1825567200,4),(133,1836457200,5),(133,1857016800,4),(133,1867906800,5),(133,1888466400,4),(133,1899356400,5),(133,1919916000,4),(133,1930806000,5),(133,1951365600,4),(133,1962860400,5),(133,1983420000,4),(133,1994310000,5),(133,2014869600,4),(133,2025759600,5),(133,2046319200,4),(133,2057209200,5),(133,2077768800,4),(133,2088658800,5),(133,2109218400,4),(133,2120108400,5),(133,2140668000,4),(134,-1633276800,0),(134,-1615136400,1),(134,-1601827200,0),(134,-1583686800,1),(134,-880214400,2),(134,-769395600,3),(134,-765392400,1),(134,-747244800,0),(134,-733942800,1),(134,-715795200,0),(134,-702493200,1),(134,-684345600,0),(134,-671043600,1),(134,-652896000,0),(134,-639594000,1),(134,-620841600,0),(134,-608144400,1),(134,-589392000,0),(134,-576090000,1),(134,-557942400,0),(134,-544640400,1),(134,-526492800,0),(134,-513190800,1),(134,-495043200,0),(134,-481741200,1),(134,-463593600,0),(134,-447267600,1),(134,-431539200,0),(134,-415818000,1),(134,-400089600,0),(134,-386787600,1),(134,-368640000,0),(134,-355338000,1),(134,-337190400,0),(134,-323888400,1),(134,-305740800,0),(134,-292438800,1),(134,-273686400,4),(134,-21488400,5),(134,-5767200,4),(134,9961200,5),(134,25682400,4),(134,1143961200,0),(134,1162105200,1),(134,1173600000,5),(134,1194156000,4),(134,1205046000,5),(134,1225605600,4),(134,1236495600,5),(134,1257055200,4),(134,1268550000,5),(134,1289109600,4),(134,1299999600,5),(134,1320559200,4),(134,1331449200,5),(134,1352008800,4),(134,1362898800,5),(134,1383458400,4),(134,1394348400,5),(134,1414908000,4),(134,1425798000,5),(134,1446357600,4),(134,1457852400,5),(134,1478412000,4),(134,1489302000,5),(134,1509861600,4),(134,1520751600,5),(134,1541311200,4),(134,1552201200,5),(134,1572760800,4),(134,1583650800,5),(134,1604210400,4),(134,1615705200,5),(134,1636264800,4),(134,1647154800,5),(134,1667714400,4),(134,1678604400,5),(134,1699164000,4),(134,1710054000,5),(134,1730613600,4),(134,1741503600,5),(134,1762063200,4),(134,1772953200,5),(134,1793512800,4),(134,1805007600,5),(134,1825567200,4),(134,1836457200,5),(134,1857016800,4),(134,1867906800,5),(134,1888466400,4),(134,1899356400,5),(134,1919916000,4),(134,1930806000,5),(134,1951365600,4),(134,1962860400,5),(134,1983420000,4),(134,1994310000,5),(134,2014869600,4),(134,2025759600,5),(134,2046319200,4),(134,2057209200,5),(134,2077768800,4),(134,2088658800,5),(134,2109218400,4),(134,2120108400,5),(134,2140668000,4),(135,-1633276800,0),(135,-1615136400,1),(135,-1601827200,0),(135,-1583686800,1),(135,-900259200,0),(135,-891795600,1),(135,-880214400,2),(135,-769395600,3),(135,-765392400,1),(135,-747244800,0),(135,-733942800,1),(135,-715795200,0),(135,-702493200,1),(135,-684345600,0),(135,-671043600,1),(135,-652896000,0),(135,-639594000,1),(135,-620841600,0),(135,-608144400,1),(135,-589392000,0),(135,-576090000,1),(135,-557942400,0),(135,-544640400,1),(135,-526492800,0),(135,-513190800,1),(135,-495043200,0),(135,-481741200,1),(135,-463593600,4),(135,-386787600,1),(135,-368640000,4),(135,-21488400,5),(135,-5767200,4),(135,9961200,5),(135,25682400,4),(135,1143961200,5),(135,1162101600,4),(135,1173596400,5),(135,1194156000,4),(135,1205046000,5),(135,1225605600,4),(135,1236495600,5),(135,1257055200,4),(135,1268550000,5),(135,1289109600,4),(135,1299999600,5),(135,1320559200,4),(135,1331449200,5),(135,1352008800,4),(135,1362898800,5),(135,1383458400,4),(135,1394348400,5),(135,1414908000,4),(135,1425798000,5),(135,1446357600,4),(135,1457852400,5),(135,1478412000,4),(135,1489302000,5),(135,1509861600,4),(135,1520751600,5),(135,1541311200,4),(135,1552201200,5),(135,1572760800,4),(135,1583650800,5),(135,1604210400,4),(135,1615705200,5),(135,1636264800,4),(135,1647154800,5),(135,1667714400,4),(135,1678604400,5),(135,1699164000,4),(135,1710054000,5),(135,1730613600,4),(135,1741503600,5),(135,1762063200,4),(135,1772953200,5),(135,1793512800,4),(135,1805007600,5),(135,1825567200,4),(135,1836457200,5),(135,1857016800,4),(135,1867906800,5),(135,1888466400,4),(135,1899356400,5),(135,1919916000,4),(135,1930806000,5),(135,1951365600,4),(135,1962860400,5),(135,1983420000,4),(135,1994310000,5),(135,2014869600,4),(135,2025759600,5),(135,2046319200,4),(135,2057209200,5),(135,2077768800,4),(135,2088658800,5),(135,2109218400,4),(135,2120108400,5),(135,2140668000,4),(136,-536457600,2),(136,-147888000,1),(136,-131558400,2),(136,294228000,3),(136,325674000,4),(136,341395200,3),(136,357123600,4),(136,372844800,3),(136,388573200,4),(136,404899200,3),(136,420022800,4),(136,436348800,3),(136,452077200,4),(136,467798400,3),(136,483526800,4),(136,499248000,3),(136,514976400,4),(136,530697600,3),(136,544611600,4),(136,562147200,3),(136,576061200,4),(136,594201600,3),(136,607510800,4),(136,625651200,3),(136,638960400,4),(136,657100800,3),(136,671014800,4),(136,688550400,3),(136,702464400,4),(136,720000000,3),(136,733914000,4),(136,752054400,3),(136,765363600,4),(136,783504000,3),(136,796813200,4),(136,814953600,3),(136,828867600,4),(136,846403200,3),(136,860317200,4),(136,877852800,3),(136,891766800,4),(136,909302400,3),(136,923216400,4),(136,941356800,3),(136,954666000,4),(136,972806400,3),(136,986115600,4),(136,1004256000,3),(136,1018170000,4),(136,1035705600,3),(136,1049619600,4),(136,1067155200,3),(136,1081069200,4),(136,1099209600,3),(136,1112518800,4),(136,1130659200,3),(136,1143968400,4),(136,1162108800,3),(136,1173603600,4),(136,1194163200,3),(136,1205053200,4),(136,1225612800,3),(136,1236502800,4),(136,1257062400,3),(136,1268557200,4),(136,1289116800,3),(136,1300006800,4),(136,1320566400,3),(136,1331456400,4),(136,1352016000,3),(136,1362906000,4),(136,1383465600,3),(136,1394355600,4),(136,1414915200,3),(136,1425805200,4),(136,1446364800,3),(136,1457859600,4),(136,1478419200,3),(136,1489309200,4),(136,1509868800,3),(136,1520758800,4),(136,1541318400,3),(136,1552208400,4),(136,1572768000,3),(136,1583658000,4),(136,1604217600,3),(136,1615712400,4),(136,1636272000,3),(136,1647162000,4),(136,1667721600,3),(136,1678611600,4),(136,1699171200,3),(136,1710061200,4),(136,1730620800,3),(136,1741510800,4),(136,1762070400,3),(136,1772960400,4),(136,1793520000,3),(136,1805014800,4),(136,1825574400,3),(136,1836464400,4),(136,1857024000,3),(136,1867914000,4),(136,1888473600,3),(136,1899363600,4),(136,1919923200,3),(136,1930813200,4),(136,1951372800,3),(136,1962867600,4),(136,1983427200,3),(136,1994317200,4),(136,2014876800,3),(136,2025766800,4),(136,2046326400,3),(136,2057216400,4),(136,2077776000,3),(136,2088666000,4),(136,2109225600,3),(136,2120115600,4),(136,2140675200,3),(137,-865296000,5),(137,-769395600,1),(137,-765396000,2),(137,-147898800,3),(137,-131569200,2),(137,325666800,4),(137,341388000,2),(137,357116400,4),(137,372837600,2),(137,388566000,4),(137,404892000,2),(137,420015600,4),(137,436341600,2),(137,452070000,4),(137,467791200,2),(137,483519600,4),(137,499240800,2),(137,514969200,4),(137,530690400,2),(137,544604400,4),(137,562140000,2),(137,576054000,4),(137,594194400,2),(137,607503600,4),(137,625644000,2),(137,638953200,4),(137,657093600,2),(137,671007600,4),(137,688543200,2),(137,702457200,4),(137,719992800,2),(137,733906800,4),(137,752047200,2),(137,765356400,4),(137,783496800,2),(137,796806000,4),(137,814946400,2),(137,828860400,4),(137,846396000,2),(137,860310000,4),(137,877845600,2),(137,891759600,4),(137,909295200,2),(137,923209200,4),(137,941349600,6),(137,954662400,7),(137,972802800,2),(137,986108400,4),(137,1004248800,2),(137,1018162800,4),(137,1035698400,2),(137,1049612400,4),(137,1067148000,2),(137,1081062000,4),(137,1099202400,2),(137,1112511600,4),(137,1130652000,2),(137,1143961200,4),(137,1162101600,2),(137,1173596400,4),(137,1194156000,2),(137,1205046000,4),(137,1225605600,2),(137,1236495600,4),(137,1257055200,2),(137,1268550000,4),(137,1289109600,2),(137,1299999600,4),(137,1320559200,2),(137,1331449200,4),(137,1352008800,2),(137,1362898800,4),(137,1383458400,2),(137,1394348400,4),(137,1414908000,2),(137,1425798000,4),(137,1446357600,2),(137,1457852400,4),(137,1478412000,2),(137,1489302000,4),(137,1509861600,2),(137,1520751600,4),(137,1541311200,2),(137,1552201200,4),(137,1572760800,2),(137,1583650800,4),(137,1604210400,2),(137,1615705200,4),(137,1636264800,2),(137,1647154800,4),(137,1667714400,2),(137,1678604400,4),(137,1699164000,2),(137,1710054000,4),(137,1730613600,2),(137,1741503600,4),(137,1762063200,2),(137,1772953200,4),(137,1793512800,2),(137,1805007600,4),(137,1825567200,2),(137,1836457200,4),(137,1857016800,2),(137,1867906800,4),(137,1888466400,2),(137,1899356400,4),(137,1919916000,2),(137,1930806000,4),(137,1951365600,2),(137,1962860400,4),(137,1983420000,2),(137,1994310000,4),(137,2014869600,2),(137,2025759600,4),(137,2046319200,2),(137,2057209200,4),(137,2077768800,2),(137,2088658800,4),(137,2109218400,2),(137,2120108400,4),(137,2140668000,2),(138,-1827687170,1),(138,126687600,2),(138,152085600,1),(138,162370800,2),(138,183535200,1),(138,199263600,2),(138,215589600,1),(138,230713200,2),(138,247039200,1),(138,262767600,2),(138,278488800,1),(138,294217200,2),(138,309938400,1),(138,325666800,2),(138,341388000,1),(138,357116400,2),(138,372837600,1),(138,388566000,2),(138,404892000,1),(138,420015600,2),(138,436341600,1),(139,-1567453392,1),(139,-1233432000,2),(139,-1222981200,1),(139,-1205956800,2),(139,-1194037200,1),(139,-1172865600,2),(139,-1162501200,1),(139,-1141329600,2),(139,-1130965200,1),(139,-1109793600,2),(139,-1099429200,1),(139,-1078257600,2),(139,-1067806800,1),(139,-1046635200,2),(139,-1036270800,1),(139,-1015099200,2),(139,-1004734800,1),(139,-983563200,2),(139,-973198800,1),(139,-952027200,2),(139,-941576400,1),(139,-931032000,2),(139,-900882000,1),(139,-890337600,2),(139,-833749200,1),(139,-827265600,2),(139,-752274000,1),(139,-733780800,2),(139,-197326800,1),(139,-190843200,2),(139,-184194000,1),(139,-164491200,2),(139,-152658000,1),(139,-132955200,2),(139,-121122000,1),(139,-101419200,2),(139,-86821200,1),(139,-71092800,2),(139,-54766800,1),(139,-39038400,2),(139,-23317200,1),(139,-7588800,4),(139,128142000,3),(139,136605600,4),(139,596948400,3),(139,605066400,4),(139,624423600,3),(139,636516000,1),(139,657086400,2),(139,669178800,1),(139,686721600,3),(139,699415200,4),(139,719377200,3),(139,731469600,4),(139,938919600,2),(139,952052400,4),(139,1198983600,3),(139,1205632800,4),(140,-880207200,1),(140,-769395600,2),(140,-765385200,0),(140,-21477600,3),(140,-5756400,0),(140,9972000,3),(140,25693200,0),(140,41421600,3),(140,57747600,0),(140,73476000,3),(140,89197200,0),(140,104925600,3),(140,120646800,0),(140,126698400,3),(140,152096400,0),(140,162381600,3),(140,183546000,0),(140,199274400,3),(140,215600400,0),(140,230724000,3),(140,247050000,0),(140,262778400,3),(140,278499600,0),(140,294228000,3),(140,309949200,0),(140,325677600,4),(140,341402400,0),(140,357127200,3),(140,372848400,0),(140,388576800,3),(140,404902800,0),(140,420026400,3),(140,436352400,5),(140,439030800,7),(140,452084400,6),(140,467805600,7),(140,483534000,6),(140,499255200,7),(140,514983600,6),(140,530704800,7),(140,544618800,6),(140,562154400,7),(140,576068400,6),(140,594208800,7),(140,607518000,6),(140,625658400,7),(140,638967600,6),(140,657108000,7),(140,671022000,6),(140,688557600,7),(140,702471600,6),(140,720007200,7),(140,733921200,6),(140,752061600,7),(140,765370800,6),(140,783511200,7),(140,796820400,6),(140,814960800,7),(140,828874800,6),(140,846410400,7),(140,860324400,6),(140,877860000,7),(140,891774000,6),(140,909309600,7),(140,923223600,6),(140,941364000,7),(140,954673200,6),(140,972813600,7),(140,986122800,6),(140,1004263200,7),(140,1018177200,6),(140,1035712800,7),(140,1049626800,6),(140,1067162400,7),(140,1081076400,6),(140,1099216800,7),(140,1112526000,6),(140,1130666400,7),(140,1143975600,6),(140,1162116000,7),(140,1173610800,6),(140,1194170400,7),(140,1205060400,6),(140,1225620000,7),(140,1236510000,6),(140,1257069600,7),(140,1268564400,6),(140,1289124000,7),(140,1300014000,6),(140,1320573600,7),(140,1331463600,6),(140,1352023200,7),(140,1362913200,6),(140,1383472800,7),(140,1394362800,6),(140,1414922400,7),(140,1425812400,6),(140,1446372000,7),(140,1457866800,6),(140,1478426400,7),(140,1489316400,6),(140,1509876000,7),(140,1520766000,6),(140,1541325600,7),(140,1552215600,6),(140,1572775200,7),(140,1583665200,6),(140,1604224800,7),(140,1615719600,6),(140,1636279200,7),(140,1647169200,6),(140,1667728800,7),(140,1678618800,6),(140,1699178400,7),(140,1710068400,6),(140,1730628000,7),(140,1741518000,6),(140,1762077600,7),(140,1772967600,6),(140,1793527200,7),(140,1805022000,6),(140,1825581600,7),(140,1836471600,6),(140,1857031200,7),(140,1867921200,6),(140,1888480800,7),(140,1899370800,6),(140,1919930400,7),(140,1930820400,6),(140,1951380000,7),(140,1962874800,6),(140,1983434400,7),(140,1994324400,6),(140,2014884000,7),(140,2025774000,6),(140,2046333600,7),(140,2057223600,6),(140,2077783200,7),(140,2088673200,6),(140,2109232800,7),(140,2120122800,6),(140,2140682400,7),(141,-1633276800,0),(141,-1615136400,1),(141,-1601827200,0),(141,-1583686800,1),(141,-1535904000,0),(141,-1525280400,1),(141,-905097600,0),(141,-891795600,1),(141,-880214400,2),(141,-769395600,3),(141,-765392400,1),(141,-757360800,0),(141,-744224400,1),(141,-715795200,0),(141,-608144400,1),(141,-589392000,0),(141,-576090000,1),(141,-557942400,0),(141,-544640400,1),(141,-526492800,0),(141,-513190800,1),(141,-495043200,0),(141,-481741200,1),(141,-463593600,0),(141,-450291600,1),(141,-431539200,0),(141,-415818000,1),(141,-400089600,0),(141,-384368400,1),(141,-368640000,0),(141,-352918800,1),(141,-337190400,0),(141,-321469200,1),(141,-305740800,0),(141,-289414800,1),(141,-273686400,0),(141,-266432400,4),(141,-52938000,5),(141,-37216800,4),(141,-21488400,5),(141,-5767200,4),(141,9961200,5),(141,25682400,4),(141,41410800,5),(141,57736800,4),(141,73465200,5),(141,89186400,4),(141,104914800,5),(141,120636000,4),(141,126687600,0),(141,152089200,4),(141,162370800,5),(141,183535200,4),(141,199263600,5),(141,215589600,4),(141,230713200,5),(141,247039200,4),(141,262767600,5),(141,278488800,4),(141,294217200,5),(141,309938400,4),(141,325666800,5),(141,341388000,4),(141,357116400,5),(141,372837600,4),(141,388566000,5),(141,404892000,4),(141,420015600,5),(141,436341600,4),(141,452070000,5),(141,467791200,4),(141,483519600,5),(141,499240800,4),(141,514969200,5),(141,530690400,4),(141,544604400,5),(141,562140000,4),(141,576054000,5),(141,594194400,4),(141,607503600,5),(141,625644000,4),(141,638953200,5),(141,657093600,4),(141,671007600,5),(141,688543200,4),(141,702457200,5),(141,719992800,4),(141,733906800,5),(141,752047200,4),(141,765356400,5),(141,783496800,4),(141,796806000,5),(141,814946400,4),(141,828860400,5),(141,846396000,4),(141,860310000,5),(141,877845600,4),(141,891759600,5),(141,909295200,4),(141,923209200,5),(141,941349600,4),(141,954658800,5),(141,972799200,4),(141,986108400,5),(141,1004248800,4),(141,1018162800,5),(141,1035698400,4),(141,1049612400,5),(141,1067148000,4),(141,1081062000,5),(141,1099202400,4),(141,1112511600,5),(141,1130652000,4),(141,1143961200,5),(141,1162101600,4),(141,1173596400,5),(141,1194156000,4),(141,1205046000,5),(141,1225605600,4),(141,1236495600,5),(141,1257055200,4),(141,1268550000,5),(141,1289109600,4),(141,1299999600,5),(141,1320559200,4),(141,1331449200,5),(141,1352008800,4),(141,1362898800,5),(141,1383458400,4),(141,1394348400,5),(141,1414908000,4),(141,1425798000,5),(141,1446357600,4),(141,1457852400,5),(141,1478412000,4),(141,1489302000,5),(141,1509861600,4),(141,1520751600,5),(141,1541311200,4),(141,1552201200,5),(141,1572760800,4),(141,1583650800,5),(141,1604210400,4),(141,1615705200,5),(141,1636264800,4),(141,1647154800,5),(141,1667714400,4),(141,1678604400,5),(141,1699164000,4),(141,1710054000,5),(141,1730613600,4),(141,1741503600,5),(141,1762063200,4),(141,1772953200,5),(141,1793512800,4),(141,1805007600,5),(141,1825567200,4),(141,1836457200,5),(141,1857016800,4),(141,1867906800,5),(141,1888466400,4),(141,1899356400,5),(141,1919916000,4),(141,1930806000,5),(141,1951365600,4),(141,1962860400,5),(141,1983420000,4),(141,1994310000,5),(141,2014869600,4),(141,2025759600,5),(141,2046319200,4),(141,2057209200,5),(141,2077768800,4),(141,2088658800,5),(141,2109218400,4),(141,2120108400,5),(141,2140668000,4),(142,-1633276800,0),(142,-1615136400,1),(142,-1601827200,0),(142,-1583686800,1),(142,-880214400,2),(142,-769395600,3),(142,-765392400,1),(142,-52934400,0),(142,-37213200,1),(142,-21484800,0),(142,-5763600,1),(142,9964800,0),(142,25686000,1),(142,41414400,0),(142,57740400,1),(142,73468800,0),(142,89190000,1),(142,104918400,0),(142,120639600,1),(142,126691200,0),(142,152089200,1),(142,162374400,0),(142,183538800,1),(142,199267200,0),(142,215593200,1),(142,230716800,0),(142,247042800,1),(142,262771200,0),(142,278492400,1),(142,294220800,0),(142,309942000,1),(142,325670400,0),(142,341391600,1),(142,357120000,0),(142,372841200,1),(142,388569600,0),(142,404895600,1),(142,420019200,0),(142,436345200,1),(142,452073600,0),(142,467794800,1),(142,483523200,0),(142,499244400,1),(142,514972800,0),(142,530694000,1),(142,544608000,0),(142,562143600,1),(142,576057600,0),(142,594198000,1),(142,607507200,0),(142,625647600,1),(142,638956800,0),(142,657097200,1),(142,671011200,0),(142,688546800,1),(142,702460800,0),(142,719996400,1),(142,733910400,0),(142,752050800,1),(142,765360000,0),(142,783500400,1),(142,796809600,0),(142,814950000,1),(142,828864000,0),(142,846399600,1),(142,860313600,0),(142,877849200,1),(142,891763200,0),(142,909298800,1),(142,923212800,0),(142,941353200,1),(142,954662400,0),(142,972802800,5),(142,986108400,4),(142,1004248800,5),(142,1018162800,4),(142,1035698400,5),(142,1049612400,4),(142,1067148000,5),(142,1081062000,4),(142,1099202400,5),(142,1112511600,4),(142,1130652000,5),(142,1143961200,4),(142,1162101600,5),(142,1173596400,4),(142,1194156000,5),(142,1205046000,4),(142,1225605600,5),(142,1236495600,4),(142,1257055200,5),(142,1268550000,4),(142,1289109600,5),(142,1299999600,4),(142,1320559200,5),(142,1331449200,4),(142,1352008800,5),(142,1362898800,4),(142,1383458400,5),(142,1394348400,4),(142,1414908000,5),(142,1425798000,4),(142,1446357600,5),(142,1457852400,4),(142,1478412000,5),(142,1489302000,4),(142,1509861600,5),(142,1520751600,4),(142,1541311200,5),(142,1552201200,4),(142,1572760800,5),(142,1583650800,4),(142,1604210400,5),(142,1615705200,4),(142,1636264800,5),(142,1647154800,4),(142,1667714400,5),(142,1678604400,4),(142,1699164000,5),(142,1710054000,4),(142,1730613600,5),(142,1741503600,4),(142,1762063200,5),(142,1772953200,4),(142,1793512800,5),(142,1805007600,4),(142,1825567200,5),(142,1836457200,4),(142,1857016800,5),(142,1867906800,4),(142,1888466400,5),(142,1899356400,4),(142,1919916000,5),(142,1930806000,4),(142,1951365600,5),(142,1962860400,4),(142,1983420000,5),(142,1994310000,4),(142,2014869600,5),(142,2025759600,4),(142,2046319200,5),(142,2057209200,4),(142,2077768800,5),(142,2088658800,4),(142,2109218400,5),(142,2120108400,4),(142,2140668000,5),(143,-1633276800,0),(143,-1615136400,1),(143,-1601827200,0),(143,-1583686800,1),(143,-880214400,2),(143,-769395600,3),(143,-765392400,1),(143,-715795200,0),(143,-702493200,1),(143,-684345600,0),(143,-671043600,1),(143,-652896000,0),(143,-639594000,1),(143,-620841600,0),(143,-608144400,1),(143,-589392000,0),(143,-576090000,1),(143,-557942400,0),(143,-544640400,1),(143,-526492800,0),(143,-513190800,1),(143,-495043200,0),(143,-481741200,1),(143,-463593600,0),(143,-447267600,1),(143,-431539200,0),(143,-415818000,1),(143,-400089600,0),(143,-386787600,1),(143,-368640000,0),(143,-355338000,1),(143,-337190400,0),(143,-321469200,1),(143,-305740800,0),(143,-289414800,1),(143,-273686400,0),(143,-257965200,1),(143,-242236800,4),(143,-195066000,1),(143,-84384000,0),(143,-68662800,1),(143,-52934400,0),(143,-37213200,1),(143,-21484800,0),(143,-5763600,1),(143,9964800,0),(143,25686000,1),(143,41414400,0),(143,57740400,1),(143,73468800,0),(143,89190000,1),(143,104918400,0),(143,120639600,1),(143,126691200,0),(143,152089200,1),(143,162374400,0),(143,183538800,1),(143,199267200,0),(143,215593200,1),(143,230716800,0),(143,247042800,1),(143,262771200,0),(143,278492400,1),(143,294220800,0),(143,309942000,1),(143,325670400,0),(143,341391600,1),(143,357120000,0),(143,372841200,1),(143,388569600,0),(143,404895600,1),(143,420019200,0),(143,436345200,1),(143,452073600,0),(143,467794800,1),(143,483523200,0),(143,499244400,1),(143,514972800,0),(143,530694000,1),(143,544608000,0),(143,562143600,1),(143,576057600,0),(143,594198000,1),(143,607507200,0),(143,625647600,1),(143,638956800,0),(143,657097200,1),(143,671011200,0),(143,688546800,4),(143,1143961200,0),(143,1162105200,1),(143,1173600000,0),(143,1194159600,1),(143,1205049600,0),(143,1225609200,1),(143,1236499200,0),(143,1257058800,1),(143,1268553600,0),(143,1289113200,1),(143,1300003200,0),(143,1320562800,1),(143,1331452800,0),(143,1352012400,1),(143,1362902400,0),(143,1383462000,1),(143,1394352000,0),(143,1414911600,1),(143,1425801600,0),(143,1446361200,1),(143,1457856000,0),(143,1478415600,1),(143,1489305600,0),(143,1509865200,1),(143,1520755200,0),(143,1541314800,1),(143,1552204800,0),(143,1572764400,1),(143,1583654400,0),(143,1604214000,1),(143,1615708800,0),(143,1636268400,1),(143,1647158400,0),(143,1667718000,1),(143,1678608000,0),(143,1699167600,1),(143,1710057600,0),(143,1730617200,1),(143,1741507200,0),(143,1762066800,1),(143,1772956800,0),(143,1793516400,1),(143,1805011200,0),(143,1825570800,1),(143,1836460800,0),(143,1857020400,1),(143,1867910400,0),(143,1888470000,1),(143,1899360000,0),(143,1919919600,1),(143,1930809600,0),(143,1951369200,1),(143,1962864000,0),(143,1983423600,1),(143,1994313600,0),(143,2014873200,1),(143,2025763200,0),(143,2046322800,1),(143,2057212800,0),(143,2077772400,1),(143,2088662400,0),(143,2109222000,1),(143,2120112000,0),(143,2140671600,1),(144,-1826738653,1),(144,-157750200,2),(145,-1205954844,1),(145,-1192307244,2),(146,-1938538284,2),(146,-1009825200,1),(146,-1002052800,2),(146,-986756400,1),(146,-971035200,2),(146,-955306800,1),(146,-939585600,2),(146,504939600,1),(146,512712000,2),(146,536475600,1),(146,544248000,2),(146,631170000,1),(146,638942400,2),(146,757400400,1),(146,765172800,2),(147,-1633269600,0),(147,-1615129200,1),(147,-1601820000,0),(147,-1583679600,1),(147,-880207200,2),(147,-769395600,3),(147,-765385200,1),(147,-687967140,0),(147,-662655600,1),(147,-620838000,0),(147,-608137200,1),(147,-589388400,0),(147,-576082800,1),(147,-557938800,0),(147,-544633200,1),(147,-526489200,0),(147,-513183600,1),(147,-495039600,0),(147,-481734000,1),(147,-463590000,0),(147,-450284400,1),(147,-431535600,0),(147,-418230000,1),(147,-400086000,0),(147,-386780400,1),(147,-368636400,0),(147,-355330800,1),(147,-337186800,0),(147,-323881200,1),(147,-305737200,0),(147,-292431600,1),(147,-273682800,0),(147,-260982000,1),(147,-242233200,0),(147,-226508400,1),(147,-210783600,0),(147,-195058800,1),(147,-179334000,0),(147,-163609200,1),(147,-147884400,0),(147,-131554800,1),(147,-116434800,0),(147,-100105200,1),(147,-84376800,0),(147,-68655600,1),(147,-52927200,0),(147,-37206000,1),(147,-21477600,0),(147,-5756400,1),(147,9972000,0),(147,25693200,1),(147,41421600,0),(147,57747600,1),(147,73476000,0),(147,89197200,1),(147,104925600,0),(147,120646800,1),(147,126698400,0),(147,152096400,1),(147,162381600,0),(147,183546000,1),(147,199274400,0),(147,215600400,1),(147,230724000,0),(147,247050000,1),(147,262778400,0),(147,278499600,1),(147,294228000,0),(147,309949200,1),(147,325677600,0),(147,341398800,1),(147,357127200,0),(147,372848400,1),(147,388576800,0),(147,404902800,1),(147,420026400,0),(147,436352400,1),(147,452080800,0),(147,467802000,1),(147,483530400,0),(147,499251600,1),(147,514980000,0),(147,530701200,1),(147,544615200,0),(147,562150800,1),(147,576064800,0),(147,594205200,1),(147,607514400,0),(147,625654800,1),(147,638964000,0),(147,657104400,1),(147,671018400,0),(147,688554000,1),(147,702468000,0),(147,720003600,1),(147,733917600,0),(147,752058000,1),(147,765367200,0),(147,783507600,1),(147,796816800,0),(147,814957200,1),(147,828871200,0),(147,846406800,1),(147,860320800,0),(147,877856400,1),(147,891770400,0),(147,909306000,1),(147,923220000,0),(147,941360400,1),(147,954669600,0),(147,972810000,1),(147,986119200,0),(147,1004259600,1),(147,1018173600,0),(147,1035709200,1),(147,1049623200,0),(147,1067158800,1),(147,1081072800,0),(147,1099213200,1),(147,1112522400,0),(147,1130662800,1),(147,1143972000,0),(147,1162112400,1),(147,1173607200,0),(147,1194166800,1),(147,1205056800,0),(147,1225616400,1),(147,1236506400,0),(147,1257066000,1),(147,1268560800,0),(147,1289120400,1),(147,1300010400,0),(147,1320570000,1),(147,1331460000,0),(147,1352019600,1),(147,1362909600,0),(147,1383469200,1),(147,1394359200,0),(147,1414918800,1),(147,1425808800,0),(147,1446368400,1),(147,1457863200,0),(147,1478422800,1),(147,1489312800,0),(147,1509872400,1),(147,1520762400,0),(147,1541322000,1),(147,1552212000,0),(147,1572771600,1),(147,1583661600,0),(147,1604221200,1),(147,1615716000,0),(147,1636275600,1),(147,1647165600,0),(147,1667725200,1),(147,1678615200,0),(147,1699174800,1),(147,1710064800,0),(147,1730624400,1),(147,1741514400,0),(147,1762074000,1),(147,1772964000,0),(147,1793523600,1),(147,1805018400,0),(147,1825578000,1),(147,1836468000,0),(147,1857027600,1),(147,1867917600,0),(147,1888477200,1),(147,1899367200,0),(147,1919926800,1),(147,1930816800,0),(147,1951376400,1),(147,1962871200,0),(147,1983430800,1),(147,1994320800,0),(147,2014880400,1),(147,2025770400,0),(147,2046330000,1),(147,2057220000,0),(147,2077779600,1),(147,2088669600,0),(147,2109229200,1),(147,2120119200,0),(147,2140678800,1),(148,-1633276800,0),(148,-1615136400,1),(148,-1601827200,0),(148,-1583686800,1),(148,-1535904000,0),(148,-1525280400,1),(148,-905097600,0),(148,-891795600,1),(148,-880214400,2),(148,-769395600,3),(148,-765392400,1),(148,-757360800,0),(148,-744224400,1),(148,-715795200,0),(148,-608144400,1),(148,-589392000,0),(148,-576090000,1),(148,-557942400,0),(148,-544640400,1),(148,-526492800,0),(148,-513190800,1),(148,-495043200,0),(148,-481741200,1),(148,-463593600,0),(148,-450291600,1),(148,-431539200,0),(148,-415818000,1),(148,-400089600,0),(148,-384368400,1),(148,-368640000,0),(148,-352918800,1),(148,-337190400,0),(148,-321469200,1),(148,-305740800,0),(148,-289414800,1),(148,-273686400,0),(148,-266432400,4),(148,-52938000,5),(148,-37216800,4),(148,-21488400,5),(148,-5767200,4),(148,9961200,5),(148,25682400,4),(148,41410800,5),(148,57736800,4),(148,73465200,5),(148,89186400,4),(148,104914800,5),(148,120636000,4),(148,126687600,0),(148,152089200,4),(148,162370800,5),(148,183535200,4),(148,199263600,5),(148,215589600,4),(148,230713200,5),(148,247039200,4),(148,262767600,5),(148,278488800,4),(148,294217200,5),(148,309938400,4),(148,325666800,5),(148,341388000,4),(148,357116400,5),(148,372837600,4),(148,388566000,5),(148,404892000,4),(148,420015600,5),(148,436341600,4),(148,452070000,5),(148,467791200,4),(148,483519600,5),(148,499240800,4),(148,514969200,5),(148,530690400,4),(148,544604400,5),(148,562140000,4),(148,576054000,5),(148,594194400,4),(148,607503600,5),(148,625644000,4),(148,638953200,5),(148,657093600,4),(148,671007600,5),(148,688543200,4),(148,702457200,5),(148,719992800,4),(148,733906800,5),(148,752047200,4),(148,765356400,5),(148,783496800,4),(148,796806000,5),(148,814946400,4),(148,828860400,5),(148,846396000,4),(148,860310000,5),(148,877845600,4),(148,891759600,5),(148,909295200,4),(148,923209200,5),(148,941349600,4),(148,954658800,5),(148,972799200,4),(148,986108400,5),(148,1004248800,4),(148,1018162800,5),(148,1035698400,4),(148,1049612400,5),(148,1067148000,4),(148,1081062000,5),(148,1099202400,4),(148,1112511600,5),(148,1130652000,4),(148,1143961200,5),(148,1162101600,4),(148,1173596400,5),(148,1194156000,4),(148,1205046000,5),(148,1225605600,4),(148,1236495600,5),(148,1257055200,4),(148,1268550000,5),(148,1289109600,4),(148,1299999600,5),(148,1320559200,4),(148,1331449200,5),(148,1352008800,4),(148,1362898800,5),(148,1383458400,4),(148,1394348400,5),(148,1414908000,4),(148,1425798000,5),(148,1446357600,4),(148,1457852400,5),(148,1478412000,4),(148,1489302000,5),(148,1509861600,4),(148,1520751600,5),(148,1541311200,4),(148,1552201200,5),(148,1572760800,4),(148,1583650800,5),(148,1604210400,4),(148,1615705200,5),(148,1636264800,4),(148,1647154800,5),(148,1667714400,4),(148,1678604400,5),(148,1699164000,4),(148,1710054000,5),(148,1730613600,4),(148,1741503600,5),(148,1762063200,4),(148,1772953200,5),(148,1793512800,4),(148,1805007600,5),(148,1825567200,4),(148,1836457200,5),(148,1857016800,4),(148,1867906800,5),(148,1888466400,4),(148,1899356400,5),(148,1919916000,4),(148,1930806000,5),(148,1951365600,4),(148,1962860400,5),(148,1983420000,4),(148,1994310000,5),(148,2014869600,4),(148,2025759600,5),(148,2046319200,4),(148,2057209200,5),(148,2077768800,4),(148,2088658800,5),(148,2109218400,4),(148,2120108400,5),(148,2140668000,4),(149,-1826738653,1),(149,-157750200,2),(150,-1767217028,2),(150,-1206957600,1),(150,-1191362400,2),(150,-1175374800,1),(150,-1159826400,2),(150,-633819600,1),(150,-622069200,2),(150,-602283600,1),(150,-591832800,2),(150,-570747600,1),(150,-560210400,2),(150,-539125200,1),(150,-531352800,2),(150,-191365200,1),(150,-184197600,2),(150,-155163600,1),(150,-150069600,2),(150,-128898000,1),(150,-121125600,2),(150,-99954000,1),(150,-89589600,2),(150,-68418000,1),(150,-57967200,2),(150,499748400,1),(150,511236000,2),(150,530593200,1),(150,540266400,2),(150,562129200,1),(150,571197600,2),(150,592974000,1),(150,602042400,2),(150,624423600,1),(150,634701600,2),(150,813726000,1),(150,824004000,2),(150,938919600,1),(150,951616800,2),(150,970974000,1),(150,972180000,2),(150,1003028400,1),(150,1013911200,2),(151,-1121105688,1),(151,105084000,2),(151,161758800,1),(151,290584800,3),(151,299134800,1),(151,322034400,3),(151,330584400,1),(151,694260000,2),(151,717310800,1),(151,725868000,2),(151,852094800,1),(151,1113112800,3),(151,1128229200,1),(151,1146384000,3),(151,1159682400,1),(152,-1767211196,2),(152,-1206954000,1),(152,-1191358800,2),(152,-1175371200,1),(152,-1159822800,2),(152,-633816000,1),(152,-622065600,2),(152,-602280000,1),(152,-591829200,2),(152,-570744000,1),(152,-560206800,2),(152,-539121600,1),(152,-531349200,2),(152,-191361600,1),(152,-184194000,2),(152,-155160000,1),(152,-150066000,2),(152,-128894400,1),(152,-121122000,2),(152,-99950400,1),(152,-89586000,2),(152,-68414400,1),(152,-57963600,2),(152,499752000,1),(152,511239600,2),(152,530596800,1),(152,540270000,2),(152,562132800,1),(152,571201200,2),(152,750830400,1),(152,761713200,2),(153,-1825098836,1),(154,-1851537340,1),(154,323841600,2),(154,338958000,1),(155,-1514743200,1),(155,576057600,2),(155,594198000,1),(155,828864000,2),(155,846399600,1),(155,860313600,2),(155,877849200,1),(155,891763200,2),(155,909298800,1),(155,923212800,2),(155,941353200,1),(155,954662400,2),(155,972802800,1),(155,989136000,2),(155,1001833200,1),(155,1018166400,2),(155,1035702000,1),(155,1049616000,2),(155,1067151600,1),(155,1081065600,2),(155,1099206000,1),(155,1112515200,2),(155,1130655600,1),(155,1143964800,2),(155,1162105200,1),(155,1175414400,2),(155,1193554800,1),(155,1207468800,2),(155,1225004400,1),(155,1238918400,2),(155,1256454000,1),(155,1268553600,2),(155,1289113200,1),(155,1300003200,2),(155,1320562800,1),(155,1331452800,2),(155,1352012400,1),(155,1362902400,2),(155,1383462000,1),(155,1394352000,2),(155,1414911600,1),(155,1425801600,2),(155,1446361200,1),(155,1457856000,2),(155,1478415600,1),(155,1489305600,2),(155,1509865200,1),(155,1520755200,2),(155,1541314800,1),(155,1552204800,2),(155,1572764400,1),(155,1583654400,2),(155,1604214000,1),(155,1615708800,2),(155,1636268400,1),(155,1647158400,2),(155,1667718000,1),(155,1678608000,2),(155,1699167600,1),(155,1710057600,2),(155,1730617200,1),(155,1741507200,2),(155,1762066800,1),(155,1772956800,2),(155,1793516400,1),(155,1805011200,2),(155,1825570800,1),(155,1836460800,2),(155,1857020400,1),(155,1867910400,2),(155,1888470000,1),(155,1899360000,2),(155,1919919600,1),(155,1930809600,2),(155,1951369200,1),(155,1962864000,2),(155,1983423600,1),(155,1994313600,2),(155,2014873200,1),(155,2025763200,2),(155,2046322800,1),(155,2057212800,2),(155,2077772400,1),(155,2088662400,2),(155,2109222000,1),(155,2120112000,2),(155,2140671600,1),(156,-1514739600,1),(156,-1343066400,2),(156,-1234807200,1),(156,-1220292000,2),(156,-1207159200,1),(156,-1191344400,2),(156,-873828000,1),(156,-661539600,3),(156,28800,1),(156,828867600,4),(156,846403200,1),(156,860317200,4),(156,877852800,1),(156,891766800,4),(156,909302400,1),(156,923216400,4),(156,941356800,1),(156,954666000,4),(156,972806400,1),(156,989139600,4),(156,1001836800,1),(156,1018170000,4),(156,1035705600,1),(156,1049619600,4),(156,1067155200,1),(156,1081069200,4),(156,1099209600,1),(156,1112518800,4),(156,1130659200,1),(156,1143968400,4),(156,1162108800,1),(156,1175418000,4),(156,1193558400,1),(156,1207472400,4),(156,1225008000,1),(156,1238922000,4),(156,1256457600,1),(156,1270371600,4),(156,1288512000,1),(156,1301821200,4),(156,1319961600,1),(156,1333270800,4),(156,1351411200,1),(156,1365325200,4),(156,1382860800,1),(156,1396774800,4),(156,1414310400,1),(156,1428224400,4),(156,1445760000,1),(156,1459674000,4),(156,1477814400,1),(156,1491123600,4),(156,1509264000,1),(156,1522573200,4),(156,1540713600,1),(156,1554627600,4),(156,1572163200,1),(156,1586077200,4),(156,1603612800,1),(156,1617526800,4),(156,1635667200,1),(156,1648976400,4),(156,1667116800,1),(156,1680426000,4),(156,1698566400,1),(156,1712480400,4),(156,1730016000,1),(156,1743930000,4),(156,1761465600,1),(156,1775379600,4),(156,1792915200,1),(156,1806829200,4),(156,1824969600,1),(156,1838278800,4),(156,1856419200,1),(156,1869728400,4),(156,1887868800,1),(156,1901782800,4),(156,1919318400,1),(156,1933232400,4),(156,1950768000,1),(156,1964682000,4),(156,1982822400,1),(156,1996131600,4),(156,2014272000,1),(156,2027581200,4),(156,2045721600,1),(156,2059030800,4),(156,2077171200,1),(156,2091085200,4),(156,2108620800,1),(156,2122534800,4),(156,2140070400,1),(157,-1567453392,1),(157,-1233432000,2),(157,-1222981200,1),(157,-1205956800,2),(157,-1194037200,1),(157,-1172865600,2),(157,-1162501200,1),(157,-1141329600,2),(157,-1130965200,1),(157,-1109793600,2),(157,-1099429200,1),(157,-1078257600,2),(157,-1067806800,1),(157,-1046635200,2),(157,-1036270800,1),(157,-1015099200,2),(157,-1004734800,1),(157,-983563200,2),(157,-973198800,1),(157,-952027200,2),(157,-941576400,1),(157,-931032000,2),(157,-900882000,1),(157,-890337600,2),(157,-833749200,1),(157,-827265600,2),(157,-752274000,1),(157,-733780800,2),(157,-197326800,1),(157,-190843200,2),(157,-184194000,1),(157,-164491200,2),(157,-152658000,1),(157,-132955200,2),(157,-121122000,1),(157,-101419200,2),(157,-86821200,1),(157,-71092800,2),(157,-54766800,1),(157,-39038400,2),(157,-23317200,1),(157,-7588800,4),(157,128142000,3),(157,136605600,4),(157,596948400,3),(157,605066400,4),(157,624423600,3),(157,636516000,1),(157,655963200,2),(157,667796400,1),(157,687499200,2),(157,699418800,1),(157,719380800,3),(157,731469600,4),(157,938919600,2),(157,952052400,4),(157,1085281200,1),(157,1096171200,4),(157,1198983600,3),(157,1205632800,4),(158,-1633276800,0),(158,-1615136400,1),(158,-1601827200,0),(158,-1583686800,1),(158,-880214400,2),(158,-769395600,3),(158,-765392400,1),(158,-747244800,0),(158,-733942800,1),(158,-116438400,0),(158,-100112400,1),(158,-21484800,4),(158,104914800,0),(158,120639600,1),(158,126691200,0),(158,152089200,1),(158,162374400,0),(158,183538800,1),(158,199267200,0),(158,215593200,1),(158,230716800,0),(158,247042800,1),(158,262771200,0),(158,278492400,1),(158,294220800,0),(158,309942000,1),(158,325670400,0),(158,341391600,1),(158,357120000,0),(158,372841200,1),(158,388569600,0),(158,404895600,1),(158,420019200,0),(158,436345200,1),(158,452073600,0),(158,467794800,1),(158,483523200,0),(158,499244400,1),(158,514972800,0),(158,530694000,1),(158,544608000,0),(158,562143600,1),(158,576057600,0),(158,594198000,1),(158,607507200,0),(158,625647600,1),(158,638956800,0),(158,657097200,1),(158,671011200,0),(158,688546800,1),(158,702460800,0),(158,719996400,1),(158,733910400,0),(158,752050800,1),(158,765360000,0),(158,783500400,1),(158,796809600,0),(158,814950000,1),(158,828864000,0),(158,846399600,1),(158,860313600,0),(158,877849200,1),(158,891763200,0),(158,909298800,1),(158,923212800,0),(158,941353200,1),(158,954662400,0),(158,972802800,1),(158,986112000,0),(158,1004252400,1),(158,1018166400,0),(158,1035702000,1),(158,1049616000,0),(158,1067151600,1),(158,1081065600,0),(158,1099206000,1),(158,1112515200,0),(158,1130655600,1),(158,1143964800,0),(158,1162105200,1),(158,1173600000,0),(158,1194159600,1),(158,1205049600,0),(158,1225609200,1),(158,1236499200,0),(158,1257058800,1),(158,1268553600,0),(158,1289113200,1),(158,1300003200,0),(158,1320562800,1),(158,1331452800,0),(158,1352012400,1),(158,1362902400,0),(158,1383462000,1),(158,1394352000,0),(158,1414911600,1),(158,1425801600,0),(158,1446361200,1),(158,1457856000,0),(158,1478415600,1),(158,1489305600,0),(158,1509865200,1),(158,1520755200,0),(158,1541314800,1),(158,1552204800,0),(158,1572764400,1),(158,1583654400,0),(158,1604214000,1),(158,1615708800,0),(158,1636268400,1),(158,1647158400,0),(158,1667718000,1),(158,1678608000,0),(158,1699167600,1),(158,1710057600,0),(158,1730617200,1),(158,1741507200,0),(158,1762066800,1),(158,1772956800,0),(158,1793516400,1),(158,1805011200,0),(158,1825570800,1),(158,1836460800,0),(158,1857020400,1),(158,1867910400,0),(158,1888470000,1),(158,1899360000,0),(158,1919919600,1),(158,1930809600,0),(158,1951369200,1),(158,1962864000,0),(158,1983423600,1),(158,1994313600,0),(158,2014873200,1),(158,2025763200,0),(158,2046322800,1),(158,2057212800,0),(158,2077772400,1),(158,2088662400,0),(158,2109222000,1),(158,2120112000,0),(158,2140671600,1),(159,-1514743200,1),(159,377935200,2),(159,407653200,1),(159,828864000,3),(159,846399600,1),(159,860313600,3),(159,877849200,1),(159,891763200,3),(159,909298800,1),(159,923212800,3),(159,941353200,1),(159,954662400,3),(159,972802800,1),(159,989136000,3),(159,1001833200,1),(159,1018166400,3),(159,1035702000,1),(159,1049616000,3),(159,1067151600,1),(159,1081065600,3),(159,1099206000,1),(159,1112515200,3),(159,1130655600,1),(159,1143964800,3),(159,1162105200,1),(159,1175414400,3),(159,1193554800,1),(159,1207468800,3),(159,1225004400,1),(159,1238918400,3),(159,1256454000,1),(159,1270368000,3),(159,1288508400,1),(159,1301817600,3),(159,1319958000,1),(159,1333267200,3),(159,1351407600,1),(159,1365321600,3),(159,1382857200,1),(159,1396771200,3),(159,1414306800,1),(159,1428220800,3),(159,1445756400,1),(159,1459670400,3),(159,1477810800,1),(159,1491120000,3),(159,1509260400,1),(159,1522569600,3),(159,1540710000,1),(159,1554624000,3),(159,1572159600,1),(159,1586073600,3),(159,1603609200,1),(159,1617523200,3),(159,1635663600,1),(159,1648972800,3),(159,1667113200,1),(159,1680422400,3),(159,1698562800,1),(159,1712476800,3),(159,1730012400,1),(159,1743926400,3),(159,1761462000,1),(159,1775376000,3),(159,1792911600,1),(159,1806825600,3),(159,1824966000,1),(159,1838275200,3),(159,1856415600,1),(159,1869724800,3),(159,1887865200,1),(159,1901779200,3),(159,1919314800,1),(159,1933228800,3),(159,1950764400,1),(159,1964678400,3),(159,1982818800,1),(159,1996128000,3),(159,2014268400,1),(159,2027577600,3),(159,2045718000,1),(159,2059027200,3),(159,2077167600,1),(159,2091081600,3),(159,2108617200,1),(159,2122531200,3),(159,2140066800,1),(160,-880207200,1),(160,-769395600,2),(160,-765385200,0),(160,-21477600,3),(160,-5756400,0),(160,9972000,3),(160,25693200,0),(160,41421600,3),(160,57747600,0),(160,73476000,3),(160,89197200,0),(160,104925600,3),(160,120646800,0),(160,126698400,3),(160,152096400,0),(160,162381600,3),(160,183546000,0),(160,199274400,3),(160,215600400,0),(160,230724000,3),(160,247050000,0),(160,262778400,3),(160,278499600,0),(160,294228000,3),(160,309949200,0),(160,325677600,3),(160,341398800,0),(160,357127200,3),(160,372848400,0),(160,388576800,3),(160,404902800,0),(160,420026400,3),(160,436352400,0),(160,1446372000,4),(160,1457866800,5),(160,1478426400,4),(160,1489316400,5),(160,1509876000,4),(160,1520766000,5),(160,1541325600,4),(160,1552215600,5),(160,1572775200,4),(160,1583665200,5),(160,1604224800,4),(160,1615719600,5),(160,1636279200,4),(160,1647169200,5),(160,1667728800,4),(160,1678618800,5),(160,1699178400,4),(160,1710068400,5),(160,1730628000,4),(160,1741518000,5),(160,1762077600,4),(160,1772967600,5),(160,1793527200,4),(160,1805022000,5),(160,1825581600,4),(160,1836471600,5),(160,1857031200,4),(160,1867921200,5),(160,1888480800,4),(160,1899370800,5),(160,1919930400,4),(160,1930820400,5),(160,1951380000,4),(160,1962874800,5),(160,1983434400,4),(160,1994324400,5),(160,2014884000,4),(160,2025774000,5),(160,2046333600,4),(160,2057223600,5),(160,2077783200,4),(160,2088673200,5),(160,2109232800,4),(160,2120122800,5),(160,2140682400,4),(161,-1514739600,1),(161,-1343066400,2),(161,-1234807200,1),(161,-1220292000,2),(161,-1207159200,1),(161,-1191344400,2),(161,-975261600,3),(161,-963169200,2),(161,-917114400,3),(161,-907354800,2),(161,-821901600,4),(161,-810068400,2),(161,-627501600,3),(161,-612990000,2),(161,828864000,3),(161,846399600,2),(161,860313600,3),(161,877849200,2),(161,891763200,3),(161,909298800,2),(161,923212800,3),(161,941353200,2),(161,954662400,3),(161,972802800,2),(161,989136000,3),(161,1001833200,2),(161,1018166400,3),(161,1035702000,2),(161,1049616000,3),(161,1067151600,2),(161,1081065600,3),(161,1099206000,2),(161,1112515200,3),(161,1130655600,2),(161,1143964800,3),(161,1162105200,2),(161,1175414400,3),(161,1193554800,2),(161,1207468800,3),(161,1225004400,2),(161,1238918400,3),(161,1256454000,2),(161,1270368000,3),(161,1288508400,2),(161,1301817600,3),(161,1319958000,2),(161,1333267200,3),(161,1351407600,2),(161,1365321600,3),(161,1382857200,2),(161,1396771200,3),(161,1414306800,2),(161,1428220800,3),(161,1445756400,2),(161,1459670400,3),(161,1477810800,2),(161,1491120000,3),(161,1509260400,2),(161,1522569600,3),(161,1540710000,2),(161,1554624000,3),(161,1572159600,2),(161,1586073600,3),(161,1603609200,2),(161,1617523200,3),(161,1635663600,2),(161,1648972800,3),(161,1667113200,2),(161,1680422400,3),(161,1698562800,2),(161,1712476800,3),(161,1730012400,2),(161,1743926400,3),(161,1761462000,2),(161,1775376000,3),(161,1792911600,2),(161,1806825600,3),(161,1824966000,2),(161,1838275200,3),(161,1856415600,2),(161,1869724800,3),(161,1887865200,2),(161,1901779200,3),(161,1919314800,2),(161,1933228800,3),(161,1950764400,2),(161,1964678400,3),(161,1982818800,2),(161,1996128000,3),(161,2014268400,2),(161,2027577600,3),(161,2045718000,2),(161,2059027200,3),(161,2077167600,2),(161,2091081600,3),(161,2108617200,2),(161,2122531200,3),(161,2140066800,2),(162,-1850328920,1),(162,326001600,2),(162,544597200,3),(162,562132800,2),(162,576046800,3),(162,594187200,2),(162,607496400,3),(162,625636800,2),(162,638946000,3),(162,657086400,2),(162,671000400,3),(162,688536000,2),(162,702450000,3),(162,719985600,2),(162,733899600,3),(162,752040000,2),(162,765349200,3),(162,783489600,2),(162,796798800,3),(162,814939200,2),(162,828853200,3),(162,846388800,2),(162,860302800,3),(162,877838400,2),(162,891752400,3),(162,909288000,2),(162,923202000,3),(162,941342400,2),(162,954651600,3),(162,972792000,2),(162,986101200,3),(162,1004241600,2),(162,1018155600,3),(162,1035691200,2),(162,1049605200,3),(162,1067140800,2),(162,1081054800,3),(162,1099195200,2),(162,1112504400,3),(162,1130644800,2),(162,1143954000,3),(162,1162094400,2),(162,1173589200,3),(162,1194148800,2),(162,1205038800,3),(162,1225598400,2),(162,1236488400,3),(162,1257048000,2),(162,1268542800,3),(162,1289102400,2),(162,1299992400,3),(162,1320552000,2),(162,1331442000,3),(162,1352001600,2),(162,1362891600,3),(162,1383451200,2),(162,1394341200,3),(162,1414900800,2),(162,1425790800,3),(162,1446350400,2),(162,1457845200,3),(162,1478404800,2),(162,1489294800,3),(162,1509854400,2),(162,1520744400,3),(162,1541304000,2),(162,1552194000,3),(162,1572753600,2),(162,1583643600,3),(162,1604203200,2),(162,1615698000,3),(162,1636257600,2),(162,1647147600,3),(162,1667707200,2),(162,1678597200,3),(162,1699156800,2),(162,1710046800,3),(162,1730606400,2),(162,1741496400,3),(162,1762056000,2),(162,1772946000,3),(162,1793505600,2),(162,1805000400,3),(162,1825560000,2),(162,1836450000,3),(162,1857009600,2),(162,1867899600,3),(162,1888459200,2),(162,1899349200,3),(162,1919908800,2),(162,1930798800,3),(162,1951358400,2),(162,1962853200,3),(162,1983412800,2),(162,1994302800,3),(162,2014862400,2),(162,2025752400,3),(162,2046312000,2),(162,2057202000,3),(162,2077761600,2),(162,2088651600,3),(162,2109211200,2),(162,2120101200,3),(162,2140660800,2),(163,-2131642800,2),(163,-1632074400,1),(163,-1615143600,2),(163,-1153681200,1),(163,-1145822400,2),(163,-1122231600,1),(163,-1114372800,2),(163,-1090782000,1),(163,-1082923200,2),(163,-1059332400,1),(163,-1051473600,2),(163,-1027882800,1),(163,-1020024000,2),(163,-996433200,1),(163,-988574400,2),(163,-965674800,1),(163,-955396800,2),(163,-934743600,1),(163,-923947200,2),(163,-904503600,1),(163,-891892800,2),(163,-880221600,3),(163,-769395600,4),(163,-765399600,2),(163,-747252000,1),(163,-733950000,2),(163,-715802400,1),(163,-702500400,2),(163,-684352800,1),(163,-671050800,2),(163,-652903200,1),(163,-639601200,2),(163,-620848800,1),(163,-608151600,2),(163,-589399200,1),(163,-576097200,2),(163,-557949600,1),(163,-544647600,2),(163,-526500000,1),(163,-513198000,2),(163,-495050400,1),(163,-481748400,2),(163,-463600800,1),(163,-450298800,2),(163,-431546400,1),(163,-418244400,2),(163,-400096800,1),(163,-384375600,2),(163,-368647200,1),(163,-352926000,2),(163,-337197600,1),(163,-321476400,2),(163,-305748000,1),(163,-289422000,2),(163,-273693600,1),(163,-257972400,2),(163,-242244000,1),(163,-226522800,2),(163,-210794400,1),(163,-195073200,2),(163,-179344800,1),(163,-163623600,2),(163,-147895200,1),(163,-131569200,2),(163,-116445600,1),(163,-100119600,2),(163,-84391200,1),(163,-68670000,2),(163,-52941600,1),(163,-37220400,2),(163,-21492000,1),(163,-5770800,2),(163,9957600,1),(163,25678800,2),(163,41407200,1),(163,57733200,2),(163,73461600,1),(163,89182800,2),(163,136360800,1),(163,152082000,2),(163,167810400,1),(163,183531600,2),(163,199260000,1),(163,215586000,2),(163,230709600,1),(163,247035600,2),(163,262764000,1),(163,278485200,2),(163,294213600,1),(163,309934800,2),(163,325663200,1),(163,341384400,2),(163,357112800,1),(163,372834000,2),(163,388562400,1),(163,404888400,2),(163,420012000,1),(163,436338000,2),(163,452066400,1),(163,467787600,2),(163,483516000,1),(163,499237200,2),(163,514965600,1),(163,530686800,2),(163,544600800,1),(163,562136400,2),(163,576050400,1),(163,594190800,2),(163,607500000,1),(163,625640400,2),(163,638949600,1),(163,657090000,2),(163,671004000,1),(163,688539600,2),(163,702453600,1),(163,719989200,2),(163,733896060,1),(163,752036460,2),(163,765345660,1),(163,783486060,2),(163,796795260,1),(163,814935660,2),(163,828849660,1),(163,846385260,2),(163,860299260,1),(163,877834860,2),(163,891748860,1),(163,909284460,2),(163,923198460,1),(163,941338860,2),(163,954648060,1),(163,972788460,2),(163,986097660,1),(163,1004238060,2),(163,1018152060,1),(163,1035687660,2),(163,1049601660,1),(163,1067137260,2),(163,1081051260,1),(163,1099191660,2),(163,1112500860,1),(163,1130641260,2),(163,1143950460,1),(163,1162090860,2),(163,1173592800,1),(163,1194152400,2),(163,1205042400,1),(163,1225602000,2),(163,1236492000,1),(163,1257051600,2),(163,1268546400,1),(163,1289106000,2),(163,1299996000,1),(163,1320555600,2),(163,1331445600,1),(163,1352005200,2),(163,1362895200,1),(163,1383454800,2),(163,1394344800,1),(163,1414904400,2),(163,1425794400,1),(163,1446354000,2),(163,1457848800,1),(163,1478408400,2),(163,1489298400,1),(163,1509858000,2),(163,1520748000,1),(163,1541307600,2),(163,1552197600,1),(163,1572757200,2),(163,1583647200,1),(163,1604206800,2),(163,1615701600,1),(163,1636261200,2),(163,1647151200,1),(163,1667710800,2),(163,1678600800,1),(163,1699160400,2),(163,1710050400,1),(163,1730610000,2),(163,1741500000,1),(163,1762059600,2),(163,1772949600,1),(163,1793509200,2),(163,1805004000,1),(163,1825563600,2),(163,1836453600,1),(163,1857013200,2),(163,1867903200,1),(163,1888462800,2),(163,1899352800,1),(163,1919912400,2),(163,1930802400,1),(163,1951362000,2),(163,1962856800,1),(163,1983416400,2),(163,1994306400,1),(163,2014866000,2),(163,2025756000,1),(163,2046315600,2),(163,2057205600,1),(163,2077765200,2),(163,2088655200,1),(163,2109214800,2),(163,2120104800,1),(163,2140664400,2),(164,-1514743200,1),(164,576057600,2),(164,594198000,1),(164,828864000,2),(164,846399600,1),(164,860313600,2),(164,877849200,1),(164,891763200,2),(164,909298800,1),(164,923212800,2),(164,941353200,1),(164,954662400,2),(164,972802800,1),(164,989136000,2),(164,1001833200,1),(164,1018166400,2),(164,1035702000,1),(164,1049616000,2),(164,1067151600,1),(164,1081065600,2),(164,1099206000,1),(164,1112515200,2),(164,1130655600,1),(164,1143964800,2),(164,1162105200,1),(164,1175414400,2),(164,1193554800,1),(164,1207468800,2),(164,1225004400,1),(164,1238918400,2),(164,1256454000,1),(164,1270368000,2),(164,1288508400,1),(164,1301817600,2),(164,1319958000,1),(164,1333267200,2),(164,1351407600,1),(164,1365321600,2),(164,1382857200,1),(164,1396771200,2),(164,1414306800,1),(164,1428220800,2),(164,1445756400,1),(164,1459670400,2),(164,1477810800,1),(164,1491120000,2),(164,1509260400,1),(164,1522569600,2),(164,1540710000,1),(164,1554624000,2),(164,1572159600,1),(164,1586073600,2),(164,1603609200,1),(164,1617523200,2),(164,1635663600,1),(164,1648972800,2),(164,1667113200,1),(164,1680422400,2),(164,1698562800,1),(164,1712476800,2),(164,1730012400,1),(164,1743926400,2),(164,1761462000,1),(164,1775376000,2),(164,1792911600,1),(164,1806825600,2),(164,1824966000,1),(164,1838275200,2),(164,1856415600,1),(164,1869724800,2),(164,1887865200,1),(164,1901779200,2),(164,1919314800,1),(164,1933228800,2),(164,1950764400,1),(164,1964678400,2),(164,1982818800,1),(164,1996128000,2),(164,2014268400,1),(164,2027577600,2),(164,2045718000,1),(164,2059027200,2),(164,2077167600,1),(164,2091081600,2),(164,2108617200,1),(164,2122531200,2),(164,2140066800,1),(165,-1942690509,1),(165,-1567455309,2),(165,-1459627200,4),(165,-1443819600,3),(165,-1428006600,4),(165,-1412283600,3),(165,-1396470600,4),(165,-1380747600,3),(165,-1141590600,4),(165,-1128286800,3),(165,-1110141000,4),(165,-1096837200,3),(165,-1078691400,4),(165,-1065387600,3),(165,-1047241800,4),(165,-1033938000,3),(165,-1015187400,4),(165,-1002488400,3),(165,-983737800,4),(165,-971038800,3),(165,-954707400,4),(165,-938984400,3),(165,-920838600,4),(165,-907534800,3),(165,-896819400,4),(165,-853621200,6),(165,-845847000,5),(165,-334789200,6),(165,-319671000,5),(165,-314226000,7),(165,-309996000,5),(165,-149720400,7),(165,-134604000,5),(165,-50446800,6),(165,-34205400,5),(165,9860400,7),(165,14176800,5),(165,72846000,7),(165,80100000,5),(165,127278000,8),(165,132111000,6),(165,147234600,5),(165,156913200,7),(165,165376800,5),(165,219812400,7),(165,226461600,5),(165,250052400,7),(165,257911200,5),(165,282711600,7),(165,289360800,5),(165,294202800,7),(165,322020000,5),(165,566449200,7),(165,573012000,5),(165,597812400,7),(165,605066400,5),(165,625633200,7),(165,635911200,5),(165,656478000,7),(165,667965600,5),(165,688532400,7),(165,699415200,5),(165,719377200,7),(165,730864800,5),(165,1095562800,7),(165,1111896000,5),(165,1128834000,7),(165,1142136000,5),(165,1159678800,7),(165,1173585600,5),(165,1191733200,7),(165,1205035200,5),(165,1223182800,7),(165,1236484800,5),(165,1254632400,7),(165,1268539200,5),(165,1286082000,7),(165,1299988800,5),(165,1317531600,7),(165,1331438400,5),(165,1349586000,7),(165,1362888000,5),(165,1381035600,7),(165,1394337600,5),(165,1412485200,7),(165,1425787200,5),(166,-1632070800,0),(166,-1615140000,1),(166,-1601753400,0),(166,-1583697600,1),(166,-1567357200,0),(166,-1554667200,1),(166,-1534698000,0),(166,-1524074400,1),(166,-1503248400,0),(166,-1492365600,1),(166,-1471798800,0),(166,-1460916000,1),(166,-1440954000,0),(166,-1428861600,1),(166,-1409504400,0),(166,-1397412000,1),(166,-1378054800,0),(166,-1365962400,1),(166,-1346605200,0),(166,-1333908000,1),(166,-1315155600,0),(166,-1301853600,1),(166,-1283706000,0),(166,-1270404000,1),(166,-1252256400,0),(166,-1238954400,1),(166,-1220806800,0),(166,-1207504800,1),(166,-1188752400,0),(166,-1176055200,1),(166,-1157302800,0),(166,-1144000800,1),(166,-1125853200,0),(166,-1112551200,1),(166,-1094403600,0),(166,-1081101600,1),(166,-1062954000,0),(166,-1049652000,1),(166,-1031504400,0),(166,-1018202400,1),(166,-1000054800,0),(166,-986752800,1),(166,-968000400,0),(166,-955303200,1),(166,-936550800,0),(166,-880218000,2),(166,-769395600,3),(166,-765396000,1),(166,-747248400,0),(166,-733946400,1),(166,-715806000,0),(166,-702504000,1),(166,-684356400,0),(166,-671054400,1),(166,-652906800,0),(166,-634161600,1),(166,-620845200,0),(166,-602704800,1),(166,-589395600,0),(166,-576093600,1),(166,-557946000,0),(166,-544644000,1),(166,-526496400,0),(166,-513194400,1),(166,-495046800,0),(166,-481744800,1),(166,-463597200,0),(166,-450295200,1),(166,-431542800,0),(166,-418240800,1),(166,-400093200,0),(166,-384372000,1),(166,-368643600,0),(166,-352922400,1),(166,-337194000,0),(166,-321472800,1),(166,-305744400,0),(166,-289418400,1),(166,-273690000,0),(166,-257968800,1),(166,-242240400,0),(166,-226519200,1),(166,-210790800,0),(166,-195069600,1),(166,-179341200,0),(166,-163620000,1),(166,-147891600,0),(166,-131565600,1),(166,-116442000,0),(166,-100116000,1),(166,-84387600,0),(166,-68666400,1),(166,-52938000,0),(166,-37216800,1),(166,-21488400,0),(166,-5767200,1),(166,9961200,0),(166,25682400,1),(166,41410800,0),(166,57736800,1),(166,73465200,0),(166,89186400,1),(166,104914800,0),(166,120636000,1),(166,136364400,0),(166,152085600,1),(166,167814000,0),(166,183535200,1),(166,199263600,0),(166,215589600,1),(166,230713200,0),(166,247039200,1),(166,262767600,0),(166,278488800,1),(166,294217200,0),(166,309938400,1),(166,325666800,0),(166,341388000,1),(166,357116400,0),(166,372837600,1),(166,388566000,0),(166,404892000,1),(166,420015600,0),(166,436341600,1),(166,452070000,0),(166,467791200,1),(166,483519600,0),(166,499240800,1),(166,514969200,0),(166,530690400,1),(166,544604400,0),(166,562140000,1),(166,576054000,0),(166,594194400,1),(166,607503600,0),(166,625644000,1),(166,638953200,0),(166,657093600,1),(166,671007600,0),(166,688543200,1),(166,702457200,0),(166,719992800,1),(166,733906800,0),(166,752047200,1),(166,765356400,0),(166,783496800,1),(166,796806000,0),(166,814946400,1),(166,828860400,0),(166,846396000,1),(166,860310000,0),(166,877845600,1),(166,891759600,0),(166,909295200,1),(166,923209200,0),(166,941349600,1),(166,954658800,0),(166,972799200,1),(166,986108400,0),(166,1004248800,1),(166,1018162800,0),(166,1035698400,1),(166,1049612400,0),(166,1067148000,1),(166,1081062000,0),(166,1099202400,1),(166,1112511600,0),(166,1130652000,1),(166,1143961200,0),(166,1162101600,1),(166,1173596400,0),(166,1194156000,1),(166,1205046000,0),(166,1225605600,1),(166,1236495600,0),(166,1257055200,1),(166,1268550000,0),(166,1289109600,1),(166,1299999600,0),(166,1320559200,1),(166,1331449200,0),(166,1352008800,1),(166,1362898800,0),(166,1383458400,1),(166,1394348400,0),(166,1414908000,1),(166,1425798000,0),(166,1446357600,1),(166,1457852400,0),(166,1478412000,1),(166,1489302000,0),(166,1509861600,1),(166,1520751600,0),(166,1541311200,1),(166,1552201200,0),(166,1572760800,1),(166,1583650800,0),(166,1604210400,1),(166,1615705200,0),(166,1636264800,1),(166,1647154800,0),(166,1667714400,1),(166,1678604400,0),(166,1699164000,1),(166,1710054000,0),(166,1730613600,1),(166,1741503600,0),(166,1762063200,1),(166,1772953200,0),(166,1793512800,1),(166,1805007600,0),(166,1825567200,1),(166,1836457200,0),(166,1857016800,1),(166,1867906800,0),(166,1888466400,1),(166,1899356400,0),(166,1919916000,1),(166,1930806000,0),(166,1951365600,1),(166,1962860400,0),(166,1983420000,1),(166,1994310000,0),(166,2014869600,1),(166,2025759600,0),(166,2046319200,1),(166,2057209200,0),(166,2077768800,1),(166,2088658800,0),(166,2109218400,1),(166,2120108400,0),(166,2140668000,1),(167,-1825098836,1),(168,-1825095030,2),(168,-179341200,1),(168,-163620000,2),(168,-147891600,1),(168,-131565600,2),(168,-116442000,1),(168,-100116000,2),(168,-84387600,1),(168,-68666400,2),(168,-52938000,1),(168,-37216800,2),(168,-21488400,1),(168,-5767200,2),(168,9961200,1),(168,25682400,2),(168,41410800,1),(168,57736800,2),(168,73465200,1),(168,89186400,2),(168,104914800,1),(168,120636000,2),(168,136364400,1),(168,152085600,2),(168,167814000,1),(168,183535200,2),(168,199263600,1),(168,215589600,2),(168,230713200,1),(168,247039200,2),(168,262767600,1),(168,278488800,2),(168,294217200,1),(168,309938400,2),(168,325666800,1),(168,341388000,2),(168,357116400,1),(168,372837600,2),(168,388566000,1),(168,404892000,2),(168,420015600,1),(168,436341600,2),(168,452070000,1),(168,467791200,2),(168,483519600,1),(168,499240800,2),(168,514969200,1),(168,530690400,2),(168,544604400,1),(168,562140000,2),(168,576054000,1),(168,594194400,2),(168,607503600,1),(168,625644000,2),(168,638953200,1),(168,657093600,2),(168,671007600,1),(168,688543200,2),(168,702457200,1),(168,719992800,2),(168,733906800,1),(168,752047200,2),(168,765356400,1),(168,783496800,2),(168,796806000,1),(168,814946400,2),(168,828860400,1),(168,846396000,2),(168,860310000,1),(168,877845600,2),(168,891759600,1),(168,909295200,2),(168,923209200,1),(168,941349600,2),(168,954658800,1),(168,972799200,2),(168,986108400,1),(168,1004248800,2),(168,1018162800,1),(168,1035698400,2),(168,1049612400,1),(168,1067148000,2),(168,1081062000,1),(168,1099202400,2),(168,1112511600,1),(168,1130652000,2),(168,1143961200,1),(168,1162101600,2),(168,1173596400,1),(168,1194156000,2),(168,1205046000,1),(168,1225605600,2),(168,1236495600,1),(168,1257055200,2),(168,1268550000,1),(168,1289109600,2),(168,1299999600,1),(168,1320559200,2),(168,1331449200,1),(168,1352008800,2),(168,1362898800,1),(168,1383458400,2),(168,1394348400,1),(168,1414908000,2),(168,1425798000,1),(168,1446357600,2),(168,1457852400,1),(168,1478412000,2),(168,1489302000,1),(168,1509861600,2),(168,1520751600,1),(168,1541311200,2),(168,1552201200,1),(168,1572760800,2),(168,1583650800,1),(168,1604210400,2),(168,1615705200,1),(168,1636264800,2),(168,1647154800,1),(168,1667714400,2),(168,1678604400,1),(168,1699164000,2),(168,1710054000,1),(168,1730613600,2),(168,1741503600,1),(168,1762063200,2),(168,1772953200,1),(168,1793512800,2),(168,1805007600,1),(168,1825567200,2),(168,1836457200,1),(168,1857016800,2),(168,1867906800,1),(168,1888466400,2),(168,1899356400,1),(168,1919916000,2),(168,1930806000,1),(168,1951365600,2),(168,1962860400,1),(168,1983420000,2),(168,1994310000,1),(168,2014869600,2),(168,2025759600,1),(168,2046319200,2),(168,2057209200,1),(168,2077768800,2),(168,2088658800,1),(168,2109218400,2),(168,2120108400,1),(168,2140668000,2),(169,-1633280400,0),(169,-1615140000,1),(169,-1601830800,0),(169,-1583690400,1),(169,-1570381200,0),(169,-1551636000,1),(169,-1536512400,0),(169,-1523210400,1),(169,-1504458000,0),(169,-1491760800,1),(169,-1473008400,0),(169,-1459706400,1),(169,-1441558800,0),(169,-1428256800,1),(169,-1410109200,0),(169,-1396807200,1),(169,-1378659600,0),(169,-1365357600,1),(169,-1347210000,0),(169,-1333908000,1),(169,-1315155600,0),(169,-1301853600,1),(169,-1283706000,0),(169,-1270404000,1),(169,-1252256400,0),(169,-1238954400,1),(169,-1220806800,0),(169,-1207504800,1),(169,-1189357200,0),(169,-1176055200,1),(169,-1157302800,0),(169,-1144605600,1),(169,-1125853200,0),(169,-1112551200,1),(169,-1094403600,0),(169,-1081101600,1),(169,-1062954000,0),(169,-1049652000,1),(169,-1031504400,0),(169,-1018202400,1),(169,-1000054800,0),(169,-986752800,1),(169,-968000400,0),(169,-955303200,1),(169,-936550800,0),(169,-923248800,1),(169,-905101200,0),(169,-891799200,1),(169,-880218000,2),(169,-769395600,3),(169,-765396000,1),(169,-747248400,0),(169,-733946400,1),(169,-715798800,0),(169,-702496800,1),(169,-684349200,0),(169,-671047200,1),(169,-652899600,0),(169,-639597600,1),(169,-620845200,0),(169,-608148000,1),(169,-589395600,0),(169,-576093600,1),(169,-557946000,0),(169,-544644000,1),(169,-526496400,0),(169,-513194400,1),(169,-495046800,0),(169,-481744800,1),(169,-463597200,0),(169,-447271200,1),(169,-431542800,0),(169,-415821600,1),(169,-400093200,0),(169,-384372000,1),(169,-368643600,0),(169,-352922400,1),(169,-337194000,0),(169,-321472800,1),(169,-305744400,0),(169,-289418400,1),(169,-273690000,0),(169,-257968800,1),(169,-242240400,0),(169,-226519200,1),(169,-210790800,0),(169,-195069600,1),(169,-179341200,0),(169,-163620000,1),(169,-147891600,0),(169,-131565600,1),(169,-116442000,0),(169,-100116000,1),(169,-84387600,0),(169,-68666400,1),(169,-52938000,0),(169,-37216800,1),(169,-21488400,0),(169,-5767200,1),(169,9961200,0),(169,25682400,1),(169,41410800,0),(169,57736800,1),(169,73465200,0),(169,89186400,1),(169,104914800,0),(169,120636000,1),(169,126687600,0),(169,152085600,1),(169,162370800,0),(169,183535200,1),(169,199263600,0),(169,215589600,1),(169,230713200,0),(169,247039200,1),(169,262767600,0),(169,278488800,1),(169,294217200,0),(169,309938400,1),(169,325666800,0),(169,341388000,1),(169,357116400,0),(169,372837600,1),(169,388566000,0),(169,404892000,1),(169,420015600,0),(169,436341600,1),(169,452070000,0),(169,467791200,1),(169,483519600,0),(169,499240800,1),(169,514969200,0),(169,530690400,1),(169,544604400,0),(169,562140000,1),(169,576054000,0),(169,594194400,1),(169,607503600,0),(169,625644000,1),(169,638953200,0),(169,657093600,1),(169,671007600,0),(169,688543200,1),(169,702457200,0),(169,719992800,1),(169,733906800,0),(169,752047200,1),(169,765356400,0),(169,783496800,1),(169,796806000,0),(169,814946400,1),(169,828860400,0),(169,846396000,1),(169,860310000,0),(169,877845600,1),(169,891759600,0),(169,909295200,1),(169,923209200,0),(169,941349600,1),(169,954658800,0),(169,972799200,1),(169,986108400,0),(169,1004248800,1),(169,1018162800,0),(169,1035698400,1),(169,1049612400,0),(169,1067148000,1),(169,1081062000,0),(169,1099202400,1),(169,1112511600,0),(169,1130652000,1),(169,1143961200,0),(169,1162101600,1),(169,1173596400,0),(169,1194156000,1),(169,1205046000,0),(169,1225605600,1),(169,1236495600,0),(169,1257055200,1),(169,1268550000,0),(169,1289109600,1),(169,1299999600,0),(169,1320559200,1),(169,1331449200,0),(169,1352008800,1),(169,1362898800,0),(169,1383458400,1),(169,1394348400,0),(169,1414908000,1),(169,1425798000,0),(169,1446357600,1),(169,1457852400,0),(169,1478412000,1),(169,1489302000,0),(169,1509861600,1),(169,1520751600,0),(169,1541311200,1),(169,1552201200,0),(169,1572760800,1),(169,1583650800,0),(169,1604210400,1),(169,1615705200,0),(169,1636264800,1),(169,1647154800,0),(169,1667714400,1),(169,1678604400,0),(169,1699164000,1),(169,1710054000,0),(169,1730613600,1),(169,1741503600,0),(169,1762063200,1),(169,1772953200,0),(169,1793512800,1),(169,1805007600,0),(169,1825567200,1),(169,1836457200,0),(169,1857016800,1),(169,1867906800,0),(169,1888466400,1),(169,1899356400,0),(169,1919916000,1),(169,1930806000,0),(169,1951365600,1),(169,1962860400,0),(169,1983420000,1),(169,1994310000,0),(169,2014869600,1),(169,2025759600,0),(169,2046319200,1),(169,2057209200,0),(169,2077768800,1),(169,2088658800,0),(169,2109218400,1),(169,2120108400,0),(169,2140668000,1),(170,-1632070800,0),(170,-1615140000,1),(170,-923252400,0),(170,-880218000,2),(170,-769395600,3),(170,-765396000,1),(170,136364400,0),(170,152085600,1),(170,167814000,0),(170,183535200,1),(170,199263600,0),(170,215589600,1),(170,230713200,0),(170,247039200,1),(170,262767600,0),(170,278488800,1),(170,294217200,0),(170,309938400,1),(170,325666800,0),(170,341388000,1),(170,357116400,0),(170,372837600,1),(170,388566000,0),(170,404892000,1),(170,420015600,0),(170,436341600,1),(170,452070000,0),(170,467791200,1),(170,483519600,0),(170,499240800,1),(170,514969200,0),(170,530690400,1),(170,544604400,0),(170,562140000,1),(170,576054000,0),(170,594194400,1),(170,607503600,0),(170,625644000,1),(170,638953200,0),(170,657093600,1),(170,671007600,0),(170,688543200,1),(170,702457200,0),(170,719992800,1),(170,733906800,0),(170,752047200,1),(170,765356400,0),(170,783496800,1),(170,796806000,0),(170,814946400,1),(170,828860400,0),(170,846396000,1),(170,860310000,0),(170,877845600,1),(170,891759600,0),(170,909295200,1),(170,923209200,0),(170,941349600,1),(170,954658800,0),(170,972799200,1),(170,986108400,0),(170,1004248800,1),(170,1018162800,0),(170,1035698400,1),(170,1049612400,0),(170,1067148000,1),(170,1081062000,0),(170,1099202400,1),(170,1112511600,0),(170,1130652000,1),(170,1143961200,0),(170,1162101600,1),(170,1173596400,0),(170,1194156000,1),(170,1205046000,0),(170,1225605600,1),(170,1236495600,0),(170,1257055200,1),(170,1268550000,0),(170,1289109600,1),(170,1299999600,0),(170,1320559200,1),(170,1331449200,0),(170,1352008800,1),(170,1362898800,0),(170,1383458400,1),(170,1394348400,0),(170,1414908000,1),(170,1425798000,0),(170,1446357600,1),(170,1457852400,0),(170,1478412000,1),(170,1489302000,0),(170,1509861600,1),(170,1520751600,0),(170,1541311200,1),(170,1552201200,0),(170,1572760800,1),(170,1583650800,0),(170,1604210400,1),(170,1615705200,0),(170,1636264800,1),(170,1647154800,0),(170,1667714400,1),(170,1678604400,0),(170,1699164000,1),(170,1710054000,0),(170,1730613600,1),(170,1741503600,0),(170,1762063200,1),(170,1772953200,0),(170,1793512800,1),(170,1805007600,0),(170,1825567200,1),(170,1836457200,0),(170,1857016800,1),(170,1867906800,0),(170,1888466400,1),(170,1899356400,0),(170,1919916000,1),(170,1930806000,0),(170,1951365600,1),(170,1962860400,0),(170,1983420000,1),(170,1994310000,0),(170,2014869600,1),(170,2025759600,0),(170,2046319200,1),(170,2057209200,0),(170,2077768800,1),(170,2088658800,0),(170,2109218400,1),(170,2120108400,0),(170,2140668000,1),(171,-880196400,1),(171,-769395600,2),(171,-765374400,0),(171,-86878800,3),(171,-21466800,4),(171,-5745600,3),(171,9982800,4),(171,25704000,3),(171,41432400,4),(171,57758400,3),(171,73486800,4),(171,89208000,3),(171,104936400,4),(171,120657600,3),(171,126709200,4),(171,152107200,3),(171,162392400,4),(171,183556800,3),(171,199285200,4),(171,215611200,3),(171,230734800,4),(171,247060800,3),(171,262789200,4),(171,278510400,3),(171,294238800,4),(171,309960000,3),(171,325688400,4),(171,341409600,3),(171,357138000,4),(171,372859200,3),(171,388587600,4),(171,404913600,3),(171,420037200,4),(171,436363200,5),(171,439030800,7),(171,452084400,6),(171,467805600,7),(171,483534000,6),(171,499255200,7),(171,514983600,6),(171,530704800,7),(171,544618800,6),(171,562154400,7),(171,576068400,6),(171,594208800,7),(171,607518000,6),(171,625658400,7),(171,638967600,6),(171,657108000,7),(171,671022000,6),(171,688557600,7),(171,702471600,6),(171,720007200,7),(171,733921200,6),(171,752061600,7),(171,765370800,6),(171,783511200,7),(171,796820400,6),(171,814960800,7),(171,828874800,6),(171,846410400,7),(171,860324400,6),(171,877860000,7),(171,891774000,6),(171,909309600,7),(171,923223600,6),(171,941364000,7),(171,954673200,6),(171,972813600,7),(171,986122800,6),(171,1004263200,7),(171,1018177200,6),(171,1035712800,7),(171,1049626800,6),(171,1067162400,7),(171,1081076400,6),(171,1099216800,7),(171,1112526000,6),(171,1130666400,7),(171,1143975600,6),(171,1162116000,7),(171,1173610800,6),(171,1194170400,7),(171,1205060400,6),(171,1225620000,7),(171,1236510000,6),(171,1257069600,7),(171,1268564400,6),(171,1289124000,7),(171,1300014000,6),(171,1320573600,7),(171,1331463600,6),(171,1352023200,7),(171,1362913200,6),(171,1383472800,7),(171,1394362800,6),(171,1414922400,7),(171,1425812400,6),(171,1446372000,7),(171,1457866800,6),(171,1478426400,7),(171,1489316400,6),(171,1509876000,7),(171,1520766000,6),(171,1541325600,7),(171,1552215600,6),(171,1572775200,7),(171,1583665200,6),(171,1604224800,7),(171,1615719600,6),(171,1636279200,7),(171,1647169200,6),(171,1667728800,7),(171,1678618800,6),(171,1699178400,7),(171,1710068400,6),(171,1730628000,7),(171,1741518000,6),(171,1762077600,7),(171,1772967600,6),(171,1793527200,7),(171,1805022000,6),(171,1825581600,7),(171,1836471600,6),(171,1857031200,7),(171,1867921200,6),(171,1888480800,7),(171,1899370800,6),(171,1919930400,7),(171,1930820400,6),(171,1951380000,7),(171,1962874800,6),(171,1983434400,7),(171,1994324400,6),(171,2014884000,7),(171,2025774000,6),(171,2046333600,7),(171,2057223600,6),(171,2077783200,7),(171,2088673200,6),(171,2109232800,7),(171,2120122800,6),(171,2140682400,7),(172,-1767217820,2),(172,-1206961200,1),(172,-1191366000,2),(172,-1175378400,1),(172,-1159830000,2),(172,-633823200,1),(172,-622072800,2),(172,-602287200,1),(172,-591836400,2),(172,-570751200,1),(172,-560214000,2),(172,-539128800,1),(172,-531356400,2),(172,-191368800,1),(172,-184201200,2),(172,-155167200,1),(172,-150073200,2),(172,-128901600,1),(172,-121129200,2),(172,-99957600,1),(172,-89593200,2),(172,-68421600,1),(172,-57970800,2),(172,499744800,1),(172,511232400,2),(172,530589600,1),(172,540262800,2),(172,562125600,1),(172,571194000,2),(172,592970400,1),(172,602038800,2),(172,624420000,1),(172,634698000,2),(172,938916000,1),(172,951613200,2),(172,970970400,1),(172,971571600,2),(172,1003024800,1),(172,1013907600,2),(173,-1633273200,0),(173,-1615132800,1),(173,-1601823600,0),(173,-1583683200,1),(173,-880210800,2),(173,-769395600,3),(173,-765388800,1),(173,-84380400,0),(173,-68659200,1),(173,-52930800,0),(173,-37209600,1),(173,-21481200,0),(173,-5760000,1),(173,9968400,0),(173,25689600,1),(173,41418000,0),(173,57744000,1),(173,73472400,0),(173,89193600,1),(173,104922000,0),(173,120643200,1),(173,126694800,0),(173,152092800,1),(173,162378000,0),(173,183542400,1),(173,199270800,0),(173,215596800,1),(173,230720400,0),(173,247046400,1),(173,262774800,0),(173,278496000,1),(173,294224400,0),(173,309945600,1),(173,325674000,0),(173,341395200,1),(173,357123600,0),(173,372844800,1),(173,388573200,0),(173,404899200,1),(173,420022800,0),(173,436348800,1),(173,452077200,0),(173,467798400,1),(173,483526800,0),(173,499248000,1),(173,514976400,0),(173,530697600,1),(173,544611600,0),(173,562147200,1),(173,576061200,0),(173,594201600,1),(173,607510800,0),(173,625651200,1),(173,638960400,0),(173,657100800,1),(173,671014800,0),(173,688550400,1),(173,702464400,0),(173,720000000,1),(173,733914000,0),(173,752054400,1),(173,765363600,0),(173,783504000,1),(173,796813200,0),(173,814953600,1),(173,828867600,0),(173,846403200,1),(173,860317200,0),(173,877852800,1),(173,891766800,0),(173,909302400,1),(173,923216400,0),(173,941356800,1),(173,954666000,0),(173,972806400,1),(173,986115600,0),(173,1004256000,1),(173,1018170000,0),(173,1035705600,1),(173,1049619600,0),(173,1067155200,1),(173,1081069200,0),(173,1099209600,1),(173,1112518800,0),(173,1130659200,1),(173,1143968400,0),(173,1162108800,1),(173,1173603600,0),(173,1194163200,1),(173,1205053200,0),(173,1225612800,1),(173,1236502800,0),(173,1257062400,1),(173,1268557200,0),(173,1289116800,5),(173,1300003200,4),(173,1320562800,5),(173,1331452800,4),(173,1352012400,5),(173,1362902400,4),(173,1383462000,5),(173,1394352000,4),(173,1414911600,5),(173,1425801600,4),(173,1446361200,5),(173,1457856000,4),(173,1478415600,5),(173,1489305600,4),(173,1509865200,5),(173,1520755200,4),(173,1541314800,5),(173,1552204800,4),(173,1572764400,5),(173,1583654400,4),(173,1604214000,5),(173,1615708800,4),(173,1636268400,5),(173,1647158400,4),(173,1667718000,5),(173,1678608000,4),(173,1699167600,5),(173,1710057600,4),(173,1730617200,5),(173,1741507200,4),(173,1762066800,5),(173,1772956800,4),(173,1793516400,5),(173,1805011200,4),(173,1825570800,5),(173,1836460800,4),(173,1857020400,5),(173,1867910400,4),(173,1888470000,5),(173,1899360000,4),(173,1919919600,5),(173,1930809600,4),(173,1951369200,5),(173,1962864000,4),(173,1983423600,5),(173,1994313600,4),(173,2014873200,5),(173,2025763200,4),(173,2046322800,5),(173,2057212800,4),(173,2077772400,5),(173,2088662400,4),(173,2109222000,5),(173,2120112000,4),(173,2140671600,5),(174,-1633273200,0),(174,-1615132800,1),(174,-1601823600,0),(174,-1583683200,1),(174,-880210800,2),(174,-769395600,3),(174,-765388800,1),(174,-84380400,0),(174,-68659200,1),(174,-52930800,0),(174,-37209600,1),(174,-21481200,0),(174,-5760000,1),(174,9968400,0),(174,25689600,1),(174,41418000,0),(174,57744000,1),(174,73472400,0),(174,89193600,1),(174,104922000,0),(174,120643200,1),(174,126694800,0),(174,152092800,1),(174,162378000,0),(174,183542400,1),(174,199270800,0),(174,215596800,1),(174,230720400,0),(174,247046400,1),(174,262774800,0),(174,278496000,1),(174,294224400,0),(174,309945600,1),(174,325674000,0),(174,341395200,1),(174,357123600,0),(174,372844800,1),(174,388573200,0),(174,404899200,1),(174,420022800,0),(174,436348800,1),(174,452077200,0),(174,467798400,1),(174,483526800,0),(174,499248000,1),(174,514976400,0),(174,530697600,1),(174,544611600,0),(174,562147200,1),(174,576061200,0),(174,594201600,1),(174,607510800,0),(174,625651200,1),(174,638960400,0),(174,657100800,1),(174,671014800,0),(174,688550400,1),(174,702464400,0),(174,720000000,5),(174,733910400,4),(174,752050800,5),(174,765360000,4),(174,783500400,5),(174,796809600,4),(174,814950000,5),(174,828864000,4),(174,846399600,5),(174,860313600,4),(174,877849200,5),(174,891763200,4),(174,909298800,5),(174,923212800,4),(174,941353200,5),(174,954662400,4),(174,972802800,5),(174,986112000,4),(174,1004252400,5),(174,1018166400,4),(174,1035702000,5),(174,1049616000,4),(174,1067151600,5),(174,1081065600,4),(174,1099206000,5),(174,1112515200,4),(174,1130655600,5),(174,1143964800,4),(174,1162105200,5),(174,1173600000,4),(174,1194159600,5),(174,1205049600,4),(174,1225609200,5),(174,1236499200,4),(174,1257058800,5),(174,1268553600,4),(174,1289113200,5),(174,1300003200,4),(174,1320562800,5),(174,1331452800,4),(174,1352012400,5),(174,1362902400,4),(174,1383462000,5),(174,1394352000,4),(174,1414911600,5),(174,1425801600,4),(174,1446361200,5),(174,1457856000,4),(174,1478415600,5),(174,1489305600,4),(174,1509865200,5),(174,1520755200,4),(174,1541314800,5),(174,1552204800,4),(174,1572764400,5),(174,1583654400,4),(174,1604214000,5),(174,1615708800,4),(174,1636268400,5),(174,1647158400,4),(174,1667718000,5),(174,1678608000,4),(174,1699167600,5),(174,1710057600,4),(174,1730617200,5),(174,1741507200,4),(174,1762066800,5),(174,1772956800,4),(174,1793516400,5),(174,1805011200,4),(174,1825570800,5),(174,1836460800,4),(174,1857020400,5),(174,1867910400,4),(174,1888470000,5),(174,1899360000,4),(174,1919919600,5),(174,1930809600,4),(174,1951369200,5),(174,1962864000,4),(174,1983423600,5),(174,1994313600,4),(174,2014873200,5),(174,2025763200,4),(174,2046322800,5),(174,2057212800,4),(174,2077772400,5),(174,2088662400,4),(174,2109222000,5),(174,2120112000,4),(174,2140671600,5),(175,-1633273200,0),(175,-1615132800,1),(175,-1601823600,0),(175,-1583683200,1),(175,-880210800,2),(175,-769395600,3),(175,-765388800,1),(175,-84380400,0),(175,-68659200,1),(175,-52930800,0),(175,-37209600,1),(175,-21481200,0),(175,-5760000,1),(175,9968400,0),(175,25689600,1),(175,41418000,0),(175,57744000,1),(175,73472400,0),(175,89193600,1),(175,104922000,0),(175,120643200,1),(175,126694800,0),(175,152092800,1),(175,162378000,0),(175,183542400,1),(175,199270800,0),(175,215596800,1),(175,230720400,0),(175,247046400,1),(175,262774800,0),(175,278496000,1),(175,294224400,0),(175,309945600,1),(175,325674000,0),(175,341395200,1),(175,357123600,0),(175,372844800,1),(175,388573200,0),(175,404899200,1),(175,420022800,0),(175,436348800,1),(175,452077200,0),(175,467798400,1),(175,483526800,0),(175,499248000,1),(175,514976400,0),(175,530697600,1),(175,544611600,0),(175,562147200,1),(175,576061200,0),(175,594201600,1),(175,607510800,0),(175,625651200,1),(175,638960400,0),(175,657100800,1),(175,671014800,0),(175,688550400,1),(175,702464400,0),(175,720000000,1),(175,733914000,0),(175,752054400,1),(175,765363600,0),(175,783504000,1),(175,796813200,0),(175,814953600,1),(175,828867600,0),(175,846403200,1),(175,860317200,0),(175,877852800,1),(175,891766800,0),(175,909302400,1),(175,923216400,0),(175,941356800,1),(175,954666000,0),(175,972806400,1),(175,986115600,0),(175,1004256000,1),(175,1018170000,0),(175,1035705600,1),(175,1049619600,0),(175,1067155200,5),(175,1081065600,4),(175,1099206000,5),(175,1112515200,4),(175,1130655600,5),(175,1143964800,4),(175,1162105200,5),(175,1173600000,4),(175,1194159600,5),(175,1205049600,4),(175,1225609200,5),(175,1236499200,4),(175,1257058800,5),(175,1268553600,4),(175,1289113200,5),(175,1300003200,4),(175,1320562800,5),(175,1331452800,4),(175,1352012400,5),(175,1362902400,4),(175,1383462000,5),(175,1394352000,4),(175,1414911600,5),(175,1425801600,4),(175,1446361200,5),(175,1457856000,4),(175,1478415600,5),(175,1489305600,4),(175,1509865200,5),(175,1520755200,4),(175,1541314800,5),(175,1552204800,4),(175,1572764400,5),(175,1583654400,4),(175,1604214000,5),(175,1615708800,4),(175,1636268400,5),(175,1647158400,4),(175,1667718000,5),(175,1678608000,4),(175,1699167600,5),(175,1710057600,4),(175,1730617200,5),(175,1741507200,4),(175,1762066800,5),(175,1772956800,4),(175,1793516400,5),(175,1805011200,4),(175,1825570800,5),(175,1836460800,4),(175,1857020400,5),(175,1867910400,4),(175,1888470000,5),(175,1899360000,4),(175,1919919600,5),(175,1930809600,4),(175,1951369200,5),(175,1962864000,4),(175,1983423600,5),(175,1994313600,4),(175,2014873200,5),(175,2025763200,4),(175,2046322800,5),(175,2057212800,4),(175,2077772400,5),(175,2088662400,4),(175,2109222000,5),(175,2120112000,4),(175,2140671600,5),(176,-1514739600,1),(176,-1343066400,2),(176,-1234807200,1),(176,-1220292000,2),(176,-1207159200,1),(176,-1191344400,2),(176,828864000,3),(176,846399600,2),(176,860313600,3),(176,877849200,2),(176,891766800,4),(176,909302400,1),(176,923216400,4),(176,941356800,1),(176,954666000,4),(176,972806400,1),(176,989139600,4),(176,1001836800,1),(176,1018170000,4),(176,1035705600,1),(176,1049619600,4),(176,1067155200,1),(176,1081069200,4),(176,1099209600,1),(176,1112518800,4),(176,1130659200,1),(176,1143968400,4),(176,1162108800,1),(176,1175418000,4),(176,1193558400,1),(176,1207472400,4),(176,1225008000,1),(176,1238922000,4),(176,1256457600,1),(176,1268557200,4),(176,1289116800,1),(176,1300006800,4),(176,1320566400,1),(176,1331456400,4),(176,1352016000,1),(176,1362906000,4),(176,1383465600,1),(176,1394355600,4),(176,1414915200,1),(176,1425805200,4),(176,1446364800,1),(176,1457859600,4),(176,1478419200,1),(176,1489309200,4),(176,1509868800,1),(176,1520758800,4),(176,1541318400,1),(176,1552208400,4),(176,1572768000,1),(176,1583658000,4),(176,1604217600,1),(176,1615712400,4),(176,1636272000,1),(176,1647162000,4),(176,1667721600,1),(176,1678611600,4),(176,1699171200,1),(176,1710061200,4),(176,1730620800,1),(176,1741510800,4),(176,1762070400,1),(176,1772960400,4),(176,1793520000,1),(176,1805014800,4),(176,1825574400,1),(176,1836464400,4),(176,1857024000,1),(176,1867914000,4),(176,1888473600,1),(176,1899363600,4),(176,1919923200,1),(176,1930813200,4),(176,1951372800,1),(176,1962867600,4),(176,1983427200,1),(176,1994317200,4),(176,2014876800,1),(176,2025766800,4),(176,2046326400,1),(176,2057216400,4),(176,2077776000,1),(176,2088666000,4),(176,2109225600,1),(176,2120115600,4),(176,2140675200,1),(177,-1946918424,1),(178,-1546300800,3),(178,-880221600,1),(178,-769395600,2),(178,-765399600,3),(178,-147902400,4),(178,-131572800,3),(178,325663200,5),(178,341384400,3),(178,357112800,5),(178,372834000,3),(178,388562400,5),(178,404888400,3),(178,420012000,5),(178,436338000,3),(178,452066400,5),(178,467787600,3),(178,483516000,5),(178,499237200,3),(178,514965600,5),(178,530686800,3),(178,544600800,5),(178,562136400,3),(178,576050400,5),(178,594190800,3),(178,607500000,5),(178,625640400,3),(178,638949600,5),(178,657090000,3),(178,671004000,5),(178,688539600,3),(178,702453600,5),(178,719989200,3),(178,733903200,5),(178,752043600,3),(178,765352800,5),(178,783493200,3),(178,796802400,6),(178,814946400,7),(178,828860400,6),(178,846396000,7),(178,860310000,6),(178,877845600,7),(178,891759600,6),(178,909295200,7),(178,923209200,6),(178,941349600,8),(178,954662400,9),(178,972802800,7),(178,986108400,6),(178,1004248800,7),(178,1018162800,6),(178,1035698400,7),(178,1049612400,6),(178,1067148000,7),(178,1081062000,6),(178,1099202400,7),(178,1112511600,6),(178,1130652000,7),(178,1143961200,6),(178,1162101600,7),(178,1173596400,6),(178,1194156000,7),(178,1205046000,6),(178,1225605600,7),(178,1236495600,6),(178,1257055200,7),(178,1268550000,6),(178,1289109600,7),(178,1299999600,6),(178,1320559200,7),(178,1331449200,6),(178,1352008800,7),(178,1362898800,6),(178,1383458400,7),(178,1394348400,6),(178,1414908000,7),(178,1425798000,6),(178,1446357600,7),(178,1457852400,6),(178,1478412000,7),(178,1489302000,6),(178,1509861600,7),(178,1520751600,6),(178,1541311200,7),(178,1552201200,6),(178,1572760800,7),(178,1583650800,6),(178,1604210400,7),(178,1615705200,6),(178,1636264800,7),(178,1647154800,6),(178,1667714400,7),(178,1678604400,6),(178,1699164000,7),(178,1710054000,6),(178,1730613600,7),(178,1741503600,6),(178,1762063200,7),(178,1772953200,6),(178,1793512800,7),(178,1805007600,6),(178,1825567200,7),(178,1836457200,6),(178,1857016800,7),(178,1867906800,6),(178,1888466400,7),(178,1899356400,6),(178,1919916000,7),(178,1930806000,6),(178,1951365600,7),(178,1962860400,6),(178,1983420000,7),(178,1994310000,6),(178,2014869600,7),(178,2025759600,6),(178,2046319200,7),(178,2057209200,6),(178,2077768800,7),(178,2088658800,6),(178,2109218400,7),(178,2120108400,6),(178,2140668000,7),(179,-1861906760,1),(179,-1104524348,2),(179,-765317964,3),(179,465449400,4),(180,-1633273200,0),(180,-1615132800,1),(180,-1601823600,0),(180,-1583683200,1),(180,-880210800,2),(180,-820519140,1),(180,-812653140,2),(180,-796845540,1),(180,-84380400,0),(180,-68659200,1),(181,-1670483460,2),(181,421218000,1),(181,436334400,2),(181,452062800,1),(181,467784000,2),(181,483512400,1),(181,499233600,2),(181,514962000,1),(181,530683200,2),(181,546411600,1),(181,562132800,2),(181,576050400,3),(181,594194400,4),(181,607500000,3),(181,625644000,4),(181,638949600,3),(181,657093600,4),(181,671004000,3),(181,688543200,4),(181,702453600,3),(181,719992800,4),(181,733903200,3),(181,752047200,4),(181,765352800,3),(181,783496800,4),(181,796802400,3),(181,814946400,4),(181,828856800,3),(181,846396000,4),(181,860306400,3),(181,877845600,4),(181,1112504400,1),(181,1130644800,2),(181,1143954000,1),(181,1162094400,2),(181,1331449200,1),(181,1352008800,2),(181,1362898800,1),(181,1383458400,2),(181,1394348400,1),(181,1414908000,2),(181,1425798000,1),(181,1446357600,2),(181,1489302000,1),(181,1509861600,2),(181,1520751600,1),(181,1541311200,2),(181,1552201200,1),(181,1572760800,2),(181,1583650800,1),(181,1604210400,2),(181,1615705200,1),(181,1636264800,2),(181,1647154800,1),(181,1667714400,2),(181,1678604400,1),(181,1699164000,2),(181,1710054000,1),(181,1730613600,2),(181,1741503600,1),(181,1762063200,2),(181,1772953200,1),(181,1793512800,2),(181,1805007600,1),(181,1825567200,2),(181,1836457200,1),(181,1857016800,2),(181,1867906800,1),(181,1888466400,2),(181,1899356400,1),(181,1919916000,2),(181,1930806000,1),(181,1951365600,2),(181,1962860400,1),(181,1983420000,2),(181,1994310000,1),(181,2014869600,2),(181,2025759600,1),(181,2046319200,2),(181,2057209200,1),(181,2077768800,2),(181,2088658800,1),(181,2109218400,2),(181,2120108400,1),(181,2140668000,2),(182,-1825098836,1),(183,-1767209328,2),(183,-1206950400,1),(183,-1191355200,2),(183,-1175367600,1),(183,-1159819200,2),(183,-633812400,1),(183,-622062000,2),(183,-602276400,1),(183,-591825600,2),(183,-570740400,1),(183,-560203200,2),(183,-539118000,1),(183,-531345600,2),(183,-191358000,1),(183,-184190400,2),(183,-155156400,1),(183,-150062400,2),(183,-128890800,1),(183,-121118400,2),(183,-99946800,1),(183,-89582400,2),(183,-68410800,1),(183,-57960000,2),(183,499755600,1),(183,511243200,2),(183,530600400,1),(183,540273600,2),(183,562136400,1),(183,571204800,2),(183,1214283600,3),(183,1384056000,2),(184,-1767210264,2),(184,-1206954000,1),(184,-1191358800,2),(184,-1175371200,1),(184,-1159822800,2),(184,-633816000,1),(184,-622065600,2),(184,-602280000,1),(184,-591829200,2),(184,-570744000,1),(184,-560206800,2),(184,-539121600,1),(184,-531349200,2),(184,-191361600,1),(184,-184194000,2),(184,-155160000,1),(184,-150066000,2),(184,-128894400,1),(184,-121122000,2),(184,-99950400,1),(184,-89586000,2),(184,-68414400,1),(184,-57963600,2),(184,499752000,1),(184,511239600,2),(184,530596800,1),(184,540270000,2),(184,562132800,1),(184,571201200,2),(185,-873057600,2),(185,-769395600,1),(185,-765399600,0),(186,-1892661434,1),(186,-1688410800,0),(186,-1619205434,2),(186,-1593806400,0),(186,-1335986234,3),(186,-1317585600,1),(186,-1304362800,3),(186,-1286049600,1),(186,-1272826800,3),(186,-1254513600,1),(186,-1241290800,3),(186,-1222977600,1),(186,-1209754800,3),(186,-1191355200,1),(186,-1178132400,2),(186,-870552000,1),(186,-865278000,2),(186,-718056000,1),(186,-713649600,2),(186,-36619200,4),(186,-23922000,5),(186,-3355200,4),(186,7527600,5),(186,24465600,4),(186,37767600,5),(186,55915200,4),(186,69217200,5),(186,87969600,4),(186,100666800,5),(186,118209600,4),(186,132116400,5),(186,150868800,4),(186,163566000,5),(186,182318400,4),(186,195620400,5),(186,213768000,4),(186,227070000,5),(186,245217600,4),(186,258519600,5),(186,277272000,4),(186,289969200,5),(186,308721600,4),(186,321418800,5),(186,340171200,4),(186,353473200,5),(186,371620800,4),(186,384922800,5),(186,403070400,4),(186,416372400,5),(186,434520000,4),(186,447822000,5),(186,466574400,4),(186,479271600,5),(186,498024000,4),(186,510721200,5),(186,529473600,4),(186,545194800,5),(186,560923200,4),(186,574225200,5),(186,592372800,4),(186,605674800,5),(186,624427200,4),(186,637124400,5),(186,653457600,4),(186,668574000,5),(186,687326400,4),(186,700628400,5),(186,718776000,4),(186,732078000,5),(186,750225600,4),(186,763527600,5),(186,781675200,4),(186,794977200,5),(186,813729600,4),(186,826426800,5),(186,845179200,4),(186,859690800,5),(186,876628800,4),(186,889930800,5),(186,906868800,4),(186,923194800,5),(186,939528000,4),(186,952830000,5),(186,971582400,4),(186,984279600,5),(186,1003032000,4),(186,1015729200,5),(186,1034481600,4),(186,1047178800,5),(186,1065931200,4),(186,1079233200,5),(186,1097380800,4),(186,1110682800,5),(186,1128830400,4),(186,1142132400,5),(186,1160884800,4),(186,1173582000,5),(186,1192334400,4),(186,1206846000,5),(186,1223784000,4),(186,1237086000,5),(186,1255233600,4),(186,1270350000,5),(186,1286683200,4),(186,1304823600,5),(186,1313899200,4),(186,1335668400,5),(186,1346558400,4),(186,1367118000,5),(186,1378612800,4),(186,1398567600,5),(186,1410062400,4),(186,1463281200,5),(186,1471147200,4),(186,1480820400,6),(187,-1632067200,0),(187,-1615136400,1),(187,-923248800,0),(187,-880214400,2),(187,-769395600,3),(187,-765392400,1),(187,136368000,0),(187,152089200,1),(187,167817600,0),(187,183538800,1),(187,199267200,0),(187,215593200,1),(187,230716800,0),(187,247042800,1),(187,262771200,0),(187,278492400,1),(187,294220800,0),(187,309942000,1),(187,325670400,0),(187,341391600,1),(187,357120000,0),(187,372841200,1),(187,388569600,0),(187,404895600,1),(187,420019200,0),(187,436345200,1),(187,452073600,0),(187,467794800,1),(187,483523200,0),(187,499244400,1),(187,514972800,0),(187,530694000,1),(187,544608000,0),(187,562143600,1),(187,576057600,0),(187,594198000,1),(187,607507200,0),(187,625647600,1),(187,638956800,0),(187,657097200,1),(187,671011200,0),(187,688546800,1),(187,702460800,0),(187,719996400,1),(187,733910400,0),(187,752050800,1),(187,765360000,0),(187,783500400,1),(187,796809600,0),(187,814950000,1),(187,828864000,0),(187,846399600,1),(187,860313600,0),(187,877849200,1),(187,891763200,0),(187,909298800,1),(187,923212800,0),(187,941353200,1),(187,954662400,0),(187,972802800,1),(187,986112000,0),(187,1004252400,1),(187,1018166400,0),(187,1035702000,1),(187,1049616000,0),(187,1067151600,1),(187,1081065600,0),(187,1099206000,1),(187,1112515200,0),(187,1130655600,1),(187,1143964800,0),(187,1162105200,1),(187,1173600000,0),(187,1194159600,1),(187,1205049600,0),(187,1225609200,1),(187,1236499200,0),(187,1257058800,1),(187,1268553600,0),(187,1289113200,1),(187,1300003200,0),(187,1320562800,1),(187,1331452800,0),(187,1352012400,1),(187,1362902400,0),(187,1383462000,1),(187,1394352000,0),(187,1414911600,1),(187,1425801600,0),(187,1446361200,1),(187,1457856000,0),(187,1478415600,1),(187,1489305600,0),(187,1509865200,1),(187,1520755200,0),(187,1541314800,1),(187,1552204800,0),(187,1572764400,1),(187,1583654400,0),(187,1604214000,1),(187,1615708800,0),(187,1636268400,1),(187,1647158400,0),(187,1667718000,1),(187,1678608000,0),(187,1699167600,1),(187,1710057600,0),(187,1730617200,1),(187,1741507200,0),(187,1762066800,1),(187,1772956800,0),(187,1793516400,1),(187,1805011200,0),(187,1825570800,1),(187,1836460800,0),(187,1857020400,1),(187,1867910400,0),(187,1888470000,1),(187,1899360000,0),(187,1919919600,1),(187,1930809600,0),(187,1951369200,1),(187,1962864000,0),(187,1983423600,1),(187,1994313600,0),(187,2014873200,1),(187,2025763200,0),(187,2046322800,1),(187,2057212800,0),(187,2077772400,1),(187,2088662400,0),(187,2109222000,1),(187,2120112000,0),(187,2140671600,1),(188,-410227200,2),(188,-147895200,1),(188,-131565600,2),(188,325670400,3),(188,341391600,2),(188,357120000,3),(188,372841200,2),(188,388569600,3),(188,404895600,2),(188,420019200,3),(188,436345200,2),(188,452073600,3),(188,467794800,2),(188,483523200,3),(188,499244400,2),(188,514972800,3),(188,530694000,2),(188,544608000,3),(188,562143600,2),(188,576057600,3),(188,594198000,2),(188,607507200,3),(188,625647600,2),(188,638956800,3),(188,657097200,2),(188,671011200,3),(188,688546800,2),(188,702460800,3),(188,719996400,2),(188,733910400,3),(188,752050800,2),(188,765360000,3),(188,783500400,2),(188,796809600,3),(188,814950000,2),(188,828864000,3),(188,846399600,2),(188,860313600,3),(188,877849200,2),(188,891763200,3),(188,909298800,2),(188,923212800,3),(188,941353200,2),(188,954662400,3),(188,972802800,4),(188,986112000,3),(188,1004252400,2),(188,1018166400,3),(188,1035702000,2),(188,1049616000,3),(188,1067151600,2),(188,1081065600,3),(188,1099206000,2),(188,1112515200,3),(188,1130655600,2),(188,1143964800,3),(188,1162105200,2),(188,1173600000,3),(188,1194159600,2),(188,1205049600,3),(188,1225609200,2),(188,1236499200,3),(188,1257058800,2),(188,1268553600,3),(188,1289113200,2),(188,1300003200,3),(188,1320562800,2),(188,1331452800,3),(188,1352012400,2),(188,1362902400,3),(188,1383462000,2),(188,1394352000,3),(188,1414911600,2),(188,1425801600,3),(188,1446361200,2),(188,1457856000,3),(188,1478415600,2),(188,1489305600,3),(188,1509865200,2),(188,1520755200,3),(188,1541314800,2),(188,1552204800,3),(188,1572764400,2),(188,1583654400,3),(188,1604214000,2),(188,1615708800,3),(188,1636268400,2),(188,1647158400,3),(188,1667718000,2),(188,1678608000,3),(188,1699167600,2),(188,1710057600,3),(188,1730617200,2),(188,1741507200,3),(188,1762066800,2),(188,1772956800,3),(188,1793516400,2),(188,1805011200,3),(188,1825570800,2),(188,1836460800,3),(188,1857020400,2),(188,1867910400,3),(188,1888470000,2),(188,1899360000,3),(188,1919919600,2),(188,1930809600,3),(188,1951369200,2),(188,1962864000,3),(188,1983423600,2),(188,1994313600,3),(188,2014873200,2),(188,2025763200,3),(188,2046322800,2),(188,2057212800,3),(188,2077772400,2),(188,2088662400,3),(188,2109222000,2),(188,2120112000,3),(188,2140671600,2),(189,-1767217224,2),(189,-1206957600,1),(189,-1191362400,2),(189,-1175374800,1),(189,-1159826400,2),(189,-633819600,1),(189,-622069200,2),(189,-602283600,1),(189,-591832800,2),(189,-570747600,1),(189,-560210400,2),(189,-539125200,1),(189,-531352800,2),(189,-191365200,1),(189,-184197600,2),(189,-155163600,1),(189,-150069600,2),(189,-128898000,1),(189,-121125600,2),(189,-99954000,1),(189,-89589600,2),(189,-68418000,1),(189,-57967200,2),(189,499748400,1),(189,511236000,2),(189,530593200,1),(189,540266400,2),(189,562129200,1),(189,571197600,2),(189,592974000,1),(189,602042400,2),(189,624423600,1),(189,634701600,2),(189,938919600,1),(189,951616800,2),(189,970974000,1),(189,971575200,2),(189,1003028400,1),(189,1013911200,2),(190,-2030202084,2),(190,-1632063600,1),(190,-1615132800,2),(190,-1251651600,1),(190,-1238349600,2),(190,-1220202000,1),(190,-1206900000,2),(190,-1188752400,1),(190,-1175450400,2),(190,-1156698000,1),(190,-1144000800,2),(190,-1125248400,1),(190,-1111946400,2),(190,-1032714000,1),(190,-1016992800,2),(190,-1001264400,1),(190,-986148000,2),(190,-969814800,1),(190,-954093600,2),(190,-937760400,1),(190,-922039200,2),(190,-906310800,1),(190,-890589600,2),(190,-880210800,3),(190,-769395600,4),(190,-765388800,2),(190,-748450800,1),(190,-732729600,2),(190,-715791600,1),(190,-702489600,2),(190,-684342000,1),(190,-671040000,2),(190,-652892400,1),(190,-639590400,2),(190,-620838000,1),(190,-608140800,2),(190,-589388400,1),(190,-576086400,2),(190,-557938800,1),(190,-544636800,2),(190,-526489200,1),(190,-513187200,2),(190,-495039600,1),(190,-481737600,2),(190,-463590000,1),(190,-450288000,2),(190,-431535600,1),(190,-418233600,2),(190,-400086000,1),(190,-386784000,2),(190,-337186800,1),(190,-321465600,2),(190,-305737200,5),(191,-704937600,2),(191,-147895200,1),(191,-131565600,2),(191,325670400,3),(191,341391600,2),(191,357120000,3),(191,372841200,2),(191,388569600,3),(191,404895600,2),(191,420019200,3),(191,436345200,2),(191,452073600,3),(191,467794800,2),(191,483523200,3),(191,499244400,2),(191,514972800,3),(191,530694000,2),(191,544608000,3),(191,562143600,2),(191,576057600,3),(191,594198000,2),(191,607507200,3),(191,625647600,2),(191,638956800,3),(191,657097200,2),(191,671011200,3),(191,688546800,2),(191,702460800,3),(191,719996400,2),(191,733910400,3),(191,752050800,2),(191,765360000,3),(191,783500400,2),(191,796809600,3),(191,814950000,2),(191,828864000,3),(191,846399600,2),(191,860313600,3),(191,877849200,2),(191,891763200,3),(191,909298800,2),(191,923212800,3),(191,941353200,2),(191,954662400,3),(191,972802800,4),(191,986112000,3),(191,1004252400,2),(191,1018166400,3),(191,1035702000,2),(191,1049616000,3),(191,1067151600,2),(191,1081065600,3),(191,1099206000,2),(191,1112515200,3),(191,1130655600,2),(191,1143964800,3),(191,1162105200,4),(191,1173600000,3),(191,1194159600,2),(191,1205049600,3),(191,1225609200,2),(191,1236499200,3),(191,1257058800,2),(191,1268553600,3),(191,1289113200,2),(191,1300003200,3),(191,1320562800,2),(191,1331452800,3),(191,1352012400,2),(191,1362902400,3),(191,1383462000,2),(191,1394352000,3),(191,1414911600,2),(191,1425801600,3),(191,1446361200,2),(191,1457856000,3),(191,1478415600,2),(191,1489305600,3),(191,1509865200,2),(191,1520755200,3),(191,1541314800,2),(191,1552204800,3),(191,1572764400,2),(191,1583654400,3),(191,1604214000,2),(191,1615708800,3),(191,1636268400,2),(191,1647158400,3),(191,1667718000,2),(191,1678608000,3),(191,1699167600,2),(191,1710057600,3),(191,1730617200,2),(191,1741507200,3),(191,1762066800,2),(191,1772956800,3),(191,1793516400,2),(191,1805011200,3),(191,1825570800,2),(191,1836460800,3),(191,1857020400,2),(191,1867910400,3),(191,1888470000,2),(191,1899360000,3),(191,1919919600,2),(191,1930809600,3),(191,1951369200,2),(191,1962864000,3),(191,1983423600,2),(191,1994313600,3),(191,2014873200,2),(191,2025763200,3),(191,2046322800,2),(191,2057212800,3),(191,2077772400,2),(191,2088662400,3),(191,2109222000,2),(191,2120112000,3),(191,2140671600,2),(192,-1767209328,2),(192,-1206950400,1),(192,-1191355200,2),(192,-1175367600,1),(192,-1159819200,2),(192,-633812400,1),(192,-622062000,2),(192,-602276400,1),(192,-591825600,2),(192,-570740400,1),(192,-560203200,2),(192,-539118000,1),(192,-531345600,2),(192,-191358000,1),(192,-184190400,2),(192,-155156400,1),(192,-150062400,2),(192,-128890800,1),(192,-121118400,2),(192,-99946800,1),(192,-89582400,2),(192,-68410800,1),(192,-57960000,2),(192,499755600,1),(192,511243200,2),(192,530600400,1),(192,540273600,2),(192,562136400,1),(192,571204800,2),(192,1214283600,3),(192,1384056000,2),(193,-1567453392,1),(193,-1233432000,2),(193,-1222981200,1),(193,-1205956800,2),(193,-1194037200,1),(193,-1172865600,2),(193,-1162501200,1),(193,-1141329600,2),(193,-1130965200,1),(193,-1109793600,2),(193,-1099429200,1),(193,-1078257600,2),(193,-1067806800,1),(193,-1046635200,2),(193,-1036270800,1),(193,-1015099200,2),(193,-1004734800,1),(193,-983563200,2),(193,-973198800,1),(193,-952027200,2),(193,-941576400,1),(193,-931032000,2),(193,-900882000,1),(193,-890337600,2),(193,-833749200,1),(193,-827265600,2),(193,-752274000,1),(193,-733780800,2),(193,-197326800,1),(193,-190843200,2),(193,-184194000,1),(193,-164491200,2),(193,-152658000,1),(193,-132955200,2),(193,-121122000,1),(193,-101419200,2),(193,-86821200,1),(193,-71092800,2),(193,-54766800,1),(193,-39038400,2),(193,-23317200,1),(193,-7588800,4),(193,128142000,3),(193,136605600,4),(193,596948400,3),(193,605066400,4),(193,624423600,3),(193,636516000,4),(193,656478000,3),(193,667965600,1),(193,687931200,3),(193,699415200,4),(193,719377200,3),(193,731469600,4),(193,938919600,2),(193,952052400,4),(193,1198983600,3),(193,1205632800,4),(193,1224385200,3),(193,1237082400,4),(194,-1514736000,1),(194,-1451667600,2),(194,-1343062800,1),(194,-1234803600,2),(194,-1222963200,3),(194,-1207242000,2),(194,-873820800,4),(194,-769395600,5),(194,-761677200,2),(194,-686073600,3),(194,-661539600,2),(194,-495039600,3),(194,-481734000,2),(194,-463590000,3),(194,-450284400,2),(194,-431535600,3),(194,-418230000,2),(194,-400086000,3),(194,-386780400,2),(194,-368636400,3),(194,-355330800,2),(194,-337186800,3),(194,-323881200,2),(194,-305737200,3),(194,-292431600,2),(194,199274400,3),(194,215600400,2),(194,230724000,3),(194,247050000,2),(194,262778400,3),(194,278499600,2),(194,294228000,3),(194,309949200,2),(194,325677600,3),(194,341398800,2),(194,357127200,3),(194,372848400,2),(194,388576800,3),(194,404902800,2),(194,420026400,3),(194,436352400,2),(194,452080800,3),(194,467802000,2),(194,483530400,3),(194,499251600,2),(194,514980000,3),(194,530701200,2),(194,544615200,3),(194,562150800,2),(194,576064800,3),(194,594205200,2),(194,607514400,3),(194,625654800,2),(194,638964000,3),(194,657104400,2),(194,671018400,3),(194,688554000,2),(194,702468000,3),(194,720003600,2),(194,733917600,3),(194,752058000,2),(194,765367200,3),(194,783507600,2),(194,796816800,3),(194,814957200,2),(194,828871200,3),(194,846406800,2),(194,860320800,3),(194,877856400,2),(194,891770400,3),(194,909306000,2),(194,923220000,3),(194,941360400,2),(194,954669600,3),(194,972810000,2),(194,986119200,3),(194,1004259600,2),(194,1018173600,3),(194,1035709200,2),(194,1049623200,3),(194,1067158800,2),(194,1081072800,3),(194,1099213200,2),(194,1112522400,3),(194,1130662800,2),(194,1143972000,3),(194,1162112400,2),(194,1175421600,3),(194,1193562000,2),(194,1207476000,3),(194,1225011600,2),(194,1238925600,3),(194,1256461200,2),(194,1268560800,3),(194,1289120400,2),(194,1300010400,3),(194,1320570000,2),(194,1331460000,3),(194,1352019600,2),(194,1362909600,3),(194,1383469200,2),(194,1394359200,3),(194,1414918800,2),(194,1425808800,3),(194,1446368400,2),(194,1457863200,3),(194,1478422800,2),(194,1489312800,3),(194,1509872400,2),(194,1520762400,3),(194,1541322000,2),(194,1552212000,3),(194,1572771600,2),(194,1583661600,3),(194,1604221200,2),(194,1615716000,3),(194,1636275600,2),(194,1647165600,3),(194,1667725200,2),(194,1678615200,3),(194,1699174800,2),(194,1710064800,3),(194,1730624400,2),(194,1741514400,3),(194,1762074000,2),(194,1772964000,3),(194,1793523600,2),(194,1805018400,3),(194,1825578000,2),(194,1836468000,3),(194,1857027600,2),(194,1867917600,3),(194,1888477200,2),(194,1899367200,3),(194,1919926800,2),(194,1930816800,3),(194,1951376400,2),(194,1962871200,3),(194,1983430800,2),(194,1994320800,3),(194,2014880400,2),(194,2025770400,3),(194,2046330000,2),(194,2057220000,3),(194,2077779600,2),(194,2088669600,3),(194,2109229200,2),(194,2120119200,3),(194,2140678800,2),(195,-1767212472,2),(195,-1206954000,1),(195,-1191358800,2),(195,-1175371200,1),(195,-1159822800,2),(195,-633816000,1),(195,-622065600,2),(195,-602280000,1),(195,-591829200,2),(195,-570744000,1),(195,-560206800,2),(195,-539121600,1),(195,-531349200,2),(195,-191361600,1),(195,-184194000,2),(195,-155160000,1),(195,-150066000,2),(195,-128894400,1),(195,-121122000,2),(195,-99950400,1),(195,-89586000,2),(195,-68414400,1),(195,-57963600,2),(195,499752000,1),(195,511239600,2),(195,530596800,1),(195,540270000,2),(195,562132800,1),(195,571201200,2),(195,1214280000,3),(196,-1892661434,1),(196,-1688410800,0),(196,-1619205434,2),(196,-1593806400,0),(196,-1335986234,3),(196,-1317585600,1),(196,-1304362800,3),(196,-1286049600,1),(196,-1272826800,3),(196,-1254513600,1),(196,-1241290800,3),(196,-1222977600,1),(196,-1209754800,3),(196,-1191355200,1),(196,-1178132400,2),(196,-870552000,1),(196,-865278000,2),(196,-740520000,4),(196,-736376400,2),(196,-718056000,1),(196,-713649600,2),(196,-36619200,5),(196,-23922000,6),(196,-3355200,5),(196,7527600,6),(196,24465600,5),(196,37767600,6),(196,55915200,5),(196,69217200,6),(196,87969600,5),(196,100666800,6),(196,118209600,5),(196,132116400,6),(196,150868800,5),(196,163566000,6),(196,182318400,5),(196,195620400,6),(196,213768000,5),(196,227070000,6),(196,245217600,5),(196,258519600,6),(196,277272000,5),(196,289969200,6),(196,308721600,5),(196,321418800,6),(196,340171200,5),(196,353473200,6),(196,371620800,5),(196,384922800,6),(196,403070400,5),(196,416372400,6),(196,434520000,5),(196,447822000,6),(196,466574400,5),(196,479271600,6),(196,498024000,5),(196,510721200,6),(196,529473600,5),(196,545194800,6),(196,560923200,5),(196,574225200,6),(196,592372800,5),(196,605674800,6),(196,624427200,5),(196,637124400,6),(196,653457600,5),(196,668574000,6),(196,687326400,5),(196,700628400,6),(196,718776000,5),(196,732078000,6),(196,750225600,5),(196,763527600,6),(196,781675200,5),(196,794977200,6),(196,813729600,5),(196,826426800,6),(196,845179200,5),(196,859690800,6),(196,876628800,5),(196,889930800,6),(196,906868800,5),(196,923194800,6),(196,939528000,5),(196,952830000,6),(196,971582400,5),(196,984279600,6),(196,1003032000,5),(196,1015729200,6),(196,1034481600,5),(196,1047178800,6),(196,1065931200,5),(196,1079233200,6),(196,1097380800,5),(196,1110682800,6),(196,1128830400,5),(196,1142132400,6),(196,1160884800,5),(196,1173582000,6),(196,1192334400,5),(196,1206846000,6),(196,1223784000,5),(196,1237086000,6),(196,1255233600,5),(196,1270350000,6),(196,1286683200,5),(196,1304823600,6),(196,1313899200,5),(196,1335668400,6),(196,1346558400,5),(196,1367118000,6),(196,1378612800,5),(196,1398567600,6),(196,1410062400,5),(196,1463281200,6),(196,1471147200,5),(196,1494730800,6),(196,1502596800,5),(196,1526180400,6),(196,1534046400,5),(196,1557630000,6),(196,1565496000,5),(196,1589079600,6),(196,1596945600,5),(196,1620529200,6),(196,1629000000,5),(196,1652583600,6),(196,1660449600,5),(196,1684033200,6),(196,1691899200,5),(196,1715482800,6),(196,1723348800,5),(196,1746932400,6),(196,1754798400,5),(196,1778382000,6),(196,1786248000,5),(196,1809831600,6),(196,1818302400,5),(196,1841886000,6),(196,1849752000,5),(196,1873335600,6),(196,1881201600,5),(196,1904785200,6),(196,1912651200,5),(196,1936234800,6),(196,1944100800,5),(196,1967684400,6),(196,1976155200,5),(196,1999738800,6),(196,2007604800,5),(196,2031188400,6),(196,2039054400,5),(196,2062638000,6),(196,2070504000,5),(196,2094087600,6),(196,2101953600,5),(196,2125537200,6),(196,2133403200,5),(197,-1159773600,2),(197,-100119600,1),(197,-89668800,2),(197,-5770800,3),(197,4422600,2),(197,25678800,3),(197,33193800,2),(197,57733200,3),(197,64816200,2),(197,89182800,3),(197,96438600,2),(197,120632400,3),(197,127974600,2),(197,152082000,4),(197,972799200,2),(197,975823200,4),(198,-1767214412,2),(198,-1206957600,1),(198,-1191362400,2),(198,-1175374800,1),(198,-1159826400,2),(198,-633819600,1),(198,-622069200,2),(198,-602283600,1),(198,-591832800,2),(198,-570747600,1),(198,-560210400,2),(198,-539125200,1),(198,-531352800,2),(198,-195426000,1),(198,-184197600,2),(198,-155163600,1),(198,-150069600,2),(198,-128898000,1),(198,-121125600,2),(198,-99954000,1),(198,-89589600,2),(198,-68418000,1),(198,-57967200,2),(198,499748400,1),(198,511236000,2),(198,530593200,1),(198,540266400,2),(198,562129200,1),(198,571197600,2),(198,592974000,1),(198,602042400,2),(198,624423600,1),(198,634701600,2),(198,656478000,1),(198,666756000,2),(198,687927600,1),(198,697600800,2),(198,719982000,1),(198,728445600,2),(198,750826800,1),(198,761709600,2),(198,782276400,1),(198,793159200,2),(198,813726000,1),(198,824004000,2),(198,844570800,1),(198,856058400,2),(198,876106800,1),(198,888717600,2),(198,908074800,1),(198,919562400,2),(198,938919600,1),(198,951616800,2),(198,970974000,1),(198,982461600,2),(198,1003028400,1),(198,1013911200,2),(198,1036292400,1),(198,1045360800,2),(198,1066532400,1),(198,1076810400,2),(198,1099364400,1),(198,1108864800,2),(198,1129431600,1),(198,1140314400,2),(198,1162695600,1),(198,1172368800,2),(198,1192330800,1),(198,1203213600,2),(198,1224385200,1),(198,1234663200,2),(198,1255834800,1),(198,1266717600,2),(198,1287284400,1),(198,1298167200,2),(198,1318734000,1),(198,1330221600,2),(198,1350788400,1),(198,1361066400,2),(198,1382238000,1),(198,1392516000,2),(198,1413687600,1),(198,1424570400,2),(198,1445137200,1),(198,1456020000,2),(198,1476586800,1),(198,1487469600,2),(198,1508036400,1),(198,1518919200,2),(198,1541300400,1),(198,1550368800,2),(198,1572750000,1),(198,1581818400,2),(198,1604199600,1),(198,1613872800,2),(198,1636254000,1),(198,1645322400,2),(198,1667703600,1),(198,1677376800,2),(198,1699153200,1),(198,1708221600,2),(198,1730602800,1),(198,1739671200,2),(198,1762052400,1),(198,1771725600,2),(198,1793502000,1),(198,1803175200,2),(198,1825556400,1),(198,1834624800,2),(198,1857006000,1),(198,1866074400,2),(198,1888455600,1),(198,1897524000,2),(198,1919905200,1),(198,1928973600,2),(198,1951354800,1),(198,1960423200,2),(198,1983409200,1),(198,1992477600,2),(198,2014858800,1),(198,2024532000,2),(198,2046308400,1),(198,2055376800,2),(198,2077758000,1),(198,2086826400,2),(198,2109207600,1),(198,2118880800,2),(198,2140657200,1),(199,-1686090728,1),(199,323841600,2),(199,338961600,3),(199,354679200,6),(199,370400400,4),(199,386125200,5),(199,401850000,4),(199,417574800,5),(199,433299600,4),(199,449024400,5),(199,465354000,4),(199,481078800,5),(199,496803600,4),(199,512528400,5),(199,528253200,4),(199,543978000,5),(199,559702800,4),(199,575427600,5),(199,591152400,4),(199,606877200,5),(199,622602000,4),(199,638326800,5),(199,654656400,4),(199,670381200,5),(199,686106000,4),(199,701830800,5),(199,717555600,4),(199,733280400,5),(199,749005200,4),(199,764730000,5),(199,780454800,4),(199,796179600,5),(199,811904400,4),(199,828234000,5),(199,846378000,4),(199,859683600,5),(199,877827600,4),(199,891133200,5),(199,909277200,4),(199,922582800,5),(199,941331600,4),(199,954032400,5),(199,972781200,4),(199,985482000,5),(199,1004230800,4),(199,1017536400,5),(199,1035680400,4),(199,1048986000,5),(199,1067130000,4),(199,1080435600,5),(199,1099184400,4),(199,1111885200,5),(199,1130634000,4),(199,1143334800,5),(199,1162083600,4),(199,1174784400,5),(199,1193533200,4),(199,1206838800,5),(199,1224982800,4),(199,1238288400,5),(199,1256432400,4),(199,1269738000,5),(199,1288486800,4),(199,1301187600,5),(199,1319936400,4),(199,1332637200,5),(199,1351386000,4),(199,1364691600,5),(199,1382835600,4),(199,1396141200,5),(199,1414285200,4),(199,1427590800,5),(199,1445734800,4),(199,1459040400,5),(199,1477789200,4),(199,1490490000,5),(199,1509238800,4),(199,1521939600,5),(199,1540688400,4),(199,1553994000,5),(199,1572138000,4),(199,1585443600,5),(199,1603587600,4),(199,1616893200,5),(199,1635642000,4),(199,1648342800,5),(199,1667091600,4),(199,1679792400,5),(199,1698541200,4),(199,1711846800,5),(199,1729990800,4),(199,1743296400,5),(199,1761440400,4),(199,1774746000,5),(199,1792890000,4),(199,1806195600,5),(199,1824944400,4),(199,1837645200,5),(199,1856394000,4),(199,1869094800,5),(199,1887843600,4),(199,1901149200,5),(199,1919293200,4),(199,1932598800,5),(199,1950742800,4),(199,1964048400,5),(199,1982797200,4),(199,1995498000,5),(199,2014246800,4),(199,2026947600,5),(199,2045696400,4),(199,2058397200,5),(199,2077146000,4),(199,2090451600,5),(199,2108595600,4),(199,2121901200,5),(199,2140045200,4),(200,-1633273200,0),(200,-1615132800,1),(200,-1601823600,0),(200,-1583683200,1),(200,-1570374000,0),(200,-1551628800,1),(200,-1538924400,0),(200,-1534089600,1),(200,-880210800,2),(200,-769395600,3),(200,-765388800,1),(200,-147884400,0),(200,-131558400,1),(200,-116434800,0),(200,-100108800,1),(200,-84380400,0),(200,-68659200,1),(200,-52930800,0),(200,-37209600,1),(200,-21481200,0),(200,-5760000,1),(200,9968400,0),(200,25689600,1),(200,41418000,0),(200,57744000,1),(200,73472400,0),(200,89193600,1),(200,104922000,0),(200,120643200,1),(200,126694800,0),(200,152092800,1),(200,162378000,0),(200,183542400,1),(200,199270800,0),(200,215596800,1),(200,230720400,0),(200,247046400,1),(200,262774800,0),(200,278496000,1),(200,294224400,0),(200,309945600,1),(200,325674000,0),(200,341395200,1),(200,357123600,0),(200,372844800,1),(200,388573200,0),(200,404899200,1),(200,420022800,0),(200,436348800,1),(200,452077200,0),(200,467798400,1),(200,483526800,0),(200,499248000,1),(200,514976400,0),(200,530697600,1),(200,544611600,0),(200,562147200,1),(200,576061200,0),(200,594201600,1),(200,607510800,0),(200,625651200,1),(200,638960400,0),(200,657100800,1),(200,671014800,0),(200,688550400,1),(200,702464400,0),(200,720000000,1),(200,733914000,0),(200,752054400,1),(200,765363600,0),(200,783504000,1),(200,796813200,0),(200,814953600,1),(200,828867600,0),(200,846403200,1),(200,860317200,0),(200,877852800,1),(200,891766800,0),(200,909302400,1),(200,923216400,0),(200,941356800,1),(200,954666000,0),(200,972806400,1),(200,986115600,0),(200,1004256000,1),(200,1018170000,0),(200,1035705600,1),(200,1049619600,0),(200,1067155200,1),(200,1081069200,0),(200,1099209600,1),(200,1112518800,0),(200,1130659200,1),(200,1143968400,0),(200,1162108800,1),(200,1173603600,0),(200,1194163200,1),(200,1205053200,0),(200,1225612800,1),(200,1236502800,0),(200,1257062400,1),(200,1268557200,0),(200,1289116800,1),(200,1300006800,0),(200,1320566400,1),(200,1331456400,0),(200,1352016000,1),(200,1362906000,0),(200,1383465600,1),(200,1394355600,0),(200,1414915200,1),(200,1425805200,0),(200,1446364800,1),(200,1457859600,0),(200,1478419200,1),(200,1489309200,0),(200,1509868800,1),(200,1520758800,0),(200,1541318400,1),(200,1552208400,0),(200,1572768000,1),(200,1583658000,0),(200,1604217600,1),(200,1615712400,0),(200,1636272000,1),(200,1647162000,0),(200,1667721600,1),(200,1678611600,0),(200,1699171200,1),(200,1710061200,0),(200,1730620800,1),(200,1741510800,0),(200,1762070400,1),(200,1772960400,0),(200,1793520000,1),(200,1805014800,0),(200,1825574400,1),(200,1836464400,0),(200,1857024000,1),(200,1867914000,0),(200,1888473600,1),(200,1899363600,0),(200,1919923200,1),(200,1930813200,0),(200,1951372800,1),(200,1962867600,0),(200,1983427200,1),(200,1994317200,0),(200,2014876800,1),(200,2025766800,0),(200,2046326400,1),(200,2057216400,0),(200,2077776000,1),(200,2088666000,0),(200,2109225600,1),(200,2120115600,0),(200,2140675200,1),(201,-880207200,1),(201,-769395600,2),(201,-765385200,0),(201,-21477600,3),(201,-5756400,0),(201,9972000,3),(201,25693200,0),(201,41421600,3),(201,57747600,0),(201,73476000,3),(201,89197200,0),(201,104925600,3),(201,120646800,0),(201,126698400,3),(201,152096400,0),(201,162381600,3),(201,183546000,0),(201,199274400,3),(201,215600400,0),(201,230724000,3),(201,247050000,0),(201,262778400,3),(201,278499600,0),(201,294228000,3),(201,309949200,0),(201,325677600,3),(201,341398800,0),(201,357127200,3),(201,372848400,0),(201,388576800,3),(201,404902800,0),(201,420026400,3),(201,436352400,4),(201,439030800,6),(201,452084400,5),(201,467805600,6),(201,483534000,5),(201,499255200,6),(201,514983600,5),(201,530704800,6),(201,544618800,5),(201,562154400,6),(201,576068400,5),(201,594208800,6),(201,607518000,5),(201,625658400,6),(201,638967600,5),(201,657108000,6),(201,671022000,5),(201,688557600,6),(201,702471600,5),(201,720007200,6),(201,733921200,5),(201,752061600,6),(201,765370800,5),(201,783511200,6),(201,796820400,5),(201,814960800,6),(201,828874800,5),(201,846410400,6),(201,860324400,5),(201,877860000,6),(201,891774000,5),(201,909309600,6),(201,923223600,5),(201,941364000,6),(201,954673200,5),(201,972813600,6),(201,986122800,5),(201,1004263200,6),(201,1018177200,5),(201,1035712800,6),(201,1049626800,5),(201,1067162400,6),(201,1081076400,5),(201,1099216800,6),(201,1112526000,5),(201,1130666400,6),(201,1143975600,5),(201,1162116000,6),(201,1173610800,5),(201,1194170400,6),(201,1205060400,5),(201,1225620000,6),(201,1236510000,5),(201,1257069600,6),(201,1268564400,5),(201,1289124000,6),(201,1300014000,5),(201,1320573600,6),(201,1331463600,5),(201,1352023200,6),(201,1362913200,5),(201,1383472800,6),(201,1394362800,5),(201,1414922400,6),(201,1425812400,5),(201,1446372000,6),(201,1457866800,5),(201,1478426400,6),(201,1489316400,5),(201,1509876000,6),(201,1520766000,5),(201,1541325600,6),(201,1552215600,5),(201,1572775200,6),(201,1583665200,5),(201,1604224800,6),(201,1615719600,5),(201,1636279200,6),(201,1647169200,5),(201,1667728800,6),(201,1678618800,5),(201,1699178400,6),(201,1710068400,5),(201,1730628000,6),(201,1741518000,5),(201,1762077600,6),(201,1772967600,5),(201,1793527200,6),(201,1805022000,5),(201,1825581600,6),(201,1836471600,5),(201,1857031200,6),(201,1867921200,5),(201,1888480800,6),(201,1899370800,5),(201,1919930400,6),(201,1930820400,5),(201,1951380000,6),(201,1962874800,5),(201,1983434400,6),(201,1994324400,5),(201,2014884000,6),(201,2025774000,5),(201,2046333600,6),(201,2057223600,5),(201,2077783200,6),(201,2088673200,5),(201,2109232800,6),(201,2120122800,5),(201,2140682400,6),(202,-1825098836,1),(203,-1664130548,0),(203,-1650137348,1),(203,-1632076148,0),(203,-1615145348,1),(203,-1598650148,0),(203,-1590100148,1),(203,-1567286948,0),(203,-1551565748,1),(203,-1535837348,0),(203,-1520116148,1),(203,-1503782948,0),(203,-1488666548,1),(203,-1472333348,0),(203,-1457216948,1),(203,-1440883748,0),(203,-1425767348,1),(203,-1409434148,0),(203,-1394317748,1),(203,-1377984548,0),(203,-1362263348,1),(203,-1346534948,0),(203,-1330813748,1),(203,-1314480548,0),(203,-1299364148,1),(203,-1283030948,0),(203,-1267914548,1),(203,-1251581348,0),(203,-1236464948,1),(203,-1220131748,0),(203,-1205015348,1),(203,-1188682148,0),(203,-1172960948,1),(203,-1156627748,0),(203,-1141511348,1),(203,-1125178148,0),(203,-1110061748,1),(203,-1096921748,3),(203,-1093728600,2),(203,-1078612200,3),(203,-1061670600,2),(203,-1048973400,3),(203,-1030221000,2),(203,-1017523800,3),(203,-998771400,2),(203,-986074200,3),(203,-966717000,2),(203,-954624600,3),(203,-935267400,2),(203,-922570200,3),(203,-903817800,2),(203,-891120600,3),(203,-872368200,5),(203,-769395600,4),(203,-765401400,3),(203,-746044200,2),(203,-733347000,3),(203,-714594600,2),(203,-701897400,3),(203,-683145000,2),(203,-670447800,3),(203,-651695400,2),(203,-638998200,3),(203,-619641000,2),(203,-606943800,3),(203,-589401000,2),(203,-576099000,3),(203,-557951400,2),(203,-544649400,3),(203,-526501800,2),(203,-513199800,3),(203,-495052200,2),(203,-481750200,3),(203,-463602600,2),(203,-450300600,3),(203,-431548200,2),(203,-418246200,3),(203,-400098600,2),(203,-386796600,3),(203,-368649000,2),(203,-355347000,3),(203,-337199400,2),(203,-323897400,3),(203,-305749800,2),(203,-289423800,3),(203,-273695400,2),(203,-257974200,3),(203,-242245800,2),(203,-226524600,3),(203,-210796200,2),(203,-195075000,3),(203,-179346600,2),(203,-163625400,3),(203,-147897000,2),(203,-131571000,3),(203,-116447400,2),(203,-100121400,3),(203,-84393000,2),(203,-68671800,3),(203,-52943400,2),(203,-37222200,3),(203,-21493800,2),(203,-5772600,3),(203,9955800,2),(203,25677000,3),(203,41405400,2),(203,57731400,3),(203,73459800,2),(203,89181000,3),(203,104909400,2),(203,120630600,3),(203,136359000,2),(203,152080200,3),(203,167808600,2),(203,183529800,3),(203,199258200,2),(203,215584200,3),(203,230707800,2),(203,247033800,3),(203,262762200,2),(203,278483400,3),(203,294211800,2),(203,309933000,3),(203,325661400,2),(203,341382600,3),(203,357111000,2),(203,372832200,3),(203,388560600,2),(203,404886600,3),(203,420010200,2),(203,436336200,3),(203,452064600,2),(203,467785800,3),(203,483514200,2),(203,499235400,3),(203,514963800,2),(203,530685000,3),(203,544591860,2),(203,562127460,3),(203,576041460,6),(203,594178260,3),(203,607491060,2),(203,625631460,3),(203,638940660,2),(203,657081060,3),(203,670995060,2),(203,688530660,3),(203,702444660,2),(203,719980260,3),(203,733894260,2),(203,752034660,3),(203,765343860,2),(203,783484260,3),(203,796793460,2),(203,814933860,3),(203,828847860,2),(203,846383460,3),(203,860297460,2),(203,877833060,3),(203,891747060,2),(203,909282660,3),(203,923196660,2),(203,941337060,3),(203,954646260,2),(203,972786660,3),(203,986095860,2),(203,1004236260,3),(203,1018150260,2),(203,1035685860,3),(203,1049599860,2),(203,1067135460,3),(203,1081049460,2),(203,1099189860,3),(203,1112499060,2),(203,1130639460,3),(203,1143948660,2),(203,1162089060,3),(203,1173583860,2),(203,1194143460,3),(203,1205033460,2),(203,1225593060,3),(203,1236483060,2),(203,1257042660,3),(203,1268537460,2),(203,1289097060,3),(203,1299987060,2),(203,1320553800,3),(203,1331443800,2),(203,1352003400,3),(203,1362893400,2),(203,1383453000,3),(203,1394343000,2),(203,1414902600,3),(203,1425792600,2),(203,1446352200,3),(203,1457847000,2),(203,1478406600,3),(203,1489296600,2),(203,1509856200,3),(203,1520746200,2),(203,1541305800,3),(203,1552195800,2),(203,1572755400,3),(203,1583645400,2),(203,1604205000,3),(203,1615699800,2),(203,1636259400,3),(203,1647149400,2),(203,1667709000,3),(203,1678599000,2),(203,1699158600,3),(203,1710048600,2),(203,1730608200,3),(203,1741498200,2),(203,1762057800,3),(203,1772947800,2),(203,1793507400,3),(203,1805002200,2),(203,1825561800,3),(203,1836451800,2),(203,1857011400,3),(203,1867901400,2),(203,1888461000,3),(203,1899351000,2),(203,1919910600,3),(203,1930800600,2),(203,1951360200,3),(203,1962855000,2),(203,1983414600,3),(203,1994304600,2),(203,2014864200,3),(203,2025754200,2),(203,2046313800,3),(203,2057203800,2),(203,2077763400,3),(203,2088653400,2),(203,2109213000,3),(203,2120103000,2),(203,2140662600,3),(204,-1825098836,1),(205,-1825098836,1),(206,-1825098836,1),(207,-1825098836,1),(208,-2030201320,2),(208,-1632063600,1),(208,-1615132800,2),(208,-880210800,3),(208,-769395600,4),(208,-765388800,2),(208,-747241200,1),(208,-732729600,2),(208,-715791600,1),(208,-702489600,2),(208,-684342000,1),(208,-671040000,2),(208,-652892400,1),(208,-639590400,2),(208,-400086000,1),(208,-384364800,2),(208,-337186800,1),(208,-321465600,2),(208,-305737200,1),(208,-292435200,2),(208,-273682800,1),(208,-260985600,2),(208,73472400,5),(209,-1538503868,2),(209,547020000,1),(209,559717200,2),(209,578469600,1),(209,591166800,2),(209,1146981600,1),(209,1154926800,2),(210,-1686079492,2),(210,670399200,1),(210,686120400,2),(210,701848800,1),(210,717570000,2),(210,733903200,1),(210,752043600,2),(210,765352800,1),(210,783493200,2),(210,796802400,1),(210,814942800,2),(210,828856800,1),(210,846392400,2),(210,860306400,1),(210,877842000,2),(210,891756000,1),(210,909291600,2),(210,923205600,1),(210,941346000,2),(210,954655200,1),(210,972795600,2),(210,986104800,1),(210,1004245200,2),(210,1018159200,1),(210,1035694800,2),(210,1049608800,1),(210,1067144400,2),(210,1081058400,1),(210,1099198800,2),(210,1112508000,1),(210,1130648400,2),(210,1143957600,1),(210,1162098000,2),(210,1173592800,1),(210,1194152400,2),(210,1205042400,1),(210,1225602000,2),(210,1236492000,1),(210,1257051600,2),(210,1268546400,1),(210,1289106000,2),(210,1299996000,1),(210,1320555600,2),(210,1331445600,1),(210,1352005200,2),(210,1362895200,1),(210,1383454800,2),(210,1394344800,1),(210,1414904400,2),(210,1425794400,1),(210,1446354000,2),(210,1457848800,1),(210,1478408400,2),(210,1489298400,1),(210,1509858000,2),(210,1520748000,1),(210,1541307600,2),(210,1552197600,1),(210,1572757200,2),(210,1583647200,1),(210,1604206800,2),(210,1615701600,1),(210,1636261200,2),(210,1647151200,1),(210,1667710800,2),(210,1678600800,1),(210,1699160400,2),(210,1710050400,1),(210,1730610000,2),(210,1741500000,1),(210,1762059600,2),(210,1772949600,1),(210,1793509200,2),(210,1805004000,1),(210,1825563600,2),(210,1836453600,1),(210,1857013200,2),(210,1867903200,1),(210,1888462800,2),(210,1899352800,1),(210,1919912400,2),(210,1930802400,1),(210,1951362000,2),(210,1962856800,1),(210,1983416400,2),(210,1994306400,1),(210,2014866000,2),(210,2025756000,1),(210,2046315600,2),(210,2057205600,1),(210,2077765200,2),(210,2088655200,1),(210,2109214800,2),(210,2120104800,1),(210,2140664400,2),(211,-1893434400,1),(211,-880218000,2),(211,-769395600,3),(211,-765396000,1),(211,9961200,4),(211,25682400,1),(211,41410800,4),(211,57736800,1),(211,73465200,4),(211,89186400,1),(211,136364400,4),(211,152085600,1),(211,167814000,4),(211,183535200,1),(211,199263600,4),(211,215589600,1),(211,230713200,4),(211,247039200,1),(211,262767600,4),(211,278488800,1),(211,294217200,4),(211,309938400,1),(211,325666800,4),(211,341388000,1),(211,357116400,4),(211,372837600,1),(211,388566000,4),(211,404892000,1),(211,420015600,4),(211,436341600,1),(211,452070000,4),(211,467791200,1),(211,483519600,4),(211,499240800,1),(211,514969200,4),(211,530690400,1),(211,544604400,4),(211,562140000,1),(211,576054000,4),(211,594194400,1),(211,607503600,4),(211,625644000,1),(211,638953200,4),(211,657093600,1),(211,671007600,4),(211,688543200,1),(211,702457200,4),(211,719992800,1),(211,733906800,4),(211,752047200,1),(211,765356400,4),(211,783496800,1),(211,796806000,4),(211,814946400,1),(211,828860400,4),(211,846396000,1),(211,860310000,4),(211,877845600,1),(211,891759600,4),(211,909295200,1),(211,923209200,4),(211,941349600,1),(211,954658800,4),(211,972799200,1),(211,986108400,4),(211,1004248800,1),(211,1018162800,4),(211,1035698400,1),(211,1049612400,4),(211,1067148000,1),(211,1081062000,4),(211,1099202400,1),(211,1112511600,4),(211,1130652000,1),(211,1143961200,4),(211,1162101600,1),(211,1173596400,4),(211,1194156000,1),(211,1205046000,4),(211,1225605600,1),(211,1236495600,4),(211,1257055200,1),(211,1268550000,4),(211,1289109600,1),(211,1299999600,4),(211,1320559200,1),(211,1331449200,4),(211,1352008800,1),(211,1362898800,4),(211,1383458400,1),(211,1394348400,4),(211,1414908000,1),(211,1425798000,4),(211,1446357600,1),(211,1457852400,4),(211,1478412000,1),(211,1489302000,4),(211,1509861600,1),(211,1520751600,4),(211,1541311200,1),(211,1552201200,4),(211,1572760800,1),(211,1583650800,4),(211,1604210400,1),(211,1615705200,4),(211,1636264800,1),(211,1647154800,4),(211,1667714400,1),(211,1678604400,4),(211,1699164000,1),(211,1710054000,4),(211,1730613600,1),(211,1741503600,4),(211,1762063200,1),(211,1772953200,4),(211,1793512800,1),(211,1805007600,4),(211,1825567200,1),(211,1836457200,4),(211,1857016800,1),(211,1867906800,4),(211,1888466400,1),(211,1899356400,4),(211,1919916000,1),(211,1930806000,4),(211,1951365600,1),(211,1962860400,4),(211,1983420000,1),(211,1994310000,4),(211,2014869600,1),(211,2025759600,4),(211,2046319200,1),(211,2057209200,4),(211,2077768800,1),(211,2088658800,4),(211,2109218400,1),(211,2120108400,4),(211,2140668000,1),(212,-1514736000,1),(212,-1451667600,2),(212,-1343062800,1),(212,-1234803600,2),(212,-1222963200,3),(212,-1207242000,2),(212,-873820800,4),(212,-769395600,5),(212,-761677200,2),(212,-686073600,3),(212,-661539600,2),(212,-495039600,3),(212,-481734000,2),(212,-463590000,3),(212,-450284400,2),(212,-431535600,3),(212,-418230000,2),(212,-400086000,3),(212,-386780400,2),(212,-368636400,3),(212,-355330800,2),(212,-337186800,3),(212,-323881200,2),(212,-305737200,3),(212,-292431600,2),(212,199274400,3),(212,215600400,2),(212,230724000,3),(212,247050000,2),(212,262778400,3),(212,278499600,2),(212,294228000,3),(212,309949200,2),(212,325677600,3),(212,341398800,2),(212,357127200,3),(212,372848400,2),(212,388576800,3),(212,404902800,2),(212,420026400,3),(212,436352400,2),(212,452080800,3),(212,467802000,2),(212,483530400,3),(212,499251600,2),(212,514980000,3),(212,530701200,2),(212,544615200,3),(212,562150800,2),(212,576064800,3),(212,594205200,2),(212,607514400,3),(212,625654800,2),(212,638964000,3),(212,657104400,2),(212,671018400,3),(212,688554000,2),(212,702468000,3),(212,720003600,2),(212,733917600,3),(212,752058000,2),(212,765367200,3),(212,783507600,2),(212,796816800,3),(212,814957200,2),(212,828871200,3),(212,846406800,2),(212,860320800,3),(212,877856400,2),(212,891770400,3),(212,909306000,2),(212,923220000,3),(212,941360400,2),(212,954669600,3),(212,972810000,2),(212,986119200,3),(212,1004259600,2),(212,1018173600,3),(212,1035709200,2),(212,1049623200,3),(212,1067158800,2),(212,1081072800,3),(212,1099213200,2),(212,1112522400,3),(212,1130662800,2),(212,1143972000,3),(212,1162112400,2),(212,1175421600,3),(212,1193562000,2),(212,1207476000,3),(212,1225011600,2),(212,1238925600,3),(212,1256461200,2),(212,1268560800,3),(212,1289120400,2),(212,1300010400,3),(212,1320570000,2),(212,1331460000,3),(212,1352019600,2),(212,1362909600,3),(212,1383469200,2),(212,1394359200,3),(212,1414918800,2),(212,1425808800,3),(212,1446368400,2),(212,1457863200,3),(212,1478422800,2),(212,1489312800,3),(212,1509872400,2),(212,1520762400,3),(212,1541322000,2),(212,1552212000,3),(212,1572771600,2),(212,1583661600,3),(212,1604221200,2),(212,1615716000,3),(212,1636275600,2),(212,1647165600,3),(212,1667725200,2),(212,1678615200,3),(212,1699174800,2),(212,1710064800,3),(212,1730624400,2),(212,1741514400,3),(212,1762074000,2),(212,1772964000,3),(212,1793523600,2),(212,1805018400,3),(212,1825578000,2),(212,1836468000,3),(212,1857027600,2),(212,1867917600,3),(212,1888477200,2),(212,1899367200,3),(212,1919926800,2),(212,1930816800,3),(212,1951376400,2),(212,1962871200,3),(212,1983430800,2),(212,1994320800,3),(212,2014880400,2),(212,2025770400,3),(212,2046330000,2),(212,2057220000,3),(212,2077779600,2),(212,2088669600,3),(212,2109229200,2),(212,2120119200,3),(212,2140678800,2),(213,-1632070800,0),(213,-1615140000,1),(213,-1601753400,0),(213,-1583697600,1),(213,-1567357200,0),(213,-1554667200,1),(213,-1534698000,0),(213,-1524074400,1),(213,-1503248400,0),(213,-1492365600,1),(213,-1471798800,0),(213,-1460916000,1),(213,-1440954000,0),(213,-1428861600,1),(213,-1409504400,0),(213,-1397412000,1),(213,-1378054800,0),(213,-1365962400,1),(213,-1346605200,0),(213,-1333908000,1),(213,-1315155600,0),(213,-1301853600,1),(213,-1283706000,0),(213,-1270404000,1),(213,-1252256400,0),(213,-1238954400,1),(213,-1220806800,0),(213,-1207504800,1),(213,-1188752400,0),(213,-1176055200,1),(213,-1157302800,0),(213,-1144000800,1),(213,-1125853200,0),(213,-1112551200,1),(213,-1094403600,0),(213,-1081101600,1),(213,-1062954000,0),(213,-1049652000,1),(213,-1031504400,0),(213,-1018202400,1),(213,-1000054800,0),(213,-986752800,1),(213,-968000400,0),(213,-955303200,1),(213,-936550800,0),(213,-880218000,2),(213,-769395600,3),(213,-765396000,1),(213,-747248400,0),(213,-733946400,1),(213,-715806000,0),(213,-702504000,1),(213,-684356400,0),(213,-671054400,1),(213,-652906800,0),(213,-634161600,1),(213,-620845200,0),(213,-602704800,1),(213,-589395600,0),(213,-576093600,1),(213,-557946000,0),(213,-544644000,1),(213,-526496400,0),(213,-513194400,1),(213,-495046800,0),(213,-481744800,1),(213,-463597200,0),(213,-450295200,1),(213,-431542800,0),(213,-418240800,1),(213,-400093200,0),(213,-384372000,1),(213,-368643600,0),(213,-352922400,1),(213,-337194000,0),(213,-321472800,1),(213,-305744400,0),(213,-289418400,1),(213,-273690000,0),(213,-257968800,1),(213,-242240400,0),(213,-226519200,1),(213,-210790800,0),(213,-195069600,1),(213,-179341200,0),(213,-163620000,1),(213,-147891600,0),(213,-131565600,1),(213,-116442000,0),(213,-100116000,1),(213,-84387600,0),(213,-68666400,1),(213,-52938000,0),(213,-37216800,1),(213,-21488400,0),(213,-5767200,1),(213,9961200,0),(213,25682400,1),(213,41410800,0),(213,57736800,1),(213,73465200,0),(213,89186400,1),(213,104914800,0),(213,120636000,1),(213,136364400,0),(213,152085600,1),(213,167814000,0),(213,183535200,1),(213,199263600,0),(213,215589600,1),(213,230713200,0),(213,247039200,1),(213,262767600,0),(213,278488800,1),(213,294217200,0),(213,309938400,1),(213,325666800,0),(213,341388000,1),(213,357116400,0),(213,372837600,1),(213,388566000,0),(213,404892000,1),(213,420015600,0),(213,436341600,1),(213,452070000,0),(213,467791200,1),(213,483519600,0),(213,499240800,1),(213,514969200,0),(213,530690400,1),(213,544604400,0),(213,562140000,1),(213,576054000,0),(213,594194400,1),(213,607503600,0),(213,625644000,1),(213,638953200,0),(213,657093600,1),(213,671007600,0),(213,688543200,1),(213,702457200,0),(213,719992800,1),(213,733906800,0),(213,752047200,1),(213,765356400,0),(213,783496800,1),(213,796806000,0),(213,814946400,1),(213,828860400,0),(213,846396000,1),(213,860310000,0),(213,877845600,1),(213,891759600,0),(213,909295200,1),(213,923209200,0),(213,941349600,1),(213,954658800,0),(213,972799200,1),(213,986108400,0),(213,1004248800,1),(213,1018162800,0),(213,1035698400,1),(213,1049612400,0),(213,1067148000,1),(213,1081062000,0),(213,1099202400,1),(213,1112511600,0),(213,1130652000,1),(213,1143961200,0),(213,1162101600,1),(213,1173596400,0),(213,1194156000,1),(213,1205046000,0),(213,1225605600,1),(213,1236495600,0),(213,1257055200,1),(213,1268550000,0),(213,1289109600,1),(213,1299999600,0),(213,1320559200,1),(213,1331449200,0),(213,1352008800,1),(213,1362898800,0),(213,1383458400,1),(213,1394348400,0),(213,1414908000,1),(213,1425798000,0),(213,1446357600,1),(213,1457852400,0),(213,1478412000,1),(213,1489302000,0),(213,1509861600,1),(213,1520751600,0),(213,1541311200,1),(213,1552201200,0),(213,1572760800,1),(213,1583650800,0),(213,1604210400,1),(213,1615705200,0),(213,1636264800,1),(213,1647154800,0),(213,1667714400,1),(213,1678604400,0),(213,1699164000,1),(213,1710054000,0),(213,1730613600,1),(213,1741503600,0),(213,1762063200,1),(213,1772953200,0),(213,1793512800,1),(213,1805007600,0),(213,1825567200,1),(213,1836457200,0),(213,1857016800,1),(213,1867906800,0),(213,1888466400,1),(213,1899356400,0),(213,1919916000,1),(213,1930806000,0),(213,1951365600,1),(213,1962860400,0),(213,1983420000,1),(213,1994310000,0),(213,2014869600,1),(213,2025759600,0),(213,2046319200,1),(213,2057209200,0),(213,2077768800,1),(213,2088658800,0),(213,2109218400,1),(213,2120108400,0),(213,2140668000,1),(214,-1825098836,1),(215,-1632060000,0),(215,-1615129200,1),(215,-880207200,2),(215,-769395600,3),(215,-765385200,1),(215,-747237600,0),(215,-732726000,1),(215,-715788000,0),(215,-702486000,1),(215,-684338400,0),(215,-671036400,1),(215,-652888800,0),(215,-639586800,1),(215,-620834400,0),(215,-608137200,1),(215,-589384800,0),(215,-576082800,1),(215,-557935200,0),(215,-544633200,1),(215,-526485600,0),(215,-513183600,1),(215,-495036000,0),(215,-481734000,1),(215,-463586400,0),(215,-450284400,1),(215,-431532000,0),(215,-418230000,1),(215,-400082400,0),(215,-386780400,1),(215,-368632800,0),(215,-355330800,1),(215,-337183200,0),(215,-323881200,1),(215,-305733600,0),(215,-292431600,1),(215,-273679200,0),(215,-260982000,1),(215,-242229600,0),(215,-226508400,1),(215,-210780000,0),(215,-195058800,1),(215,-179330400,0),(215,-163609200,1),(215,-147880800,0),(215,-131554800,1),(215,-116431200,0),(215,-100105200,1),(215,-84376800,0),(215,-68655600,1),(215,-52927200,0),(215,-37206000,1),(215,-21477600,0),(215,-5756400,1),(215,9972000,0),(215,25693200,1),(215,41421600,0),(215,57747600,1),(215,73476000,0),(215,89197200,1),(215,104925600,0),(215,120646800,1),(215,136375200,0),(215,152096400,1),(215,167824800,0),(215,183546000,1),(215,199274400,0),(215,215600400,1),(215,230724000,0),(215,247050000,1),(215,262778400,0),(215,278499600,1),(215,294228000,0),(215,309949200,1),(215,325677600,0),(215,341398800,1),(215,357127200,0),(215,372848400,1),(215,388576800,0),(215,404902800,1),(215,420026400,0),(215,436352400,1),(215,452080800,0),(215,467802000,1),(215,483530400,0),(215,499251600,1),(215,514980000,0),(215,530701200,1),(215,544615200,0),(215,562150800,1),(215,576064800,0),(215,594205200,1),(215,607514400,0),(215,625654800,1),(215,638964000,0),(215,657104400,1),(215,671018400,0),(215,688554000,1),(215,702468000,0),(215,720003600,1),(215,733917600,0),(215,752058000,1),(215,765367200,0),(215,783507600,1),(215,796816800,0),(215,814957200,1),(215,828871200,0),(215,846406800,1),(215,860320800,0),(215,877856400,1),(215,891770400,0),(215,909306000,1),(215,923220000,0),(215,941360400,1),(215,954669600,0),(215,972810000,1),(215,986119200,0),(215,1004259600,1),(215,1018173600,0),(215,1035709200,1),(215,1049623200,0),(215,1067158800,1),(215,1081072800,0),(215,1099213200,1),(215,1112522400,0),(215,1130662800,1),(215,1143972000,0),(215,1162112400,1),(215,1173607200,0),(215,1194166800,1),(215,1205056800,0),(215,1225616400,1),(215,1236506400,0),(215,1257066000,1),(215,1268560800,0),(215,1289120400,1),(215,1300010400,0),(215,1320570000,1),(215,1331460000,0),(215,1352019600,1),(215,1362909600,0),(215,1383469200,1),(215,1394359200,0),(215,1414918800,1),(215,1425808800,0),(215,1446368400,1),(215,1457863200,0),(215,1478422800,1),(215,1489312800,0),(215,1509872400,1),(215,1520762400,0),(215,1541322000,1),(215,1552212000,0),(215,1572771600,1),(215,1583661600,0),(215,1604221200,1),(215,1615716000,0),(215,1636275600,1),(215,1647165600,0),(215,1667725200,1),(215,1678615200,0),(215,1699174800,1),(215,1710064800,0),(215,1730624400,1),(215,1741514400,0),(215,1762074000,1),(215,1772964000,0),(215,1793523600,1),(215,1805018400,0),(215,1825578000,1),(215,1836468000,0),(215,1857027600,1),(215,1867917600,0),(215,1888477200,1),(215,1899367200,0),(215,1919926800,1),(215,1930816800,0),(215,1951376400,1),(215,1962871200,0),(215,1983430800,1),(215,1994320800,0),(215,2014880400,1),(215,2025770400,0),(215,2046330000,1),(215,2057220000,0),(215,2077779600,1),(215,2088669600,0),(215,2109229200,1),(215,2120119200,0),(215,2140678800,1),(216,-1825098836,1),(217,-1632056400,0),(217,-1615125600,1),(217,-1596978000,0),(217,-1583164800,1),(217,-880203600,2),(217,-769395600,3),(217,-765381600,1),(217,-147884400,4),(217,-131554800,1),(217,-81961200,5),(217,325677600,6),(217,341398800,5),(217,357127200,6),(217,372848400,5),(217,388576800,6),(217,404902800,5),(217,420026400,6),(217,436352400,5),(217,452080800,6),(217,467802000,5),(217,483530400,6),(217,499251600,5),(217,514980000,6),(217,530701200,5),(217,544615200,6),(217,562150800,5),(217,576064800,6),(217,594205200,5),(217,607514400,6),(217,625654800,5),(217,638964000,6),(217,657104400,5),(217,671018400,6),(217,688554000,5),(217,702468000,6),(217,720003600,5),(217,733917600,6),(217,752058000,5),(217,765367200,6),(217,783507600,5),(217,796816800,6),(217,814957200,5),(217,828871200,6),(217,846406800,5),(217,860320800,6),(217,877856400,5),(217,891770400,6),(217,909306000,5),(217,923220000,6),(217,941360400,5),(217,954669600,6),(217,972810000,5),(217,986119200,6),(217,1004259600,5),(217,1018173600,6),(217,1035709200,5),(217,1049623200,6),(217,1067158800,5),(217,1081072800,6),(217,1099213200,5),(217,1112522400,6),(217,1130662800,5),(217,1143972000,6),(217,1162112400,5),(217,1173607200,6),(217,1194166800,5),(217,1205056800,6),(217,1225616400,5),(217,1236506400,6),(217,1257066000,5),(217,1268560800,6),(217,1289120400,5),(217,1300010400,6),(217,1320570000,5),(217,1331460000,6),(217,1352019600,5),(217,1362909600,6),(217,1383469200,5),(217,1394359200,6),(217,1414918800,5),(217,1425808800,6),(217,1446368400,5),(217,1457863200,6),(217,1478422800,5),(217,1489312800,6),(217,1509872400,5),(217,1520762400,6),(217,1541322000,5),(217,1552212000,6),(217,1572771600,5),(217,1583661600,6),(217,1604221200,5),(217,1615716000,6),(217,1636275600,5),(217,1647165600,6),(217,1667725200,5),(217,1678615200,6),(217,1699174800,5),(217,1710064800,6),(217,1730624400,5),(217,1741514400,6),(217,1762074000,5),(217,1772964000,6),(217,1793523600,5),(217,1805018400,6),(217,1825578000,5),(217,1836468000,6),(217,1857027600,5),(217,1867917600,6),(217,1888477200,5),(217,1899367200,6),(217,1919926800,5),(217,1930816800,6),(217,1951376400,5),(217,1962871200,6),(217,1983430800,5),(217,1994320800,6),(217,2014880400,5),(217,2025770400,6),(217,2046330000,5),(217,2057220000,6),(217,2077779600,5),(217,2088669600,6),(217,2109229200,5),(217,2120119200,6),(217,2140678800,5),(218,-1694368800,0),(218,-1681671600,1),(218,-1632067200,0),(218,-1615136400,1),(218,-1029686400,0),(218,-1018198800,1),(218,-880214400,2),(218,-769395600,3),(218,-765392400,1),(218,-746035200,0),(218,-732733200,1),(218,-715795200,0),(218,-702493200,1),(218,-684345600,0),(218,-671043600,1),(218,-652896000,0),(218,-639594000,1),(218,-620755200,0),(218,-607626000,1),(218,-589392000,0),(218,-576090000,1),(218,-557942400,0),(218,-544640400,1),(218,-526492800,0),(218,-513190800,1),(218,-495043200,0),(218,-481741200,1),(218,-463593600,0),(218,-450291600,1),(218,-431539200,0),(218,-418237200,1),(218,-400089600,0),(218,-386787600,1),(218,-368640000,0),(218,-355338000,1),(218,-337190400,0),(218,-321469200,1),(218,-305740800,0),(218,-292438800,1),(218,-210787200,0),(218,-198090000,1),(218,-116438400,4),(218,-100108800,5),(218,-84384000,4),(218,-68659200,5),(218,-52934400,4),(218,-37209600,5),(218,-21484800,4),(218,-5760000,5),(218,9964800,4),(218,25689600,5),(218,41414400,4),(218,57744000,5),(218,73468800,4),(218,89193600,5),(218,104918400,4),(218,120643200,5),(218,136368000,4),(218,152092800,5),(218,167817600,4),(218,183542400,5),(218,199267200,4),(218,215596800,5),(218,230716800,4),(218,247046400,5),(218,262771200,4),(218,278496000,5),(218,294220800,4),(218,309945600,5),(218,325670400,4),(218,341395200,5),(218,357120000,4),(218,372844800,5),(218,388569600,4),(218,404899200,5),(218,420019200,4),(218,436348800,5),(218,452073600,4),(218,467798400,5),(218,483523200,4),(218,499248000,5),(218,514972800,4),(218,530697600,5),(218,544608000,4),(218,562147200,5),(218,576057600,4),(218,594201600,5),(218,607507200,4),(218,625651200,5),(218,638956800,4),(218,657100800,5),(218,671011200,4),(218,688550400,5),(218,702460800,4),(218,720000000,5),(218,733910400,4),(218,752054400,5),(218,765360000,4),(218,783504000,5),(218,796809600,4),(218,814953600,5),(218,828864000,4),(218,846403200,5),(218,860313600,4),(218,877852800,5),(218,891763200,4),(218,909302400,5),(218,923212800,4),(218,941356800,5),(218,954662400,4),(218,972806400,5),(218,986112000,4),(218,1004256000,5),(218,1018166400,4),(218,1035705600,5),(218,1049616000,4),(218,1067155200,5),(218,1081065600,4),(218,1099209600,5),(218,1112515200,4),(218,1130659200,5),(218,1136095200,1),(218,1143964800,0),(218,1162105200,1),(218,1173600000,0),(218,1194159600,1),(218,1205049600,0),(218,1225609200,1),(218,1236499200,0),(218,1257058800,1),(218,1268553600,0),(218,1289113200,1),(218,1300003200,0),(218,1320562800,1),(218,1331452800,0),(218,1352012400,1),(218,1362902400,0),(218,1383462000,1),(218,1394352000,0),(218,1414911600,1),(218,1425801600,0),(218,1446361200,1),(218,1457856000,0),(218,1478415600,1),(218,1489305600,0),(218,1509865200,1),(218,1520755200,0),(218,1541314800,1),(218,1552204800,0),(218,1572764400,1),(218,1583654400,0),(218,1604214000,1),(218,1615708800,0),(218,1636268400,1),(218,1647158400,0),(218,1667718000,1),(218,1678608000,0),(218,1699167600,1),(218,1710057600,0),(218,1730617200,1),(218,1741507200,0),(218,1762066800,1),(218,1772956800,0),(218,1793516400,1),(218,1805011200,0),(218,1825570800,1),(218,1836460800,0),(218,1857020400,1),(218,1867910400,0),(218,1888470000,1),(218,1899360000,0),(218,1919919600,1),(218,1930809600,0),(218,1951369200,1),(218,1962864000,0),(218,1983423600,1),(218,1994313600,0),(218,2014873200,1),(218,2025763200,0),(218,2046322800,1),(218,2057212800,0),(218,2077772400,1),(218,2088662400,0),(218,2109222000,1),(218,2120112000,0),(218,2140671600,1),(219,-880203600,1),(219,-769395600,2),(219,-765381600,0),(219,-21474000,3),(219,-5752800,0),(219,9975600,3),(219,25696800,0),(219,41425200,3),(219,57751200,0),(219,73479600,3),(219,89200800,0),(219,104929200,3),(219,120650400,0),(219,126702000,3),(219,152100000,0),(219,162385200,3),(219,183549600,0),(219,199278000,3),(219,215604000,0),(219,230727600,3),(219,247053600,0),(219,262782000,3),(219,278503200,0),(219,294231600,3),(219,309952800,0),(219,325681200,3),(219,341402400,0),(219,357130800,3),(219,372852000,0),(219,388580400,3),(219,404906400,0),(219,420030000,3),(219,436356000,0),(219,439030800,5),(219,452084400,4),(219,467805600,5),(219,483534000,4),(219,499255200,5),(219,514983600,4),(219,530704800,5),(219,544618800,4),(219,562154400,5),(219,576068400,4),(219,594208800,5),(219,607518000,4),(219,625658400,5),(219,638967600,4),(219,657108000,5),(219,671022000,4),(219,688557600,5),(219,702471600,4),(219,720007200,5),(219,733921200,4),(219,752061600,5),(219,765370800,4),(219,783511200,5),(219,796820400,4),(219,814960800,5),(219,828874800,4),(219,846410400,5),(219,860324400,4),(219,877860000,5),(219,891774000,4),(219,909309600,5),(219,923223600,4),(219,941364000,5),(219,954673200,4),(219,972813600,5),(219,986122800,4),(219,1004263200,5),(219,1018177200,4),(219,1035712800,5),(219,1049626800,4),(219,1067162400,5),(219,1081076400,4),(219,1099216800,5),(219,1112526000,4),(219,1130666400,5),(219,1143975600,4),(219,1162116000,5),(219,1173610800,4),(219,1194170400,5),(219,1205060400,4),(219,1225620000,5),(219,1236510000,4),(219,1257069600,5),(219,1268564400,4),(219,1289124000,5),(219,1300014000,4),(219,1320573600,5),(219,1331463600,4),(219,1352023200,5),(219,1362913200,4),(219,1383472800,5),(219,1394362800,4),(219,1414922400,5),(219,1425812400,4),(219,1446372000,5),(219,1457866800,4),(219,1478426400,5),(219,1489316400,4),(219,1509876000,5),(219,1520766000,4),(219,1541325600,5),(219,1552215600,4),(219,1572775200,5),(219,1583665200,4),(219,1604224800,5),(219,1615719600,4),(219,1636279200,5),(219,1647169200,4),(219,1667728800,5),(219,1678618800,4),(219,1699178400,5),(219,1710068400,4),(219,1730628000,5),(219,1741518000,4),(219,1762077600,5),(219,1772967600,4),(219,1793527200,5),(219,1805022000,4),(219,1825581600,5),(219,1836471600,4),(219,1857031200,5),(219,1867921200,4),(219,1888480800,5),(219,1899370800,4),(219,1919930400,5),(219,1930820400,4),(219,1951380000,5),(219,1962874800,4),(219,1983434400,5),(219,1994324400,4),(219,2014884000,5),(219,2025774000,4),(219,2046333600,5),(219,2057223600,4),(219,2077783200,5),(219,2088673200,4),(219,2109232800,5),(219,2120122800,4),(219,2140682400,5),(220,-1104537600,3),(220,-880210800,1),(220,-769395600,2),(220,-765388800,3),(220,-147891600,4),(220,-131562000,3),(220,325674000,5),(220,341395200,3),(220,357123600,5),(220,372844800,3),(220,388573200,5),(220,404899200,3),(220,420022800,5),(220,436348800,3),(220,452077200,5),(220,467798400,3),(220,483526800,5),(220,499248000,3),(220,514976400,5),(220,530697600,3),(220,544611600,5),(220,562147200,3),(220,576061200,5),(220,594201600,3),(220,607510800,5),(220,625651200,3),(220,638960400,5),(220,657100800,3),(220,671014800,5),(220,688550400,3),(220,702464400,5),(220,720000000,3),(220,733914000,5),(220,752054400,3),(220,765363600,5),(220,783504000,3),(220,796813200,5),(220,814953600,3),(220,828867600,5),(220,846403200,3),(220,860317200,5),(220,877852800,3),(220,891766800,5),(220,909302400,3),(220,923216400,5),(220,941356800,3),(220,954666000,5),(220,972806400,3),(220,986115600,5),(220,1004256000,3),(220,1018170000,5),(220,1035705600,3),(220,1049619600,5),(220,1067155200,3),(220,1081069200,5),(220,1099209600,3),(220,1112518800,5),(220,1130659200,3),(220,1143968400,5),(220,1162108800,3),(220,1173603600,5),(220,1194163200,3),(220,1205053200,5),(220,1225612800,3),(220,1236502800,5),(220,1257062400,3),(220,1268557200,5),(220,1289116800,3),(220,1300006800,5),(220,1320566400,3),(220,1331456400,5),(220,1352016000,3),(220,1362906000,5),(220,1383465600,3),(220,1394355600,5),(220,1414915200,3),(220,1425805200,5),(220,1446364800,3),(220,1457859600,5),(220,1478419200,3),(220,1489309200,5),(220,1509868800,3),(220,1520758800,5),(220,1541318400,3),(220,1552208400,5),(220,1572768000,3),(220,1583658000,5),(220,1604217600,3),(220,1615712400,5),(220,1636272000,3),(220,1647162000,5),(220,1667721600,3),(220,1678611600,5),(220,1699171200,3),(220,1710061200,5),(220,1730620800,3),(220,1741510800,5),(220,1762070400,3),(220,1772960400,5),(220,1793520000,3),(220,1805014800,5),(220,1825574400,3),(220,1836464400,5),(220,1857024000,3),(220,1867914000,5),(220,1888473600,3),(220,1899363600,5),(220,1919923200,3),(220,1930813200,5),(220,1951372800,3),(220,1962867600,5),(220,1983427200,3),(220,1994317200,5),(220,2014876800,3),(220,2025766800,5),(220,2046326400,3),(220,2057216400,5),(220,2077776000,3),(220,2088666000,5),(220,2109225600,3),(220,2120115600,5),(220,2140675200,3),(221,-31536000,1),(221,1255802400,2),(221,1267714800,1),(221,1319738400,2),(221,1329843600,3),(221,1477065600,2),(221,1520701200,1),(222,-409190400,1),(222,-163062000,0),(222,-28857600,1),(222,1255806000,2),(222,1268251200,3),(222,1319742000,2),(222,1329854400,3),(223,-725846400,1),(223,-566992800,0),(223,-415497600,1),(224,-1680508800,1),(224,-1665392400,0),(224,-1601719200,2),(224,-687052800,0),(224,-71136000,3),(224,-55411200,4),(224,-37267200,3),(224,-25776000,4),(224,-5817600,3),(224,5673600,4),(224,25632000,3),(224,37728000,4),(224,57686400,3),(224,67968000,4),(224,89136000,3),(224,100022400,4),(224,120585600,3),(224,131472000,4),(224,152035200,3),(224,162921600,4),(224,183484800,3),(224,194976000,4),(224,215539200,3),(224,226425600,4),(224,246988800,3),(224,257875200,4),(224,278438400,3),(224,289324800,4),(224,309888000,3),(224,320774400,4),(224,341337600,3),(224,352224000,4),(224,372787200,3),(224,386092800,4),(224,404841600,3),(224,417542400,4),(224,436291200,3),(224,447177600,4),(224,467740800,3),(224,478627200,4),(224,499190400,3),(224,510076800,4),(224,530035200,3),(224,542736000,4),(224,562089600,3),(224,574790400,4),(224,594144000,3),(224,606240000,4),(224,625593600,3),(224,637689600,4),(224,657043200,3),(224,670348800,4),(224,686678400,3),(224,701798400,4),(224,718128000,3),(224,733248000,4),(224,749577600,3),(224,764697600,4),(224,781027200,3),(224,796147200,4),(224,812476800,3),(224,828201600,4),(224,844531200,3),(224,859651200,4),(224,875980800,3),(224,891100800,4),(224,907430400,3),(224,922550400,4),(224,938880000,3),(224,954000000,4),(224,967305600,3),(224,985449600,4),(224,1002384000,3),(224,1017504000,4),(224,1033833600,3),(224,1048953600,4),(224,1065283200,3),(224,1080403200,4),(224,1096732800,3),(224,1111852800,4),(224,1128182400,3),(224,1143907200,4),(224,1159632000,3),(224,1174752000,4),(224,1191686400,3),(224,1207411200,4),(224,1223136000,3),(224,1238860800,4),(224,1254585600,3),(224,1270310400,5),(225,-501206400,1),(225,1255809600,2),(226,-1330335000,0),(226,-1320057000,1),(226,-1300699800,2),(226,-1287396000,1),(226,-1269250200,2),(226,-1255946400,1),(226,-1237800600,2),(226,-1224496800,1),(226,-1206351000,2),(226,-1192442400,1),(226,-1174901400,2),(226,-1160992800,1),(226,-1143451800,2),(226,-1125914400,1),(226,-1112607000,2),(226,-1094464800,1),(226,-1081157400,2),(226,-1063015200,1),(226,-1049707800,2),(226,-1031565600,1),(226,-1018258200,2),(226,-1000116000,1),(226,-986808600,2),(226,-968061600,1),(226,-955359000,2),(226,-936612000,1),(226,-923304600,2),(226,-757425600,5),(226,152632800,3),(226,162309600,4),(226,183477600,3),(226,194968800,4),(226,215532000,3),(226,226418400,4),(226,246981600,3),(226,257868000,4),(226,278431200,3),(226,289317600,4),(226,309880800,3),(226,320767200,4),(226,341330400,3),(226,352216800,4),(226,372780000,3),(226,384271200,4),(226,404834400,3),(226,415720800,4),(226,436284000,3),(226,447170400,4),(226,467733600,3),(226,478620000,4),(226,499183200,3),(226,510069600,4),(226,530632800,3),(226,541519200,4),(226,562082400,3),(226,573573600,4),(226,594136800,3),(226,605023200,4),(226,623772000,3),(226,637682400,4),(226,655221600,3),(226,669132000,4),(226,686671200,3),(226,700581600,4),(226,718120800,3),(226,732636000,4),(226,749570400,3),(226,764085600,4),(226,781020000,3),(226,795535200,4),(226,812469600,3),(226,826984800,4),(226,844524000,3),(226,858434400,4),(226,875973600,3),(226,889884000,4),(226,907423200,3),(226,921938400,4),(226,938872800,3),(226,953388000,4),(226,970322400,3),(226,984837600,4),(226,1002376800,3),(226,1016287200,4),(226,1033826400,3),(226,1047736800,4),(226,1065276000,3),(226,1079791200,4),(226,1096725600,3),(226,1111240800,4),(226,1128175200,3),(226,1142690400,4),(226,1159624800,3),(226,1174140000,4),(226,1191074400,3),(226,1207404000,4),(226,1222524000,3),(226,1238853600,4),(226,1253973600,3),(226,1270303200,4),(226,1285423200,3),(226,1301752800,4),(226,1316872800,3),(226,1333202400,4),(226,1348927200,3),(226,1365256800,4),(226,1380376800,3),(226,1396706400,4),(226,1411826400,3),(226,1428156000,4),(226,1443276000,3),(226,1459605600,4),(226,1474725600,3),(226,1491055200,4),(226,1506175200,3),(226,1522504800,4),(226,1538229600,3),(226,1554559200,4),(226,1569679200,3),(226,1586008800,4),(226,1601128800,3),(226,1617458400,4),(226,1632578400,3),(226,1648908000,4),(226,1664028000,3),(226,1680357600,4),(226,1695477600,3),(226,1712412000,4),(226,1727532000,3),(226,1743861600,4),(226,1758981600,3),(226,1775311200,4),(226,1790431200,3),(226,1806760800,4),(226,1821880800,3),(226,1838210400,4),(226,1853330400,3),(226,1869660000,4),(226,1885384800,3),(226,1901714400,4),(226,1916834400,3),(226,1933164000,4),(226,1948284000,3),(226,1964613600,4),(226,1979733600,3),(226,1996063200,4),(226,2011183200,3),(226,2027512800,4),(226,2042632800,3),(226,2058962400,4),(226,2074687200,3),(226,2091016800,4),(226,2106136800,3),(226,2122466400,4),(226,2137586400,3),(227,-157766400,2),(227,-152658000,1),(227,-132955200,2),(227,-121122000,1),(227,-101419200,2),(227,-86821200,1),(227,-71092800,2),(227,-54766800,1),(227,-39038400,2),(227,-23317200,1),(227,-7588800,4),(227,128142000,3),(227,136605600,4),(227,389070000,1),(227,403070400,5),(227,416372400,6),(227,434520000,5),(227,447822000,6),(227,466574400,5),(227,479271600,6),(227,498024000,5),(227,510721200,6),(227,529473600,5),(227,545194800,6),(227,560923200,5),(227,574225200,6),(227,592372800,5),(227,605674800,6),(227,624427200,5),(227,637124400,6),(227,653457600,5),(227,668574000,6),(227,687326400,5),(227,700628400,6),(227,718776000,5),(227,732078000,6),(227,750225600,5),(227,763527600,6),(227,781675200,5),(227,794977200,6),(227,813729600,5),(227,826426800,6),(227,845179200,5),(227,859690800,6),(227,876628800,5),(227,889930800,6),(227,906868800,5),(227,923194800,6),(227,939528000,5),(227,952830000,6),(227,971582400,5),(227,984279600,6),(227,1003032000,5),(227,1015729200,6),(227,1034481600,5),(227,1047178800,6),(227,1065931200,5),(227,1079233200,6),(227,1097380800,5),(227,1110682800,6),(227,1128830400,5),(227,1142132400,6),(227,1160884800,5),(227,1173582000,6),(227,1192334400,5),(227,1206846000,6),(227,1223784000,5),(227,1237086000,6),(227,1255233600,5),(227,1270350000,6),(227,1286683200,5),(227,1304823600,6),(227,1313899200,5),(227,1335668400,6),(227,1346558400,5),(227,1367118000,6),(227,1378612800,5),(227,1398567600,6),(227,1410062400,5),(227,1463281200,6),(227,1471147200,5),(227,1480820400,4),(228,218246400,1),(229,-1330335000,0),(229,-1320057000,1),(229,-1300699800,2),(229,-1287396000,1),(229,-1269250200,2),(229,-1255946400,1),(229,-1237800600,2),(229,-1224496800,1),(229,-1206351000,2),(229,-1192442400,1),(229,-1174901400,2),(229,-1160992800,1),(229,-1143451800,2),(229,-1125914400,1),(229,-1112607000,2),(229,-1094464800,1),(229,-1081157400,2),(229,-1063015200,1),(229,-1049707800,2),(229,-1031565600,1),(229,-1018258200,2),(229,-1000116000,1),(229,-986808600,2),(229,-968061600,1),(229,-955359000,2),(229,-936612000,1),(229,-923304600,2),(229,-757425600,5),(229,152632800,3),(229,162309600,4),(229,183477600,3),(229,194968800,4),(229,215532000,3),(229,226418400,4),(229,246981600,3),(229,257868000,4),(229,278431200,3),(229,289317600,4),(229,309880800,3),(229,320767200,4),(229,341330400,3),(229,352216800,4),(229,372780000,3),(229,384271200,4),(229,404834400,3),(229,415720800,4),(229,436284000,3),(229,447170400,4),(229,467733600,3),(229,478620000,4),(229,499183200,3),(229,510069600,4),(229,530632800,3),(229,541519200,4),(229,562082400,3),(229,573573600,4),(229,594136800,3),(229,605023200,4),(229,623772000,3),(229,637682400,4),(229,655221600,3),(229,669132000,4),(229,686671200,3),(229,700581600,4),(229,718120800,3),(229,732636000,4),(229,749570400,3),(229,764085600,4),(229,781020000,3),(229,795535200,4),(229,812469600,3),(229,826984800,4),(229,844524000,3),(229,858434400,4),(229,875973600,3),(229,889884000,4),(229,907423200,3),(229,921938400,4),(229,938872800,3),(229,953388000,4),(229,970322400,3),(229,984837600,4),(229,1002376800,3),(229,1016287200,4),(229,1033826400,3),(229,1047736800,4),(229,1065276000,3),(229,1079791200,4),(229,1096725600,3),(229,1111240800,4),(229,1128175200,3),(229,1142690400,4),(229,1159624800,3),(229,1174140000,4),(229,1191074400,3),(229,1207404000,4),(229,1222524000,3),(229,1238853600,4),(229,1253973600,3),(229,1270303200,4),(229,1285423200,3),(229,1301752800,4),(229,1316872800,3),(229,1333202400,4),(229,1348927200,3),(229,1365256800,4),(229,1380376800,3),(229,1396706400,4),(229,1411826400,3),(229,1428156000,4),(229,1443276000,3),(229,1459605600,4),(229,1474725600,3),(229,1491055200,4),(229,1506175200,3),(229,1522504800,4),(229,1538229600,3),(229,1554559200,4),(229,1569679200,3),(229,1586008800,4),(229,1601128800,3),(229,1617458400,4),(229,1632578400,3),(229,1648908000,4),(229,1664028000,3),(229,1680357600,4),(229,1695477600,3),(229,1712412000,4),(229,1727532000,3),(229,1743861600,4),(229,1758981600,3),(229,1775311200,4),(229,1790431200,3),(229,1806760800,4),(229,1821880800,3),(229,1838210400,4),(229,1853330400,3),(229,1869660000,4),(229,1885384800,3),(229,1901714400,4),(229,1916834400,3),(229,1933164000,4),(229,1948284000,3),(229,1964613600,4),(229,1979733600,3),(229,1996063200,4),(229,2011183200,3),(229,2027512800,4),(229,2042632800,3),(229,2058962400,4),(229,2074687200,3),(229,2091016800,4),(229,2106136800,3),(229,2122466400,4),(229,2137586400,3),(230,-407808000,1),(231,1108166400,3),(231,1111885200,1),(231,1130634000,2),(231,1143334800,1),(231,1162083600,2),(231,1174784400,1),(231,1193533200,2),(231,1206838800,1),(231,1224982800,2),(231,1238288400,1),(231,1256432400,2),(231,1269738000,1),(231,1288486800,2),(231,1301187600,1),(231,1319936400,2),(231,1332637200,1),(231,1351386000,2),(231,1364691600,1),(231,1382835600,2),(231,1396141200,1),(231,1414285200,2),(231,1427590800,1),(231,1445734800,2),(231,1459040400,1),(231,1477789200,2),(231,1490490000,1),(231,1509238800,2),(231,1521939600,1),(231,1540688400,2),(231,1553994000,1),(231,1572138000,2),(231,1585443600,1),(231,1603587600,2),(231,1616893200,1),(231,1635642000,2),(231,1648342800,1),(231,1667091600,2),(231,1679792400,1),(231,1698541200,2),(231,1711846800,1),(231,1729990800,2),(231,1743296400,1),(231,1761440400,2),(231,1774746000,1),(231,1792890000,2),(231,1806195600,1),(231,1824944400,2),(231,1837645200,1),(231,1856394000,2),(231,1869094800,1),(231,1887843600,2),(231,1901149200,1),(231,1919293200,2),(231,1932598800,1),(231,1950742800,2),(231,1964048400,1),(231,1982797200,2),(231,1995498000,1),(231,2014246800,2),(231,2026947600,1),(231,2045696400,2),(231,2058397200,1),(231,2077146000,2),(231,2090451600,1),(231,2108595600,2),(231,2121901200,1),(231,2140045200,2),(232,-380073600,1),(233,-1691884800,0),(233,-1680573600,1),(233,-927511200,0),(233,-857257200,2),(233,-844556400,3),(233,-828226800,2),(233,-812502000,3),(233,-796777200,2),(233,-781052400,3),(233,-765327600,2),(233,-340844400,3),(233,-324514800,2),(233,-308790000,3),(233,-293065200,2),(233,-277340400,3),(233,-261615600,2),(233,-245890800,3),(233,-230166000,2),(233,-214441200,3),(233,-198716400,2),(233,-182991600,3),(233,-166662000,2),(233,-147913200,3),(233,-135212400,2),(233,315529200,1),(233,323830800,4),(233,338950800,5),(233,354675600,4),(233,370400400,5),(233,386125200,4),(233,401850000,5),(233,417574800,4),(233,433299600,5),(233,449024400,4),(233,465354000,5),(233,481078800,4),(233,496803600,5),(233,512528400,4),(233,528253200,5),(233,543978000,4),(233,559702800,5),(233,575427600,4),(233,591152400,5),(233,606877200,4),(233,622602000,5),(233,638326800,4),(233,654656400,5),(233,670381200,4),(233,686106000,5),(233,701830800,4),(233,717555600,5),(233,733280400,4),(233,749005200,5),(233,764730000,4),(233,780454800,5),(233,796179600,4),(233,811904400,5),(233,828234000,4),(233,846378000,5),(233,859683600,4),(233,877827600,5),(233,891133200,4),(233,909277200,5),(233,922582800,4),(233,941331600,5),(233,954032400,4),(233,972781200,5),(233,985482000,4),(233,1004230800,5),(233,1017536400,4),(233,1035680400,5),(233,1048986000,4),(233,1067130000,5),(233,1080435600,4),(233,1099184400,5),(233,1111885200,4),(233,1130634000,5),(233,1143334800,4),(233,1162083600,5),(233,1174784400,4),(233,1193533200,5),(233,1206838800,4),(233,1224982800,5),(233,1238288400,4),(233,1256432400,5),(233,1269738000,4),(233,1288486800,5),(233,1301187600,4),(233,1319936400,5),(233,1332637200,4),(233,1351386000,5),(233,1364691600,4),(233,1382835600,5),(233,1396141200,4),(233,1414285200,5),(233,1427590800,4),(233,1445734800,5),(233,1459040400,4),(233,1477789200,5),(233,1490490000,4),(233,1509238800,5),(233,1521939600,4),(233,1540688400,5),(233,1553994000,4),(233,1572138000,5),(233,1585443600,4),(233,1603587600,5),(233,1616893200,4),(233,1635642000,5),(233,1648342800,4),(233,1667091600,5),(233,1679792400,4),(233,1698541200,5),(233,1711846800,4),(233,1729990800,5),(233,1743296400,4),(233,1761440400,5),(233,1774746000,4),(233,1792890000,5),(233,1806195600,4),(233,1824944400,5),(233,1837645200,4),(233,1856394000,5),(233,1869094800,4),(233,1887843600,5),(233,1901149200,4),(233,1919293200,5),(233,1932598800,4),(233,1950742800,5),(233,1964048400,4),(233,1982797200,5),(233,1995498000,4),(233,2014246800,5),(233,2026947600,4),(233,2045696400,5),(233,2058397200,4),(233,2077146000,5),(233,2090451600,4),(233,2108595600,5),(233,2121901200,4),(233,2140045200,5),(234,-719636812,1),(235,-1441170468,1),(235,-1247547600,3),(235,354909600,2),(235,370717200,3),(235,386445600,2),(235,402253200,3),(235,417981600,2),(235,433789200,3),(235,449604000,2),(235,465336000,4),(235,481060800,5),(235,496785600,4),(235,512510400,5),(235,528235200,4),(235,543960000,5),(235,559684800,4),(235,575409600,5),(235,591134400,4),(235,606859200,5),(235,622584000,4),(235,638308800,5),(235,654638400,4),(235,670363200,6),(235,686091600,7),(235,695768400,4),(235,701812800,5),(235,717537600,4),(235,733262400,5),(235,748987200,4),(235,764712000,5),(235,780436800,4),(235,796161600,5),(235,811886400,4),(235,828216000,5),(235,846360000,4),(235,859665600,5),(235,877809600,4),(235,891115200,5),(235,909259200,4),(235,922564800,5),(235,941313600,4),(235,954014400,5),(235,972763200,4),(235,985464000,5),(235,1004212800,4),(235,1017518400,5),(235,1035662400,4),(235,1048968000,5),(235,1067112000,4),(235,1080417600,5),(235,1099166400,4),(236,-1230776624,2),(236,108165600,1),(236,118270800,2),(236,136591200,1),(236,149806800,2),(236,168127200,1),(236,181342800,2),(236,199749600,1),(236,215643600,2),(236,231285600,1),(236,244501200,2),(236,262735200,1),(236,275950800,2),(236,481154400,1),(236,496962000,2),(236,512949600,1),(236,528670800,2),(236,544399200,1),(236,560120400,2),(236,575848800,1),(236,592174800,2),(236,610581600,1),(236,623624400,2),(236,641167200,1),(236,655074000,2),(236,671839200,1),(236,685918800,2),(236,702856800,1),(236,717973200,2),(236,733701600,1),(236,749422800,2),(236,765151200,1),(236,779662800,2),(236,797205600,1),(236,811116000,3),(236,828655200,1),(236,843170400,3),(236,860104800,1),(236,874620000,3),(236,891554400,1),(236,906069600,3),(236,930780000,4),(236,938124000,3),(236,954367200,4),(236,970178400,3),(236,985816800,4),(236,1001628000,3),(236,1017352800,1),(236,1033077600,3),(236,1048802400,1),(236,1066946400,3),(236,1080252000,1),(236,1097791200,3),(236,1112306400,1),(236,1128031200,3),(236,1143756000,1),(236,1161900000,3),(236,1175205600,1),(236,1193349600,3),(236,1206655200,1),(236,1225404000,3),(236,1238104800,1),(236,1256853600,3),(236,1269554400,1),(236,1288303200,3),(236,1301608800,1),(236,1319752800,3),(236,1333058400,1),(236,1387486800,2),(236,1395957600,1),(236,1414706400,3),(236,1427407200,1),(236,1446156000,3),(236,1459461600,1),(236,1477605600,3),(236,1490911200,1),(236,1509055200,3),(236,1522360800,1),(236,1540504800,3),(236,1553810400,1),(236,1571954400,3),(236,1585260000,1),(236,1604008800,3),(236,1616709600,1),(236,1635458400,3),(236,1648764000,1),(236,1666908000,3),(236,1680213600,1),(236,1698357600,3),(236,1711663200,1),(236,1729807200,3),(236,1743112800,1),(236,1761861600,3),(236,1774562400,1),(236,1793311200,3),(236,1806012000,1),(236,1824760800,3),(236,1838066400,1),(236,1856210400,3),(236,1869516000,1),(236,1887660000,3),(236,1900965600,1),(236,1919109600,3),(236,1932415200,1),(236,1951164000,3),(236,1963864800,1),(236,1982613600,3),(236,1995919200,1),(236,2014063200,3),(236,2027368800,1),(236,2045512800,3),(236,2058818400,1),(236,2076962400,3),(236,2090268000,1),(236,2109016800,3),(236,2121717600,1),(236,2140466400,3),(237,-1441194596,1),(237,-1247572800,3),(237,354884400,2),(237,370692000,3),(237,386420400,4),(237,402231600,1),(237,417960000,4),(237,433767600,1),(237,449582400,4),(237,465314400,5),(237,481039200,6),(237,496764000,5),(237,512488800,6),(237,528213600,5),(237,543938400,6),(237,559663200,5),(237,575388000,6),(237,591112800,5),(237,606837600,6),(237,622562400,5),(237,638287200,6),(237,654616800,5),(237,670341600,7),(237,686070000,8),(237,695746800,5),(237,701791200,6),(237,717516000,5),(237,733240800,6),(237,748965600,5),(237,764690400,6),(237,780415200,5),(237,796140000,6),(237,811864800,5),(237,828194400,6),(237,846338400,5),(237,859644000,6),(237,877788000,5),(237,891093600,6),(237,909237600,5),(237,922543200,6),(237,941292000,5),(237,953992800,6),(237,972741600,5),(237,985442400,6),(237,1004191200,5),(237,1017496800,6),(237,1035640800,5),(237,1048946400,6),(237,1067090400,5),(237,1080396000,6),(237,1099144800,5),(237,1111845600,6),(237,1130594400,5),(237,1143295200,6),(237,1162044000,5),(237,1174744800,6),(237,1193493600,5),(237,1206799200,6),(237,1224943200,5),(237,1238248800,6),(237,1256392800,5),(237,1269698400,7),(237,1288450800,8),(237,1301151600,5),(238,-1441164064,1),(238,-1247544000,2),(238,370724400,3),(238,386445600,4),(238,402256800,2),(238,417985200,4),(238,433792800,2),(238,449607600,4),(238,465339600,5),(238,481064400,6),(238,496789200,5),(238,512514000,6),(238,528238800,5),(238,543963600,6),(238,559688400,5),(238,575413200,6),(238,591138000,5),(238,606862800,6),(238,622587600,5),(238,638312400,6),(238,654642000,5),(238,670366800,7),(238,686095200,8),(238,695772000,5),(238,701816400,6),(238,717541200,5),(238,733266000,6),(238,748990800,5),(238,764715600,6),(238,780440400,8),(238,796168800,7),(238,811893600,8),(238,828223200,7),(238,846367200,8),(238,859672800,7),(238,877816800,8),(238,891122400,7),(238,909266400,8),(238,922572000,7),(238,941320800,8),(238,954021600,7),(238,972770400,8),(238,985471200,7),(238,1004220000,8),(238,1017525600,7),(238,1035669600,8),(238,1048975200,7),(238,1067119200,8),(238,1080424800,7),(238,1099173600,5),(239,-1441165720,1),(239,-1247544000,2),(239,354913200,3),(239,370720800,4),(239,386445600,3),(239,402256800,2),(239,417985200,3),(239,433792800,2),(239,449607600,3),(239,465339600,5),(239,481064400,6),(239,496789200,5),(239,512514000,6),(239,528238800,5),(239,543963600,6),(239,559688400,5),(239,575413200,6),(239,591138000,5),(239,606862800,6),(239,622587600,5),(239,638312400,6),(239,654642000,5),(239,670366800,7),(239,686095200,8),(239,695772000,5),(239,701816400,6),(239,717541200,5),(239,733266000,6),(239,748990800,5),(239,764715600,6),(239,780440400,5),(239,796165200,6),(239,811890000,5),(239,828219600,6),(239,846363600,5),(239,859669200,6),(239,877813200,5),(239,891118800,6),(239,909262800,5),(239,922568400,6),(239,941317200,5),(239,954018000,6),(239,972766800,5),(239,985467600,6),(239,1004216400,5),(239,1017522000,6),(239,1035666000,5),(239,1048971600,6),(239,1067115600,5),(239,1080421200,6),(239,1099170000,5),(240,-1441166012,1),(240,-1247544000,3),(240,354913200,2),(240,370720800,3),(240,386449200,2),(240,402256800,3),(240,417985200,2),(240,433792800,3),(240,449607600,2),(240,465339600,4),(240,481064400,5),(240,496789200,4),(240,512514000,5),(240,528238800,4),(240,543963600,5),(240,559688400,4),(240,575413200,5),(240,591138000,4),(240,606862800,5),(240,622587600,4),(240,638312400,5),(240,654642000,4),(240,670366800,6),(240,686095200,7),(240,695772000,3),(241,-1441166012,1),(241,-1247544000,3),(241,354913200,2),(241,370720800,3),(241,386449200,2),(241,402256800,3),(241,417985200,2),(241,433792800,3),(241,449607600,2),(241,465339600,4),(241,481064400,5),(241,496789200,4),(241,512514000,5),(241,528238800,4),(241,543963600,5),(241,559688400,4),(241,575413200,5),(241,591138000,4),(241,606862800,5),(241,622587600,4),(241,638312400,5),(241,654642000,4),(241,670366800,6),(241,686095200,7),(241,695772000,3),(242,-1441164464,1),(242,-1247540400,2),(242,370724400,3),(242,386445600,4),(242,402256800,2),(242,417985200,4),(242,433792800,2),(242,449607600,4),(242,465339600,5),(242,481064400,6),(242,496789200,5),(242,512514000,6),(242,528238800,5),(242,543963600,6),(242,559688400,5),(242,575413200,6),(242,591138000,5),(242,606862800,6),(242,622587600,5),(242,638312400,6),(242,654642000,5),(242,670366800,7),(242,686095200,8),(242,695772000,5),(242,701816400,6),(242,717541200,5),(242,733266000,6),(242,748990800,5),(242,764715600,6),(242,780440400,5),(242,796165200,6),(242,811890000,5),(242,828219600,6),(242,846363600,5),(242,859669200,6),(242,877813200,5),(242,891118800,6),(242,909262800,5),(242,922568400,7),(242,941320800,8),(242,954021600,7),(242,972770400,8),(242,985471200,7),(242,1004220000,8),(242,1017525600,7),(242,1035669600,8),(242,1048975200,7),(242,1067119200,8),(242,1080424800,7),(242,1099173600,5),(243,-1641005856,1),(243,389048400,2),(243,402264000,1),(243,417906000,2),(243,433800000,1),(243,449614800,2),(243,465422400,1),(243,481150800,2),(243,496792800,3),(243,512517600,4),(243,528242400,3),(243,543967200,4),(243,559692000,3),(243,575416800,4),(243,591141600,3),(243,606866400,4),(243,622591200,3),(243,638316000,4),(243,654645600,3),(243,670464000,4),(243,686275200,3),(243,702086400,4),(243,717897600,3),(243,733622400,4),(243,749433600,3),(243,765158400,4),(243,780969600,3),(243,796694400,4),(243,812505600,3),(243,828316800,4),(243,844128000,3),(243,859852800,4),(243,875664000,3),(243,891388800,4),(243,907200000,3),(243,922924800,4),(243,938736000,3),(243,954547200,4),(243,970358400,3),(243,986083200,4),(243,1001894400,3),(243,1017619200,4),(243,1033430400,3),(243,1049155200,4),(243,1064966400,3),(243,1080777600,4),(243,1096588800,3),(243,1112313600,4),(243,1128124800,3),(243,1143849600,4),(243,1159660800,3),(243,1175385600,4),(243,1191196800,3),(244,-1577935568,1),(244,76190400,2),(245,-1441163964,1),(245,-405140400,3),(245,354916800,2),(245,370724400,3),(245,386452800,2),(245,402260400,3),(245,417988800,2),(245,433796400,3),(245,449611200,2),(245,465343200,4),(245,481068000,5),(245,496792800,4),(245,512517600,5),(245,528242400,4),(245,543967200,5),(245,559692000,4),(245,575416800,5),(245,591141600,4),(245,606866400,5),(245,622591200,4),(245,638316000,5),(245,654645600,4),(245,670370400,6),(245,686098800,7),(245,701823600,6),(245,717548400,4),(245,820440000,3),(245,828234000,8),(245,846378000,9),(245,852062400,3),(245,859680000,2),(245,877824000,3),(245,891129600,2),(245,909273600,3),(245,922579200,2),(245,941328000,3),(245,954028800,2),(245,972777600,3),(245,985478400,2),(245,1004227200,3),(245,1017532800,2),(245,1035676800,3),(245,1048982400,2),(245,1067126400,3),(245,1080432000,2),(245,1099180800,3),(245,1111881600,2),(245,1130630400,3),(245,1143331200,2),(245,1162080000,3),(245,1174780800,2),(245,1193529600,3),(245,1206835200,2),(245,1224979200,3),(245,1238284800,2),(245,1256428800,3),(245,1269734400,2),(245,1288483200,3),(245,1301184000,2),(245,1319932800,3),(245,1332633600,2),(245,1351382400,3),(245,1364688000,2),(245,1382832000,3),(245,1396137600,2),(245,1414281600,3),(245,1427587200,2),(245,1445731200,3),(246,-1570084924,1),(247,-1579844100,1),(247,-1247551200,3),(247,354906000,2),(247,370713600,3),(247,386442000,2),(247,402249600,3),(247,417978000,2),(247,433785600,3),(247,449600400,2),(247,465332400,4),(247,481057200,5),(247,496782000,4),(247,512506800,5),(247,528231600,4),(247,543956400,5),(247,559681200,4),(247,575406000,5),(247,591130800,4),(247,606855600,5),(247,622580400,4),(247,638305200,5),(247,654634800,4),(247,670359600,6),(247,686088000,7),(247,695764800,4),(247,701809200,5),(247,717534000,4),(247,733258800,5),(247,748983600,4),(247,764708400,5),(247,780433200,4),(247,796158000,5),(247,801590400,8),(247,811886400,7),(247,828216000,6),(247,846360000,7),(247,859665600,6),(247,877809600,7),(247,891115200,6),(247,909259200,7),(247,922564800,6),(247,941313600,7),(247,954014400,6),(247,972763200,7),(247,985464000,6),(247,1004212800,7),(247,1017518400,6),(247,1035662400,7),(247,1048968000,6),(247,1067112000,7),(247,1080417600,6),(247,1099166400,7),(247,1111867200,6),(247,1130616000,7),(247,1143316800,6),(247,1162065600,7),(247,1174766400,6),(247,1193515200,7),(247,1206820800,6),(247,1224964800,7),(247,1238270400,6),(247,1256414400,7),(247,1269720000,6),(247,1288468800,7),(247,1301169600,4),(247,1414263600,7),(247,1459022400,4),(248,-1570413600,0),(248,-1552186800,1),(248,-1538359200,0),(248,-1522551600,1),(248,-1507514400,0),(248,-1490583600,1),(248,-1473645600,0),(248,-1460948400,1),(248,-399866400,0),(248,-386650800,1),(248,-368330400,0),(248,-355114800,1),(248,-336794400,0),(248,-323578800,1),(248,-305172000,0),(248,-291956400,1),(248,-273636000,0),(248,-260420400,1),(248,78012000,0),(248,86734800,1),(248,105055200,0),(248,118270800,1),(248,136591200,0),(248,149806800,1),(248,168127200,0),(248,181342800,1),(248,199749600,0),(248,212965200,1),(248,231285600,0),(248,244501200,1),(248,262735200,0),(248,275950800,1),(248,452210400,0),(248,466722000,1),(248,483746400,0),(248,498258000,1),(248,515282400,0),(248,529794000,1),(248,546818400,0),(248,561330000,1),(248,581119200,0),(248,592952400,1),(248,610754400,0),(248,624488400,1),(248,641512800,0),(248,656024400,1),(248,673048800,0),(248,687560400,1),(248,704671200,0),(248,718146000,1),(248,733269600,0),(248,748990800,1),(248,764719200,0),(248,780440400,1),(248,796168800,0),(248,811890000,1),(248,828223200,0),(248,843944400,1),(248,859672800,0),(248,875394000,1),(248,891122400,0),(248,906843600,1),(248,922572000,0),(248,941317200,1),(248,954021600,0),(248,972766800,1),(248,985471200,0),(248,1004216400,1),(248,1017525600,0),(248,1035666000,1),(248,1048975200,0),(248,1067115600,1),(248,1080424800,0),(248,1099170000,1),(248,1111874400,0),(248,1130619600,1),(248,1143324000,0),(248,1162069200,1),(248,1174773600,0),(248,1193518800,1),(248,1206828000,0),(248,1224968400,1),(248,1238277600,0),(248,1256418000,1),(248,1269727200,0),(248,1288472400,1),(248,1301176800,0),(248,1319922000,1),(248,1332626400,0),(248,1351371600,1),(248,1364680800,0),(248,1382821200,1),(248,1396130400,0),(248,1414270800,1),(248,1427580000,0),(248,1445720400,1),(248,1459029600,0),(248,1477774800,1),(248,1490479200,0),(248,1509224400,1),(248,1521928800,0),(248,1540674000,1),(248,1553983200,0),(248,1572123600,1),(248,1585432800,0),(248,1603573200,1),(248,1616882400,0),(248,1635627600,1),(248,1648332000,0),(248,1667077200,1),(248,1679781600,0),(248,1698526800,1),(248,1711836000,0),(248,1729976400,1),(248,1743285600,0),(248,1761426000,1),(248,1774735200,0),(248,1792875600,1),(248,1806184800,0),(248,1824930000,1),(248,1837634400,0),(248,1856379600,1),(248,1869084000,0),(248,1887829200,1),(248,1901138400,0),(248,1919278800,1),(248,1932588000,0),(248,1950728400,1),(248,1964037600,0),(248,1982782800,1),(248,1995487200,0),(248,2014232400,1),(248,2026936800,0),(248,2045682000,1),(248,2058386400,0),(248,2077131600,1),(248,2090440800,0),(248,2108581200,1),(248,2121890400,0),(248,2140030800,1),(249,-1441169904,1),(249,-1247547600,3),(249,354909600,2),(249,370717200,3),(249,386445600,2),(249,402253200,3),(249,417981600,2),(249,433789200,3),(249,449604000,2),(249,465336000,4),(249,481060800,5),(249,496785600,4),(249,512510400,5),(249,528235200,4),(249,543960000,5),(249,559684800,4),(249,575409600,5),(249,591134400,4),(249,606859200,5),(249,622584000,4),(249,638308800,5),(249,654638400,4),(249,670363200,6),(249,683582400,1),(249,703018800,6),(249,717530400,1),(249,734468400,6),(249,748980000,1),(249,765918000,6),(249,780429600,1),(249,797367600,6),(249,811879200,1),(249,828817200,6),(249,843933600,1),(249,859671000,8),(249,877811400,1),(249,891120600,8),(249,909261000,1),(249,922570200,8),(249,941315400,1),(249,954019800,8),(249,972765000,1),(249,985469400,8),(249,1004214600,1),(249,1017523800,8),(249,1035664200,1),(249,1048973400,8),(249,1067113800,1),(249,1080423000,8),(249,1099168200,1),(249,1111872600,8),(249,1123783200,3),(250,-1383464380,1),(250,-1167636600,2),(251,-2019705670,1),(251,-891581400,2),(251,-872058600,1),(251,-862637400,2),(251,-764145000,1),(252,-1579419232,1),(252,-1247558400,3),(252,354898800,2),(252,370706400,3),(252,386434800,2),(252,402242400,3),(252,417970800,2),(252,433778400,3),(252,449593200,2),(252,465325200,4),(252,481050000,5),(252,496774800,4),(252,512499600,5),(252,528224400,4),(252,543949200,5),(252,559674000,4),(252,575398800,5),(252,591123600,4),(252,606848400,5),(252,622573200,4),(252,638298000,5),(252,654627600,4),(252,670352400,6),(252,686080800,7),(252,695757600,4),(252,701802000,5),(252,717526800,4),(252,733251600,5),(252,748976400,4),(252,764701200,5),(252,780426000,4),(252,796150800,5),(252,811875600,4),(252,828205200,5),(252,846349200,4),(252,859654800,5),(252,877798800,4),(252,891104400,5),(252,909248400,4),(252,922554000,5),(252,941302800,4),(252,954003600,5),(252,972752400,4),(252,985453200,5),(252,1004202000,4),(252,1017507600,5),(252,1035651600,4),(252,1048957200,5),(252,1067101200,4),(252,1080406800,5),(252,1099155600,4),(252,1111856400,5),(252,1130605200,4),(252,1143306000,5),(252,1162054800,4),(252,1174755600,5),(252,1193504400,4),(252,1206810000,5),(252,1224954000,4),(252,1238259600,5),(252,1256403600,4),(252,1269709200,5),(252,1288458000,4),(252,1301158800,8),(252,1414252800,7),(252,1459015200,3),(253,-2032933080,1),(253,252435600,2),(253,417974400,4),(253,433778400,3),(253,449593200,4),(253,465314400,3),(253,481042800,4),(253,496764000,3),(253,512492400,4),(253,528213600,3),(253,543942000,4),(253,559663200,3),(253,575391600,4),(253,591112800,3),(253,606841200,4),(253,622562400,3),(253,638290800,4),(253,654616800,3),(253,670345200,4),(253,686066400,3),(253,701794800,4),(253,717516000,3),(253,733244400,4),(253,748965600,3),(253,764694000,4),(253,780415200,3),(253,796143600,4),(253,811864800,3),(253,828198000,4),(253,843919200,3),(253,859647600,4),(253,875368800,3),(253,891097200,4),(253,906818400,3),(253,988390800,4),(253,1001692800,3),(253,1017421200,4),(253,1033142400,3),(253,1048870800,4),(253,1064592000,3),(253,1080320400,4),(253,1096041600,3),(253,1111770000,4),(253,1127491200,3),(253,1143219600,4),(253,1159545600,3),(253,1206889200,2),(253,1427479200,5),(253,1443193200,2),(253,1458928800,5),(253,1474642800,2),(254,-933494400,0),(254,-923130000,1),(254,-908784000,0),(254,-891594000,1),(254,515520000,0),(254,527007600,1),(254,545155200,0),(254,558457200,1),(254,576604800,0),(254,589906800,1),(254,608659200,0),(254,621961200,1),(254,640108800,0),(254,653410800,1),(254,671558400,0),(254,684860400,1),(255,-933494400,0),(255,-923130000,1),(255,-908784000,0),(255,-891594000,1),(255,515520000,0),(255,527007600,1),(255,545155200,0),(255,558457200,1),(255,576604800,0),(255,589906800,1),(255,608659200,0),(255,621961200,1),(255,640108800,0),(255,653410800,1),(255,671558400,0),(255,684860400,1),(256,-2019705572,1),(256,-883287000,2),(256,-862639200,3),(256,-764051400,1),(256,832962600,4),(256,846266400,5),(256,1145039400,1),(257,-891582800,1),(257,-872058600,2),(257,-862637400,1),(257,-576138600,3),(257,1245430800,4),(257,1262278800,3),(258,-1577931912,2),(258,-1568592000,1),(258,-1554080400,2),(258,-1537142400,1),(258,-1522630800,2),(258,-1505692800,1),(258,-1491181200,2),(258,-1474243200,1),(258,-1459126800,2),(258,-242265600,1),(258,-228877200,2),(258,-210556800,1),(258,-197427600,2),(258,-178934400,1),(258,-165718800,2),(258,-147398400,1),(258,-134269200,2),(258,-116467200,1),(258,-102646800,2),(258,-84326400,1),(258,-71110800,2),(258,-52704000,1),(258,-39488400,2),(258,-21168000,1),(258,-7952400,2),(258,10368000,1),(258,23583600,2),(258,41904000,1),(258,55119600,2),(258,73526400,1),(258,86742000,2),(258,105062400,1),(258,118278000,2),(258,136598400,1),(258,149814000,2),(258,168134400,1),(258,181350000,2),(258,199756800,1),(258,212972400,2),(258,231292800,1),(258,241916400,2),(258,262828800,1),(258,273452400,2),(258,418694400,1),(258,433810800,2),(258,450316800,1),(258,465433200,2),(258,508896000,1),(258,529196400,2),(258,541555200,1),(258,562633200,2),(258,574387200,1),(258,594255600,2),(258,607305600,1),(258,623199600,2),(258,638928000,1),(258,654649200,2),(258,670456800,1),(258,686264400,2),(258,702684000,1),(258,717886800,2),(258,733096800,1),(258,748904400,2),(258,765151200,1),(258,780958800,2),(258,796687200,1),(258,812494800,2),(258,828309600,1),(258,844117200,2),(258,859759200,1),(258,875653200,2),(258,891208800,1),(258,907189200,2),(258,922917600,1),(258,938725200,2),(258,954540000,1),(258,970347600,2),(258,986076000,1),(258,1001883600,2),(258,1017612000,1),(258,1033419600,2),(258,1049148000,1),(258,1064955600,2),(258,1080770400,1),(258,1096578000,2),(258,1112306400,1),(258,1128114000,2),(258,1143842400,1),(258,1158872400,2),(258,1175205600,1),(258,1193950800,2),(258,1207260000,1),(258,1225486800,2),(258,1238104800,1),(258,1256850000,2),(258,1270159200,1),(258,1288299600,2),(258,1301608800,1),(258,1319749200,2),(258,1333058400,1),(258,1351198800,2),(258,1364508000,1),(258,1382648400,2),(258,1395957600,1),(258,1414702800,2),(258,1427407200,1),(258,1446152400,2),(258,1458856800,1),(258,1477602000,2),(258,1490911200,1),(258,1509051600,2),(258,1522360800,1),(258,1540501200,2),(258,1553810400,1),(258,1571950800,2),(258,1585260000,1),(258,1604005200,2),(258,1616709600,1),(258,1635454800,2),(258,1648159200,1),(258,1666904400,2),(258,1680213600,1),(258,1698354000,2),(258,1711663200,1),(258,1729803600,2),(258,1743112800,1),(258,1761858000,2),(258,1774562400,1),(258,1793307600,2),(258,1806012000,1),(258,1824757200,2),(258,1838066400,1),(258,1856206800,2),(258,1869516000,1),(258,1887656400,2),(258,1900965600,1),(258,1919106000,2),(258,1932415200,1),(258,1951160400,2),(258,1963864800,1),(258,1982610000,2),(258,1995314400,1),(258,2014059600,2),(258,2027368800,1),(258,2045509200,2),(258,2058818400,1),(258,2076958800,2),(258,2090268000,1),(258,2109013200,2),(258,2121717600,1),(258,2140462800,2),(259,-891582800,1),(259,-872058600,2),(259,-862637400,1),(259,-576138600,3),(259,1245430800,4),(259,1262278800,3),(260,-1830414140,1),(260,-879152400,2),(260,199897200,1),(260,969120000,2),(261,-1577936472,1),(262,-1441168512,1),(262,-1247547600,3),(262,354909600,2),(262,370717200,3),(262,386445600,2),(262,402253200,3),(262,417981600,2),(262,433789200,3),(262,449604000,2),(262,465336000,4),(262,481060800,5),(262,496785600,4),(262,512510400,5),(262,528235200,4),(262,543960000,5),(262,559684800,4),(262,575409600,5),(262,591134400,4),(262,606859200,5),(262,622584000,4),(262,638308800,5),(262,654638400,4),(262,670363200,6),(262,684363600,7),(263,-1518920148,2),(263,166572000,1),(263,182293200,2),(263,200959200,1),(263,213829200,2),(263,228866400,1),(263,243982800,2),(263,260316000,1),(263,276123600,2),(263,291765600,1),(263,307486800,2),(263,323820000,1),(263,338936400,2),(263,354664800,1),(263,370386000,2),(263,386114400,1),(263,401835600,2),(263,417564000,1),(263,433285200,2),(263,449013600,1),(263,465339600,2),(263,481068000,1),(263,496789200,2),(263,512517600,1),(263,528238800,2),(263,543967200,1),(263,559688400,2),(263,575416800,1),(263,591138000,2),(263,606866400,1),(263,622587600,2),(263,638316000,1),(263,654642000,2),(263,670370400,1),(263,686091600,2),(263,701820000,1),(263,717541200,2),(263,733269600,1),(263,748990800,2),(263,764719200,1),(263,780440400,2),(263,796168800,1),(263,811890000,2),(263,828223200,1),(263,843944400,2),(263,859672800,1),(263,875394000,2),(263,891122400,1),(263,909277200,3),(263,922582800,4),(263,941331600,3),(263,954032400,4),(263,972781200,3),(263,985482000,4),(263,1004230800,3),(263,1017536400,4),(263,1035680400,3),(263,1048986000,4),(263,1067130000,3),(263,1080435600,4),(263,1099184400,3),(263,1111885200,4),(263,1130634000,3),(263,1143334800,4),(263,1162083600,3),(263,1174784400,4),(263,1193533200,3),(263,1206838800,4),(263,1224982800,3),(263,1238288400,4),(263,1256432400,3),(263,1269738000,4),(263,1288486800,3),(263,1301187600,4),(263,1319936400,3),(263,1332637200,4),(263,1351386000,3),(263,1364691600,4),(263,1382835600,3),(263,1396141200,4),(263,1414285200,3),(263,1427590800,4),(263,1445734800,3),(263,1459040400,4),(263,1473282000,5),(263,1509238800,3),(263,1521939600,4),(263,1540688400,3),(263,1553994000,4),(263,1572138000,3),(263,1585443600,4),(263,1603587600,3),(263,1616893200,4),(263,1635642000,3),(263,1648342800,4),(263,1667091600,3),(263,1679792400,4),(263,1698541200,3),(263,1711846800,4),(263,1729990800,3),(263,1743296400,4),(263,1761440400,3),(263,1774746000,4),(263,1792890000,3),(263,1806195600,4),(263,1824944400,3),(263,1837645200,4),(263,1856394000,3),(263,1869094800,4),(263,1887843600,3),(263,1901149200,4),(263,1919293200,3),(263,1932598800,4),(263,1950742800,3),(263,1964048400,4),(263,1982797200,3),(263,1995498000,4),(263,2014246800,3),(263,2026947600,4),(263,2045696400,3),(263,2058397200,4),(263,2077146000,3),(263,2090451600,4),(263,2108595600,3),(263,2121901200,4),(263,2140045200,3),(264,-933645600,0),(264,-857358000,1),(264,-844300800,0),(264,-825822000,1),(264,-812685600,0),(264,-794199600,1),(264,-779853600,0),(264,-762656400,1),(264,-748310400,0),(264,-731127600,1),(264,-399088800,0),(264,-386650800,1),(264,-368330400,0),(264,-355114800,1),(264,-336790800,0),(264,-323654400,1),(264,-305168400,0),(264,-292032000,1),(264,-273632400,0),(264,-260496000,1),(264,-242096400,0),(264,-228960000,1),(264,-210560400,0),(264,-197424000,1),(264,-178938000,0),(264,-165801600,1),(264,-147402000,0),(264,-134265600,1),(264,-115866000,0),(264,-102643200,1),(264,-84330000,0),(264,-81313200,3),(264,142380000,2),(264,150843600,3),(264,167176800,2),(264,178664400,3),(264,482277600,2),(264,495579600,3),(264,516751200,2),(264,526424400,3),(264,545436000,2),(264,558478800,3),(264,576626400,2),(264,589323600,3),(264,609890400,2),(264,620773200,3),(264,638316000,2),(264,651618000,3),(264,669765600,2),(264,683672400,3),(264,701820000,2),(264,715726800,3),(264,733701600,2),(264,747176400,3),(264,765151200,2),(264,778021200,3),(264,796600800,2),(264,810075600,3),(264,820447200,1),(264,828655200,0),(264,843170400,4),(264,860104800,0),(264,874620000,4),(264,891554400,0),(264,906069600,4),(264,915141600,1),(264,924213600,0),(264,939934800,1),(264,956268000,0),(264,971989200,1),(264,987717600,0),(264,1003438800,1),(264,1019167200,0),(264,1034888400,1),(264,1050616800,0),(264,1066338000,1),(264,1082066400,0),(264,1096581600,1),(264,1113516000,0),(264,1128380400,1),(264,1143842400,0),(264,1158872400,1),(264,1175378400,0),(264,1189638000,1),(264,1206655200,0),(264,1219957200,1),(264,1238104800,0),(264,1252015200,1),(264,1269640860,0),(264,1281474000,1),(264,1301608860,0),(264,1312146000,1),(264,1333058400,0),(264,1348178400,1),(264,1364508000,0),(264,1380229200,1),(264,1395957600,0),(264,1414098000,1),(264,1427493600,0),(264,1445547600,1),(264,1458946800,0),(264,1477692000,1),(264,1490396400,0),(264,1509141600,1),(264,1521846000,0),(264,1540591200,1),(264,1553295600,0),(264,1572040800,1),(264,1585350000,0),(264,1604095200,1),(264,1616799600,0),(264,1635544800,1),(264,1648249200,0),(264,1666994400,1),(264,1679698800,0),(264,1698444000,1),(264,1711148400,0),(264,1729893600,1),(264,1742598000,0),(264,1761343200,1),(264,1774652400,0),(264,1793397600,1),(264,1806102000,0),(264,1824847200,1),(264,1837551600,0),(264,1856296800,1),(264,1869001200,0),(264,1887746400,1),(264,1900450800,0),(264,1919196000,1),(264,1931900400,0),(264,1950645600,1),(264,1963954800,0),(264,1982700000,1),(264,1995404400,0),(264,2014149600,1),(264,2026854000,0),(264,2045599200,1),(264,2058303600,0),(264,2077048800,1),(264,2089753200,0),(264,2108498400,1),(264,2121807600,0),(264,2140552800,1),(265,-933494400,0),(265,-923130000,1),(265,-908784000,0),(265,-891594000,1),(265,515520000,0),(265,527007600,1),(265,545155200,0),(265,558457200,1),(265,576604800,0),(265,589906800,1),(265,608659200,0),(265,621961200,1),(265,640108800,0),(265,653410800,1),(265,671558400,0),(265,684860400,1),(266,-933645600,0),(266,-857358000,1),(266,-844300800,0),(266,-825822000,1),(266,-812685600,0),(266,-794199600,1),(266,-779853600,0),(266,-762656400,1),(266,-748310400,0),(266,-731127600,1),(266,-399088800,0),(266,-386650800,1),(266,-368330400,0),(266,-355114800,1),(266,-336790800,0),(266,-323654400,1),(266,-305168400,0),(266,-292032000,1),(266,-273632400,0),(266,-260496000,1),(266,-242096400,0),(266,-228960000,1),(266,-210560400,0),(266,-197424000,1),(266,-178938000,0),(266,-165801600,1),(266,-147402000,0),(266,-134265600,1),(266,-115866000,0),(266,-102643200,1),(266,-84330000,0),(266,-81313200,3),(266,142380000,2),(266,150843600,3),(266,167176800,2),(266,178664400,3),(266,482277600,2),(266,495579600,3),(266,516751200,2),(266,526424400,3),(266,545436000,2),(266,558478800,3),(266,576626400,2),(266,589323600,3),(266,609890400,2),(266,620773200,3),(266,638316000,2),(266,651618000,3),(266,669765600,2),(266,683672400,3),(266,701820000,2),(266,715726800,3),(266,733701600,2),(266,747176400,3),(266,765151200,2),(266,778021200,3),(266,796600800,2),(266,810075600,3),(266,820447200,1),(266,828655200,0),(266,843170400,4),(266,860104800,0),(266,874620000,4),(266,891554400,0),(266,906069600,4),(266,915141600,1),(266,924213600,0),(266,939934800,1),(266,956268000,0),(266,971989200,1),(266,987717600,0),(266,1003438800,1),(266,1019167200,0),(266,1034888400,1),(266,1050616800,0),(266,1066338000,1),(266,1082066400,0),(266,1096581600,1),(266,1113516000,0),(266,1128380400,1),(266,1143842400,0),(266,1158872400,1),(266,1175378400,0),(266,1189638000,1),(266,1206655200,0),(266,1220216400,1),(266,1238104800,0),(266,1252015200,1),(266,1269554400,0),(266,1281474000,1),(266,1301608860,0),(266,1312146000,1),(266,1314655200,0),(266,1317330000,1),(266,1333058400,0),(266,1348178400,1),(266,1364508000,0),(266,1380229200,1),(266,1395957600,0),(266,1414098000,1),(266,1427493600,0),(266,1445547600,1),(266,1458946800,0),(266,1477692000,1),(266,1490396400,0),(266,1509141600,1),(266,1521846000,0),(266,1540591200,1),(266,1553295600,0),(266,1572040800,1),(266,1585350000,0),(266,1604095200,1),(266,1616799600,0),(266,1635544800,1),(266,1648249200,0),(266,1666994400,1),(266,1679698800,0),(266,1698444000,1),(266,1711148400,0),(266,1729893600,1),(266,1742598000,0),(266,1761343200,1),(266,1774652400,0),(266,1793397600,1),(266,1806102000,0),(266,1824847200,1),(266,1837551600,0),(266,1856296800,1),(266,1869001200,0),(266,1887746400,1),(266,1900450800,0),(266,1919196000,1),(266,1931900400,0),(266,1950645600,1),(266,1963954800,0),(266,1982700000,1),(266,1995404400,0),(266,2014149600,1),(266,2026854000,0),(266,2045599200,1),(266,2058303600,0),(266,2077048800,1),(266,2089753200,0),(266,2108498400,1),(266,2121807600,0),(266,2140552800,1),(267,-2004073600,1),(267,-1851577590,2),(267,-852105600,3),(267,-782643600,4),(267,-767869200,2),(267,-718095600,3),(267,-457776000,2),(267,-315648000,3),(267,171820800,2),(268,-2056693002,2),(268,-907389000,1),(268,-891667800,2),(268,-884246400,3),(268,-766746000,2),(268,-747981000,1),(268,-728544600,2),(268,-717049800,1),(268,-694503000,2),(268,-683785800,1),(268,-668064600,2),(268,-654755400,1),(268,-636615000,2),(268,-623305800,1),(268,-605165400,2),(268,-591856200,1),(268,-573715800,2),(268,-559801800,1),(268,-542352600,2),(268,-528352200,1),(268,-510211800,2),(268,-498112200,1),(268,-478762200,2),(268,-466662600,1),(268,-446707800,2),(268,-435213000,1),(268,-415258200,2),(268,-403158600,1),(268,-383808600,2),(268,-371709000,1),(268,-352359000,2),(268,-340259400,1),(268,-320909400,2),(268,-308809800,1),(268,-288855000,2),(268,-277360200,1),(268,-257405400,2),(268,-245910600,1),(268,-225955800,2),(268,-213856200,1),(268,-194506200,2),(268,-182406600,1),(268,-163056600,2),(268,-148537800,1),(268,-132816600,2),(268,-117088200,1),(268,-101367000,2),(268,-85638600,1),(268,-69312600,2),(268,-53584200,1),(268,-37863000,2),(268,-22134600,1),(268,-6413400,2),(268,9315000,1),(268,25036200,2),(268,40764600,1),(268,56485800,2),(268,72214200,1),(268,88540200,2),(268,104268600,1),(268,119989800,2),(268,126041400,1),(268,151439400,2),(268,167167800,1),(268,182889000,2),(268,198617400,1),(268,214338600,2),(268,295385400,1),(268,309292200,2),(269,-2032927596,1),(269,252439200,3),(269,417978000,2),(269,433785600,3),(269,449600400,2),(269,465321600,3),(269,481050000,2),(269,496771200,3),(269,512499600,2),(269,528220800,3),(269,543949200,2),(269,559670400,3),(269,575398800,2),(269,591120000,3),(269,606848400,2),(269,622569600,3),(269,638298000,2),(269,654624000,3),(269,670352400,2),(269,686073600,3),(269,701802000,2),(269,717523200,3),(269,733251600,2),(269,748972800,3),(269,764701200,2),(269,780422400,3),(269,796150800,2),(269,811872000,3),(269,828205200,2),(269,843926400,3),(269,859654800,2),(269,875376000,3),(269,891104400,2),(269,906825600,3),(269,988398000,2),(269,1001700000,3),(269,1017428400,2),(269,1033149600,3),(269,1048878000,2),(269,1064599200,3),(269,1080327600,2),(269,1096048800,3),(269,1111777200,2),(269,1127498400,3),(269,1143226800,2),(269,1159552800,3),(269,1427482800,2),(269,1443196800,3),(269,1458932400,2),(269,1474646400,3),(270,-1575874625,1),(270,-1247554800,3),(270,354902400,2),(270,370710000,3),(270,386438400,2),(270,402246000,3),(270,417974400,2),(270,433782000,3),(270,449596800,2),(270,465328800,4),(270,481053600,5),(270,496778400,4),(270,512503200,5),(270,528228000,4),(270,543952800,5),(270,559677600,4),(270,575402400,5),(270,591127200,4),(270,606852000,5),(270,622576800,4),(270,638301600,5),(270,654631200,4),(270,670356000,6),(270,686084400,7),(270,695761200,4),(270,701805600,5),(270,717530400,4),(270,733255200,5),(270,748980000,4),(270,764704800,5),(270,780429600,4),(270,796154400,5),(270,811879200,4),(270,828208800,5),(270,846352800,4),(270,859658400,5),(270,877802400,4),(270,891108000,5),(270,909252000,4),(270,922557600,5),(270,941306400,4),(270,954007200,5),(270,972756000,4),(270,985456800,5),(270,1004205600,4),(270,1017511200,5),(270,1035655200,4),(270,1048960800,5),(270,1067104800,4),(270,1080410400,5),(270,1099159200,4),(270,1111860000,5),(270,1130608800,4),(270,1143309600,5),(270,1162058400,4),(270,1174759200,5),(270,1193508000,4),(270,1206813600,5),(270,1224957600,4),(270,1238263200,5),(270,1256407200,4),(270,1269712800,5),(270,1288461600,4),(270,1301162400,8),(270,1414256400,4),(271,-1869875816,2),(271,-1693706400,1),(271,-1680490800,2),(271,-1570413600,1),(271,-1552186800,2),(271,-1538359200,1),(271,-1522551600,2),(271,-1507514400,1),(271,-1490583600,2),(271,-1440208800,1),(271,-1428030000,2),(271,-1409709600,1),(271,-1396494000,2),(271,-931140000,1),(271,-922762800,2),(271,-917834400,1),(271,-892436400,2),(271,-875844000,1),(271,-857358000,2),(271,-781063200,1),(271,-764737200,2),(271,-744343200,1),(271,-733806000,2),(271,-716436000,1),(271,-701924400,2),(271,-684986400,1),(271,-670474800,2),(271,-654141600,1),(271,-639025200,2),(271,-621828000,1),(271,-606970800,2),(271,-590032800,1),(271,-575434800,2),(271,-235620000,1),(271,-228279600,2),(271,-177732000,1),(271,-165726000,2),(271,10533600,1),(271,23835600,2),(271,41983200,1),(271,55285200,2),(271,74037600,1),(271,87339600,2),(271,107910000,1),(271,121219200,2),(271,133920000,1),(271,152676000,2),(271,165362400,1),(271,183502800,2),(271,202428000,1),(271,215557200,2),(271,228866400,1),(271,245797200,2),(271,260316000,1),(271,277246800,3),(271,308779200,4),(271,323827200,3),(271,340228800,4),(271,354672000,3),(271,371678400,4),(271,386121600,3),(271,403128000,4),(271,428446800,3),(271,433886400,4),(271,482792400,1),(271,496702800,2),(271,512521200,5),(271,528246000,6),(271,543970800,5),(271,559695600,6),(271,575420400,5),(271,591145200,6),(271,606870000,5),(271,622594800,6),(271,638319600,5),(271,654649200,6),(271,670374000,5),(271,686098800,6),(271,701823600,5),(271,717548400,6),(271,733273200,5),(271,748998000,6),(271,764118000,5),(271,780447600,6),(271,796172400,5),(271,811897200,6),(271,828226800,5),(271,846370800,6),(271,859676400,5),(271,877820400,6),(271,891126000,5),(271,909270000,6),(271,922575600,5),(271,941324400,6),(271,954025200,5),(271,972774000,6),(271,985474800,5),(271,1004223600,6),(271,1017529200,5),(271,1035673200,6),(271,1048978800,5),(271,1067122800,6),(271,1080428400,5),(271,1099177200,6),(271,1111878000,5),(271,1130626800,6),(271,1143327600,5),(271,1162076400,6),(271,1167602400,2),(271,1174784400,7),(271,1193533200,8),(271,1206838800,7),(271,1224982800,8),(271,1238288400,7),(271,1256432400,8),(271,1269738000,7),(271,1288486800,8),(271,1301274000,7),(271,1319936400,8),(271,1332637200,7),(271,1351386000,8),(271,1364691600,7),(271,1382835600,8),(271,1396227600,7),(271,1414285200,8),(271,1427590800,7),(271,1446944400,8),(271,1459040400,7),(271,1473195600,4),(272,-1451719200,1),(272,-1172906400,2),(272,-876641400,3),(272,-766054800,2),(272,-683883000,4),(272,-620812800,2),(272,-189415800,5),(273,-1172913768,1),(273,-799491600,2),(273,-189423000,3),(274,-1641003640,2),(274,-933645600,1),(274,-857358000,2),(274,-844300800,1),(274,-825822000,2),(274,-812685600,1),(274,-794199600,2),(274,-779853600,1),(274,-762656400,2),(274,-748310400,1),(274,-731127600,2),(274,-681962400,3),(274,-673243200,1),(274,-667962000,2),(274,-652327200,1),(274,-636426000,2),(274,-622087200,1),(274,-608947200,2),(274,-591847200,1),(274,-572486400,2),(274,-558576000,1),(274,-542851200,2),(274,-527731200,1),(274,-514425600,2),(274,-490845600,1),(274,-482986800,2),(274,-459475200,1),(274,-451537200,2),(274,-428551200,1),(274,-418262400,2),(274,-400032000,1),(274,-387428400,2),(274,142380000,1),(274,150843600,2),(274,167176800,1),(274,178664400,2),(274,482277600,1),(274,495579600,2),(274,516751200,1),(274,526424400,2),(274,545436000,1),(274,558478800,2),(274,576626400,1),(274,589323600,2),(274,609890400,1),(274,620773200,2),(274,638316000,1),(274,651618000,2),(274,669765600,1),(274,683672400,2),(274,701820000,1),(274,715726800,2),(274,733701600,1),(274,747176400,2),(274,765151200,1),(274,778021200,2),(274,796600800,1),(274,810075600,2),(274,826840800,1),(274,842821200,2),(274,858895200,1),(274,874184400,2),(274,890344800,1),(274,905029200,2),(274,923011200,1),(274,936313200,2),(274,955670400,1),(274,970783200,2),(274,986770800,1),(274,1001282400,2),(274,1017356400,1),(274,1033941600,2),(274,1048806000,1),(274,1065132000,2),(274,1081292400,1),(274,1095804000,2),(274,1112313600,1),(274,1128812400,2),(274,1143763200,1),(274,1159657200,2),(274,1175212800,1),(274,1189897200,2),(274,1206662400,1),(274,1223161200,2),(274,1238112000,1),(274,1254006000,2),(274,1269561600,1),(274,1284246000,2),(274,1301616000,1),(274,1317510000,2),(274,1333065600,1),(274,1348354800,2),(274,1364515200,1),(274,1382828400,2),(274,1395964800,1),(274,1414278000,2),(274,1427414400,1),(274,1445727600,2),(274,1458864000,1),(274,1477782000,2),(274,1490313600,1),(274,1509231600,2),(274,1521763200,1),(274,1540681200,2),(274,1553817600,1),(274,1572130800,2),(274,1585267200,1),(274,1603580400,2),(274,1616716800,1),(274,1635634800,2),(274,1648166400,1),(274,1667084400,2),(274,1679616000,1),(274,1698534000,2),(274,1711670400,1),(274,1729983600,2),(274,1743120000,1),(274,1761433200,2),(274,1774569600,1),(274,1792882800,2),(274,1806019200,1),(274,1824937200,2),(274,1837468800,1),(274,1856386800,2),(274,1868918400,1),(274,1887836400,2),(274,1900972800,1),(274,1919286000,2),(274,1932422400,1),(274,1950735600,2),(274,1963872000,1),(274,1982790000,2),(274,1995321600,1),(274,2014239600,2),(274,2026771200,1),(274,2045689200,2),(274,2058220800,1),(274,2077138800,2),(274,2090275200,1),(274,2108588400,2),(274,2121724800,1),(274,2140038000,2),(275,-788932800,1),(276,-1487759676,1),(276,-1247569200,3),(276,354888000,2),(276,370695600,3),(276,386424000,2),(276,402231600,3),(276,417960000,2),(276,433767600,3),(276,449582400,2),(276,465314400,4),(276,481039200,5),(276,496764000,4),(276,512488800,5),(276,528213600,4),(276,543938400,5),(276,559663200,4),(276,575388000,5),(276,591112800,4),(276,606837600,5),(276,622562400,4),(276,638287200,5),(276,654616800,4),(276,670341600,6),(276,686070000,7),(276,695746800,4),(276,701791200,5),(276,717516000,4),(276,733240800,5),(276,748965600,4),(276,764690400,5),(276,780415200,4),(276,796140000,5),(276,811864800,4),(276,828194400,5),(276,846338400,4),(276,859644000,5),(276,877788000,4),(276,891093600,5),(276,909237600,4),(276,922543200,5),(276,941292000,4),(276,953992800,5),(276,972741600,4),(276,985442400,5),(276,1004191200,4),(276,1017496800,5),(276,1035640800,4),(276,1048946400,5),(276,1067090400,4),(276,1080396000,5),(276,1099144800,4),(276,1111845600,5),(276,1130594400,4),(276,1143295200,5),(276,1162044000,4),(276,1174744800,5),(276,1193493600,4),(276,1206799200,5),(276,1224943200,4),(276,1238248800,5),(276,1256392800,4),(276,1269698400,6),(276,1288450800,7),(276,1301151600,4),(277,-1988166492,1),(277,-862637400,2),(277,-764145000,1),(277,-576135000,3),(277,38775600,5),(277,1018119600,4),(277,1033840800,5),(277,1212260400,4),(277,1225476000,5),(277,1239735600,4),(277,1257012000,5),(278,-1325483420,1),(279,-1577943676,1),(279,504901800,2),(280,-1577943676,1),(280,504901800,2),(281,-1579424533,1),(281,-1247558400,3),(281,354898800,2),(281,370706400,3),(281,386434800,2),(281,402242400,3),(281,417970800,2),(281,433778400,3),(281,449593200,2),(281,465325200,4),(281,481050000,5),(281,496774800,4),(281,512499600,5),(281,528224400,4),(281,543949200,5),(281,559674000,4),(281,575398800,5),(281,591123600,4),(281,606848400,5),(281,622573200,4),(281,638298000,5),(281,654627600,4),(281,670352400,6),(281,686080800,7),(281,695757600,4),(281,701802000,5),(281,717526800,4),(281,733251600,5),(281,748976400,4),(281,764701200,5),(281,780426000,4),(281,796150800,5),(281,811875600,4),(281,828205200,5),(281,846349200,4),(281,859654800,5),(281,877798800,4),(281,891104400,5),(281,909248400,4),(281,922554000,5),(281,941302800,4),(281,954003600,5),(281,972752400,4),(281,985453200,5),(281,1004202000,4),(281,1017507600,5),(281,1035651600,4),(281,1048957200,5),(281,1067101200,4),(281,1072882800,10),(281,1080403200,8),(281,1099152000,9),(281,1111852800,8),(281,1130601600,9),(281,1143302400,8),(281,1162051200,9),(281,1174752000,8),(281,1193500800,9),(281,1206806400,8),(281,1224950400,9),(281,1238256000,8),(281,1256400000,9),(281,1269705600,8),(281,1288454400,9),(281,1301155200,11),(281,1315832400,9),(281,1414252800,4),(282,-2019705670,1),(282,-891581400,2),(282,-872058600,1),(282,-862637400,2),(282,-764145000,1),(283,-1577513486,1),(283,-1247551200,3),(283,354906000,2),(283,370713600,3),(283,386442000,2),(283,402249600,3),(283,417978000,2),(283,433785600,3),(283,449600400,2),(283,465332400,4),(283,481057200,5),(283,496782000,4),(283,512506800,5),(283,528231600,4),(283,543956400,5),(283,559681200,4),(283,575406000,5),(283,591130800,4),(283,606855600,5),(283,622580400,4),(283,638305200,5),(283,654634800,4),(283,670359600,6),(283,686088000,7),(283,695764800,4),(283,701809200,5),(283,717534000,4),(283,733258800,5),(283,748983600,4),(283,764708400,5),(283,780433200,4),(283,796158000,5),(283,811882800,4),(283,828212400,5),(283,846356400,4),(283,859662000,5),(283,877806000,4),(283,891111600,5),(283,909255600,4),(283,922561200,5),(283,941310000,4),(283,954010800,5),(283,972759600,4),(283,985460400,5),(283,1004209200,4),(283,1017514800,5),(283,1035658800,4),(283,1048964400,5),(283,1067108400,4),(283,1080414000,5),(283,1099162800,4),(283,1111863600,5),(283,1130612400,4),(283,1143313200,5),(283,1162062000,4),(283,1174762800,5),(283,1193511600,4),(283,1206817200,5),(283,1224961200,4),(283,1238266800,5),(283,1256410800,4),(283,1269716400,5),(283,1288465200,4),(283,1301166000,8),(283,1414260000,4),(284,-2038200925,1),(284,-1167634800,2),(284,-1073028000,3),(284,-894180000,4),(284,-879665400,5),(284,-767005200,4),(284,378664200,6),(285,-1383463280,1),(285,-1167636600,3),(285,-1082448000,2),(285,-1074586800,3),(285,-1050825600,2),(285,-1042964400,3),(285,-1019289600,2),(285,-1011428400,3),(285,-987753600,2),(285,-979892400,3),(285,-956217600,2),(285,-948356400,3),(285,-924595200,2),(285,-916734000,3),(285,-893059200,2),(285,-885198000,3),(285,-879667200,4),(285,-767005200,3),(286,-719636812,1),(287,-1830412800,3),(287,-277360200,1),(287,-257405400,2),(287,-245910600,1),(287,-225955800,2),(287,-214473600,1),(287,-194506200,2),(287,-182406600,1),(287,-163056600,2),(287,-150969600,1),(287,-131619600,2),(287,-117088200,1),(287,-101367000,2),(287,-85638600,1),(287,-69312600,2),(287,-53584200,1),(287,-37863000,2),(287,-22134600,1),(287,-6413400,2),(287,9315000,1),(287,25036200,2),(287,40764600,1),(287,56485800,2),(287,72201600,1),(287,87922800,2),(287,103651200,1),(287,119977200,2),(287,135705600,1),(287,151439400,2),(287,167167800,1),(287,182889000,2),(287,198617400,1),(287,214338600,2),(287,230067000,1),(287,245788200,2),(287,261504000,1),(287,277225200,2),(287,292953600,1),(287,309279600,2),(287,325008000,1),(287,340729200,2),(288,-1830412800,3),(288,-277360200,1),(288,-257405400,2),(288,-245910600,1),(288,-225955800,2),(288,-214473600,1),(288,-194506200,2),(288,-182406600,1),(288,-163056600,2),(288,-150969600,1),(288,-131619600,2),(288,-117088200,1),(288,-101367000,2),(288,-85638600,1),(288,-69312600,2),(288,-53584200,1),(288,-37863000,2),(288,-22134600,1),(288,-6413400,2),(288,9315000,1),(288,25036200,2),(288,40764600,1),(288,56485800,2),(288,72201600,1),(288,87922800,2),(288,103651200,1),(288,119977200,2),(288,135705600,1),(288,151439400,2),(288,167167800,1),(288,182889000,2),(288,198617400,1),(288,214338600,2),(288,230067000,1),(288,245788200,2),(288,261504000,1),(288,277225200,2),(288,292953600,1),(288,309279600,2),(288,325008000,1),(288,340729200,2),(289,-1441188192,1),(289,-1247565600,3),(289,354891600,2),(289,370699200,3),(289,386427600,2),(289,402235200,3),(289,417963600,2),(289,433771200,3),(289,449586000,2),(289,465318000,4),(289,481042800,5),(289,496767600,4),(289,512492400,5),(289,528217200,4),(289,543942000,5),(289,559666800,4),(289,575391600,5),(289,591116400,4),(289,606841200,5),(289,622566000,4),(289,638290800,5),(289,654620400,4),(289,670345200,6),(289,686073600,7),(289,695750400,4),(289,701794800,5),(289,717519600,4),(289,733244400,5),(289,748969200,4),(289,764694000,5),(289,780418800,4),(289,796143600,5),(289,811868400,4),(289,828198000,5),(289,846342000,4),(289,859647600,5),(289,877791600,4),(289,891097200,5),(289,909241200,4),(289,922546800,5),(289,941295600,4),(289,953996400,5),(289,972745200,4),(289,985446000,5),(289,1004194800,4),(289,1017500400,5),(289,1035644400,4),(289,1048950000,5),(289,1067094000,4),(289,1080399600,5),(289,1099148400,4),(289,1111849200,5),(289,1130598000,4),(289,1143298800,5),(289,1162047600,4),(289,1174748400,5),(289,1193497200,4),(289,1206802800,5),(289,1224946800,4),(289,1238252400,5),(289,1256396400,4),(289,1269702000,5),(289,1288450800,4),(289,1301151600,8),(289,1414245600,7),(289,1461427200,4),(290,-1577951856,1),(290,-1172908656,2),(290,-880272000,3),(290,-766054800,4),(291,-1046678400,0),(291,-1038733200,1),(291,-873273600,2),(291,-794221200,1),(291,-496224000,0),(291,-489315600,1),(291,259344000,0),(291,275151600,1),(292,-1577936472,1),(293,-1518920008,2),(293,166572000,1),(293,182293200,2),(293,200959200,1),(293,213829200,2),(293,228866400,1),(293,243982800,2),(293,260316000,1),(293,276123600,2),(293,291765600,1),(293,307486800,2),(293,323820000,1),(293,338936400,2),(293,354664800,1),(293,370386000,2),(293,386114400,1),(293,401835600,2),(293,417564000,1),(293,433285200,2),(293,449013600,1),(293,465339600,2),(293,481068000,1),(293,496789200,2),(293,512517600,1),(293,528238800,2),(293,543967200,1),(293,559688400,2),(293,575416800,1),(293,591138000,2),(293,606866400,1),(293,622587600,2),(293,638316000,1),(293,654642000,2),(293,670370400,1),(293,686091600,2),(293,701820000,1),(293,717541200,2),(293,733269600,1),(293,748990800,2),(293,764719200,1),(293,780440400,2),(293,796168800,1),(293,811890000,2),(293,828223200,1),(293,843944400,2),(293,859672800,1),(293,875394000,2),(293,891122400,1),(293,909277200,3),(293,922582800,4),(293,941331600,3),(293,954032400,4),(293,972781200,3),(293,985482000,4),(293,1004230800,3),(293,1017536400,4),(293,1035680400,3),(293,1048986000,4),(293,1067130000,3),(293,1080435600,4),(293,1099184400,3),(293,1111885200,4),(293,1130634000,3),(293,1143334800,4),(293,1162083600,3),(293,1174784400,4),(293,1193533200,3),(293,1206838800,4),(293,1224982800,3),(293,1238288400,4),(293,1256432400,3),(293,1269738000,4),(293,1288486800,3),(293,1301187600,4),(293,1319936400,3),(293,1332637200,4),(293,1351386000,3),(293,1364691600,4),(293,1382835600,3),(293,1396141200,4),(293,1414285200,3),(293,1427590800,4),(293,1445734800,3),(293,1459040400,4),(293,1477789200,3),(293,1490490000,4),(293,1509238800,3),(293,1521939600,4),(293,1540688400,3),(293,1553994000,4),(293,1572138000,3),(293,1585443600,4),(293,1603587600,3),(293,1616893200,4),(293,1635642000,3),(293,1648342800,4),(293,1667091600,3),(293,1679792400,4),(293,1698541200,3),(293,1711846800,4),(293,1729990800,3),(293,1743296400,4),(293,1761440400,3),(293,1774746000,4),(293,1792890000,3),(293,1806195600,4),(293,1824944400,3),(293,1837645200,4),(293,1856394000,3),(293,1869094800,4),(293,1887843600,3),(293,1901149200,4),(293,1919293200,3),(293,1932598800,4),(293,1950742800,3),(293,1964048400,4),(293,1982797200,3),(293,1995498000,4),(293,2014246800,3),(293,2026947600,4),(293,2045696400,3),(293,2058397200,4),(293,2077146000,3),(293,2090451600,4),(293,2108595600,3),(293,2121901200,4),(293,2140045200,3),(294,-1441259328,1),(294,-1247551200,3),(294,354906000,2),(294,370713600,3),(294,386442000,2),(294,402249600,3),(294,417978000,2),(294,433785600,3),(294,449600400,2),(294,465332400,4),(294,481057200,5),(294,496782000,4),(294,512506800,5),(294,528231600,4),(294,543956400,5),(294,559681200,4),(294,575406000,5),(294,591130800,4),(294,606855600,5),(294,622580400,4),(294,638305200,5),(294,654634800,4),(294,670359600,6),(294,686088000,7),(294,695764800,4),(294,701809200,5),(294,717534000,4),(294,733258800,5),(294,748983600,4),(294,764708400,5),(294,780433200,4),(294,796158000,5),(294,811882800,4),(294,828212400,5),(294,846356400,4),(294,859662000,5),(294,877806000,4),(294,891111600,5),(294,909255600,4),(294,922561200,5),(294,941310000,4),(294,954010800,5),(294,972759600,4),(294,985460400,5),(294,1004209200,4),(294,1017514800,5),(294,1035658800,4),(294,1048964400,5),(294,1067108400,4),(294,1080414000,5),(294,1099162800,4),(294,1111863600,5),(294,1130612400,4),(294,1143313200,5),(294,1162062000,4),(294,1174762800,5),(294,1193511600,4),(294,1206817200,5),(294,1224961200,4),(294,1238266800,5),(294,1256410800,4),(294,1269716400,6),(294,1288468800,7),(294,1301169600,4),(295,-1579476700,1),(295,-1247551200,3),(295,354906000,2),(295,370713600,3),(295,386442000,2),(295,402249600,3),(295,417978000,2),(295,433785600,3),(295,449600400,2),(295,465332400,4),(295,481057200,5),(295,496782000,4),(295,512506800,5),(295,528231600,4),(295,543956400,5),(295,559681200,4),(295,575406000,5),(295,591130800,4),(295,606855600,5),(295,622580400,4),(295,638305200,5),(295,654634800,4),(295,670359600,6),(295,686088000,7),(295,695764800,4),(295,701809200,5),(295,717534000,4),(295,733258800,5),(295,738086400,8),(295,748987200,7),(295,764712000,6),(295,780436800,7),(295,796161600,6),(295,811886400,7),(295,828216000,6),(295,846360000,7),(295,859665600,6),(295,877809600,7),(295,891115200,6),(295,909259200,7),(295,922564800,6),(295,941313600,7),(295,954014400,6),(295,972763200,7),(295,985464000,6),(295,1004212800,7),(295,1017518400,6),(295,1035662400,7),(295,1048968000,6),(295,1067112000,7),(295,1080417600,6),(295,1099166400,7),(295,1111867200,6),(295,1130616000,7),(295,1143316800,6),(295,1162065600,7),(295,1174766400,6),(295,1193515200,7),(295,1206820800,6),(295,1224964800,7),(295,1238270400,6),(295,1256414400,7),(295,1269720000,6),(295,1288468800,7),(295,1301169600,4),(295,1414263600,7),(295,1469304000,4),(296,-1582088010,1),(296,-1247547600,3),(296,354909600,2),(296,370717200,3),(296,386445600,2),(296,402253200,3),(296,417981600,2),(296,433789200,3),(296,449604000,2),(296,465336000,4),(296,481060800,5),(296,496785600,4),(296,512510400,5),(296,528235200,4),(296,543960000,5),(296,559684800,4),(296,575409600,5),(296,591134400,4),(296,606859200,5),(296,622584000,4),(296,638308800,5),(296,654638400,4),(296,670363200,6),(296,686091600,7),(296,695768400,4),(296,701812800,5),(296,717537600,4),(296,733262400,5),(296,748987200,4),(296,764712000,5),(296,780436800,4),(296,796161600,5),(296,811886400,4),(296,828216000,5),(296,846360000,4),(296,859665600,5),(296,877809600,4),(296,891115200,5),(296,909259200,4),(296,922564800,5),(296,941313600,4),(296,954014400,5),(296,972763200,4),(296,985464000,5),(296,1004212800,4),(296,1017518400,5),(296,1035662400,4),(296,1048968000,5),(296,1067112000,4),(296,1080417600,5),(296,1099166400,4),(296,1111867200,5),(296,1130616000,4),(296,1143316800,5),(296,1162065600,4),(296,1174766400,5),(296,1193515200,4),(296,1206820800,5),(296,1224964800,4),(296,1238270400,5),(296,1256414400,4),(296,1269720000,5),(296,1288468800,4),(296,1301169600,8),(296,1414263600,4),(297,-1441164324,1),(297,-1247540400,2),(297,354913200,3),(297,370720800,4),(297,386445600,3),(297,402256800,2),(297,417985200,3),(297,433792800,2),(297,449607600,3),(297,465339600,5),(297,481064400,6),(297,496789200,5),(297,512514000,6),(297,528238800,5),(297,543963600,6),(297,559688400,5),(297,575413200,6),(297,591138000,5),(297,606862800,7),(297,622591200,8),(297,638316000,7),(297,654645600,8),(297,670370400,7),(297,686095200,8),(297,695772000,5),(297,701816400,7),(297,717544800,8),(297,733269600,7),(297,748994400,8),(297,764719200,7),(297,780444000,8),(297,796168800,7),(297,811893600,8),(297,828223200,7),(297,846367200,8),(297,859672800,7),(297,877816800,8),(297,891122400,7),(297,909266400,8),(297,922572000,7),(297,941320800,8),(297,954021600,7),(297,972770400,8),(297,985471200,7),(297,1004220000,8),(297,1017525600,7),(297,1035669600,8),(297,1048975200,7),(297,1067119200,8),(297,1080424800,7),(297,1099173600,5),(298,-1570084924,1),(299,-1946186240,1),(299,-1172906240,2),(299,-881220600,3),(299,-766054800,2),(299,-683883000,4),(299,-620812800,2),(299,-189415800,5),(299,567964800,6),(300,-1948782180,1),(300,-1830414600,2),(300,-768646800,3),(300,1439564400,1),(300,1525447800,3),(301,-1577935568,1),(301,76190400,2),(302,-1441167712,1),(302,-1247544000,2),(302,354913200,3),(302,370720800,4),(302,386445600,3),(302,402256800,2),(302,417985200,3),(302,433792800,2),(302,449607600,3),(302,465339600,5),(302,481064400,6),(302,496789200,5),(302,512514000,6),(302,528238800,5),(302,543963600,6),(302,559688400,5),(302,575413200,6),(302,591138000,5),(302,606862800,6),(302,622587600,5),(302,638312400,6),(302,654642000,5),(302,670366800,7),(302,686095200,5),(302,695768400,9),(302,701812800,6),(302,717541200,5),(302,733266000,6),(302,748990800,5),(302,764715600,6),(302,780440400,5),(302,796165200,6),(302,811890000,5),(302,828219600,6),(302,846363600,5),(302,859669200,6),(302,877813200,5),(302,891118800,6),(302,909262800,5),(302,922568400,6),(302,941317200,5),(302,954018000,6),(302,972766800,5),(302,985467600,6),(302,1004216400,5),(302,1017522000,6),(302,1035666000,5),(302,1048971600,6),(302,1067115600,5),(302,1080421200,6),(302,1099170000,9),(303,-1577946287,1),(303,-873268200,2),(303,-778410000,1),(304,-719636812,1),(305,-2004073600,1),(305,-1851577590,2),(305,-852105600,3),(305,-782643600,4),(305,-767869200,2),(305,-718095600,3),(305,-457776000,2),(305,-315648000,3),(305,171820800,2),(306,-2031039048,1),(306,-768560400,3),(306,354891600,2),(306,370699200,3),(306,386427600,2),(306,402235200,3),(306,417963600,2),(306,433771200,3),(306,449586000,2),(306,465318000,4),(306,481042800,5),(306,496767600,4),(306,512492400,5),(306,528217200,4),(306,543942000,5),(306,559666800,4),(306,575391600,5),(306,591116400,4),(306,606841200,5),(306,622566000,4),(306,638290800,5),(306,654620400,4),(306,670345200,6),(306,686073600,7),(306,695750400,4),(306,701794800,5),(306,717519600,4),(306,733244400,5),(306,748969200,4),(306,764694000,5),(306,780418800,4),(306,796143600,5),(306,811868400,4),(306,828198000,5),(306,846342000,4),(306,859647600,6),(306,877795200,7),(306,891100800,6),(306,909244800,7),(306,922550400,6),(306,941299200,7),(306,954000000,6),(306,972748800,7),(306,985449600,6),(306,1004198400,7),(306,1017504000,6),(306,1035648000,7),(306,1048953600,6),(306,1067097600,7),(306,1080403200,6),(306,1099152000,7),(306,1111852800,6),(306,1130601600,7),(306,1143302400,6),(306,1162051200,7),(306,1174752000,6),(306,1193500800,7),(306,1206806400,6),(306,1224950400,7),(306,1238256000,6),(306,1256400000,7),(306,1269705600,6),(306,1288454400,7),(306,1301155200,4),(306,1414249200,7),(306,1459008000,4),(307,-1441168073,1),(307,-1247544000,2),(307,354913200,3),(307,370720800,4),(307,386445600,3),(307,402256800,2),(307,417985200,3),(307,433792800,2),(307,449607600,3),(307,465339600,5),(307,481064400,6),(307,496789200,5),(307,512514000,6),(307,528238800,5),(307,543963600,6),(307,559688400,5),(307,575413200,6),(307,591138000,5),(307,606862800,6),(307,622587600,5),(307,638312400,6),(307,654642000,5),(307,670366800,6),(307,686091600,5),(307,694206000,2),(308,-1948782472,1),(308,-1830414600,2),(308,-767350800,3),(308,-498128400,1),(308,-462702600,4),(308,-451733400,1),(308,-429784200,4),(308,-418296600,1),(308,-399544200,4),(308,-387451800,1),(308,-368094600,4),(308,-356002200,1),(308,-336645000,4),(308,-324552600,1),(308,-305195400,4),(308,-293103000,1),(308,-264933000,3),(308,547578000,5),(308,560883600,3),(308,579027600,5),(308,592333200,3),(309,-933494400,0),(309,-923130000,1),(309,-908784000,0),(309,-891594000,1),(309,515520000,0),(309,527007600,1),(309,545155200,0),(309,558457200,1),(309,576604800,0),(309,589906800,1),(309,608659200,0),(309,621961200,1),(309,640108800,0),(309,653410800,1),(309,671558400,0),(309,684860400,1),(310,-2038200925,1),(310,-1167634800,2),(310,-1073028000,3),(310,-894180000,4),(310,-879665400,5),(310,-767005200,4),(310,378664200,6),(311,-1441188892,1),(311,-1247565600,3),(311,354891600,2),(311,370699200,3),(311,386427600,2),(311,402235200,3),(311,417963600,2),(311,433771200,3),(311,449586000,2),(311,465318000,4),(311,481042800,5),(311,496767600,4),(311,512492400,5),(311,528217200,4),(311,543942000,5),(311,559666800,4),(311,575391600,5),(311,591116400,4),(311,606841200,5),(311,622566000,4),(311,638290800,5),(311,654620400,4),(311,670345200,6),(311,686073600,7),(311,695750400,4),(311,701794800,5),(311,717519600,4),(311,733244400,5),(311,748969200,4),(311,764694000,5),(311,780418800,4),(311,796143600,5),(311,811868400,4),(311,828198000,5),(311,846342000,4),(311,859647600,5),(311,877791600,4),(311,891097200,5),(311,909241200,4),(311,922546800,5),(311,941295600,4),(311,953996400,5),(311,972745200,4),(311,985446000,5),(311,1004194800,4),(311,1017500400,5),(311,1035644400,4),(311,1048950000,5),(311,1067094000,4),(311,1080399600,5),(311,1099148400,4),(311,1111849200,5),(311,1130598000,4),(311,1143298800,5),(311,1162047600,4),(311,1174748400,5),(311,1193497200,4),(311,1206802800,5),(311,1224946800,4),(311,1238252400,5),(311,1256396400,4),(311,1269702000,5),(311,1288450800,4),(311,1301151600,8),(311,1414245600,4),(312,-1017820800,1),(312,-766224000,0),(312,-745833600,2),(312,-733827600,0),(312,-716889600,2),(312,-699613200,0),(312,-683884800,2),(312,-670669200,0),(312,-652348800,2),(312,-639133200,0),(312,-620812800,2),(312,-607597200,0),(312,-589276800,2),(312,-576061200,0),(312,-562924800,2),(312,-541760400,0),(312,-528710400,2),(312,-510224400,0),(312,-497174400,2),(312,-478688400,0),(312,-465638400,2),(312,-449830800,0),(312,-434016000,2),(312,-418208400,0),(312,-402480000,2),(312,-386672400,0),(312,-370944000,2),(312,-355136400,0),(312,-339408000,2),(312,-323600400,0),(312,-302515200,2),(312,-291978000,0),(312,-270979200,2),(312,-260442000,0),(312,133977600,2),(312,149785200,0),(312,165513600,2),(312,181321200,0),(312,299606400,2),(312,307551600,0),(313,-1441168631,1),(313,-1247547600,3),(313,354909600,2),(313,370717200,3),(313,386445600,2),(313,402253200,3),(313,417981600,2),(313,433789200,3),(313,449604000,2),(313,465336000,4),(313,481060800,5),(313,496785600,4),(313,512510400,5),(313,528235200,4),(313,543960000,5),(313,559684800,4),(313,575409600,5),(313,591134400,4),(313,606859200,5),(313,622584000,4),(313,638308800,5),(313,654638400,4),(313,670363200,6),(313,686091600,7),(313,694206000,1),(314,-1441162751,1),(314,-405140400,3),(314,354916800,2),(314,370724400,3),(314,386452800,2),(314,402260400,3),(314,417988800,2),(314,433796400,3),(314,449611200,2),(314,465343200,4),(314,481068000,5),(314,496792800,4),(314,512517600,5),(314,528242400,4),(314,543967200,5),(314,559692000,4),(314,575416800,5),(314,591141600,4),(314,606866400,5),(314,622591200,4),(314,638316000,5),(314,654645600,4),(314,670370400,6),(314,686098800,7),(314,694213200,1),(314,701816400,8),(314,717537600,1),(314,733266000,8),(314,748987200,1),(314,764715600,8),(314,780436800,3),(314,796161600,2),(314,811882800,3),(314,828216000,2),(314,859662000,2),(314,877806000,3),(314,891115200,2),(314,909255600,3),(314,922564800,2),(314,941310000,3),(314,954014400,2),(314,972759600,3),(314,985464000,2),(314,1004209200,3),(314,1017518400,2),(314,1035658800,3),(314,1048968000,2),(314,1067108400,3),(314,1080417600,2),(314,1088276400,8),(314,1099177200,7),(314,1111878000,3),(315,-1704165944,1),(315,-757394744,2),(315,247177800,4),(315,259272000,3),(315,277758000,4),(315,283982400,2),(315,290809800,5),(315,306531000,2),(315,322432200,5),(315,338499000,2),(315,673216200,5),(315,685481400,2),(315,701209800,5),(315,717103800,2),(315,732745800,5),(315,748639800,2),(315,764281800,5),(315,780175800,2),(315,795817800,5),(315,811711800,2),(315,827353800,5),(315,843247800,2),(315,858976200,5),(315,874870200,2),(315,890512200,5),(315,906406200,2),(315,922048200,5),(315,937942200,2),(315,953584200,5),(315,969478200,2),(315,985206600,5),(315,1001100600,2),(315,1016742600,5),(315,1032636600,2),(315,1048278600,5),(315,1064172600,2),(315,1079814600,5),(315,1095708600,2),(315,1111437000,5),(315,1127331000,2),(315,1206045000,5),(315,1221939000,2),(315,1237667400,5),(315,1253561400,2),(315,1269203400,5),(315,1285097400,2),(315,1300739400,5),(315,1316633400,2),(315,1332275400,5),(315,1348169400,2),(315,1363897800,5),(315,1379791800,2),(315,1395433800,5),(315,1411327800,2),(315,1426969800,5),(315,1442863800,2),(315,1458505800,5),(315,1474399800,2),(315,1490128200,5),(315,1506022200,2),(315,1521664200,5),(315,1537558200,2),(315,1553200200,5),(315,1569094200,2),(315,1584736200,5),(315,1600630200,2),(315,1616358600,5),(315,1632252600,2),(315,1647894600,5),(315,1663788600,2),(315,1679430600,5),(315,1695324600,2),(315,1710966600,5),(315,1726860600,2),(315,1742589000,5),(315,1758483000,2),(315,1774125000,5),(315,1790019000,2),(315,1805661000,5),(315,1821555000,2),(315,1837197000,5),(315,1853091000,2),(315,1868733000,5),(315,1884627000,2),(315,1900355400,5),(315,1916249400,2),(315,1931891400,5),(315,1947785400,2),(315,1963427400,5),(315,1979321400,2),(315,1994963400,5),(315,2010857400,2),(315,2026585800,5),(315,2042479800,2),(315,2058121800,5),(315,2074015800,2),(315,2089657800,5),(315,2105551800,2),(315,2121193800,5),(315,2137087800,2),(316,-1641003640,2),(316,-933645600,1),(316,-857358000,2),(316,-844300800,1),(316,-825822000,2),(316,-812685600,1),(316,-794199600,2),(316,-779853600,1),(316,-762656400,2),(316,-748310400,1),(316,-731127600,2),(316,-681962400,3),(316,-673243200,1),(316,-667962000,2),(316,-652327200,1),(316,-636426000,2),(316,-622087200,1),(316,-608947200,2),(316,-591847200,1),(316,-572486400,2),(316,-558576000,1),(316,-542851200,2),(316,-527731200,1),(316,-514425600,2),(316,-490845600,1),(316,-482986800,2),(316,-459475200,1),(316,-451537200,2),(316,-428551200,1),(316,-418262400,2),(316,-400032000,1),(316,-387428400,2),(316,142380000,1),(316,150843600,2),(316,167176800,1),(316,178664400,2),(316,482277600,1),(316,495579600,2),(316,516751200,1),(316,526424400,2),(316,545436000,1),(316,558478800,2),(316,576626400,1),(316,589323600,2),(316,609890400,1),(316,620773200,2),(316,638316000,1),(316,651618000,2),(316,669765600,1),(316,683672400,2),(316,701820000,1),(316,715726800,2),(316,733701600,1),(316,747176400,2),(316,765151200,1),(316,778021200,2),(316,796600800,1),(316,810075600,2),(316,826840800,1),(316,842821200,2),(316,858895200,1),(316,874184400,2),(316,890344800,1),(316,905029200,2),(316,923011200,1),(316,936313200,2),(316,955670400,1),(316,970783200,2),(316,986770800,1),(316,1001282400,2),(316,1017356400,1),(316,1033941600,2),(316,1048806000,1),(316,1065132000,2),(316,1081292400,1),(316,1095804000,2),(316,1112313600,1),(316,1128812400,2),(316,1143763200,1),(316,1159657200,2),(316,1175212800,1),(316,1189897200,2),(316,1206662400,1),(316,1223161200,2),(316,1238112000,1),(316,1254006000,2),(316,1269561600,1),(316,1284246000,2),(316,1301616000,1),(316,1317510000,2),(316,1333065600,1),(316,1348354800,2),(316,1364515200,1),(316,1382828400,2),(316,1395964800,1),(316,1414278000,2),(316,1427414400,1),(316,1445727600,2),(316,1458864000,1),(316,1477782000,2),(316,1490313600,1),(316,1509231600,2),(316,1521763200,1),(316,1540681200,2),(316,1553817600,1),(316,1572130800,2),(316,1585267200,1),(316,1603580400,2),(316,1616716800,1),(316,1635634800,2),(316,1648166400,1),(316,1667084400,2),(316,1679616000,1),(316,1698534000,2),(316,1711670400,1),(316,1729983600,2),(316,1743120000,1),(316,1761433200,2),(316,1774569600,1),(316,1792882800,2),(316,1806019200,1),(316,1824937200,2),(316,1837468800,1),(316,1856386800,2),(316,1868918400,1),(316,1887836400,2),(316,1900972800,1),(316,1919286000,2),(316,1932422400,1),(316,1950735600,2),(316,1963872000,1),(316,1982790000,2),(316,1995321600,1),(316,2014239600,2),(316,2026771200,1),(316,2045689200,2),(316,2058220800,1),(316,2077138800,2),(316,2090275200,1),(316,2108588400,2),(316,2121724800,1),(316,2140038000,2),(317,-706341516,1),(317,560025000,2),(318,-706341516,1),(318,560025000,2),(319,-683802000,0),(319,-672314400,1),(319,-654771600,0),(319,-640864800,1),(319,-620298000,0),(319,-609415200,1),(319,-588848400,0),(319,-577965600,1),(320,-1578807591,1),(320,-1247551200,3),(320,354906000,2),(320,370713600,3),(320,386442000,2),(320,402249600,3),(320,417978000,2),(320,433785600,3),(320,449600400,2),(320,465332400,4),(320,481057200,5),(320,496782000,4),(320,512506800,5),(320,528231600,4),(320,543956400,5),(320,559681200,4),(320,575406000,5),(320,591130800,4),(320,606855600,5),(320,622580400,4),(320,638305200,5),(320,654634800,4),(320,670359600,6),(320,686088000,7),(320,695764800,4),(320,701809200,5),(320,717534000,4),(320,733258800,5),(320,748983600,4),(320,764708400,5),(320,780433200,4),(320,796158000,5),(320,811882800,4),(320,828212400,5),(320,846356400,4),(320,859662000,5),(320,877806000,4),(320,891111600,5),(320,909255600,4),(320,922561200,5),(320,941310000,4),(320,954010800,5),(320,972759600,4),(320,985460400,5),(320,1004209200,4),(320,1017514800,5),(320,1020193200,8),(320,1035662400,7),(320,1048968000,6),(320,1067112000,7),(320,1080417600,6),(320,1099166400,7),(320,1111867200,6),(320,1130616000,7),(320,1143316800,6),(320,1162065600,7),(320,1174766400,6),(320,1193515200,7),(320,1206820800,6),(320,1224964800,7),(320,1238270400,6),(320,1256414400,7),(320,1269720000,6),(320,1288468800,7),(320,1301169600,4),(320,1414263600,7),(320,1464465600,4),(321,-1577951856,1),(321,-1172908656,2),(321,-880272000,3),(321,-766054800,4),(322,-2032931252,1),(322,252435600,3),(322,417974400,2),(322,433782000,3),(322,449596800,2),(322,465318000,3),(322,481046400,2),(322,496767600,3),(322,512496000,2),(322,528217200,3),(322,543945600,2),(322,559666800,3),(322,575395200,2),(322,591116400,3),(322,606844800,2),(322,622566000,3),(322,638294400,2),(322,654620400,3),(322,670348800,2),(322,686070000,3),(322,701798400,2),(322,717519600,3),(322,733248000,2),(322,748969200,3),(322,764697600,2),(322,780418800,3),(322,796147200,2),(322,811868400,3),(322,828201600,2),(322,843922800,3),(322,859651200,2),(322,875372400,3),(322,891100800,2),(322,906822000,3),(322,988394400,2),(322,1001696400,3),(322,1017424800,2),(322,1033146000,3),(322,1048874400,2),(322,1064595600,3),(322,1080324000,2),(322,1096045200,3),(322,1111773600,2),(322,1127494800,3),(322,1143223200,2),(322,1159549200,3),(322,1427479200,2),(322,1443193200,3),(322,1458928800,2),(322,1474642800,3),(323,-2032931252,1),(323,252435600,3),(323,417974400,2),(323,433782000,3),(323,449596800,2),(323,465318000,3),(323,481046400,2),(323,496767600,3),(323,512496000,2),(323,528217200,3),(323,543945600,2),(323,559666800,3),(323,575395200,2),(323,591116400,3),(323,606844800,2),(323,622566000,3),(323,638294400,2),(323,654620400,3),(323,670348800,2),(323,686070000,3),(323,701798400,2),(323,717519600,3),(323,733248000,2),(323,748969200,3),(323,764697600,2),(323,780418800,3),(323,796147200,2),(323,811868400,3),(323,828201600,2),(323,843922800,3),(323,859651200,2),(323,875372400,3),(323,891100800,2),(323,906822000,3),(323,988394400,2),(323,1001696400,3),(323,1017424800,2),(323,1033146000,3),(323,1048874400,2),(323,1064595600,3),(323,1080324000,2),(323,1096045200,3),(323,1111773600,2),(323,1127494800,3),(323,1143223200,2),(323,1159549200,3),(323,1427479200,2),(323,1443193200,3),(323,1458928800,2),(323,1474642800,3),(324,-1325483420,1),(325,-1579426374,1),(325,-1247558400,2),(325,354898800,4),(325,370699200,3),(325,386427600,4),(325,402235200,3),(325,417963600,4),(325,433771200,3),(325,449586000,4),(325,465318000,5),(325,481042800,6),(325,496767600,5),(325,512492400,6),(325,528217200,5),(325,543942000,6),(325,559666800,5),(325,575391600,6),(325,591116400,5),(325,606841200,6),(325,622566000,5),(325,638290800,6),(325,654620400,5),(325,670345200,7),(325,686073600,8),(325,695750400,5),(325,701794800,6),(325,717519600,5),(325,733244400,6),(325,748969200,5),(325,764694000,6),(325,780418800,5),(325,796143600,6),(325,811868400,5),(325,828198000,6),(325,846342000,5),(325,859647600,6),(325,877791600,5),(325,891097200,6),(325,909241200,5),(325,922546800,6),(325,941295600,5),(325,953996400,6),(325,972745200,5),(325,985446000,6),(325,1004194800,5),(325,1017500400,6),(325,1035644400,5),(325,1048950000,6),(325,1067094000,5),(325,1080399600,6),(325,1099148400,5),(325,1111849200,6),(325,1130598000,5),(325,1143298800,6),(325,1162047600,5),(325,1174748400,6),(325,1193497200,5),(325,1206802800,6),(325,1224946800,5),(325,1238252400,6),(325,1256396400,5),(325,1269702000,6),(325,1288450800,5),(325,1301151600,9),(325,1315828800,5),(325,1414249200,8),(326,-1570084924,1),(327,-1487321251,1),(327,-1247562000,3),(327,354895200,2),(327,370702800,3),(327,386431200,2),(327,402238800,3),(327,417967200,2),(327,433774800,3),(327,449589600,2),(327,465321600,4),(327,481046400,5),(327,496771200,4),(327,512496000,5),(327,528220800,4),(327,543945600,5),(327,559670400,4),(327,575395200,5),(327,591120000,4),(327,606844800,5),(327,622569600,4),(327,638294400,5),(327,654624000,4),(327,670348800,6),(327,686077200,7),(327,695754000,4),(327,701798400,5),(327,717523200,4),(327,733248000,5),(327,748972800,4),(327,764697600,5),(327,780422400,4),(327,796147200,5),(327,811872000,4),(327,828201600,5),(327,846345600,4),(327,859651200,5),(327,877795200,4),(327,891100800,5),(327,909244800,4),(327,922550400,5),(327,941299200,4),(327,954000000,5),(327,972748800,4),(327,985449600,5),(327,1004198400,4),(327,1017504000,5),(327,1035648000,4),(327,1048953600,5),(327,1067097600,4),(327,1080403200,5),(327,1099152000,4),(327,1111852800,5),(327,1130601600,4),(327,1143302400,5),(327,1162051200,4),(327,1174752000,5),(327,1193500800,4),(327,1206806400,5),(327,1224950400,4),(327,1238256000,5),(327,1256400000,4),(327,1269705600,5),(327,1288454400,4),(327,1301155200,8),(327,1414249200,4),(328,-1579423138,1),(328,-1247558400,3),(328,354898800,2),(328,370706400,3),(328,386434800,2),(328,402242400,3),(328,417970800,2),(328,433778400,3),(328,449593200,2),(328,465325200,4),(328,481050000,5),(328,496774800,4),(328,512499600,5),(328,528224400,4),(328,543949200,5),(328,559674000,4),(328,575398800,5),(328,591123600,4),(328,606848400,5),(328,622573200,4),(328,638298000,5),(328,654627600,4),(328,670352400,6),(328,686080800,7),(328,695757600,4),(328,701802000,5),(328,717526800,4),(328,733251600,5),(328,748976400,4),(328,764701200,5),(328,780426000,4),(328,796150800,5),(328,811875600,4),(328,828205200,5),(328,846349200,4),(328,859654800,5),(328,877798800,4),(328,891104400,5),(328,909248400,4),(328,922554000,5),(328,941302800,4),(328,954003600,5),(328,972752400,4),(328,985453200,5),(328,1004202000,4),(328,1017507600,5),(328,1035651600,4),(328,1048957200,5),(328,1067101200,4),(328,1080406800,5),(328,1099155600,4),(328,1111856400,5),(328,1130605200,4),(328,1143306000,5),(328,1162054800,4),(328,1174755600,5),(328,1193504400,4),(328,1206810000,5),(328,1224954000,4),(328,1238259600,5),(328,1256403600,4),(328,1269709200,5),(328,1288458000,4),(328,1301158800,8),(328,1414252800,4),(329,-1577946287,1),(329,-873268200,2),(329,-778410000,1),(330,-1688270553,1),(330,-1592610305,2),(330,-1247544000,4),(330,354913200,3),(330,370720800,4),(330,386449200,3),(330,402256800,4),(330,417985200,3),(330,433792800,4),(330,449607600,3),(330,465339600,5),(330,481064400,6),(330,496789200,5),(330,512514000,6),(330,528238800,5),(330,543963600,6),(330,559688400,5),(330,575413200,6),(330,591138000,5),(330,606862800,6),(330,622587600,5),(330,638312400,6),(330,654642000,5),(330,670366800,7),(330,686095200,8),(330,695772000,5),(330,701816400,6),(330,717541200,5),(330,733266000,6),(330,748990800,5),(330,764715600,6),(330,780440400,5),(330,796165200,6),(330,811890000,5),(330,828219600,6),(330,846363600,5),(330,859669200,6),(330,877813200,5),(330,891118800,6),(330,909262800,5),(330,922568400,6),(330,941317200,5),(330,954018000,6),(330,972766800,5),(330,985467600,6),(330,1004216400,5),(330,1017522000,6),(330,1035666000,5),(330,1048971600,6),(330,1067115600,5),(330,1080421200,6),(330,1099170000,5),(330,1111870800,6),(330,1130619600,5),(330,1143320400,6),(330,1162069200,5),(330,1174770000,6),(330,1193518800,5),(330,1206824400,6),(330,1224968400,5),(330,1238274000,6),(330,1256418000,5),(330,1269723600,6),(330,1288472400,5),(330,1301173200,9),(330,1414267200,5),(331,-1441162680,1),(331,-405140400,3),(331,354916800,2),(331,370724400,3),(331,386452800,2),(331,402260400,3),(331,417988800,2),(331,433796400,3),(331,449611200,2),(331,465343200,4),(331,481068000,5),(331,496792800,4),(331,512517600,5),(331,528242400,4),(331,543967200,5),(331,559692000,4),(331,575416800,5),(331,591141600,4),(331,606866400,5),(331,622591200,4),(331,638316000,5),(331,654645600,4),(331,670370400,6),(331,686098800,7),(331,701823600,6),(331,717548400,7),(331,733273200,6),(331,748998000,7),(331,764722800,6),(331,780447600,7),(331,796172400,6),(331,811897200,4),(331,852062400,3),(331,859672800,5),(331,877816800,4),(331,891122400,5),(331,909266400,4),(331,922572000,5),(331,941320800,4),(331,954021600,5),(331,972770400,4),(331,985471200,5),(331,1004220000,4),(331,1017525600,5),(331,1035669600,4),(331,1048975200,5),(331,1067119200,4),(331,1080424800,5),(331,1099173600,4),(331,1111874400,5),(331,1130623200,4),(331,1143324000,5),(331,1162072800,4),(331,1174773600,5),(331,1193522400,4),(331,1206828000,5),(331,1224972000,4),(331,1238277600,5),(331,1256421600,4),(331,1269727200,5),(331,1288476000,4),(331,1293825600,3),(331,1301176800,5),(331,1319925600,4),(332,-1830376800,5),(332,-1689548400,1),(332,-1677794400,2),(332,-1667430000,3),(332,-1647730800,4),(332,-1635807600,3),(332,-1616194800,4),(332,-1604358000,3),(332,-1584658800,4),(332,-1572735600,3),(332,-1553036400,4),(332,-1541199600,3),(332,-1521500400,4),(332,-1442444400,3),(332,-1426806000,4),(332,-1379286000,3),(332,-1364770800,4),(332,-1348441200,3),(332,-1333321200,4),(332,-1316386800,3),(332,-1301266800,4),(332,-1284332400,3),(332,-1269817200,4),(332,-1221433200,3),(332,-1206918000,4),(332,-1191193200,3),(332,-1175468400,4),(332,-1127689200,3),(332,-1111964400,4),(332,-1096844400,3),(332,-1080514800,4),(332,-1063580400,3),(332,-1049065200,4),(332,-1033340400,3),(332,-1017615600,4),(332,-1002495600,3),(332,-986166000,4),(332,-969231600,3),(332,-950482800,4),(332,-942015600,3),(332,-922662000,4),(332,-906937200,3),(332,-891126000,4),(332,-877302000,3),(332,-873676800,6),(332,-864000000,3),(332,-857948400,4),(332,-845852400,3),(332,-842832000,6),(332,-831340800,3),(332,-825894000,4),(332,-814402800,3),(332,-810777600,6),(332,-799891200,3),(332,-794444400,4),(332,-782953200,3),(332,-779328000,6),(332,-768441600,3),(332,-762994800,4),(332,-749084400,3),(332,-733359600,4),(332,-717624000,3),(332,-701899200,4),(332,-686174400,3),(332,-670449600,4),(332,-654724800,3),(332,-639000000,4),(332,-591825600,3),(332,-575496000,4),(332,-559771200,3),(332,-544046400,4),(332,-528321600,3),(332,-512596800,4),(332,-496872000,3),(332,-481147200,4),(332,-465422400,3),(332,-449697600,4),(332,-433972800,3),(332,-417643200,4),(332,-401918400,3),(332,-386193600,4),(332,-370468800,3),(332,-354744000,4),(332,-339019200,3),(332,-323294400,4),(332,-307569600,3),(332,-291844800,4),(332,-276120000,3),(332,-260395200,4),(332,-244670400,3),(332,-228340800,4),(332,-212616000,3),(332,-196891200,4),(332,-181166400,3),(332,-165441600,4),(332,-149716800,3),(332,-133992000,4),(332,-118267200,8),(332,228272400,6),(332,243997200,7),(332,260326800,6),(332,276051600,7),(332,291776400,6),(332,307504800,7),(332,323226000,6),(332,338954400,7),(332,354679200,6),(332,370404000,7),(332,386128800,6),(332,401853600,7),(332,417582000,6),(332,433303200,7),(332,449028000,6),(332,465357600,7),(332,481082400,6),(332,496807200,7),(332,512532000,6),(332,528256800,7),(332,543981600,6),(332,559706400,7),(332,575431200,6),(332,591156000,7),(332,606880800,6),(332,622605600,7),(332,638330400,6),(332,654660000,7),(332,670384800,6),(332,686109600,7),(332,701834400,6),(332,717559200,9),(332,733280400,10),(332,749005200,11),(332,764730000,10),(332,780454800,11),(332,796179600,10),(332,811904400,11),(332,828234000,10),(332,846378000,11),(332,859683600,10),(332,877827600,11),(332,891133200,10),(332,909277200,11),(332,922582800,10),(332,941331600,11),(332,954032400,10),(332,972781200,11),(332,985482000,10),(332,1004230800,11),(332,1017536400,10),(332,1035680400,11),(332,1048986000,10),(332,1067130000,11),(332,1080435600,10),(332,1099184400,11),(332,1111885200,10),(332,1130634000,11),(332,1143334800,10),(332,1162083600,11),(332,1174784400,10),(332,1193533200,11),(332,1206838800,10),(332,1224982800,11),(332,1238288400,10),(332,1256432400,11),(332,1269738000,10),(332,1288486800,11),(332,1301187600,10),(332,1319936400,11),(332,1332637200,10),(332,1351386000,11),(332,1364691600,10),(332,1382835600,11),(332,1396141200,10),(332,1414285200,11),(332,1427590800,10),(332,1445734800,11),(332,1459040400,10),(332,1477789200,11),(332,1490490000,10),(332,1509238800,11),(332,1521939600,10),(332,1540688400,11),(332,1553994000,10),(332,1572138000,11),(332,1585443600,10),(332,1603587600,11),(332,1616893200,10),(332,1635642000,11),(332,1648342800,10),(332,1667091600,11),(332,1679792400,10),(332,1698541200,11),(332,1711846800,10),(332,1729990800,11),(332,1743296400,10),(332,1761440400,11),(332,1774746000,10),(332,1792890000,11),(332,1806195600,10),(332,1824944400,11),(332,1837645200,10),(332,1856394000,11),(332,1869094800,10),(332,1887843600,11),(332,1901149200,10),(332,1919293200,11),(332,1932598800,10),(332,1950742800,11),(332,1964048400,10),(332,1982797200,11),(332,1995498000,10),(332,2014246800,11),(332,2026947600,10),(332,2045696400,11),(332,2058397200,10),(332,2077146000,11),(332,2090451600,10),(332,2108595600,11),(332,2121901200,10),(332,2140045200,11),(333,-1262281242,1),(333,136360800,2),(333,152082000,1),(333,167810400,2),(333,183531600,1),(333,199260000,2),(333,215586000,1),(333,230709600,2),(333,247035600,1),(333,262764000,2),(333,278485200,1),(333,294213600,2),(333,309934800,1),(333,325663200,2),(333,341384400,1),(333,357112800,2),(333,372834000,1),(333,388562400,2),(333,404888400,1),(333,420012000,2),(333,436338000,1),(333,452066400,2),(333,467787600,1),(333,483516000,2),(333,499237200,1),(333,514965600,2),(333,530686800,1),(333,544600800,2),(333,562136400,1),(333,576050400,2),(333,594190800,1),(333,607500000,2),(333,625640400,1),(333,638949600,2),(333,657090000,1),(333,671004000,2),(333,688539600,1),(333,702453600,2),(333,719989200,1),(333,733903200,2),(333,752043600,1),(333,765352800,2),(333,783493200,1),(333,796802400,2),(333,814942800,1),(333,828856800,2),(333,846392400,1),(333,860306400,2),(333,877842000,1),(333,891756000,2),(333,909291600,1),(333,923205600,2),(333,941346000,1),(333,954655200,2),(333,972795600,1),(333,986104800,2),(333,1004245200,1),(333,1018159200,2),(333,1035694800,1),(333,1049608800,2),(333,1067144400,1),(333,1081058400,2),(333,1099198800,1),(333,1112508000,2),(333,1130648400,1),(333,1143957600,2),(333,1162098000,1),(333,1173592800,2),(333,1194152400,1),(333,1205042400,2),(333,1225602000,1),(333,1236492000,2),(333,1257051600,1),(333,1268546400,2),(333,1289106000,1),(333,1299996000,2),(333,1320555600,1),(333,1331445600,2),(333,1352005200,1),(333,1362895200,2),(333,1383454800,1),(333,1394344800,2),(333,1414904400,1),(333,1425794400,2),(333,1446354000,1),(333,1457848800,2),(333,1478408400,1),(333,1489298400,2),(333,1509858000,1),(333,1520748000,2),(333,1541307600,1),(333,1552197600,2),(333,1572757200,1),(333,1583647200,2),(333,1604206800,1),(333,1615701600,2),(333,1636261200,1),(333,1647151200,2),(333,1667710800,1),(333,1678600800,2),(333,1699160400,1),(333,1710050400,2),(333,1730610000,1),(333,1741500000,2),(333,1762059600,1),(333,1772949600,2),(333,1793509200,1),(333,1805004000,2),(333,1825563600,1),(333,1836453600,2),(333,1857013200,1),(333,1867903200,2),(333,1888462800,1),(333,1899352800,2),(333,1919912400,1),(333,1930802400,2),(333,1951362000,1),(333,1962856800,2),(333,1983416400,1),(333,1994306400,2),(333,2014866000,1),(333,2025756000,2),(333,2046315600,1),(333,2057205600,2),(333,2077765200,1),(333,2088655200,2),(333,2109214800,1),(333,2120104800,2),(333,2140664400,1),(334,-1509663504,1),(334,-733874400,2),(334,323827200,3),(334,338950800,4),(334,354675600,5),(334,370400400,4),(334,386125200,5),(334,401850000,4),(334,417574800,5),(334,433299600,4),(334,449024400,5),(334,465354000,4),(334,481078800,5),(334,496803600,4),(334,512528400,5),(334,528253200,4),(334,543978000,5),(334,559702800,4),(334,575427600,5),(334,591152400,4),(334,606877200,5),(334,622602000,4),(334,638326800,5),(334,654656400,4),(334,670381200,5),(334,686106000,4),(334,701830800,5),(334,717555600,4),(334,733280400,5),(334,749005200,4),(334,764730000,5),(334,780454800,4),(334,796179600,5),(334,811904400,4),(334,828234000,5),(334,846378000,4),(334,859683600,5),(334,877827600,4),(334,891133200,5),(334,909277200,4),(334,922582800,5),(334,941331600,4),(334,954032400,5),(334,972781200,4),(334,985482000,5),(334,1004230800,4),(334,1017536400,5),(334,1035680400,4),(334,1048986000,5),(334,1067130000,4),(334,1080435600,5),(334,1099184400,4),(334,1111885200,5),(334,1130634000,4),(334,1143334800,5),(334,1162083600,4),(334,1174784400,5),(334,1193533200,4),(334,1206838800,5),(334,1224982800,4),(334,1238288400,5),(334,1256432400,4),(334,1269738000,5),(334,1288486800,4),(334,1301187600,5),(334,1319936400,4),(334,1332637200,5),(334,1351386000,4),(334,1364691600,5),(334,1382835600,4),(334,1396141200,5),(334,1414285200,4),(334,1427590800,5),(334,1445734800,4),(334,1459040400,5),(334,1477789200,4),(334,1490490000,5),(334,1509238800,4),(334,1521939600,5),(334,1540688400,4),(334,1553994000,5),(334,1572138000,4),(334,1585443600,5),(334,1603587600,4),(334,1616893200,5),(334,1635642000,4),(334,1648342800,5),(334,1667091600,4),(334,1679792400,5),(334,1698541200,4),(334,1711846800,5),(334,1729990800,4),(334,1743296400,5),(334,1761440400,4),(334,1774746000,5),(334,1792890000,4),(334,1806195600,5),(334,1824944400,4),(334,1837645200,5),(334,1856394000,4),(334,1869094800,5),(334,1887843600,4),(334,1901149200,5),(334,1919293200,4),(334,1932598800,5),(334,1950742800,4),(334,1964048400,5),(334,1982797200,4),(334,1995498000,5),(334,2014246800,4),(334,2026947600,5),(334,2045696400,4),(334,2058397200,5),(334,2077146000,4),(334,2090451600,5),(334,2108595600,4),(334,2121901200,5),(334,2140045200,4),(335,-1830376800,1),(335,-862610400,2),(335,-764118000,3),(335,186120000,4),(336,-1955748776,1),(336,354675600,2),(336,370400400,3),(336,386125200,2),(336,401850000,3),(336,417574800,2),(336,433299600,3),(336,449024400,2),(336,465354000,3),(336,481078800,2),(336,496803600,3),(336,512528400,2),(336,528253200,3),(336,543978000,2),(336,559702800,3),(336,575427600,2),(336,591152400,3),(336,606877200,2),(336,622602000,3),(336,638326800,2),(336,654656400,3),(336,670381200,2),(336,686106000,3),(336,701830800,2),(336,717555600,3),(336,733280400,2),(336,749005200,3),(336,764730000,2),(336,780454800,3),(336,796179600,2),(336,811904400,3),(336,828234000,2),(336,846378000,3),(336,859683600,2),(336,877827600,3),(336,891133200,2),(336,909277200,3),(336,922582800,2),(336,941331600,3),(336,954032400,2),(336,972781200,3),(336,985482000,2),(336,1004230800,3),(336,1017536400,2),(336,1035680400,3),(336,1048986000,2),(336,1067130000,3),(336,1080435600,2),(336,1099184400,3),(336,1111885200,2),(336,1130634000,3),(336,1143334800,2),(336,1162083600,3),(336,1174784400,2),(336,1193533200,3),(336,1206838800,2),(336,1224982800,3),(336,1238288400,2),(336,1256432400,3),(336,1269738000,2),(336,1288486800,3),(336,1301187600,2),(336,1319936400,3),(336,1332637200,2),(336,1351386000,3),(336,1364691600,2),(336,1382835600,3),(336,1396141200,2),(336,1414285200,3),(336,1427590800,2),(336,1445734800,3),(336,1459040400,2),(336,1477789200,3),(336,1490490000,2),(336,1509238800,3),(336,1521939600,2),(336,1540688400,3),(336,1553994000,2),(336,1572138000,3),(336,1585443600,2),(336,1603587600,3),(336,1616893200,2),(336,1635642000,3),(336,1648342800,2),(336,1667091600,3),(336,1679792400,2),(336,1698541200,3),(336,1711846800,2),(336,1729990800,3),(336,1743296400,2),(336,1761440400,3),(336,1774746000,2),(336,1792890000,3),(336,1806195600,2),(336,1824944400,3),(336,1837645200,2),(336,1856394000,3),(336,1869094800,2),(336,1887843600,3),(336,1901149200,2),(336,1919293200,3),(336,1932598800,2),(336,1950742800,3),(336,1964048400,2),(336,1982797200,3),(336,1995498000,2),(336,2014246800,3),(336,2026947600,2),(336,2045696400,3),(336,2058397200,2),(336,2077146000,3),(336,2090451600,2),(336,2108595600,3),(336,2121901200,2),(336,2140045200,3),(337,-1955748776,1),(337,354675600,2),(337,370400400,3),(337,386125200,2),(337,401850000,3),(337,417574800,2),(337,433299600,3),(337,449024400,2),(337,465354000,3),(337,481078800,2),(337,496803600,3),(337,512528400,2),(337,528253200,3),(337,543978000,2),(337,559702800,3),(337,575427600,2),(337,591152400,3),(337,606877200,2),(337,622602000,3),(337,638326800,2),(337,654656400,3),(337,670381200,2),(337,686106000,3),(337,701830800,2),(337,717555600,3),(337,733280400,2),(337,749005200,3),(337,764730000,2),(337,780454800,3),(337,796179600,2),(337,811904400,3),(337,828234000,2),(337,846378000,3),(337,859683600,2),(337,877827600,3),(337,891133200,2),(337,909277200,3),(337,922582800,2),(337,941331600,3),(337,954032400,2),(337,972781200,3),(337,985482000,2),(337,1004230800,3),(337,1017536400,2),(337,1035680400,3),(337,1048986000,2),(337,1067130000,3),(337,1080435600,2),(337,1099184400,3),(337,1111885200,2),(337,1130634000,3),(337,1143334800,2),(337,1162083600,3),(337,1174784400,2),(337,1193533200,3),(337,1206838800,2),(337,1224982800,3),(337,1238288400,2),(337,1256432400,3),(337,1269738000,2),(337,1288486800,3),(337,1301187600,2),(337,1319936400,3),(337,1332637200,2),(337,1351386000,3),(337,1364691600,2),(337,1382835600,3),(337,1396141200,2),(337,1414285200,3),(337,1427590800,2),(337,1445734800,3),(337,1459040400,2),(337,1477789200,3),(337,1490490000,2),(337,1509238800,3),(337,1521939600,2),(337,1540688400,3),(337,1553994000,2),(337,1572138000,3),(337,1585443600,2),(337,1603587600,3),(337,1616893200,2),(337,1635642000,3),(337,1648342800,2),(337,1667091600,3),(337,1679792400,2),(337,1698541200,3),(337,1711846800,2),(337,1729990800,3),(337,1743296400,2),(337,1761440400,3),(337,1774746000,2),(337,1792890000,3),(337,1806195600,2),(337,1824944400,3),(337,1837645200,2),(337,1856394000,3),(337,1869094800,2),(337,1887843600,3),(337,1901149200,2),(337,1919293200,3),(337,1932598800,2),(337,1950742800,3),(337,1964048400,2),(337,1982797200,3),(337,1995498000,2),(337,2014246800,3),(337,2026947600,2),(337,2045696400,3),(337,2058397200,2),(337,2077146000,3),(337,2090451600,2),(337,2108595600,3),(337,2121901200,2),(337,2140045200,3),(338,-1691884800,0),(338,-1680573600,1),(338,-927511200,0),(338,-857257200,2),(338,-844556400,3),(338,-828226800,2),(338,-812502000,3),(338,-796777200,2),(338,-781052400,3),(338,-765327600,2),(338,-340844400,3),(338,-324514800,2),(338,-308790000,3),(338,-293065200,2),(338,-277340400,3),(338,-261615600,2),(338,-245890800,3),(338,-230166000,2),(338,-214441200,3),(338,-198716400,2),(338,-182991600,3),(338,-166662000,2),(338,-147913200,3),(338,-135212400,2),(338,315529200,1),(338,323830800,4),(338,338950800,5),(338,354675600,4),(338,370400400,5),(338,386125200,4),(338,401850000,5),(338,417574800,4),(338,433299600,5),(338,449024400,4),(338,465354000,5),(338,481078800,4),(338,496803600,5),(338,512528400,4),(338,528253200,5),(338,543978000,4),(338,559702800,5),(338,575427600,4),(338,591152400,5),(338,606877200,4),(338,622602000,5),(338,638326800,4),(338,654656400,5),(338,670381200,4),(338,686106000,5),(338,701830800,4),(338,717555600,5),(338,733280400,4),(338,749005200,5),(338,764730000,4),(338,780454800,5),(338,796179600,4),(338,811904400,5),(338,828234000,4),(338,846378000,5),(338,859683600,4),(338,877827600,5),(338,891133200,4),(338,909277200,5),(338,922582800,4),(338,941331600,5),(338,954032400,4),(338,972781200,5),(338,985482000,4),(338,1004230800,5),(338,1017536400,4),(338,1035680400,5),(338,1048986000,4),(338,1067130000,5),(338,1080435600,4),(338,1099184400,5),(338,1111885200,4),(338,1130634000,5),(338,1143334800,4),(338,1162083600,5),(338,1174784400,4),(338,1193533200,5),(338,1206838800,4),(338,1224982800,5),(338,1238288400,4),(338,1256432400,5),(338,1269738000,4),(338,1288486800,5),(338,1301187600,4),(338,1319936400,5),(338,1332637200,4),(338,1351386000,5),(338,1364691600,4),(338,1382835600,5),(338,1396141200,4),(338,1414285200,5),(338,1427590800,4),(338,1445734800,5),(338,1459040400,4),(338,1477789200,5),(338,1490490000,4),(338,1509238800,5),(338,1521939600,4),(338,1540688400,5),(338,1553994000,4),(338,1572138000,5),(338,1585443600,4),(338,1603587600,5),(338,1616893200,4),(338,1635642000,5),(338,1648342800,4),(338,1667091600,5),(338,1679792400,4),(338,1698541200,5),(338,1711846800,4),(338,1729990800,5),(338,1743296400,4),(338,1761440400,5),(338,1774746000,4),(338,1792890000,5),(338,1806195600,4),(338,1824944400,5),(338,1837645200,4),(338,1856394000,5),(338,1869094800,4),(338,1887843600,5),(338,1901149200,4),(338,1919293200,5),(338,1932598800,4),(338,1950742800,5),(338,1964048400,4),(338,1982797200,5),(338,1995498000,4),(338,2014246800,5),(338,2026947600,4),(338,2045696400,5),(338,2058397200,4),(338,2077146000,5),(338,2090451600,4),(338,2108595600,5),(338,2121901200,4),(338,2140045200,5),(339,-1830380400,5),(339,-1689552000,1),(339,-1677798000,2),(339,-1667433600,3),(339,-1647734400,4),(339,-1635811200,3),(339,-1616198400,4),(339,-1604361600,3),(339,-1584662400,4),(339,-1572739200,3),(339,-1553040000,4),(339,-1541203200,3),(339,-1521504000,4),(339,-1442448000,3),(339,-1426809600,4),(339,-1379289600,3),(339,-1364774400,4),(339,-1348444800,3),(339,-1333324800,4),(339,-1316390400,3),(339,-1301270400,4),(339,-1284336000,3),(339,-1269820800,4),(339,-1221436800,3),(339,-1206921600,4),(339,-1191196800,3),(339,-1175472000,4),(339,-1127692800,3),(339,-1111968000,4),(339,-1096848000,3),(339,-1080518400,4),(339,-1063584000,3),(339,-1049068800,4),(339,-1033344000,3),(339,-1017619200,4),(339,-1002499200,3),(339,-986169600,4),(339,-969235200,3),(339,-950486400,4),(339,-942019200,3),(339,-922665600,4),(339,-906940800,3),(339,-891129600,4),(339,-877305600,3),(339,-873680400,6),(339,-864003600,3),(339,-857952000,4),(339,-845856000,3),(339,-842835600,6),(339,-831344400,3),(339,-825897600,4),(339,-814406400,3),(339,-810781200,6),(339,-799894800,3),(339,-794448000,4),(339,-782956800,3),(339,-779331600,6),(339,-768445200,3),(339,-762998400,4),(339,-749088000,3),(339,-733363200,4),(339,-717627600,3),(339,-701902800,4),(339,-686178000,3),(339,-670453200,4),(339,-654728400,3),(339,-639003600,4),(339,-591829200,3),(339,-575499600,4),(339,-559774800,3),(339,-544050000,4),(339,-528325200,3),(339,-512600400,4),(339,-496875600,3),(339,-481150800,4),(339,-465426000,3),(339,-449701200,4),(339,-433976400,3),(339,-417646800,4),(339,-401922000,3),(339,-386197200,4),(339,-370472400,3),(339,-354747600,4),(339,-339022800,3),(339,-323298000,4),(339,-307573200,3),(339,-291848400,4),(339,-276123600,3),(339,-260398800,4),(339,-244674000,3),(339,-228344400,4),(339,-212619600,3),(339,-196894800,4),(339,-181170000,3),(339,-165445200,4),(339,-149720400,3),(339,-133995600,4),(339,-118270800,9),(339,228268800,7),(339,243993600,8),(339,260323200,7),(339,276048000,8),(339,291772800,7),(339,307501200,8),(339,323222400,7),(339,338950800,8),(339,354675600,7),(339,370400400,8),(339,386125200,7),(339,401850000,8),(339,417578400,7),(339,433299600,10),(339,449024400,11),(339,465354000,10),(339,481078800,11),(339,496803600,10),(339,512528400,11),(339,528253200,10),(339,543978000,11),(339,559702800,10),(339,575427600,11),(339,591152400,10),(339,606877200,11),(339,622602000,10),(339,638326800,11),(339,654656400,10),(339,670381200,11),(339,686106000,10),(339,701830800,11),(339,717555600,10),(339,733280400,11),(339,749005200,10),(339,764730000,11),(339,780454800,10),(339,796179600,11),(339,811904400,10),(339,828234000,11),(339,846378000,10),(339,859683600,11),(339,877827600,10),(339,891133200,11),(339,909277200,10),(339,922582800,11),(339,941331600,10),(339,954032400,11),(339,972781200,10),(339,985482000,11),(339,1004230800,10),(339,1017536400,11),(339,1035680400,10),(339,1048986000,11),(339,1067130000,10),(339,1080435600,11),(339,1099184400,10),(339,1111885200,11),(339,1130634000,10),(339,1143334800,11),(339,1162083600,10),(339,1174784400,11),(339,1193533200,10),(339,1206838800,11),(339,1224982800,10),(339,1238288400,11),(339,1256432400,10),(339,1269738000,11),(339,1288486800,10),(339,1301187600,11),(339,1319936400,10),(339,1332637200,11),(339,1351386000,10),(339,1364691600,11),(339,1382835600,10),(339,1396141200,11),(339,1414285200,10),(339,1427590800,11),(339,1445734800,10),(339,1459040400,11),(339,1477789200,10),(339,1490490000,11),(339,1509238800,10),(339,1521939600,11),(339,1540688400,10),(339,1553994000,11),(339,1572138000,10),(339,1585443600,11),(339,1603587600,10),(339,1616893200,11),(339,1635642000,10),(339,1648342800,11),(339,1667091600,10),(339,1679792400,11),(339,1698541200,10),(339,1711846800,11),(339,1729990800,10),(339,1743296400,11),(339,1761440400,10),(339,1774746000,11),(339,1792890000,10),(339,1806195600,11),(339,1824944400,10),(339,1837645200,11),(339,1856394000,10),(339,1869094800,11),(339,1887843600,10),(339,1901149200,11),(339,1919293200,10),(339,1932598800,11),(339,1950742800,10),(339,1964048400,11),(339,1982797200,10),(339,1995498000,11),(339,2014246800,10),(339,2026947600,11),(339,2045696400,10),(339,2058397200,11),(339,2077146000,10),(339,2090451600,11),(339,2108595600,10),(339,2121901200,11),(339,2140045200,10),(340,-1956609120,2),(340,-1668211200,1),(340,-1647212400,2),(340,-1636675200,1),(340,-1613430000,2),(340,-1605139200,1),(340,-1581894000,2),(340,-1539561600,1),(340,-1531350000,2),(340,-968025600,1),(340,-952293600,2),(340,-942008400,1),(340,-920239200,3),(340,-909957600,4),(340,-888789600,3),(340,-877903200,4),(340,-857944800,3),(340,-846453600,4),(340,-826495200,3),(340,-815004000,4),(340,-795045600,3),(340,-783554400,4),(340,-762991200,3),(340,-752104800,4),(340,-731541600,3),(340,-717631200,4),(340,-700092000,3),(340,-686181600,4),(340,-668642400,3),(340,-654732000,4),(340,-636588000,3),(340,-623282400,4),(340,-605743200,3),(340,-591832800,4),(340,-573688800,3),(340,-559778400,4),(340,-542239200,3),(340,-528328800,4),(340,-510789600,3),(340,-496879200,4),(340,-479340000,3),(340,-465429600,4),(340,-447890400,3),(340,-433980000,4),(340,-415836000,3),(340,-401925600,4),(340,-384386400,3),(340,-370476000,4),(340,-352936800,3),(340,-339026400,4),(340,-321487200,3),(340,-307576800,4),(340,-290037600,3),(340,-276127200,4),(340,-258588000,3),(340,-244677600,4),(340,-226533600,3),(340,-212623200,4),(340,-195084000,3),(340,-181173600,4),(340,-163634400,3),(340,-149724000,4),(340,-132184800,3),(340,-118274400,4),(340,-100735200,3),(340,-86824800,4),(340,-68680800,3),(340,-54770400,5),(342,-1830383032,1),(343,-1824235716,2),(343,-1018209600,1),(343,-1003093200,2),(343,-986760000,1),(343,-971643600,2),(343,-954705600,1),(343,-939589200,2),(343,-923256000,1),(343,-908139600,2),(343,-891806400,1),(343,-876690000,2),(343,-860356800,1),(343,-852066000,2),(343,420609600,4),(343,433306800,3),(343,452052000,4),(343,464151600,3),(343,483501600,4),(343,495601200,1),(343,514350000,2),(343,527054400,1),(343,545799600,2),(343,558504000,1),(343,577249200,2),(343,589953600,1),(343,608698800,2),(343,621403200,1),(343,640753200,2),(343,652852800,1),(343,672202800,2),(343,684907200,1),(343,703652400,2),(343,716356800,1),(343,735102000,2),(343,747806400,1),(343,766551600,2),(343,779256000,1),(343,798001200,2),(343,810705600,1),(343,830055600,2),(343,842760000,1),(343,861505200,2),(343,874209600,1),(343,892954800,2),(343,905659200,1),(343,924404400,2),(343,937108800,1),(343,955854000,2),(343,968558400,1),(343,987310800,2),(343,999410400,1),(343,1019365200,2),(343,1030860000,1),(343,1050814800,2),(343,1062914400,1),(343,1082264400,2),(343,1094364000,1),(343,1113714000,2),(343,1125813600,1),(343,1145163600,2),(343,1157263200,1),(343,1176613200,2),(343,1188712800,1),(343,1208667600,2),(343,1220767200,1),(343,1240117200,2),(343,1252216800,1),(343,1271566800,2),(343,1283666400,4),(344,-1672567140,0),(344,-1665392400,1),(344,-883641600,0),(344,-876128400,1),(344,-860400000,0),(344,-844678800,1),(344,-828345600,0),(344,-813229200,1),(344,57686400,2),(344,67968000,3),(344,89136000,2),(344,100022400,3),(344,120585600,2),(344,131472000,3),(344,152035200,2),(344,162921600,3),(344,183484800,2),(344,194976000,3),(344,215539200,2),(344,226425600,3),(344,246988800,2),(344,257875200,3),(344,278438400,2),(344,289324800,3),(344,309888000,2),(344,320774400,3),(344,341337600,2),(344,352224000,3),(344,372787200,2),(344,386697600,3),(344,404841600,2),(344,415728000,3),(344,436291200,2),(344,447177600,3),(344,467740800,2),(344,478627200,3),(344,499190400,2),(344,511286400,3),(344,530035200,2),(344,542736000,3),(344,562089600,2),(344,574790400,3),(344,594144000,2),(344,606240000,3),(344,625593600,2),(344,636480000,3),(344,657043200,2),(344,667929600,3),(344,688492800,2),(344,699379200,3),(344,719942400,2),(344,731433600,3),(344,751996800,2),(344,762883200,3),(344,783446400,2),(344,794332800,3),(344,814896000,2),(344,828201600,3),(344,846345600,2),(344,859651200,3),(344,877795200,2),(344,891100800,3),(344,909244800,2),(344,922550400,3),(344,941299200,2),(344,954000000,3),(344,967305600,2),(344,985449600,3),(344,1004198400,2),(344,1017504000,3),(344,1035648000,2),(344,1048953600,3),(344,1067097600,2),(344,1080403200,3),(344,1099152000,2),(344,1111852800,3),(344,1130601600,2),(344,1143907200,3),(344,1162051200,2),(344,1174752000,3),(344,1193500800,2),(344,1207411200,3),(344,1223136000,2),(344,1238860800,3),(344,1254585600,2),(344,1270310400,3),(344,1286035200,2),(344,1301760000,3),(344,1317484800,2),(344,1333209600,3),(344,1349539200,2),(344,1365264000,3),(344,1380988800,2),(344,1396713600,3),(344,1412438400,2),(344,1428163200,3),(344,1443888000,2),(344,1459612800,3),(344,1475337600,2),(344,1491062400,3),(344,1506787200,2),(344,1522512000,3),(344,1538841600,2),(344,1554566400,3),(344,1570291200,2),(344,1586016000,3),(344,1601740800,2),(344,1617465600,3),(344,1633190400,2),(344,1648915200,3),(344,1664640000,2),(344,1680364800,3),(344,1696089600,2),(344,1712419200,3),(344,1728144000,2),(344,1743868800,3),(344,1759593600,2),(344,1775318400,3),(344,1791043200,2),(344,1806768000,3),(344,1822492800,2),(344,1838217600,3),(344,1853942400,2),(344,1869667200,3),(344,1885996800,2),(344,1901721600,3),(344,1917446400,2),(344,1933171200,3),(344,1948896000,2),(344,1964620800,3),(344,1980345600,2),(344,1996070400,3),(344,2011795200,2),(344,2027520000,3),(344,2043244800,2),(344,2058969600,3),(344,2075299200,2),(344,2091024000,3),(344,2106748800,2),(344,2122473600,3),(344,2138198400,2),(345,-1672565340,0),(345,-1665390600,1),(345,-883639800,0),(345,-876126600,1),(345,-860398200,0),(345,-844677000,1),(345,-828343800,0),(345,-813227400,1),(345,57688200,2),(345,67969800,3),(345,89137800,2),(345,100024200,3),(345,120587400,2),(345,131473800,3),(345,152037000,2),(345,162923400,3),(345,183486600,2),(345,194977800,3),(345,215541000,2),(345,226427400,3),(345,246990600,2),(345,257877000,3),(345,278440200,2),(345,289326600,3),(345,309889800,2),(345,320776200,3),(345,341339400,2),(345,352225800,3),(345,372789000,2),(345,384280200,3),(345,404843400,2),(345,415729800,3),(345,436293000,2),(345,447179400,3),(345,467742600,2),(345,478629000,3),(345,499192200,2),(345,511288200,3),(345,530037000,2),(345,542737800,3),(345,562091400,2),(345,574792200,3),(345,594145800,2),(345,606241800,3),(345,625595400,2),(345,637691400,3),(345,657045000,2),(345,667931400,3),(345,688494600,2),(345,701195400,3),(345,719944200,2),(345,731435400,3),(345,751998600,2),(345,764094600,3),(345,783448200,2),(345,796149000,3),(345,814897800,2),(345,828203400,3),(345,846347400,2),(345,859653000,3),(345,877797000,2),(345,891102600,3),(345,909246600,2),(345,922552200,3),(345,941301000,2),(345,954001800,3),(345,972750600,2),(345,985451400,3),(345,1004200200,2),(345,1017505800,3),(345,1035649800,2),(345,1048955400,3),(345,1067099400,2),(345,1080405000,3),(345,1099153800,2),(345,1111854600,3),(345,1130603400,2),(345,1143909000,3),(345,1162053000,2),(345,1174753800,3),(345,1193502600,2),(345,1207413000,3),(345,1223137800,2),(345,1238862600,3),(345,1254587400,2),(345,1270312200,3),(345,1286037000,2),(345,1301761800,3),(345,1317486600,2),(345,1333211400,3),(345,1349541000,2),(345,1365265800,3),(345,1380990600,2),(345,1396715400,3),(345,1412440200,2),(345,1428165000,3),(345,1443889800,2),(345,1459614600,3),(345,1475339400,2),(345,1491064200,3),(345,1506789000,2),(345,1522513800,3),(345,1538843400,2),(345,1554568200,3),(345,1570293000,2),(345,1586017800,3),(345,1601742600,2),(345,1617467400,3),(345,1633192200,2),(345,1648917000,3),(345,1664641800,2),(345,1680366600,3),(345,1696091400,2),(345,1712421000,3),(345,1728145800,2),(345,1743870600,3),(345,1759595400,2),(345,1775320200,3),(345,1791045000,2),(345,1806769800,3),(345,1822494600,2),(345,1838219400,3),(345,1853944200,2),(345,1869669000,3),(345,1885998600,2),(345,1901723400,3),(345,1917448200,2),(345,1933173000,3),(345,1948897800,2),(345,1964622600,3),(345,1980347400,2),(345,1996072200,3),(345,2011797000,2),(345,2027521800,3),(345,2043246600,2),(345,2058971400,3),(345,2075301000,2),(345,2091025800,3),(345,2106750600,2),(345,2122475400,3),(345,2138200200,2),(346,-1672567140,0),(346,-1665392400,1),(346,-883641600,0),(346,-876128400,1),(346,-860400000,0),(346,-844678800,1),(346,-828345600,0),(346,-813229200,1),(346,57686400,2),(346,67968000,3),(346,625593600,2),(346,636480000,3),(346,657043200,2),(346,667929600,3),(346,688492800,2),(346,699379200,3),(347,-1672565340,0),(347,-1665390600,1),(347,-883639800,0),(347,-876126600,1),(347,-860398200,0),(347,-844677000,1),(347,-828343800,0),(347,-813227400,1),(347,57688200,2),(347,67969800,3),(347,89137800,2),(347,100024200,3),(347,120587400,2),(347,131473800,3),(347,152037000,2),(347,162923400,3),(347,183486600,2),(347,194977800,3),(347,215541000,2),(347,226427400,3),(347,246990600,2),(347,257877000,3),(347,278440200,2),(347,289326600,3),(347,309889800,2),(347,320776200,3),(347,341339400,2),(347,352225800,3),(347,372789000,2),(347,386699400,3),(347,404843400,2),(347,415729800,3),(347,436293000,2),(347,447179400,3),(347,467742600,2),(347,478629000,3),(347,499192200,2),(347,511288200,3),(347,530037000,2),(347,542737800,3),(347,562091400,2),(347,574792200,3),(347,594145800,2),(347,606241800,3),(347,625595400,2),(347,636481800,3),(347,657045000,2),(347,667931400,3),(347,688494600,2),(347,699381000,3),(347,719944200,2),(347,731435400,3),(347,751998600,2),(347,762885000,3),(347,783448200,2),(347,794334600,3),(347,814897800,2),(347,828203400,3),(347,846347400,2),(347,859653000,3),(347,877797000,2),(347,891102600,3),(347,909246600,2),(347,922552200,3),(347,941301000,2),(347,946647000,0),(347,954001800,3),(347,972750600,2),(347,985451400,3),(347,1004200200,2),(347,1017505800,3),(347,1035649800,2),(347,1048955400,3),(347,1067099400,2),(347,1080405000,3),(347,1099153800,2),(347,1111854600,3),(347,1130603400,2),(347,1143909000,3),(347,1162053000,2),(347,1174753800,3),(347,1193502600,2),(347,1207413000,3),(347,1223137800,2),(347,1238862600,3),(347,1254587400,2),(347,1270312200,3),(347,1286037000,2),(347,1301761800,3),(347,1317486600,2),(347,1333211400,3),(347,1349541000,2),(347,1365265800,3),(347,1380990600,2),(347,1396715400,3),(347,1412440200,2),(347,1428165000,3),(347,1443889800,2),(347,1459614600,3),(347,1475339400,2),(347,1491064200,3),(347,1506789000,2),(347,1522513800,3),(347,1538843400,2),(347,1554568200,3),(347,1570293000,2),(347,1586017800,3),(347,1601742600,2),(347,1617467400,3),(347,1633192200,2),(347,1648917000,3),(347,1664641800,2),(347,1680366600,3),(347,1696091400,2),(347,1712421000,3),(347,1728145800,2),(347,1743870600,3),(347,1759595400,2),(347,1775320200,3),(347,1791045000,2),(347,1806769800,3),(347,1822494600,2),(347,1838219400,3),(347,1853944200,2),(347,1869669000,3),(347,1885998600,2),(347,1901723400,3),(347,1917448200,2),(347,1933173000,3),(347,1948897800,2),(347,1964622600,3),(347,1980347400,2),(347,1996072200,3),(347,2011797000,2),(347,2027521800,3),(347,2043246600,2),(347,2058971400,3),(347,2075301000,2),(347,2091025800,3),(347,2106750600,2),(347,2122475400,3),(347,2138200200,2),(348,-1672567140,0),(348,-1665392400,1),(348,-883641600,0),(348,-876128400,1),(348,-860400000,0),(348,-844678800,1),(348,-828345600,0),(348,-813229200,1),(348,57686400,2),(348,67968000,3),(348,89136000,2),(348,100022400,3),(348,120585600,2),(348,131472000,3),(348,152035200,2),(348,162921600,3),(348,183484800,2),(348,194976000,3),(348,215539200,2),(348,226425600,3),(348,246988800,2),(348,257875200,3),(348,278438400,2),(348,289324800,3),(348,309888000,2),(348,320774400,3),(348,341337600,2),(348,352224000,3),(348,372787200,2),(348,386697600,3),(348,404841600,2),(348,415728000,3),(348,436291200,2),(348,447177600,3),(348,467740800,2),(348,478627200,3),(348,499190400,2),(348,511286400,3),(348,530035200,2),(348,542736000,3),(348,562089600,2),(348,574790400,3),(348,594144000,2),(348,606240000,3),(348,625593600,2),(348,636480000,3),(348,657043200,2),(348,667929600,3),(348,688492800,2),(348,699379200,3),(348,719942400,2),(348,731433600,3),(348,751996800,2),(348,762883200,3),(348,783446400,2),(348,794332800,3),(348,814896000,2),(348,828201600,3),(348,846345600,2),(348,859651200,3),(348,877795200,2),(348,891100800,3),(348,909244800,2),(348,922550400,3),(348,941299200,2),(348,954000000,3),(348,967305600,2),(348,985449600,3),(348,1004198400,2),(348,1017504000,3),(348,1035648000,2),(348,1048953600,3),(348,1067097600,2),(348,1080403200,3),(348,1099152000,2),(348,1111852800,3),(348,1130601600,2),(348,1143907200,3),(348,1162051200,2),(348,1174752000,3),(348,1193500800,2),(348,1207411200,3),(348,1223136000,2),(348,1238860800,3),(348,1254585600,2),(348,1270310400,3),(348,1286035200,2),(348,1301760000,3),(348,1317484800,2),(348,1333209600,3),(348,1349539200,2),(348,1365264000,3),(348,1380988800,2),(348,1396713600,3),(348,1412438400,2),(348,1428163200,3),(348,1443888000,2),(348,1459612800,3),(348,1475337600,2),(348,1491062400,3),(348,1506787200,2),(348,1522512000,3),(348,1538841600,2),(348,1554566400,3),(348,1570291200,2),(348,1586016000,3),(348,1601740800,2),(348,1617465600,3),(348,1633190400,2),(348,1648915200,3),(348,1664640000,2),(348,1680364800,3),(348,1696089600,2),(348,1712419200,3),(348,1728144000,2),(348,1743868800,3),(348,1759593600,2),(348,1775318400,3),(348,1791043200,2),(348,1806768000,3),(348,1822492800,2),(348,1838217600,3),(348,1853942400,2),(348,1869667200,3),(348,1885996800,2),(348,1901721600,3),(348,1917446400,2),(348,1933171200,3),(348,1948896000,2),(348,1964620800,3),(348,1980345600,2),(348,1996070400,3),(348,2011795200,2),(348,2027520000,3),(348,2043244800,2),(348,2058969600,3),(348,2075299200,2),(348,2091024000,3),(348,2106748800,2),(348,2122473600,3),(348,2138198400,2),(349,-1680508800,1),(349,-1665392400,0),(349,-883641600,1),(349,-876128400,0),(349,-860400000,1),(349,-844678800,0),(349,-828345600,1),(349,-813229200,0),(349,57686400,2),(349,67968000,3),(349,89136000,2),(349,100022400,3),(349,120585600,2),(349,131472000,3),(349,152035200,2),(349,162921600,3),(349,183484800,2),(349,194976000,3),(349,215539200,2),(349,226425600,3),(349,246988800,2),(349,257875200,3),(349,278438400,2),(349,289324800,3),(349,309888000,2),(349,320774400,3),(349,341337600,2),(349,352224000,3),(349,372787200,2),(349,386092800,3),(349,404841600,2),(349,417542400,3),(349,436291200,2),(349,447177600,3),(349,467740800,2),(349,478627200,3),(349,499190400,2),(349,510076800,3),(349,530035200,2),(349,542736000,3),(349,562089600,2),(349,574790400,3),(349,594144000,2),(349,606240000,3),(349,625593600,2),(349,637689600,3),(349,657043200,2),(349,670348800,3),(349,686678400,2),(349,701798400,3),(349,718128000,2),(349,733248000,3),(349,749577600,2),(349,764697600,3),(349,781027200,2),(349,796147200,3),(349,812476800,2),(349,828201600,3),(349,844531200,2),(349,859651200,3),(349,875980800,2),(349,891100800,3),(349,907430400,2),(349,922550400,3),(349,938880000,2),(349,954000000,3),(349,967305600,2),(349,985449600,3),(349,1002384000,2),(349,1017504000,3),(349,1033833600,2),(349,1048953600,3),(349,1065283200,2),(349,1080403200,3),(349,1096732800,2),(349,1111852800,3),(349,1128182400,2),(349,1143907200,3),(349,1159632000,2),(349,1174752000,3),(349,1191686400,2),(349,1207411200,3),(349,1223136000,2),(349,1238860800,3),(349,1254585600,2),(349,1270310400,3),(349,1286035200,2),(349,1301760000,3),(349,1317484800,2),(349,1333209600,3),(349,1349539200,2),(349,1365264000,3),(349,1380988800,2),(349,1396713600,3),(349,1412438400,2),(349,1428163200,3),(349,1443888000,2),(349,1459612800,3),(349,1475337600,2),(349,1491062400,3),(349,1506787200,2),(349,1522512000,3),(349,1538841600,2),(349,1554566400,3),(349,1570291200,2),(349,1586016000,3),(349,1601740800,2),(349,1617465600,3),(349,1633190400,2),(349,1648915200,3),(349,1664640000,2),(349,1680364800,3),(349,1696089600,2),(349,1712419200,3),(349,1728144000,2),(349,1743868800,3),(349,1759593600,2),(349,1775318400,3),(349,1791043200,2),(349,1806768000,3),(349,1822492800,2),(349,1838217600,3),(349,1853942400,2),(349,1869667200,3),(349,1885996800,2),(349,1901721600,3),(349,1917446400,2),(349,1933171200,3),(349,1948896000,2),(349,1964620800,3),(349,1980345600,2),(349,1996070400,3),(349,2011795200,2),(349,2027520000,3),(349,2043244800,2),(349,2058969600,3),(349,2075299200,2),(349,2091024000,3),(349,2106748800,2),(349,2122473600,3),(349,2138198400,2),(350,-1672565340,0),(350,-1665390600,1),(350,-883639800,0),(350,-876126600,1),(350,-860398200,0),(350,-844677000,1),(350,-828343800,0),(350,-813227400,1),(351,-1672562640,0),(351,-1665387900,1),(351,-883637100,0),(351,-876123900,1),(351,-860395500,0),(351,-844674300,1),(351,152039700,2),(351,162926100,3),(351,436295700,2),(351,447182100,3),(351,690311700,2),(351,699383700,3),(351,1165079700,2),(351,1174756500,3),(351,1193505300,2),(351,1206810900,3),(351,1224954900,2),(351,1238260500,3),(352,-1680508800,1),(352,-1665392400,0),(352,-883641600,1),(352,-876128400,0),(352,-860400000,1),(352,-844678800,0),(352,-828345600,1),(352,-813229200,0),(352,-71136000,2),(352,-55411200,3),(352,-37267200,2),(352,-25776000,3),(352,-5817600,2),(352,5673600,3),(352,25632000,2),(352,37728000,3),(352,57686400,2),(352,67968000,3),(352,89136000,2),(352,100022400,3),(352,120585600,2),(352,131472000,3),(352,152035200,2),(352,162921600,3),(352,183484800,2),(352,194976000,3),(352,215539200,2),(352,226425600,3),(352,246988800,2),(352,257875200,3),(352,278438400,2),(352,289324800,3),(352,309888000,2),(352,320774400,3),(352,341337600,2),(352,352224000,3),(352,372787200,2),(352,386092800,3),(352,404841600,2),(352,417542400,3),(352,436291200,2),(352,447177600,3),(352,467740800,2),(352,478627200,3),(352,499190400,2),(352,510076800,3),(352,530035200,2),(352,542736000,3),(352,562089600,2),(352,574790400,3),(352,594144000,2),(352,606240000,3),(352,625593600,2),(352,637689600,3),(352,657043200,2),(352,670348800,3),(352,686678400,2),(352,701798400,3),(352,718128000,2),(352,733248000,3),(352,749577600,2),(352,764697600,3),(352,781027200,2),(352,796147200,3),(352,812476800,2),(352,828201600,3),(352,844531200,2),(352,859651200,3),(352,875980800,2),(352,891100800,3),(352,907430400,2),(352,922550400,3),(352,938880000,2),(352,954000000,3),(352,967305600,2),(352,985449600,3),(352,1002384000,2),(352,1017504000,3),(352,1033833600,2),(352,1048953600,3),(352,1065283200,2),(352,1080403200,3),(352,1096732800,2),(352,1111852800,3),(352,1128182400,2),(352,1143907200,3),(352,1159632000,2),(352,1174752000,3),(352,1191686400,2),(352,1207411200,3),(352,1223136000,2),(352,1238860800,3),(352,1254585600,2),(352,1270310400,3),(352,1286035200,2),(352,1301760000,3),(352,1317484800,2),(352,1333209600,3),(352,1349539200,2),(352,1365264000,3),(352,1380988800,2),(352,1396713600,3),(352,1412438400,2),(352,1428163200,3),(352,1443888000,2),(352,1459612800,3),(352,1475337600,2),(352,1491062400,3),(352,1506787200,2),(352,1522512000,3),(352,1538841600,2),(352,1554566400,3),(352,1570291200,2),(352,1586016000,3),(352,1601740800,2),(352,1617465600,3),(352,1633190400,2),(352,1648915200,3),(352,1664640000,2),(352,1680364800,3),(352,1696089600,2),(352,1712419200,3),(352,1728144000,2),(352,1743868800,3),(352,1759593600,2),(352,1775318400,3),(352,1791043200,2),(352,1806768000,3),(352,1822492800,2),(352,1838217600,3),(352,1853942400,2),(352,1869667200,3),(352,1885996800,2),(352,1901721600,3),(352,1917446400,2),(352,1933171200,3),(352,1948896000,2),(352,1964620800,3),(352,1980345600,2),(352,1996070400,3),(352,2011795200,2),(352,2027520000,3),(352,2043244800,2),(352,2058969600,3),(352,2075299200,2),(352,2091024000,3),(352,2106748800,2),(352,2122473600,3),(352,2138198400,2),(353,352216800,2),(353,372785400,1),(353,384273000,2),(353,404839800,1),(353,415722600,2),(353,436289400,1),(353,447172200,2),(353,467739000,1),(353,478621800,2),(353,499188600,3),(353,511282800,2),(353,530033400,3),(353,542732400,2),(353,562087800,3),(353,574786800,2),(353,594142200,3),(353,606236400,2),(353,625591800,3),(353,636476400,2),(353,657041400,3),(353,667926000,2),(353,688491000,3),(353,699375600,2),(353,719940600,3),(353,731430000,2),(353,751995000,3),(353,762879600,2),(353,783444600,3),(353,794329200,2),(353,814894200,3),(353,828198000,2),(353,846343800,3),(353,859647600,2),(353,877793400,3),(353,891097200,2),(353,909243000,3),(353,922546800,2),(353,941297400,3),(353,953996400,2),(353,967303800,3),(353,985446000,2),(353,1004196600,3),(353,1017500400,2),(353,1035646200,3),(353,1048950000,2),(353,1067095800,3),(353,1080399600,2),(353,1099150200,3),(353,1111849200,2),(353,1130599800,3),(353,1143903600,2),(353,1162049400,3),(353,1174748400,2),(353,1193499000,3),(353,1207407600,2),(353,1223134200,3),(353,1238857200,2),(353,1254583800,3),(353,1270306800,2),(353,1286033400,3),(353,1301756400,2),(353,1317483000,3),(353,1333206000,2),(353,1349537400,3),(353,1365260400,2),(353,1380987000,3),(353,1396710000,2),(353,1412436600,3),(353,1428159600,2),(353,1443886200,3),(353,1459609200,2),(353,1475335800,3),(353,1491058800,2),(353,1506785400,3),(353,1522508400,2),(353,1538839800,3),(353,1554562800,2),(353,1570289400,3),(353,1586012400,2),(353,1601739000,3),(353,1617462000,2),(353,1633188600,3),(353,1648911600,2),(353,1664638200,3),(353,1680361200,2),(353,1696087800,3),(353,1712415600,2),(353,1728142200,3),(353,1743865200,2),(353,1759591800,3),(353,1775314800,2),(353,1791041400,3),(353,1806764400,2),(353,1822491000,3),(353,1838214000,2),(353,1853940600,3),(353,1869663600,2),(353,1885995000,3),(353,1901718000,2),(353,1917444600,3),(353,1933167600,2),(353,1948894200,3),(353,1964617200,2),(353,1980343800,3),(353,1996066800,2),(353,2011793400,3),(353,2027516400,2),(353,2043243000,3),(353,2058966000,2),(353,2075297400,3),(353,2091020400,2),(353,2106747000,3),(353,2122470000,2),(353,2138196600,3),(354,-1672567140,0),(354,-1665392400,1),(354,-883641600,0),(354,-876128400,1),(354,-860400000,0),(354,-844678800,1),(354,-828345600,0),(354,-813229200,1),(354,57686400,2),(354,67968000,3),(354,625593600,2),(354,636480000,3),(354,657043200,2),(354,667929600,3),(354,688492800,2),(354,699379200,3),(354,709912800,1),(354,719942400,2),(354,731433600,3),(354,751996800,2),(354,762883200,3),(355,352216800,2),(355,372785400,1),(355,384273000,2),(355,404839800,1),(355,415722600,2),(355,436289400,1),(355,447172200,2),(355,467739000,1),(355,478621800,2),(355,499188600,3),(355,511282800,2),(355,530033400,3),(355,542732400,2),(355,562087800,3),(355,574786800,2),(355,594142200,3),(355,606236400,2),(355,625591800,3),(355,636476400,2),(355,657041400,3),(355,667926000,2),(355,688491000,3),(355,699375600,2),(355,719940600,3),(355,731430000,2),(355,751995000,3),(355,762879600,2),(355,783444600,3),(355,794329200,2),(355,814894200,3),(355,828198000,2),(355,846343800,3),(355,859647600,2),(355,877793400,3),(355,891097200,2),(355,909243000,3),(355,922546800,2),(355,941297400,3),(355,953996400,2),(355,967303800,3),(355,985446000,2),(355,1004196600,3),(355,1017500400,2),(355,1035646200,3),(355,1048950000,2),(355,1067095800,3),(355,1080399600,2),(355,1099150200,3),(355,1111849200,2),(355,1130599800,3),(355,1143903600,2),(355,1162049400,3),(355,1174748400,2),(355,1193499000,3),(355,1207407600,2),(355,1223134200,3),(355,1238857200,2),(355,1254583800,3),(355,1270306800,2),(355,1286033400,3),(355,1301756400,2),(355,1317483000,3),(355,1333206000,2),(355,1349537400,3),(355,1365260400,2),(355,1380987000,3),(355,1396710000,2),(355,1412436600,3),(355,1428159600,2),(355,1443886200,3),(355,1459609200,2),(355,1475335800,3),(355,1491058800,2),(355,1506785400,3),(355,1522508400,2),(355,1538839800,3),(355,1554562800,2),(355,1570289400,3),(355,1586012400,2),(355,1601739000,3),(355,1617462000,2),(355,1633188600,3),(355,1648911600,2),(355,1664638200,3),(355,1680361200,2),(355,1696087800,3),(355,1712415600,2),(355,1728142200,3),(355,1743865200,2),(355,1759591800,3),(355,1775314800,2),(355,1791041400,3),(355,1806764400,2),(355,1822491000,3),(355,1838214000,2),(355,1853940600,3),(355,1869663600,2),(355,1885995000,3),(355,1901718000,2),(355,1917444600,3),(355,1933167600,2),(355,1948894200,3),(355,1964617200,2),(355,1980343800,3),(355,1996066800,2),(355,2011793400,3),(355,2027516400,2),(355,2043243000,3),(355,2058966000,2),(355,2075297400,3),(355,2091020400,2),(355,2106747000,3),(355,2122470000,2),(355,2138196600,3),(356,-1672567140,0),(356,-1665392400,1),(356,-883641600,0),(356,-876128400,1),(356,-860400000,0),(356,-844678800,1),(356,-828345600,0),(356,-813229200,1),(356,57686400,2),(356,67968000,3),(356,89136000,2),(356,100022400,3),(356,120585600,2),(356,131472000,3),(356,152035200,2),(356,162921600,3),(356,183484800,2),(356,194976000,3),(356,215539200,2),(356,226425600,3),(356,246988800,2),(356,257875200,3),(356,278438400,2),(356,289324800,3),(356,309888000,2),(356,320774400,3),(356,341337600,2),(356,352224000,3),(356,372787200,2),(356,384278400,3),(356,404841600,2),(356,415728000,3),(356,436291200,2),(356,447177600,3),(356,467740800,2),(356,478627200,3),(356,499190400,2),(356,511286400,3),(356,530035200,2),(356,542736000,3),(356,561484800,2),(356,574790400,3),(356,594144000,2),(356,606240000,3),(356,625593600,2),(356,637689600,3),(356,657043200,2),(356,667929600,3),(356,688492800,2),(356,699379200,3),(356,719942400,2),(356,731433600,3),(356,751996800,2),(356,762883200,3),(356,783446400,2),(356,796147200,3),(356,814896000,2),(356,828201600,3),(356,846345600,2),(356,859651200,3),(356,877795200,2),(356,891100800,3),(356,909244800,2),(356,922550400,3),(356,941299200,2),(356,954000000,3),(356,967305600,2),(356,985449600,3),(356,1004198400,2),(356,1017504000,3),(356,1035648000,2),(356,1048953600,3),(356,1067097600,2),(356,1080403200,3),(356,1099152000,2),(356,1111852800,3),(356,1130601600,2),(356,1143907200,3),(356,1162051200,2),(356,1174752000,3),(356,1193500800,2),(356,1207411200,3),(356,1223136000,2),(356,1238860800,3),(356,1254585600,2),(356,1270310400,3),(356,1286035200,2),(356,1301760000,3),(356,1317484800,2),(356,1333209600,3),(356,1349539200,2),(356,1365264000,3),(356,1380988800,2),(356,1396713600,3),(356,1412438400,2),(356,1428163200,3),(356,1443888000,2),(356,1459612800,3),(356,1475337600,2),(356,1491062400,3),(356,1506787200,2),(356,1522512000,3),(356,1538841600,2),(356,1554566400,3),(356,1570291200,2),(356,1586016000,3),(356,1601740800,2),(356,1617465600,3),(356,1633190400,2),(356,1648915200,3),(356,1664640000,2),(356,1680364800,3),(356,1696089600,2),(356,1712419200,3),(356,1728144000,2),(356,1743868800,3),(356,1759593600,2),(356,1775318400,3),(356,1791043200,2),(356,1806768000,3),(356,1822492800,2),(356,1838217600,3),(356,1853942400,2),(356,1869667200,3),(356,1885996800,2),(356,1901721600,3),(356,1917446400,2),(356,1933171200,3),(356,1948896000,2),(356,1964620800,3),(356,1980345600,2),(356,1996070400,3),(356,2011795200,2),(356,2027520000,3),(356,2043244800,2),(356,2058969600,3),(356,2075299200,2),(356,2091024000,3),(356,2106748800,2),(356,2122473600,3),(356,2138198400,2),(357,-1672567140,0),(357,-1665392400,1),(357,-883641600,0),(357,-876128400,1),(357,-860400000,0),(357,-844678800,1),(357,-828345600,0),(357,-813229200,1),(357,57686400,2),(357,67968000,3),(357,89136000,2),(357,100022400,3),(357,120585600,2),(357,131472000,3),(357,152035200,2),(357,162921600,3),(357,183484800,2),(357,194976000,3),(357,215539200,2),(357,226425600,3),(357,246988800,2),(357,257875200,3),(357,278438400,2),(357,289324800,3),(357,309888000,2),(357,320774400,3),(357,341337600,2),(357,352224000,3),(357,372787200,2),(357,386697600,3),(357,404841600,2),(357,415728000,3),(357,436291200,2),(357,447177600,3),(357,467740800,2),(357,478627200,3),(357,499190400,2),(357,511286400,3),(357,530035200,2),(357,542736000,3),(357,562089600,2),(357,574790400,3),(357,594144000,2),(357,606240000,3),(357,625593600,2),(357,636480000,3),(357,657043200,2),(357,667929600,3),(357,688492800,2),(357,699379200,3),(357,719942400,2),(357,731433600,3),(357,751996800,2),(357,762883200,3),(357,783446400,2),(357,794332800,3),(357,814896000,2),(357,828201600,3),(357,846345600,2),(357,859651200,3),(357,877795200,2),(357,891100800,3),(357,909244800,2),(357,922550400,3),(357,941299200,2),(357,954000000,3),(357,967305600,2),(357,985449600,3),(357,1004198400,2),(357,1017504000,3),(357,1035648000,2),(357,1048953600,3),(357,1067097600,2),(357,1080403200,3),(357,1099152000,2),(357,1111852800,3),(357,1130601600,2),(357,1143907200,3),(357,1162051200,2),(357,1174752000,3),(357,1193500800,2),(357,1207411200,3),(357,1223136000,2),(357,1238860800,3),(357,1254585600,2),(357,1270310400,3),(357,1286035200,2),(357,1301760000,3),(357,1317484800,2),(357,1333209600,3),(357,1349539200,2),(357,1365264000,3),(357,1380988800,2),(357,1396713600,3),(357,1412438400,2),(357,1428163200,3),(357,1443888000,2),(357,1459612800,3),(357,1475337600,2),(357,1491062400,3),(357,1506787200,2),(357,1522512000,3),(357,1538841600,2),(357,1554566400,3),(357,1570291200,2),(357,1586016000,3),(357,1601740800,2),(357,1617465600,3),(357,1633190400,2),(357,1648915200,3),(357,1664640000,2),(357,1680364800,3),(357,1696089600,2),(357,1712419200,3),(357,1728144000,2),(357,1743868800,3),(357,1759593600,2),(357,1775318400,3),(357,1791043200,2),(357,1806768000,3),(357,1822492800,2),(357,1838217600,3),(357,1853942400,2),(357,1869667200,3),(357,1885996800,2),(357,1901721600,3),(357,1917446400,2),(357,1933171200,3),(357,1948896000,2),(357,1964620800,3),(357,1980345600,2),(357,1996070400,3),(357,2011795200,2),(357,2027520000,3),(357,2043244800,2),(357,2058969600,3),(357,2075299200,2),(357,2091024000,3),(357,2106748800,2),(357,2122473600,3),(357,2138198400,2),(358,-1672565340,0),(358,-1665390600,1),(358,-883639800,0),(358,-876126600,1),(358,-860398200,0),(358,-844677000,1),(358,-828343800,0),(358,-813227400,1),(359,-1672559940,0),(359,-1665385200,1),(359,-883634400,0),(359,-876121200,1),(359,-860392800,0),(359,-844671600,1),(359,152042400,2),(359,162928800,3),(359,436298400,2),(359,447184800,3),(359,690314400,2),(359,699386400,3),(359,1165082400,2),(359,1174759200,3),(359,1193508000,2),(359,1206813600,3),(359,1224957600,2),(359,1238263200,3),(360,-1672567140,0),(360,-1665392400,1),(360,-883641600,0),(360,-876128400,1),(360,-860400000,0),(360,-844678800,1),(360,-828345600,0),(360,-813229200,1),(360,57686400,2),(360,67968000,3),(360,625593600,2),(360,636480000,3),(360,657043200,2),(360,667929600,3),(360,688492800,2),(360,699379200,3),(361,-1672565340,0),(361,-1665390600,1),(361,-883639800,0),(361,-876126600,1),(361,-860398200,0),(361,-844677000,1),(361,-828343800,0),(361,-813227400,1),(361,57688200,2),(361,67969800,3),(361,89137800,2),(361,100024200,3),(361,120587400,2),(361,131473800,3),(361,152037000,2),(361,162923400,3),(361,183486600,2),(361,194977800,3),(361,215541000,2),(361,226427400,3),(361,246990600,2),(361,257877000,3),(361,278440200,2),(361,289326600,3),(361,309889800,2),(361,320776200,3),(361,341339400,2),(361,352225800,3),(361,372789000,2),(361,384280200,3),(361,404843400,2),(361,415729800,3),(361,436293000,2),(361,447179400,3),(361,467742600,2),(361,478629000,3),(361,499192200,2),(361,511288200,3),(361,530037000,2),(361,542737800,3),(361,562091400,2),(361,574792200,3),(361,594145800,2),(361,606241800,3),(361,625595400,2),(361,637691400,3),(361,657045000,2),(361,667931400,3),(361,688494600,2),(361,701195400,3),(361,719944200,2),(361,731435400,3),(361,751998600,2),(361,764094600,3),(361,783448200,2),(361,796149000,3),(361,814897800,2),(361,828203400,3),(361,846347400,2),(361,859653000,3),(361,877797000,2),(361,891102600,3),(361,909246600,2),(361,922552200,3),(361,941301000,2),(361,954001800,3),(361,972750600,2),(361,985451400,3),(361,1004200200,2),(361,1017505800,3),(361,1035649800,2),(361,1048955400,3),(361,1067099400,2),(361,1080405000,3),(361,1099153800,2),(361,1111854600,3),(361,1130603400,2),(361,1143909000,3),(361,1162053000,2),(361,1174753800,3),(361,1193502600,2),(361,1207413000,3),(361,1223137800,2),(361,1238862600,3),(361,1254587400,2),(361,1270312200,3),(361,1286037000,2),(361,1301761800,3),(361,1317486600,2),(361,1333211400,3),(361,1349541000,2),(361,1365265800,3),(361,1380990600,2),(361,1396715400,3),(361,1412440200,2),(361,1428165000,3),(361,1443889800,2),(361,1459614600,3),(361,1475339400,2),(361,1491064200,3),(361,1506789000,2),(361,1522513800,3),(361,1538843400,2),(361,1554568200,3),(361,1570293000,2),(361,1586017800,3),(361,1601742600,2),(361,1617467400,3),(361,1633192200,2),(361,1648917000,3),(361,1664641800,2),(361,1680366600,3),(361,1696091400,2),(361,1712421000,3),(361,1728145800,2),(361,1743870600,3),(361,1759595400,2),(361,1775320200,3),(361,1791045000,2),(361,1806769800,3),(361,1822494600,2),(361,1838219400,3),(361,1853944200,2),(361,1869669000,3),(361,1885998600,2),(361,1901723400,3),(361,1917448200,2),(361,1933173000,3),(361,1948897800,2),(361,1964622600,3),(361,1980347400,2),(361,1996072200,3),(361,2011797000,2),(361,2027521800,3),(361,2043246600,2),(361,2058971400,3),(361,2075301000,2),(361,2091025800,3),(361,2106750600,2),(361,2122475400,3),(361,2138200200,2),(362,-1672567140,0),(362,-1665392400,1),(362,-883641600,0),(362,-876128400,1),(362,-860400000,0),(362,-844678800,1),(362,-828345600,0),(362,-813229200,1),(362,57686400,2),(362,67968000,3),(362,89136000,2),(362,100022400,3),(362,120585600,2),(362,131472000,3),(362,152035200,2),(362,162921600,3),(362,183484800,2),(362,194976000,3),(362,215539200,2),(362,226425600,3),(362,246988800,2),(362,257875200,3),(362,278438400,2),(362,289324800,3),(362,309888000,2),(362,320774400,3),(362,341337600,2),(362,352224000,3),(362,372787200,2),(362,386697600,3),(362,404841600,2),(362,415728000,3),(362,436291200,2),(362,447177600,3),(362,467740800,2),(362,478627200,3),(362,499190400,2),(362,511286400,3),(362,530035200,2),(362,542736000,3),(362,562089600,2),(362,574790400,3),(362,594144000,2),(362,606240000,3),(362,625593600,2),(362,636480000,3),(362,657043200,2),(362,667929600,3),(362,688492800,2),(362,699379200,3),(362,719942400,2),(362,731433600,3),(362,751996800,2),(362,762883200,3),(362,783446400,2),(362,794332800,3),(362,814896000,2),(362,828201600,3),(362,846345600,2),(362,859651200,3),(362,877795200,2),(362,891100800,3),(362,909244800,2),(362,922550400,3),(362,941299200,2),(362,954000000,3),(362,967305600,2),(362,985449600,3),(362,1004198400,2),(362,1017504000,3),(362,1035648000,2),(362,1048953600,3),(362,1067097600,2),(362,1080403200,3),(362,1099152000,2),(362,1111852800,3),(362,1130601600,2),(362,1143907200,3),(362,1162051200,2),(362,1174752000,3),(362,1193500800,2),(362,1207411200,3),(362,1223136000,2),(362,1238860800,3),(362,1254585600,2),(362,1270310400,3),(362,1286035200,2),(362,1301760000,3),(362,1317484800,2),(362,1333209600,3),(362,1349539200,2),(362,1365264000,3),(362,1380988800,2),(362,1396713600,3),(362,1412438400,2),(362,1428163200,3),(362,1443888000,2),(362,1459612800,3),(362,1475337600,2),(362,1491062400,3),(362,1506787200,2),(362,1522512000,3),(362,1538841600,2),(362,1554566400,3),(362,1570291200,2),(362,1586016000,3),(362,1601740800,2),(362,1617465600,3),(362,1633190400,2),(362,1648915200,3),(362,1664640000,2),(362,1680364800,3),(362,1696089600,2),(362,1712419200,3),(362,1728144000,2),(362,1743868800,3),(362,1759593600,2),(362,1775318400,3),(362,1791043200,2),(362,1806768000,3),(362,1822492800,2),(362,1838217600,3),(362,1853942400,2),(362,1869667200,3),(362,1885996800,2),(362,1901721600,3),(362,1917446400,2),(362,1933171200,3),(362,1948896000,2),(362,1964620800,3),(362,1980345600,2),(362,1996070400,3),(362,2011795200,2),(362,2027520000,3),(362,2043244800,2),(362,2058969600,3),(362,2075299200,2),(362,2091024000,3),(362,2106748800,2),(362,2122473600,3),(362,2138198400,2),(363,-1680508800,1),(363,-1665392400,0),(363,-883641600,1),(363,-876128400,0),(363,-860400000,1),(363,-844678800,0),(363,-828345600,1),(363,-813229200,0),(363,-71136000,2),(363,-55411200,3),(363,-37267200,2),(363,-25776000,3),(363,-5817600,2),(363,5673600,3),(363,25632000,2),(363,37728000,3),(363,57686400,2),(363,67968000,3),(363,89136000,2),(363,100022400,3),(363,120585600,2),(363,131472000,3),(363,152035200,2),(363,162921600,3),(363,183484800,2),(363,194976000,3),(363,215539200,2),(363,226425600,3),(363,246988800,2),(363,257875200,3),(363,278438400,2),(363,289324800,3),(363,309888000,2),(363,320774400,3),(363,341337600,2),(363,352224000,3),(363,372787200,2),(363,386092800,3),(363,404841600,2),(363,417542400,3),(363,436291200,2),(363,447177600,3),(363,467740800,2),(363,478627200,3),(363,499190400,2),(363,510076800,3),(363,530035200,2),(363,542736000,3),(363,562089600,2),(363,574790400,3),(363,594144000,2),(363,606240000,3),(363,625593600,2),(363,637689600,3),(363,657043200,2),(363,670348800,3),(363,686678400,2),(363,701798400,3),(363,718128000,2),(363,733248000,3),(363,749577600,2),(363,764697600,3),(363,781027200,2),(363,796147200,3),(363,812476800,2),(363,828201600,3),(363,844531200,2),(363,859651200,3),(363,875980800,2),(363,891100800,3),(363,907430400,2),(363,922550400,3),(363,938880000,2),(363,954000000,3),(363,967305600,2),(363,985449600,3),(363,1002384000,2),(363,1017504000,3),(363,1033833600,2),(363,1048953600,3),(363,1065283200,2),(363,1080403200,3),(363,1096732800,2),(363,1111852800,3),(363,1128182400,2),(363,1143907200,3),(363,1159632000,2),(363,1174752000,3),(363,1191686400,2),(363,1207411200,3),(363,1223136000,2),(363,1238860800,3),(363,1254585600,2),(363,1270310400,3),(363,1286035200,2),(363,1301760000,3),(363,1317484800,2),(363,1333209600,3),(363,1349539200,2),(363,1365264000,3),(363,1380988800,2),(363,1396713600,3),(363,1412438400,2),(363,1428163200,3),(363,1443888000,2),(363,1459612800,3),(363,1475337600,2),(363,1491062400,3),(363,1506787200,2),(363,1522512000,3),(363,1538841600,2),(363,1554566400,3),(363,1570291200,2),(363,1586016000,3),(363,1601740800,2),(363,1617465600,3),(363,1633190400,2),(363,1648915200,3),(363,1664640000,2),(363,1680364800,3),(363,1696089600,2),(363,1712419200,3),(363,1728144000,2),(363,1743868800,3),(363,1759593600,2),(363,1775318400,3),(363,1791043200,2),(363,1806768000,3),(363,1822492800,2),(363,1838217600,3),(363,1853942400,2),(363,1869667200,3),(363,1885996800,2),(363,1901721600,3),(363,1917446400,2),(363,1933171200,3),(363,1948896000,2),(363,1964620800,3),(363,1980345600,2),(363,1996070400,3),(363,2011795200,2),(363,2027520000,3),(363,2043244800,2),(363,2058969600,3),(363,2075299200,2),(363,2091024000,3),(363,2106748800,2),(363,2122473600,3),(363,2138198400,2),(364,-1672567140,0),(364,-1665392400,1),(364,-883641600,0),(364,-876128400,1),(364,-860400000,0),(364,-844678800,1),(364,-828345600,0),(364,-813229200,1),(364,57686400,2),(364,67968000,3),(364,89136000,2),(364,100022400,3),(364,120585600,2),(364,131472000,3),(364,152035200,2),(364,162921600,3),(364,183484800,2),(364,194976000,3),(364,215539200,2),(364,226425600,3),(364,246988800,2),(364,257875200,3),(364,278438400,2),(364,289324800,3),(364,309888000,2),(364,320774400,3),(364,341337600,2),(364,352224000,3),(364,372787200,2),(364,384278400,3),(364,404841600,2),(364,415728000,3),(364,436291200,2),(364,447177600,3),(364,467740800,2),(364,478627200,3),(364,499190400,2),(364,511286400,3),(364,530035200,2),(364,542736000,3),(364,561484800,2),(364,574790400,3),(364,594144000,2),(364,606240000,3),(364,625593600,2),(364,637689600,3),(364,657043200,2),(364,667929600,3),(364,688492800,2),(364,699379200,3),(364,719942400,2),(364,731433600,3),(364,751996800,2),(364,762883200,3),(364,783446400,2),(364,796147200,3),(364,814896000,2),(364,828201600,3),(364,846345600,2),(364,859651200,3),(364,877795200,2),(364,891100800,3),(364,909244800,2),(364,922550400,3),(364,941299200,2),(364,954000000,3),(364,967305600,2),(364,985449600,3),(364,1004198400,2),(364,1017504000,3),(364,1035648000,2),(364,1048953600,3),(364,1067097600,2),(364,1080403200,3),(364,1099152000,2),(364,1111852800,3),(364,1130601600,2),(364,1143907200,3),(364,1162051200,2),(364,1174752000,3),(364,1193500800,2),(364,1207411200,3),(364,1223136000,2),(364,1238860800,3),(364,1254585600,2),(364,1270310400,3),(364,1286035200,2),(364,1301760000,3),(364,1317484800,2),(364,1333209600,3),(364,1349539200,2),(364,1365264000,3),(364,1380988800,2),(364,1396713600,3),(364,1412438400,2),(364,1428163200,3),(364,1443888000,2),(364,1459612800,3),(364,1475337600,2),(364,1491062400,3),(364,1506787200,2),(364,1522512000,3),(364,1538841600,2),(364,1554566400,3),(364,1570291200,2),(364,1586016000,3),(364,1601740800,2),(364,1617465600,3),(364,1633190400,2),(364,1648915200,3),(364,1664640000,2),(364,1680364800,3),(364,1696089600,2),(364,1712419200,3),(364,1728144000,2),(364,1743868800,3),(364,1759593600,2),(364,1775318400,3),(364,1791043200,2),(364,1806768000,3),(364,1822492800,2),(364,1838217600,3),(364,1853942400,2),(364,1869667200,3),(364,1885996800,2),(364,1901721600,3),(364,1917446400,2),(364,1933171200,3),(364,1948896000,2),(364,1964620800,3),(364,1980345600,2),(364,1996070400,3),(364,2011795200,2),(364,2027520000,3),(364,2043244800,2),(364,2058969600,3),(364,2075299200,2),(364,2091024000,3),(364,2106748800,2),(364,2122473600,3),(364,2138198400,2),(365,-1672559940,0),(365,-1665385200,1),(365,-883634400,0),(365,-876121200,1),(365,-860392800,0),(365,-844671600,1),(365,152042400,2),(365,162928800,3),(365,436298400,2),(365,447184800,3),(365,690314400,2),(365,699386400,3),(365,1165082400,2),(365,1174759200,3),(365,1193508000,2),(365,1206813600,3),(365,1224957600,2),(365,1238263200,3),(366,-1672565340,0),(366,-1665390600,1),(366,-883639800,0),(366,-876126600,1),(366,-860398200,0),(366,-844677000,1),(366,-828343800,0),(366,-813227400,1),(366,57688200,2),(366,67969800,3),(366,89137800,2),(366,100024200,3),(366,120587400,2),(366,131473800,3),(366,152037000,2),(366,162923400,3),(366,183486600,2),(366,194977800,3),(366,215541000,2),(366,226427400,3),(366,246990600,2),(366,257877000,3),(366,278440200,2),(366,289326600,3),(366,309889800,2),(366,320776200,3),(366,341339400,2),(366,352225800,3),(366,372789000,2),(366,386699400,3),(366,404843400,2),(366,415729800,3),(366,436293000,2),(366,447179400,3),(366,467742600,2),(366,478629000,3),(366,499192200,2),(366,511288200,3),(366,530037000,2),(366,542737800,3),(366,562091400,2),(366,574792200,3),(366,594145800,2),(366,606241800,3),(366,625595400,2),(366,636481800,3),(366,657045000,2),(366,667931400,3),(366,688494600,2),(366,699381000,3),(366,719944200,2),(366,731435400,3),(366,751998600,2),(366,762885000,3),(366,783448200,2),(366,794334600,3),(366,814897800,2),(366,828203400,3),(366,846347400,2),(366,859653000,3),(366,877797000,2),(366,891102600,3),(366,909246600,2),(366,922552200,3),(366,941301000,2),(366,946647000,0),(366,954001800,3),(366,972750600,2),(366,985451400,3),(366,1004200200,2),(366,1017505800,3),(366,1035649800,2),(366,1048955400,3),(366,1067099400,2),(366,1080405000,3),(366,1099153800,2),(366,1111854600,3),(366,1130603400,2),(366,1143909000,3),(366,1162053000,2),(366,1174753800,3),(366,1193502600,2),(366,1207413000,3),(366,1223137800,2),(366,1238862600,3),(366,1254587400,2),(366,1270312200,3),(366,1286037000,2),(366,1301761800,3),(366,1317486600,2),(366,1333211400,3),(366,1349541000,2),(366,1365265800,3),(366,1380990600,2),(366,1396715400,3),(366,1412440200,2),(366,1428165000,3),(366,1443889800,2),(366,1459614600,3),(366,1475339400,2),(366,1491064200,3),(366,1506789000,2),(366,1522513800,3),(366,1538843400,2),(366,1554568200,3),(366,1570293000,2),(366,1586017800,3),(366,1601742600,2),(366,1617467400,3),(366,1633192200,2),(366,1648917000,3),(366,1664641800,2),(366,1680366600,3),(366,1696091400,2),(366,1712421000,3),(366,1728145800,2),(366,1743870600,3),(366,1759595400,2),(366,1775320200,3),(366,1791045000,2),(366,1806769800,3),(366,1822494600,2),(366,1838219400,3),(366,1853944200,2),(366,1869669000,3),(366,1885998600,2),(366,1901723400,3),(366,1917448200,2),(366,1933173000,3),(366,1948897800,2),(366,1964622600,3),(366,1980347400,2),(366,1996072200,3),(366,2011797000,2),(366,2027521800,3),(366,2043246600,2),(366,2058971400,3),(366,2075301000,2),(366,2091025800,3),(366,2106750600,2),(366,2122475400,3),(366,2138200200,2),(367,-1767209328,2),(367,-1206950400,1),(367,-1191355200,2),(367,-1175367600,1),(367,-1159819200,2),(367,-633812400,1),(367,-622062000,2),(367,-602276400,1),(367,-591825600,2),(367,-570740400,1),(367,-560203200,2),(367,-539118000,1),(367,-531345600,2),(367,-191358000,1),(367,-184190400,2),(367,-155156400,1),(367,-150062400,2),(367,-128890800,1),(367,-121118400,2),(367,-99946800,1),(367,-89582400,2),(367,-68410800,1),(367,-57960000,2),(367,499755600,1),(367,511243200,2),(367,530600400,1),(367,540273600,2),(367,562136400,1),(367,571204800,2),(367,1214283600,3),(367,1384056000,2),(368,-1767217820,2),(368,-1206961200,1),(368,-1191366000,2),(368,-1175378400,1),(368,-1159830000,2),(368,-633823200,1),(368,-622072800,2),(368,-602287200,1),(368,-591836400,2),(368,-570751200,1),(368,-560214000,2),(368,-539128800,1),(368,-531356400,2),(368,-191368800,1),(368,-184201200,2),(368,-155167200,1),(368,-150073200,2),(368,-128901600,1),(368,-121129200,2),(368,-99957600,1),(368,-89593200,2),(368,-68421600,1),(368,-57970800,2),(368,499744800,1),(368,511232400,2),(368,530589600,1),(368,540262800,2),(368,562125600,1),(368,571194000,2),(368,592970400,1),(368,602038800,2),(368,624420000,1),(368,634698000,2),(368,938916000,1),(368,951613200,2),(368,970970400,1),(368,971571600,2),(368,1003024800,1),(368,1013907600,2),(369,-1767214412,2),(369,-1206957600,1),(369,-1191362400,2),(369,-1175374800,1),(369,-1159826400,2),(369,-633819600,1),(369,-622069200,2),(369,-602283600,1),(369,-591832800,2),(369,-570747600,1),(369,-560210400,2),(369,-539125200,1),(369,-531352800,2),(369,-195426000,1),(369,-184197600,2),(369,-155163600,1),(369,-150069600,2),(369,-128898000,1),(369,-121125600,2),(369,-99954000,1),(369,-89589600,2),(369,-68418000,1),(369,-57967200,2),(369,499748400,1),(369,511236000,2),(369,530593200,1),(369,540266400,2),(369,562129200,1),(369,571197600,2),(369,592974000,1),(369,602042400,2),(369,624423600,1),(369,634701600,2),(369,656478000,1),(369,666756000,2),(369,687927600,1),(369,697600800,2),(369,719982000,1),(369,728445600,2),(369,750826800,1),(369,761709600,2),(369,782276400,1),(369,793159200,2),(369,813726000,1),(369,824004000,2),(369,844570800,1),(369,856058400,2),(369,876106800,1),(369,888717600,2),(369,908074800,1),(369,919562400,2),(369,938919600,1),(369,951616800,2),(369,970974000,1),(369,982461600,2),(369,1003028400,1),(369,1013911200,2),(369,1036292400,1),(369,1045360800,2),(369,1066532400,1),(369,1076810400,2),(369,1099364400,1),(369,1108864800,2),(369,1129431600,1),(369,1140314400,2),(369,1162695600,1),(369,1172368800,2),(369,1192330800,1),(369,1203213600,2),(369,1224385200,1),(369,1234663200,2),(369,1255834800,1),(369,1266717600,2),(369,1287284400,1),(369,1298167200,2),(369,1318734000,1),(369,1330221600,2),(369,1350788400,1),(369,1361066400,2),(369,1382238000,1),(369,1392516000,2),(369,1413687600,1),(369,1424570400,2),(369,1445137200,1),(369,1456020000,2),(369,1476586800,1),(369,1487469600,2),(369,1508036400,1),(369,1518919200,2),(369,1541300400,1),(369,1550368800,2),(369,1572750000,1),(369,1581818400,2),(369,1604199600,1),(369,1613872800,2),(369,1636254000,1),(369,1645322400,2),(369,1667703600,1),(369,1677376800,2),(369,1699153200,1),(369,1708221600,2),(369,1730602800,1),(369,1739671200,2),(369,1762052400,1),(369,1771725600,2),(369,1793502000,1),(369,1803175200,2),(369,1825556400,1),(369,1834624800,2),(369,1857006000,1),(369,1866074400,2),(369,1888455600,1),(369,1897524000,2),(369,1919905200,1),(369,1928973600,2),(369,1951354800,1),(369,1960423200,2),(369,1983409200,1),(369,1992477600,2),(369,2014858800,1),(369,2024532000,2),(369,2046308400,1),(369,2055376800,2),(369,2077758000,1),(369,2086826400,2),(369,2109207600,1),(369,2118880800,2),(369,2140657200,1),(370,-1767211196,2),(370,-1206954000,1),(370,-1191358800,2),(370,-1175371200,1),(370,-1159822800,2),(370,-633816000,1),(370,-622065600,2),(370,-602280000,1),(370,-591829200,2),(370,-570744000,1),(370,-560206800,2),(370,-539121600,1),(370,-531349200,2),(370,-191361600,1),(370,-184194000,2),(370,-155160000,1),(370,-150066000,2),(370,-128894400,1),(370,-121122000,2),(370,-99950400,1),(370,-89586000,2),(370,-68414400,1),(370,-57963600,2),(370,499752000,1),(370,511239600,2),(370,530596800,1),(370,540270000,2),(370,562132800,1),(370,571201200,2),(370,750830400,1),(370,761713200,2),(371,-1693706400,0),(371,-1680483600,1),(371,-1663455600,2),(371,-1650150000,3),(371,-1632006000,2),(371,-1618700400,3),(371,-938905200,2),(371,-857257200,3),(371,-844556400,2),(371,-828226800,3),(371,-812502000,2),(371,-796777200,3),(371,-781052400,2),(371,-766623600,3),(371,228877200,2),(371,243997200,3),(371,260326800,2),(371,276051600,3),(371,291776400,2),(371,307501200,3),(371,323830800,2),(371,338950800,3),(371,354675600,2),(371,370400400,3),(371,386125200,2),(371,401850000,3),(371,417574800,2),(371,433299600,3),(371,449024400,2),(371,465354000,3),(371,481078800,2),(371,496803600,3),(371,512528400,2),(371,528253200,3),(371,543978000,2),(371,559702800,3),(371,575427600,2),(371,591152400,3),(371,606877200,2),(371,622602000,3),(371,638326800,2),(371,654656400,3),(371,670381200,2),(371,686106000,3),(371,701830800,2),(371,717555600,3),(371,733280400,2),(371,749005200,3),(371,764730000,2),(371,780454800,3),(371,796179600,2),(371,811904400,3),(371,828234000,2),(371,846378000,3),(371,859683600,2),(371,877827600,3),(371,891133200,2),(371,909277200,3),(371,922582800,2),(371,941331600,3),(371,954032400,2),(371,972781200,3),(371,985482000,2),(371,1004230800,3),(371,1017536400,2),(371,1035680400,3),(371,1048986000,2),(371,1067130000,3),(371,1080435600,2),(371,1099184400,3),(371,1111885200,2),(371,1130634000,3),(371,1143334800,2),(371,1162083600,3),(371,1174784400,2),(371,1193533200,3),(371,1206838800,2),(371,1224982800,3),(371,1238288400,2),(371,1256432400,3),(371,1269738000,2),(371,1288486800,3),(371,1301187600,2),(371,1319936400,3),(371,1332637200,2),(371,1351386000,3),(371,1364691600,2),(371,1382835600,3),(371,1396141200,2),(371,1414285200,3),(371,1427590800,2),(371,1445734800,3),(371,1459040400,2),(371,1477789200,3),(371,1490490000,2),(371,1509238800,3),(371,1521939600,2),(371,1540688400,3),(371,1553994000,2),(371,1572138000,3),(371,1585443600,2),(371,1603587600,3),(371,1616893200,2),(371,1635642000,3),(371,1648342800,2),(371,1667091600,3),(371,1679792400,2),(371,1698541200,3),(371,1711846800,2),(371,1729990800,3),(371,1743296400,2),(371,1761440400,3),(371,1774746000,2),(371,1792890000,3),(371,1806195600,2),(371,1824944400,3),(371,1837645200,2),(371,1856394000,3),(371,1869094800,2),(371,1887843600,3),(371,1901149200,2),(371,1919293200,3),(371,1932598800,2),(371,1950742800,3),(371,1964048400,2),(371,1982797200,3),(371,1995498000,2),(371,2014246800,3),(371,2026947600,2),(371,2045696400,3),(371,2058397200,2),(371,2077146000,3),(371,2090451600,2),(371,2108595600,3),(371,2121901200,2),(371,2140045200,3),(372,-1633276800,0),(372,-1615136400,1),(372,-1601827200,0),(372,-1583686800,1),(372,-880214400,2),(372,-769395600,3),(372,-765392400,1),(372,-84384000,0),(372,-68662800,1),(372,-52934400,0),(372,-37213200,1),(372,-21484800,0),(372,-5763600,1),(372,9964800,0),(372,25686000,1),(372,41414400,0),(372,57740400,1),(372,73468800,0),(372,89190000,1),(372,104918400,0),(372,120639600,1),(372,126691200,0),(372,152089200,1),(372,162374400,0),(372,183538800,1),(372,199267200,0),(372,215593200,1),(372,230716800,0),(372,247042800,1),(372,262771200,0),(372,278492400,1),(372,294220800,0),(372,309942000,1),(372,325670400,0),(372,341391600,1),(372,357120000,0),(372,372841200,1),(372,388569600,0),(372,404895600,1),(372,420019200,0),(372,436345200,1),(372,452073600,0),(372,467794800,1),(372,483523200,0),(372,499244400,1),(372,514972800,0),(372,530694000,1),(372,544608000,0),(372,562143600,1),(372,576057600,0),(372,594198000,1),(372,607507200,0),(372,625647600,1),(372,638956800,0),(372,657097200,1),(372,671011200,0),(372,688546800,1),(372,702460800,0),(372,719996400,1),(372,733910400,0),(372,752050800,1),(372,765360000,0),(372,783500400,1),(372,796809600,0),(372,814950000,1),(372,828864000,0),(372,846399600,1),(372,860313600,0),(372,877849200,1),(372,891763200,0),(372,909298800,1),(372,923212800,0),(372,941353200,1),(372,954662400,0),(372,972802800,1),(372,986112000,0),(372,1004252400,1),(372,1018166400,0),(372,1035702000,1),(372,1049616000,0),(372,1067151600,1),(372,1081065600,0),(372,1099206000,1),(372,1112515200,0),(372,1130655600,1),(372,1143964800,0),(372,1162105200,1),(372,1173600000,0),(372,1194159600,1),(372,1205049600,0),(372,1225609200,1),(372,1236499200,0),(372,1257058800,1),(372,1268553600,0),(372,1289113200,1),(372,1300003200,0),(372,1320562800,1),(372,1331452800,0),(372,1352012400,1),(372,1362902400,0),(372,1383462000,1),(372,1394352000,0),(372,1414911600,1),(372,1425801600,0),(372,1446361200,1),(372,1457856000,0),(372,1478415600,1),(372,1489305600,0),(372,1509865200,1),(372,1520755200,0),(372,1541314800,1),(372,1552204800,0),(372,1572764400,1),(372,1583654400,0),(372,1604214000,1),(372,1615708800,0),(372,1636268400,1),(372,1647158400,0),(372,1667718000,1),(372,1678608000,0),(372,1699167600,1),(372,1710057600,0),(372,1730617200,1),(372,1741507200,0),(372,1762066800,1),(372,1772956800,0),(372,1793516400,1),(372,1805011200,0),(372,1825570800,1),(372,1836460800,0),(372,1857020400,1),(372,1867910400,0),(372,1888470000,1),(372,1899360000,0),(372,1919919600,1),(372,1930809600,0),(372,1951369200,1),(372,1962864000,0),(372,1983423600,1),(372,1994313600,0),(372,2014873200,1),(372,2025763200,0),(372,2046322800,1),(372,2057212800,0),(372,2077772400,1),(372,2088662400,0),(372,2109222000,1),(372,2120112000,0),(372,2140671600,1),(373,-2131645536,2),(373,-1696276800,1),(373,-1680469200,2),(373,-1632074400,1),(373,-1615143600,2),(373,-1566763200,1),(373,-1557090000,2),(373,-1535486400,1),(373,-1524949200,2),(373,-1504468800,1),(373,-1493413200,2),(373,-1472414400,1),(373,-1461963600,2),(373,-1440964800,1),(373,-1429390800,2),(373,-1409515200,1),(373,-1396731600,2),(373,-1376856000,1),(373,-1366491600,2),(373,-1346616000,1),(373,-1333832400,2),(373,-1313956800,1),(373,-1303678800,2),(373,-1282507200,1),(373,-1272661200,2),(373,-1251057600,1),(373,-1240088400,2),(373,-1219608000,1),(373,-1207429200,2),(373,-1188763200,1),(373,-1175979600,2),(373,-1157313600,1),(373,-1143925200,2),(373,-1124049600,1),(373,-1113771600,2),(373,-1091390400,1),(373,-1081026000,2),(373,-1059854400,1),(373,-1050786000,2),(373,-1030910400,1),(373,-1018126800,2),(373,-999460800,1),(373,-986677200,2),(373,-965592000,1),(373,-955227600,2),(373,-935956800,1),(373,-923173200,2),(373,-904507200,1),(373,-891723600,2),(373,-880221600,3),(373,-769395600,4),(373,-765399600,2),(373,-747252000,1),(373,-733950000,2),(373,-715802400,1),(373,-702500400,2),(373,-684352800,1),(373,-671050800,2),(373,-652903200,1),(373,-639601200,2),(373,-589399200,1),(373,-576097200,2),(373,-557949600,1),(373,-544647600,2),(373,-526500000,1),(373,-513198000,2),(373,-495050400,1),(373,-481748400,2),(373,-431546400,1),(373,-418244400,2),(373,-400096800,1),(373,-386794800,2),(373,-368647200,1),(373,-355345200,2),(373,-337197600,1),(373,-323895600,2),(373,-242244000,1),(373,-226522800,2),(373,-210794400,1),(373,-195073200,2),(373,-179344800,1),(373,-163623600,2),(373,-147895200,1),(373,-131569200,2),(373,-116445600,1),(373,-100119600,2),(373,-84391200,1),(373,-68670000,2),(373,-52941600,1),(373,-37220400,2),(373,-21492000,1),(373,-5770800,2),(373,9957600,1),(373,25678800,2),(373,41407200,1),(373,57733200,2),(373,73461600,1),(373,89182800,2),(373,104911200,1),(373,120632400,2),(373,136360800,1),(373,152082000,2),(373,167810400,1),(373,183531600,2),(373,199260000,1),(373,215586000,2),(373,230709600,1),(373,247035600,2),(373,262764000,1),(373,278485200,2),(373,294213600,1),(373,309934800,2),(373,325663200,1),(373,341384400,2),(373,357112800,1),(373,372834000,2),(373,388562400,1),(373,404888400,2),(373,420012000,1),(373,436338000,2),(373,452066400,1),(373,467787600,2),(373,483516000,1),(373,499237200,2),(373,514965600,1),(373,530686800,2),(373,544600800,1),(373,562136400,2),(373,576050400,1),(373,594190800,2),(373,607500000,1),(373,625640400,2),(373,638949600,1),(373,657090000,2),(373,671004000,1),(373,688539600,2),(373,702453600,1),(373,719989200,2),(373,733903200,1),(373,752043600,2),(373,765352800,1),(373,783493200,2),(373,796802400,1),(373,814942800,2),(373,828856800,1),(373,846392400,2),(373,860306400,1),(373,877842000,2),(373,891756000,1),(373,909291600,2),(373,923205600,1),(373,941346000,2),(373,954655200,1),(373,972795600,2),(373,986104800,1),(373,1004245200,2),(373,1018159200,1),(373,1035694800,2),(373,1049608800,1),(373,1067144400,2),(373,1081058400,1),(373,1099198800,2),(373,1112508000,1),(373,1130648400,2),(373,1143957600,1),(373,1162098000,2),(373,1173592800,1),(373,1194152400,2),(373,1205042400,1),(373,1225602000,2),(373,1236492000,1),(373,1257051600,2),(373,1268546400,1),(373,1289106000,2),(373,1299996000,1),(373,1320555600,2),(373,1331445600,1),(373,1352005200,2),(373,1362895200,1),(373,1383454800,2),(373,1394344800,1),(373,1414904400,2),(373,1425794400,1),(373,1446354000,2),(373,1457848800,1),(373,1478408400,2),(373,1489298400,1),(373,1509858000,2),(373,1520748000,1),(373,1541307600,2),(373,1552197600,1),(373,1572757200,2),(373,1583647200,1),(373,1604206800,2),(373,1615701600,1),(373,1636261200,2),(373,1647151200,1),(373,1667710800,2),(373,1678600800,1),(373,1699160400,2),(373,1710050400,1),(373,1730610000,2),(373,1741500000,1),(373,1762059600,2),(373,1772949600,1),(373,1793509200,2),(373,1805004000,1),(373,1825563600,2),(373,1836453600,1),(373,1857013200,2),(373,1867903200,1),(373,1888462800,2),(373,1899352800,1),(373,1919912400,2),(373,1930802400,1),(373,1951362000,2),(373,1962856800,1),(373,1983416400,2),(373,1994306400,1),(373,2014866000,2),(373,2025756000,1),(373,2046315600,2),(373,2057205600,1),(373,2077765200,2),(373,2088655200,1),(373,2109214800,2),(373,2120104800,1),(373,2140664400,2),(374,-1694368800,0),(374,-1681671600,1),(374,-1632067200,0),(374,-1615136400,1),(374,-1029686400,0),(374,-1018198800,1),(374,-880214400,2),(374,-769395600,3),(374,-765392400,1),(374,-746035200,0),(374,-732733200,1),(374,-715795200,0),(374,-702493200,1),(374,-684345600,0),(374,-671043600,1),(374,-652896000,0),(374,-639594000,1),(374,-620755200,0),(374,-607626000,1),(374,-589392000,0),(374,-576090000,1),(374,-557942400,0),(374,-544640400,1),(374,-526492800,0),(374,-513190800,1),(374,-495043200,0),(374,-481741200,1),(374,-463593600,0),(374,-450291600,1),(374,-431539200,0),(374,-418237200,1),(374,-400089600,0),(374,-386787600,1),(374,-368640000,0),(374,-355338000,1),(374,-337190400,0),(374,-321469200,1),(374,-305740800,0),(374,-292438800,1),(374,-210787200,0),(374,-198090000,1),(374,-116438400,4),(374,-100108800,5),(374,-84384000,4),(374,-68659200,5),(374,-52934400,4),(374,-37209600,5),(374,-21484800,4),(374,-5760000,5),(374,9964800,4),(374,25689600,5),(374,41414400,4),(374,57744000,5),(374,73468800,4),(374,89193600,5),(374,104918400,4),(374,120643200,5),(374,136368000,4),(374,152092800,5),(374,167817600,4),(374,183542400,5),(374,199267200,4),(374,215596800,5),(374,230716800,4),(374,247046400,5),(374,262771200,4),(374,278496000,5),(374,294220800,4),(374,309945600,5),(374,325670400,4),(374,341395200,5),(374,357120000,4),(374,372844800,5),(374,388569600,4),(374,404899200,5),(374,420019200,4),(374,436348800,5),(374,452073600,4),(374,467798400,5),(374,483523200,4),(374,499248000,5),(374,514972800,4),(374,530697600,5),(374,544608000,4),(374,562147200,5),(374,576057600,4),(374,594201600,5),(374,607507200,4),(374,625651200,5),(374,638956800,4),(374,657100800,5),(374,671011200,4),(374,688550400,5),(374,702460800,4),(374,720000000,5),(374,733910400,4),(374,752054400,5),(374,765360000,4),(374,783504000,5),(374,796809600,4),(374,814953600,5),(374,828864000,4),(374,846403200,5),(374,860313600,4),(374,877852800,5),(374,891763200,4),(374,909302400,5),(374,923212800,4),(374,941356800,5),(374,954662400,4),(374,972806400,5),(374,986112000,4),(374,1004256000,5),(374,1018166400,4),(374,1035705600,5),(374,1049616000,4),(374,1067155200,5),(374,1081065600,4),(374,1099209600,5),(374,1112515200,4),(374,1130659200,5),(374,1136095200,1),(374,1143964800,0),(374,1162105200,1),(374,1173600000,0),(374,1194159600,1),(374,1205049600,0),(374,1225609200,1),(374,1236499200,0),(374,1257058800,1),(374,1268553600,0),(374,1289113200,1),(374,1300003200,0),(374,1320562800,1),(374,1331452800,0),(374,1352012400,1),(374,1362902400,0),(374,1383462000,1),(374,1394352000,0),(374,1414911600,1),(374,1425801600,0),(374,1446361200,1),(374,1457856000,0),(374,1478415600,1),(374,1489305600,0),(374,1509865200,1),(374,1520755200,0),(374,1541314800,1),(374,1552204800,0),(374,1572764400,1),(374,1583654400,0),(374,1604214000,1),(374,1615708800,0),(374,1636268400,1),(374,1647158400,0),(374,1667718000,1),(374,1678608000,0),(374,1699167600,1),(374,1710057600,0),(374,1730617200,1),(374,1741507200,0),(374,1762066800,1),(374,1772956800,0),(374,1793516400,1),(374,1805011200,0),(374,1825570800,1),(374,1836460800,0),(374,1857020400,1),(374,1867910400,0),(374,1888470000,1),(374,1899360000,0),(374,1919919600,1),(374,1930809600,0),(374,1951369200,1),(374,1962864000,0),(374,1983423600,1),(374,1994313600,0),(374,2014873200,1),(374,2025763200,0),(374,2046322800,1),(374,2057212800,0),(374,2077772400,1),(374,2088662400,0),(374,2109222000,1),(374,2120112000,0),(374,2140671600,1),(375,-1632070800,0),(375,-1615140000,1),(375,-1601753400,0),(375,-1583697600,1),(375,-1567357200,0),(375,-1554667200,1),(375,-1534698000,0),(375,-1524074400,1),(375,-1503248400,0),(375,-1492365600,1),(375,-1471798800,0),(375,-1460916000,1),(375,-1440954000,0),(375,-1428861600,1),(375,-1409504400,0),(375,-1397412000,1),(375,-1378054800,0),(375,-1365962400,1),(375,-1346605200,0),(375,-1333908000,1),(375,-1315155600,0),(375,-1301853600,1),(375,-1283706000,0),(375,-1270404000,1),(375,-1252256400,0),(375,-1238954400,1),(375,-1220806800,0),(375,-1207504800,1),(375,-1188752400,0),(375,-1176055200,1),(375,-1157302800,0),(375,-1144000800,1),(375,-1125853200,0),(375,-1112551200,1),(375,-1094403600,0),(375,-1081101600,1),(375,-1062954000,0),(375,-1049652000,1),(375,-1031504400,0),(375,-1018202400,1),(375,-1000054800,0),(375,-986752800,1),(375,-968000400,0),(375,-955303200,1),(375,-936550800,0),(375,-880218000,2),(375,-769395600,3),(375,-765396000,1),(375,-747248400,0),(375,-733946400,1),(375,-715806000,0),(375,-702504000,1),(375,-684356400,0),(375,-671054400,1),(375,-652906800,0),(375,-634161600,1),(375,-620845200,0),(375,-602704800,1),(375,-589395600,0),(375,-576093600,1),(375,-557946000,0),(375,-544644000,1),(375,-526496400,0),(375,-513194400,1),(375,-495046800,0),(375,-481744800,1),(375,-463597200,0),(375,-450295200,1),(375,-431542800,0),(375,-418240800,1),(375,-400093200,0),(375,-384372000,1),(375,-368643600,0),(375,-352922400,1),(375,-337194000,0),(375,-321472800,1),(375,-305744400,0),(375,-289418400,1),(375,-273690000,0),(375,-257968800,1),(375,-242240400,0),(375,-226519200,1),(375,-210790800,0),(375,-195069600,1),(375,-179341200,0),(375,-163620000,1),(375,-147891600,0),(375,-131565600,1),(375,-116442000,0),(375,-100116000,1),(375,-84387600,0),(375,-68666400,1),(375,-52938000,0),(375,-37216800,1),(375,-21488400,0),(375,-5767200,1),(375,9961200,0),(375,25682400,1),(375,41410800,0),(375,57736800,1),(375,73465200,0),(375,89186400,1),(375,104914800,0),(375,120636000,1),(375,136364400,0),(375,152085600,1),(375,167814000,0),(375,183535200,1),(375,199263600,0),(375,215589600,1),(375,230713200,0),(375,247039200,1),(375,262767600,0),(375,278488800,1),(375,294217200,0),(375,309938400,1),(375,325666800,0),(375,341388000,1),(375,357116400,0),(375,372837600,1),(375,388566000,0),(375,404892000,1),(375,420015600,0),(375,436341600,1),(375,452070000,0),(375,467791200,1),(375,483519600,0),(375,499240800,1),(375,514969200,0),(375,530690400,1),(375,544604400,0),(375,562140000,1),(375,576054000,0),(375,594194400,1),(375,607503600,0),(375,625644000,1),(375,638953200,0),(375,657093600,1),(375,671007600,0),(375,688543200,1),(375,702457200,0),(375,719992800,1),(375,733906800,0),(375,752047200,1),(375,765356400,0),(375,783496800,1),(375,796806000,0),(375,814946400,1),(375,828860400,0),(375,846396000,1),(375,860310000,0),(375,877845600,1),(375,891759600,0),(375,909295200,1),(375,923209200,0),(375,941349600,1),(375,954658800,0),(375,972799200,1),(375,986108400,0),(375,1004248800,1),(375,1018162800,0),(375,1035698400,1),(375,1049612400,0),(375,1067148000,1),(375,1081062000,0),(375,1099202400,1),(375,1112511600,0),(375,1130652000,1),(375,1143961200,0),(375,1162101600,1),(375,1173596400,0),(375,1194156000,1),(375,1205046000,0),(375,1225605600,1),(375,1236495600,0),(375,1257055200,1),(375,1268550000,0),(375,1289109600,1),(375,1299999600,0),(375,1320559200,1),(375,1331449200,0),(375,1352008800,1),(375,1362898800,0),(375,1383458400,1),(375,1394348400,0),(375,1414908000,1),(375,1425798000,0),(375,1446357600,1),(375,1457852400,0),(375,1478412000,1),(375,1489302000,0),(375,1509861600,1),(375,1520751600,0),(375,1541311200,1),(375,1552201200,0),(375,1572760800,1),(375,1583650800,0),(375,1604210400,1),(375,1615705200,0),(375,1636264800,1),(375,1647154800,0),(375,1667714400,1),(375,1678604400,0),(375,1699164000,1),(375,1710054000,0),(375,1730613600,1),(375,1741503600,0),(375,1762063200,1),(375,1772953200,0),(375,1793512800,1),(375,1805007600,0),(375,1825567200,1),(375,1836457200,0),(375,1857016800,1),(375,1867906800,0),(375,1888466400,1),(375,1899356400,0),(375,1919916000,1),(375,1930806000,0),(375,1951365600,1),(375,1962860400,0),(375,1983420000,1),(375,1994310000,0),(375,2014869600,1),(375,2025759600,0),(375,2046319200,1),(375,2057209200,0),(375,2077768800,1),(375,2088658800,0),(375,2109218400,1),(375,2120108400,0),(375,2140668000,1),(376,-1998663968,2),(376,-1632063600,1),(376,-1615132800,2),(376,-1600614000,1),(376,-1596816000,2),(376,-1567954800,1),(376,-1551628800,2),(376,-1536505200,1),(376,-1523203200,2),(376,-1504450800,1),(376,-1491753600,2),(376,-1473001200,1),(376,-1459699200,2),(376,-880210800,3),(376,-769395600,4),(376,-765388800,2),(376,-715791600,1),(376,-702489600,2),(376,-84380400,1),(376,-68659200,2),(376,-21481200,1),(376,-5760000,2),(376,73472400,1),(376,89193600,2),(376,104922000,1),(376,120643200,2),(376,136371600,1),(376,152092800,2),(376,167821200,1),(376,183542400,2),(376,199270800,1),(376,215596800,2),(376,230720400,1),(376,247046400,2),(376,262774800,1),(376,278496000,2),(376,294224400,1),(376,309945600,2),(376,325674000,1),(376,341395200,2),(376,357123600,1),(376,372844800,2),(376,388573200,1),(376,404899200,2),(376,420022800,1),(376,436348800,2),(376,452077200,1),(376,467798400,2),(376,483526800,1),(376,499248000,2),(376,514976400,1),(376,530697600,2),(376,544611600,1),(376,562147200,2),(376,576061200,1),(376,594201600,2),(376,607510800,1),(376,625651200,2),(376,638960400,1),(376,657100800,2),(376,671014800,1),(376,688550400,2),(376,702464400,1),(376,720000000,2),(376,733914000,1),(376,752054400,2),(376,765363600,1),(376,783504000,2),(376,796813200,1),(376,814953600,2),(376,828867600,1),(376,846403200,2),(376,860317200,1),(376,877852800,2),(376,891766800,1),(376,909302400,2),(376,923216400,1),(376,941356800,2),(376,954666000,1),(376,972806400,2),(376,986115600,1),(376,1004256000,2),(376,1018170000,1),(376,1035705600,2),(376,1049619600,1),(376,1067155200,2),(376,1081069200,1),(376,1099209600,2),(376,1112518800,1),(376,1130659200,2),(376,1143968400,1),(376,1162108800,2),(376,1173603600,1),(376,1194163200,2),(376,1205053200,1),(376,1225612800,2),(376,1236502800,1),(376,1257062400,2),(376,1268557200,1),(376,1289116800,2),(376,1300006800,1),(376,1320566400,2),(376,1331456400,1),(376,1352016000,2),(376,1362906000,1),(376,1383465600,2),(376,1394355600,1),(376,1414915200,2),(376,1425805200,1),(376,1446364800,2),(376,1457859600,1),(376,1478419200,2),(376,1489309200,1),(376,1509868800,2),(376,1520758800,1),(376,1541318400,2),(376,1552208400,1),(376,1572768000,2),(376,1583658000,1),(376,1604217600,2),(376,1615712400,1),(376,1636272000,2),(376,1647162000,1),(376,1667721600,2),(376,1678611600,1),(376,1699171200,2),(376,1710061200,1),(376,1730620800,2),(376,1741510800,1),(376,1762070400,2),(376,1772960400,1),(376,1793520000,2),(376,1805014800,1),(376,1825574400,2),(376,1836464400,1),(376,1857024000,2),(376,1867914000,1),(376,1888473600,2),(376,1899363600,1),(376,1919923200,2),(376,1930813200,1),(376,1951372800,2),(376,1962867600,1),(376,1983427200,2),(376,1994317200,1),(376,2014876800,2),(376,2025766800,1),(376,2046326400,2),(376,2057216400,1),(376,2077776000,2),(376,2088666000,1),(376,2109225600,2),(376,2120115600,1),(376,2140675200,2),(377,-1664130548,0),(377,-1650137348,1),(377,-1632076148,0),(377,-1615145348,1),(377,-1598650148,0),(377,-1590100148,1),(377,-1567286948,0),(377,-1551565748,1),(377,-1535837348,0),(377,-1520116148,1),(377,-1503782948,0),(377,-1488666548,1),(377,-1472333348,0),(377,-1457216948,1),(377,-1440883748,0),(377,-1425767348,1),(377,-1409434148,0),(377,-1394317748,1),(377,-1377984548,0),(377,-1362263348,1),(377,-1346534948,0),(377,-1330813748,1),(377,-1314480548,0),(377,-1299364148,1),(377,-1283030948,0),(377,-1267914548,1),(377,-1251581348,0),(377,-1236464948,1),(377,-1220131748,0),(377,-1205015348,1),(377,-1188682148,0),(377,-1172960948,1),(377,-1156627748,0),(377,-1141511348,1),(377,-1125178148,0),(377,-1110061748,1),(377,-1096921748,3),(377,-1093728600,2),(377,-1078612200,3),(377,-1061670600,2),(377,-1048973400,3),(377,-1030221000,2),(377,-1017523800,3),(377,-998771400,2),(377,-986074200,3),(377,-966717000,2),(377,-954624600,3),(377,-935267400,2),(377,-922570200,3),(377,-903817800,2),(377,-891120600,3),(377,-872368200,5),(377,-769395600,4),(377,-765401400,3),(377,-746044200,2),(377,-733347000,3),(377,-714594600,2),(377,-701897400,3),(377,-683145000,2),(377,-670447800,3),(377,-651695400,2),(377,-638998200,3),(377,-619641000,2),(377,-606943800,3),(377,-589401000,2),(377,-576099000,3),(377,-557951400,2),(377,-544649400,3),(377,-526501800,2),(377,-513199800,3),(377,-495052200,2),(377,-481750200,3),(377,-463602600,2),(377,-450300600,3),(377,-431548200,2),(377,-418246200,3),(377,-400098600,2),(377,-386796600,3),(377,-368649000,2),(377,-355347000,3),(377,-337199400,2),(377,-323897400,3),(377,-305749800,2),(377,-289423800,3),(377,-273695400,2),(377,-257974200,3),(377,-242245800,2),(377,-226524600,3),(377,-210796200,2),(377,-195075000,3),(377,-179346600,2),(377,-163625400,3),(377,-147897000,2),(377,-131571000,3),(377,-116447400,2),(377,-100121400,3),(377,-84393000,2),(377,-68671800,3),(377,-52943400,2),(377,-37222200,3),(377,-21493800,2),(377,-5772600,3),(377,9955800,2),(377,25677000,3),(377,41405400,2),(377,57731400,3),(377,73459800,2),(377,89181000,3),(377,104909400,2),(377,120630600,3),(377,136359000,2),(377,152080200,3),(377,167808600,2),(377,183529800,3),(377,199258200,2),(377,215584200,3),(377,230707800,2),(377,247033800,3),(377,262762200,2),(377,278483400,3),(377,294211800,2),(377,309933000,3),(377,325661400,2),(377,341382600,3),(377,357111000,2),(377,372832200,3),(377,388560600,2),(377,404886600,3),(377,420010200,2),(377,436336200,3),(377,452064600,2),(377,467785800,3),(377,483514200,2),(377,499235400,3),(377,514963800,2),(377,530685000,3),(377,544591860,2),(377,562127460,3),(377,576041460,6),(377,594178260,3),(377,607491060,2),(377,625631460,3),(377,638940660,2),(377,657081060,3),(377,670995060,2),(377,688530660,3),(377,702444660,2),(377,719980260,3),(377,733894260,2),(377,752034660,3),(377,765343860,2),(377,783484260,3),(377,796793460,2),(377,814933860,3),(377,828847860,2),(377,846383460,3),(377,860297460,2),(377,877833060,3),(377,891747060,2),(377,909282660,3),(377,923196660,2),(377,941337060,3),(377,954646260,2),(377,972786660,3),(377,986095860,2),(377,1004236260,3),(377,1018150260,2),(377,1035685860,3),(377,1049599860,2),(377,1067135460,3),(377,1081049460,2),(377,1099189860,3),(377,1112499060,2),(377,1130639460,3),(377,1143948660,2),(377,1162089060,3),(377,1173583860,2),(377,1194143460,3),(377,1205033460,2),(377,1225593060,3),(377,1236483060,2),(377,1257042660,3),(377,1268537460,2),(377,1289097060,3),(377,1299987060,2),(377,1320553800,3),(377,1331443800,2),(377,1352003400,3),(377,1362893400,2),(377,1383453000,3),(377,1394343000,2),(377,1414902600,3),(377,1425792600,2),(377,1446352200,3),(377,1457847000,2),(377,1478406600,3),(377,1489296600,2),(377,1509856200,3),(377,1520746200,2),(377,1541305800,3),(377,1552195800,2),(377,1572755400,3),(377,1583645400,2),(377,1604205000,3),(377,1615699800,2),(377,1636259400,3),(377,1647149400,2),(377,1667709000,3),(377,1678599000,2),(377,1699158600,3),(377,1710048600,2),(377,1730608200,3),(377,1741498200,2),(377,1762057800,3),(377,1772947800,2),(377,1793507400,3),(377,1805002200,2),(377,1825561800,3),(377,1836451800,2),(377,1857011400,3),(377,1867901400,2),(377,1888461000,3),(377,1899351000,2),(377,1919910600,3),(377,1930800600,2),(377,1951360200,3),(377,1962855000,2),(377,1983414600,3),(377,1994304600,2),(377,2014864200,3),(377,2025754200,2),(377,2046313800,3),(377,2057203800,2),(377,2077763400,3),(377,2088653400,2),(377,2109213000,3),(377,2120103000,2),(377,2140662600,3),(378,-1632060000,0),(378,-1615129200,1),(378,-880207200,2),(378,-769395600,3),(378,-765385200,1),(378,-747237600,0),(378,-732726000,1),(378,-715788000,0),(378,-702486000,1),(378,-684338400,0),(378,-671036400,1),(378,-652888800,0),(378,-639586800,1),(378,-620834400,0),(378,-608137200,1),(378,-589384800,0),(378,-576082800,1),(378,-557935200,0),(378,-544633200,1),(378,-526485600,0),(378,-513183600,1),(378,-495036000,0),(378,-481734000,1),(378,-463586400,0),(378,-450284400,1),(378,-431532000,0),(378,-418230000,1),(378,-400082400,0),(378,-386780400,1),(378,-368632800,0),(378,-355330800,1),(378,-337183200,0),(378,-323881200,1),(378,-305733600,0),(378,-292431600,1),(378,-273679200,0),(378,-260982000,1),(378,-242229600,0),(378,-226508400,1),(378,-210780000,0),(378,-195058800,1),(378,-179330400,0),(378,-163609200,1),(378,-147880800,0),(378,-131554800,1),(378,-116431200,0),(378,-100105200,1),(378,-84376800,0),(378,-68655600,1),(378,-52927200,0),(378,-37206000,1),(378,-21477600,0),(378,-5756400,1),(378,9972000,0),(378,25693200,1),(378,41421600,0),(378,57747600,1),(378,73476000,0),(378,89197200,1),(378,104925600,0),(378,120646800,1),(378,136375200,0),(378,152096400,1),(378,167824800,0),(378,183546000,1),(378,199274400,0),(378,215600400,1),(378,230724000,0),(378,247050000,1),(378,262778400,0),(378,278499600,1),(378,294228000,0),(378,309949200,1),(378,325677600,0),(378,341398800,1),(378,357127200,0),(378,372848400,1),(378,388576800,0),(378,404902800,1),(378,420026400,0),(378,436352400,1),(378,452080800,0),(378,467802000,1),(378,483530400,0),(378,499251600,1),(378,514980000,0),(378,530701200,1),(378,544615200,0),(378,562150800,1),(378,576064800,0),(378,594205200,1),(378,607514400,0),(378,625654800,1),(378,638964000,0),(378,657104400,1),(378,671018400,0),(378,688554000,1),(378,702468000,0),(378,720003600,1),(378,733917600,0),(378,752058000,1),(378,765367200,0),(378,783507600,1),(378,796816800,0),(378,814957200,1),(378,828871200,0),(378,846406800,1),(378,860320800,0),(378,877856400,1),(378,891770400,0),(378,909306000,1),(378,923220000,0),(378,941360400,1),(378,954669600,0),(378,972810000,1),(378,986119200,0),(378,1004259600,1),(378,1018173600,0),(378,1035709200,1),(378,1049623200,0),(378,1067158800,1),(378,1081072800,0),(378,1099213200,1),(378,1112522400,0),(378,1130662800,1),(378,1143972000,0),(378,1162112400,1),(378,1173607200,0),(378,1194166800,1),(378,1205056800,0),(378,1225616400,1),(378,1236506400,0),(378,1257066000,1),(378,1268560800,0),(378,1289120400,1),(378,1300010400,0),(378,1320570000,1),(378,1331460000,0),(378,1352019600,1),(378,1362909600,0),(378,1383469200,1),(378,1394359200,0),(378,1414918800,1),(378,1425808800,0),(378,1446368400,1),(378,1457863200,0),(378,1478422800,1),(378,1489312800,0),(378,1509872400,1),(378,1520762400,0),(378,1541322000,1),(378,1552212000,0),(378,1572771600,1),(378,1583661600,0),(378,1604221200,1),(378,1615716000,0),(378,1636275600,1),(378,1647165600,0),(378,1667725200,1),(378,1678615200,0),(378,1699174800,1),(378,1710064800,0),(378,1730624400,1),(378,1741514400,0),(378,1762074000,1),(378,1772964000,0),(378,1793523600,1),(378,1805018400,0),(378,1825578000,1),(378,1836468000,0),(378,1857027600,1),(378,1867917600,0),(378,1888477200,1),(378,1899367200,0),(378,1919926800,1),(378,1930816800,0),(378,1951376400,1),(378,1962871200,0),(378,1983430800,1),(378,1994320800,0),(378,2014880400,1),(378,2025770400,0),(378,2046330000,1),(378,2057220000,0),(378,2077779600,1),(378,2088669600,0),(378,2109229200,1),(378,2120119200,0),(378,2140678800,1),(379,-2030202084,2),(379,-1632063600,1),(379,-1615132800,2),(379,-1251651600,1),(379,-1238349600,2),(379,-1220202000,1),(379,-1206900000,2),(379,-1188752400,1),(379,-1175450400,2),(379,-1156698000,1),(379,-1144000800,2),(379,-1125248400,1),(379,-1111946400,2),(379,-1032714000,1),(379,-1016992800,2),(379,-1001264400,1),(379,-986148000,2),(379,-969814800,1),(379,-954093600,2),(379,-937760400,1),(379,-922039200,2),(379,-906310800,1),(379,-890589600,2),(379,-880210800,3),(379,-769395600,4),(379,-765388800,2),(379,-748450800,1),(379,-732729600,2),(379,-715791600,1),(379,-702489600,2),(379,-684342000,1),(379,-671040000,2),(379,-652892400,1),(379,-639590400,2),(379,-620838000,1),(379,-608140800,2),(379,-589388400,1),(379,-576086400,2),(379,-557938800,1),(379,-544636800,2),(379,-526489200,1),(379,-513187200,2),(379,-495039600,1),(379,-481737600,2),(379,-463590000,1),(379,-450288000,2),(379,-431535600,1),(379,-418233600,2),(379,-400086000,1),(379,-386784000,2),(379,-337186800,1),(379,-321465600,2),(379,-305737200,5),(380,-1632056400,0),(380,-1615125600,1),(380,-1596978000,0),(380,-1583164800,1),(380,-880203600,2),(380,-769395600,3),(380,-765381600,1),(380,-147884400,4),(380,-131554800,1),(380,-81961200,5),(380,325677600,6),(380,341398800,5),(380,357127200,6),(380,372848400,5),(380,388576800,6),(380,404902800,5),(380,420026400,6),(380,436352400,5),(380,452080800,6),(380,467802000,5),(380,483530400,6),(380,499251600,5),(380,514980000,6),(380,530701200,5),(380,544615200,6),(380,562150800,5),(380,576064800,6),(380,594205200,5),(380,607514400,6),(380,625654800,5),(380,638964000,6),(380,657104400,5),(380,671018400,6),(380,688554000,5),(380,702468000,6),(380,720003600,5),(380,733917600,6),(380,752058000,5),(380,765367200,6),(380,783507600,5),(380,796816800,6),(380,814957200,5),(380,828871200,6),(380,846406800,5),(380,860320800,6),(380,877856400,5),(380,891770400,6),(380,909306000,5),(380,923220000,6),(380,941360400,5),(380,954669600,6),(380,972810000,5),(380,986119200,6),(380,1004259600,5),(380,1018173600,6),(380,1035709200,5),(380,1049623200,6),(380,1067158800,5),(380,1081072800,6),(380,1099213200,5),(380,1112522400,6),(380,1130662800,5),(380,1143972000,6),(380,1162112400,5),(380,1173607200,6),(380,1194166800,5),(380,1205056800,6),(380,1225616400,5),(380,1236506400,6),(380,1257066000,5),(380,1268560800,6),(380,1289120400,5),(380,1300010400,6),(380,1320570000,5),(380,1331460000,6),(380,1352019600,5),(380,1362909600,6),(380,1383469200,5),(380,1394359200,6),(380,1414918800,5),(380,1425808800,6),(380,1446368400,5),(380,1457863200,6),(380,1478422800,5),(380,1489312800,6),(380,1509872400,5),(380,1520762400,6),(380,1541322000,5),(380,1552212000,6),(380,1572771600,5),(380,1583661600,6),(380,1604221200,5),(380,1615716000,6),(380,1636275600,5),(380,1647165600,6),(380,1667725200,5),(380,1678615200,6),(380,1699174800,5),(380,1710064800,6),(380,1730624400,5),(380,1741514400,6),(380,1762074000,5),(380,1772964000,6),(380,1793523600,5),(380,1805018400,6),(380,1825578000,5),(380,1836468000,6),(380,1857027600,5),(380,1867917600,6),(380,1888477200,5),(380,1899367200,6),(380,1919926800,5),(380,1930816800,6),(380,1951376400,5),(380,1962871200,6),(380,1983430800,5),(380,1994320800,6),(380,2014880400,5),(380,2025770400,6),(380,2046330000,5),(380,2057220000,6),(380,2077779600,5),(380,2088669600,6),(380,2109229200,5),(380,2120119200,6),(380,2140678800,5),(381,-1892661434,1),(381,-1688410800,0),(381,-1619205434,2),(381,-1593806400,0),(381,-1335986234,3),(381,-1317585600,1),(381,-1304362800,3),(381,-1286049600,1),(381,-1272826800,3),(381,-1254513600,1),(381,-1241290800,3),(381,-1222977600,1),(381,-1209754800,3),(381,-1191355200,1),(381,-1178132400,2),(381,-870552000,1),(381,-865278000,2),(381,-740520000,4),(381,-736376400,2),(381,-718056000,1),(381,-713649600,2),(381,-36619200,5),(381,-23922000,6),(381,-3355200,5),(381,7527600,6),(381,24465600,5),(381,37767600,6),(381,55915200,5),(381,69217200,6),(381,87969600,5),(381,100666800,6),(381,118209600,5),(381,132116400,6),(381,150868800,5),(381,163566000,6),(381,182318400,5),(381,195620400,6),(381,213768000,5),(381,227070000,6),(381,245217600,5),(381,258519600,6),(381,277272000,5),(381,289969200,6),(381,308721600,5),(381,321418800,6),(381,340171200,5),(381,353473200,6),(381,371620800,5),(381,384922800,6),(381,403070400,5),(381,416372400,6),(381,434520000,5),(381,447822000,6),(381,466574400,5),(381,479271600,6),(381,498024000,5),(381,510721200,6),(381,529473600,5),(381,545194800,6),(381,560923200,5),(381,574225200,6),(381,592372800,5),(381,605674800,6),(381,624427200,5),(381,637124400,6),(381,653457600,5),(381,668574000,6),(381,687326400,5),(381,700628400,6),(381,718776000,5),(381,732078000,6),(381,750225600,5),(381,763527600,6),(381,781675200,5),(381,794977200,6),(381,813729600,5),(381,826426800,6),(381,845179200,5),(381,859690800,6),(381,876628800,5),(381,889930800,6),(381,906868800,5),(381,923194800,6),(381,939528000,5),(381,952830000,6),(381,971582400,5),(381,984279600,6),(381,1003032000,5),(381,1015729200,6),(381,1034481600,5),(381,1047178800,6),(381,1065931200,5),(381,1079233200,6),(381,1097380800,5),(381,1110682800,6),(381,1128830400,5),(381,1142132400,6),(381,1160884800,5),(381,1173582000,6),(381,1192334400,5),(381,1206846000,6),(381,1223784000,5),(381,1237086000,6),(381,1255233600,5),(381,1270350000,6),(381,1286683200,5),(381,1304823600,6),(381,1313899200,5),(381,1335668400,6),(381,1346558400,5),(381,1367118000,6),(381,1378612800,5),(381,1398567600,6),(381,1410062400,5),(381,1463281200,6),(381,1471147200,5),(381,1494730800,6),(381,1502596800,5),(381,1526180400,6),(381,1534046400,5),(381,1557630000,6),(381,1565496000,5),(381,1589079600,6),(381,1596945600,5),(381,1620529200,6),(381,1629000000,5),(381,1652583600,6),(381,1660449600,5),(381,1684033200,6),(381,1691899200,5),(381,1715482800,6),(381,1723348800,5),(381,1746932400,6),(381,1754798400,5),(381,1778382000,6),(381,1786248000,5),(381,1809831600,6),(381,1818302400,5),(381,1841886000,6),(381,1849752000,5),(381,1873335600,6),(381,1881201600,5),(381,1904785200,6),(381,1912651200,5),(381,1936234800,6),(381,1944100800,5),(381,1967684400,6),(381,1976155200,5),(381,1999738800,6),(381,2007604800,5),(381,2031188400,6),(381,2039054400,5),(381,2062638000,6),(381,2070504000,5),(381,2094087600,6),(381,2101953600,5),(381,2125537200,6),(381,2133403200,5),(382,-1178124152,3),(382,-36619200,1),(382,-23922000,2),(382,-3355200,1),(382,7527600,2),(382,24465600,1),(382,37767600,2),(382,55915200,1),(382,69217200,2),(382,87969600,1),(382,100666800,2),(382,118209600,1),(382,132116400,2),(382,150868800,1),(382,163566000,2),(382,182318400,1),(382,195620400,2),(382,213768000,1),(382,227070000,2),(382,245217600,1),(382,258519600,2),(382,277272000,1),(382,289969200,2),(382,308721600,1),(382,321418800,2),(382,340171200,1),(382,353473200,2),(382,371620800,1),(382,384922800,4),(382,403070400,5),(382,416372400,4),(382,434520000,5),(382,447822000,4),(382,466574400,5),(382,479271600,4),(382,498024000,5),(382,510721200,4),(382,529473600,5),(382,545194800,4),(382,560923200,5),(382,574225200,4),(382,592372800,5),(382,605674800,4),(382,624427200,5),(382,637124400,4),(382,653457600,5),(382,668574000,4),(382,687326400,5),(382,700628400,4),(382,718776000,5),(382,732078000,4),(382,750225600,5),(382,763527600,4),(382,781675200,5),(382,794977200,4),(382,813729600,5),(382,826426800,4),(382,845179200,5),(382,859690800,4),(382,876628800,5),(382,889930800,4),(382,906868800,5),(382,923194800,4),(382,939528000,5),(382,952830000,4),(382,971582400,5),(382,984279600,4),(382,1003032000,5),(382,1015729200,4),(382,1034481600,5),(382,1047178800,4),(382,1065931200,5),(382,1079233200,4),(382,1097380800,5),(382,1110682800,4),(382,1128830400,5),(382,1142132400,4),(382,1160884800,5),(382,1173582000,4),(382,1192334400,5),(382,1206846000,4),(382,1223784000,5),(382,1237086000,4),(382,1255233600,5),(382,1270350000,4),(382,1286683200,5),(382,1304823600,4),(382,1313899200,5),(382,1335668400,4),(382,1346558400,5),(382,1367118000,4),(382,1378612800,5),(382,1398567600,4),(382,1410062400,5),(382,1463281200,4),(382,1471147200,5),(382,1494730800,4),(382,1502596800,5),(382,1526180400,4),(382,1534046400,5),(382,1557630000,4),(382,1565496000,5),(382,1589079600,4),(382,1596945600,5),(382,1620529200,4),(382,1629000000,5),(382,1652583600,4),(382,1660449600,5),(382,1684033200,4),(382,1691899200,5),(382,1715482800,4),(382,1723348800,5),(382,1746932400,4),(382,1754798400,5),(382,1778382000,4),(382,1786248000,5),(382,1809831600,4),(382,1818302400,5),(382,1841886000,4),(382,1849752000,5),(382,1873335600,4),(382,1881201600,5),(382,1904785200,4),(382,1912651200,5),(382,1936234800,4),(382,1944100800,5),(382,1967684400,4),(382,1976155200,5),(382,1999738800,4),(382,2007604800,5),(382,2031188400,4),(382,2039054400,5),(382,2062638000,4),(382,2070504000,5),(382,2094087600,4),(382,2101953600,5),(382,2125537200,4),(382,2133403200,5),(383,-1402813824,2),(383,-1311534000,1),(383,-1300996800,2),(383,-933534000,1),(383,-925675200,2),(383,-902084400,1),(383,-893620800,2),(383,-870030000,1),(383,-862171200,2),(383,-775681200,1),(383,-767822400,2),(383,-744231600,1),(383,-736372800,2),(383,-144702000,1),(383,-134251200,2),(383,-113425200,1),(383,-102542400,2),(383,-86295600,1),(383,-72907200,2),(383,-54154800,1),(383,-41457600,2),(383,-21495600,1),(383,-5774400,2),(383,9954000,1),(383,25675200,2),(383,41403600,1),(383,57729600,2),(383,73458000,1),(383,87364800,2),(383,104907600,1),(383,118900800,2),(383,136357200,1),(383,150436800,2),(383,167806800,1),(383,183528000,2),(383,199256400,1),(383,215582400,2),(383,230706000,1),(383,247032000,2),(383,263365200,1),(383,276667200,2),(383,290581200,1),(383,308721600,2),(383,322030800,1),(383,340171200,2),(383,358318800,1),(383,371620800,2),(383,389768400,1),(383,403070400,2),(383,421218000,1),(383,434520000,2),(383,452667600,1),(383,466574400,2),(383,484117200,1),(383,498024000,2),(383,511333200,1),(383,529473600,2),(383,542782800,1),(383,560923200,2),(383,574837200,1),(383,592372800,2),(383,606286800,1),(383,623822400,2),(383,638946000,1),(383,655876800,2),(383,671000400,1),(383,687330000,3),(383,702450000,1),(383,718779600,3),(383,733899600,1),(383,750229200,3),(383,765349200,1),(383,781678800,3),(383,796798800,1),(383,813128400,3),(383,828853200,1),(383,844578000,3),(383,860302800,1),(383,876632400,3),(383,891147600,4),(383,909291600,3),(383,922597200,4),(383,941346000,3),(383,954651600,4),(383,972795600,3),(383,986101200,4),(383,1004245200,3),(383,1018155600,4),(383,1035694800,3),(383,1049605200,4),(383,1067144400,3),(383,1080450000,4),(383,1162098000,3),(383,1173589200,4),(383,1193547600,3),(383,1205643600,4),(383,1224997200,3),(383,1236488400,4),(383,1256446800,3),(383,1268542800,4),(383,1288501200,3),(383,1300597200,4),(383,1321160400,3),(383,1333256400,4),(383,1352005200,3),(383,1362891600,4),(383,1383454800,3),(383,1394341200,4),(383,1414904400,3),(383,1425790800,4),(383,1446354000,3),(383,1457845200,4),(383,1478408400,3),(383,1489294800,4),(383,1509858000,3),(383,1520744400,4),(383,1541307600,3),(383,1552194000,4),(383,1572757200,3),(383,1583643600,4),(383,1604206800,3),(383,1615698000,4),(383,1636261200,3),(383,1647147600,4),(383,1667710800,3),(383,1678597200,4),(383,1699160400,3),(383,1710046800,4),(383,1730610000,3),(383,1741496400,4),(383,1762059600,3),(383,1772946000,4),(383,1793509200,3),(383,1805000400,4),(383,1825563600,3),(383,1836450000,4),(383,1857013200,3),(383,1867899600,4),(383,1888462800,3),(383,1899349200,4),(383,1919912400,3),(383,1930798800,4),(383,1951362000,3),(383,1962853200,4),(383,1983416400,3),(383,1994302800,4),(383,2014866000,3),(383,2025752400,4),(383,2046315600,3),(383,2057202000,4),(383,2077765200,3),(383,2088651600,4),(383,2109214800,3),(383,2120101200,4),(383,2140664400,3),(384,228877200,0),(384,243997200,1),(384,260326800,0),(384,276051600,1),(384,291776400,0),(384,307501200,1),(384,323830800,0),(384,338950800,1),(384,354675600,0),(384,370400400,1),(384,386125200,0),(384,401850000,1),(384,417574800,0),(384,433299600,1),(384,449024400,0),(384,465354000,1),(384,481078800,0),(384,496803600,1),(384,512528400,0),(384,528253200,1),(384,543978000,0),(384,559702800,1),(384,575427600,0),(384,591152400,1),(384,606877200,0),(384,622602000,1),(384,638326800,0),(384,654656400,1),(384,670381200,0),(384,686106000,1),(384,701830800,0),(384,717555600,1),(384,733280400,0),(384,749005200,1),(384,764730000,0),(384,780454800,1),(384,796179600,0),(384,811904400,1),(384,828234000,0),(384,846378000,1),(384,859683600,0),(384,877827600,1),(384,891133200,0),(384,909277200,1),(384,922582800,0),(384,941331600,1),(384,954032400,0),(384,972781200,1),(384,985482000,0),(384,1004230800,1),(384,1017536400,0),(384,1035680400,1),(384,1048986000,0),(384,1067130000,1),(384,1080435600,0),(384,1099184400,1),(384,1111885200,0),(384,1130634000,1),(384,1143334800,0),(384,1162083600,1),(384,1174784400,0),(384,1193533200,1),(384,1206838800,0),(384,1224982800,1),(384,1238288400,0),(384,1256432400,1),(384,1269738000,0),(384,1288486800,1),(384,1301187600,0),(384,1319936400,1),(384,1332637200,0),(384,1351386000,1),(384,1364691600,0),(384,1382835600,1),(384,1396141200,0),(384,1414285200,1),(384,1427590800,0),(384,1445734800,1),(384,1459040400,0),(384,1477789200,1),(384,1490490000,0),(384,1509238800,1),(384,1521939600,0),(384,1540688400,1),(384,1553994000,0),(384,1572138000,1),(384,1585443600,0),(384,1603587600,1),(384,1616893200,0),(384,1635642000,1),(384,1648342800,0),(384,1667091600,1),(384,1679792400,0),(384,1698541200,1),(384,1711846800,0),(384,1729990800,1),(384,1743296400,0),(384,1761440400,1),(384,1774746000,0),(384,1792890000,1),(384,1806195600,0),(384,1824944400,1),(384,1837645200,0),(384,1856394000,1),(384,1869094800,0),(384,1887843600,1),(384,1901149200,0),(384,1919293200,1),(384,1932598800,0),(384,1950742800,1),(384,1964048400,0),(384,1982797200,1),(384,1995498000,0),(384,2014246800,1),(384,2026947600,0),(384,2045696400,1),(384,2058397200,0),(384,2077146000,1),(384,2090451600,0),(384,2108595600,1),(384,2121901200,0),(384,2140045200,1),(386,-1633280400,0),(386,-1615140000,1),(386,-1601830800,0),(386,-1583690400,1),(386,-880218000,2),(386,-769395600,3),(386,-765396000,1),(386,-84387600,0),(386,-68666400,1),(386,-52938000,0),(386,-37216800,1),(386,-21488400,0),(386,-5767200,1),(386,9961200,0),(386,25682400,1),(386,41410800,0),(386,57736800,1),(386,73465200,0),(386,89186400,1),(386,104914800,0),(386,120636000,1),(386,126687600,0),(386,152085600,1),(386,162370800,0),(386,183535200,1),(386,199263600,0),(386,215589600,1),(386,230713200,0),(386,247039200,1),(386,262767600,0),(386,278488800,1),(386,294217200,0),(386,309938400,1),(386,325666800,0),(386,341388000,1),(386,357116400,0),(386,372837600,1),(386,388566000,0),(386,404892000,1),(386,420015600,0),(386,436341600,1),(386,452070000,0),(386,467791200,1),(386,483519600,0),(386,499240800,1),(386,514969200,0),(386,530690400,1),(386,544604400,0),(386,562140000,1),(386,576054000,0),(386,594194400,1),(386,607503600,0),(386,625644000,1),(386,638953200,0),(386,657093600,1),(386,671007600,0),(386,688543200,1),(386,702457200,0),(386,719992800,1),(386,733906800,0),(386,752047200,1),(386,765356400,0),(386,783496800,1),(386,796806000,0),(386,814946400,1),(386,828860400,0),(386,846396000,1),(386,860310000,0),(386,877845600,1),(386,891759600,0),(386,909295200,1),(386,923209200,0),(386,941349600,1),(386,954658800,0),(386,972799200,1),(386,986108400,0),(386,1004248800,1),(386,1018162800,0),(386,1035698400,1),(386,1049612400,0),(386,1067148000,1),(386,1081062000,0),(386,1099202400,1),(386,1112511600,0),(386,1130652000,1),(386,1143961200,0),(386,1162101600,1),(386,1173596400,0),(386,1194156000,1),(386,1205046000,0),(386,1225605600,1),(386,1236495600,0),(386,1257055200,1),(386,1268550000,0),(386,1289109600,1),(386,1299999600,0),(386,1320559200,1),(386,1331449200,0),(386,1352008800,1),(386,1362898800,0),(386,1383458400,1),(386,1394348400,0),(386,1414908000,1),(386,1425798000,0),(386,1446357600,1),(386,1457852400,0),(386,1478412000,1),(386,1489302000,0),(386,1509861600,1),(386,1520751600,0),(386,1541311200,1),(386,1552201200,0),(386,1572760800,1),(386,1583650800,0),(386,1604210400,1),(386,1615705200,0),(386,1636264800,1),(386,1647154800,0),(386,1667714400,1),(386,1678604400,0),(386,1699164000,1),(386,1710054000,0),(386,1730613600,1),(386,1741503600,0),(386,1762063200,1),(386,1772953200,0),(386,1793512800,1),(386,1805007600,0),(386,1825567200,1),(386,1836457200,0),(386,1857016800,1),(386,1867906800,0),(386,1888466400,1),(386,1899356400,0),(386,1919916000,1),(386,1930806000,0),(386,1951365600,1),(386,1962860400,0),(386,1983420000,1),(386,1994310000,0),(386,2014869600,1),(386,2025759600,0),(386,2046319200,1),(386,2057209200,0),(386,2077768800,1),(386,2088658800,0),(386,2109218400,1),(386,2120108400,0),(386,2140668000,1),(387,-929844000,0),(387,-923108400,1),(387,-906170400,0),(387,-892868400,1),(387,-875844000,0),(387,-857790000,1),(387,-844308000,0),(387,-825822000,1),(387,-812685600,0),(387,-794199600,1),(387,-779853600,0),(387,-762663600,1),(387,-399088800,0),(387,-386650800,1),(387,-368330400,0),(387,-355114800,1),(387,-336790800,0),(387,-323654400,1),(387,-305168400,0),(387,-292032000,1),(387,-273632400,0),(387,-260496000,1),(387,-242096400,0),(387,-228960000,1),(387,-210560400,0),(387,-197424000,1),(387,-178938000,0),(387,-165801600,1),(387,-147402000,0),(387,-134265600,1),(387,-115866000,0),(387,-102643200,1),(387,-84330000,0),(387,-71107200,1),(387,-52707600,0),(387,-39484800,1),(387,-21171600,0),(387,-7948800,1),(387,10364400,0),(387,23587200,1),(387,41900400,0),(387,55123200,1),(387,73522800,0),(387,86745600,1),(387,105058800,0),(387,118281600,1),(387,136594800,0),(387,149817600,1),(387,168130800,0),(387,181353600,1),(387,199753200,0),(387,212976000,1),(387,231289200,0),(387,244512000,1),(387,262825200,0),(387,276048000,1),(387,294361200,0),(387,307584000,1),(387,325983600,0),(387,339206400,1),(387,357519600,0),(387,370742400,1),(387,396399600,0),(387,402278400,1),(387,426812400,0),(387,433814400,1),(387,452214000,0),(387,465436800,1),(387,483750000,0),(387,496972800,1),(387,515286000,0),(387,528508800,1),(387,546822000,0),(387,560044800,1),(387,578444400,0),(387,591667200,1),(387,610412400,0),(387,623203200,1),(387,641516400,0),(387,654739200,1),(387,673052400,0),(387,686275200,1),(387,704674800,0),(387,717897600,1),(387,736210800,0),(387,749433600,1),(387,767746800,0),(387,780969600,1),(387,799020000,2),(387,812322000,1),(387,830469600,2),(387,843771600,1),(387,861919200,2),(387,875221200,1),(387,893368800,2),(387,906670800,1),(387,925423200,2),(387,938725200,1),(387,956872800,2),(387,970174800,1),(387,988322400,2),(387,1001624400,1),(387,1019772000,2),(387,1033074000,1),(387,1051221600,2),(387,1064523600,1),(387,1083276000,2),(387,1096578000,1),(387,1114725600,2),(387,1128027600,1),(387,1146175200,2),(387,1158872400,1),(387,1177624800,2),(387,1189112400,1),(387,1209074400,2),(387,1219957200,1),(387,1240524000,2),(387,1250802000,1),(387,1272578400,2),(387,1281474000,1),(387,1284069600,0),(387,1285880400,1),(387,1400191200,0),(387,1403816400,1),(387,1406844000,0),(387,1411678800,1),(388,-1691962479,1),(388,-1680471279,3),(388,-1664143200,2),(388,-1650146400,3),(388,-1633903200,2),(388,-1617487200,3),(388,-1601848800,2),(388,-1586037600,3),(388,-1570399200,2),(388,-1552168800,3),(388,-1538344800,2),(388,-1522533600,3),(388,-1517011200,5),(388,-1507500000,4),(388,-1490565600,3),(388,-1473631200,4),(388,-1460930400,3),(388,-1442786400,4),(388,-1428876000,3),(388,-1410732000,4),(388,-1396216800,3),(388,-1379282400,4),(388,-1364767200,3),(388,-1348437600,4),(388,-1333317600,3),(388,-1315778400,4),(388,-1301263200,3),(388,-1284328800,4),(388,-1269813600,3),(388,-1253484000,4),(388,-1238364000,3),(388,-1221429600,4),(388,-1206914400,3),(388,-1189980000,4),(388,-1175464800,3),(388,-1159135200,4),(388,-1143410400,3),(388,-1126476000,4),(388,-1111960800,3),(388,-1095631200,4),(388,-1080511200,3),(388,-1063576800,4),(388,-1049061600,3),(388,-1032127200,4),(388,-1017612000,3),(388,-1001282400,4),(388,-986162400,3),(388,-969228000,4),(388,-950479200,3),(388,-942012000,4),(388,-733356000,3),(388,-719445600,4),(388,-699487200,3),(388,-684972000,4),(388,-668037600,3),(388,-654732000,4),(388,-636588000,3),(388,-622072800,4),(388,-605743200,3),(388,-590623200,4),(388,-574293600,3),(388,-558568800,4),(388,-542239200,3),(388,-527119200,4),(388,-512604000,3),(388,-496274400,4),(388,-481154400,3),(388,-464220000,4),(388,-449704800,3),(388,-432165600,4),(388,-417650400,3),(388,-401320800,4),(388,-386200800,3),(388,-369266400,4),(388,-354751200,3),(388,-337816800,4),(388,-323301600,3),(388,-306972000,4),(388,-291852000,3),(388,-276732000,4),(388,-257983200,3),(388,-245282400,4),(388,-226533600,3),(388,-213228000,4),(388,-195084000,3),(388,-182383200,4),(388,-163634400,3),(388,-150933600,4),(388,-132184800,3),(388,-119484000,4),(388,-100735200,3),(388,-88034400,4),(388,-68680800,3),(388,-59004000,4),(388,-37242000,6),(388,57722400,8),(388,69818400,4),(388,89172000,3),(388,101268000,4),(388,120621600,3),(388,132717600,4),(388,152071200,3),(388,164167200,4),(388,183520800,3),(388,196221600,4),(388,214970400,3),(388,227671200,4),(388,246420000,3),(388,259120800,4),(388,278474400,3),(388,290570400,4),(388,309924000,3),(388,322020000,4),(388,341373600,3),(388,354675600,7),(388,372819600,8),(388,386125200,7),(388,404269200,8),(388,417574800,7),(388,435718800,8),(388,449024400,7),(388,467773200,8),(388,481078800,7),(388,499222800,8),(388,512528400,7),(388,530672400,8),(388,543978000,7),(388,562122000,8),(388,575427600,7),(388,593571600,8),(388,606877200,7),(388,625626000,8),(388,638326800,7),(388,657075600,8),(388,670381200,7),(388,688525200,8),(388,701830800,7),(388,719974800,8),(388,733280400,7),(388,751424400,8),(388,764730000,7),(388,782874000,8),(388,796179600,7),(388,814323600,8),(388,820454400,5),(388,828234000,7),(388,846378000,8),(388,859683600,7),(388,877827600,8),(388,891133200,7),(388,909277200,8),(388,922582800,7),(388,941331600,8),(388,954032400,7),(388,972781200,8),(388,985482000,7),(388,1004230800,8),(388,1017536400,7),(388,1035680400,8),(388,1048986000,7),(388,1067130000,8),(388,1080435600,7),(388,1099184400,8),(388,1111885200,7),(388,1130634000,8),(388,1143334800,7),(388,1162083600,8),(388,1174784400,7),(388,1193533200,8),(388,1206838800,7),(388,1224982800,8),(388,1238288400,7),(388,1256432400,8),(388,1269738000,7),(388,1288486800,8),(388,1301187600,7),(388,1319936400,8),(388,1332637200,7),(388,1351386000,8),(388,1364691600,7),(388,1382835600,8),(388,1396141200,7),(388,1414285200,8),(388,1427590800,7),(388,1445734800,8),(388,1459040400,7),(388,1477789200,8),(388,1490490000,7),(388,1509238800,8),(388,1521939600,7),(388,1540688400,8),(388,1553994000,7),(388,1572138000,8),(388,1585443600,7),(388,1603587600,8),(388,1616893200,7),(388,1635642000,8),(388,1648342800,7),(388,1667091600,8),(388,1679792400,7),(388,1698541200,8),(388,1711846800,7),(388,1729990800,8),(388,1743296400,7),(388,1761440400,8),(388,1774746000,7),(388,1792890000,8),(388,1806195600,7),(388,1824944400,8),(388,1837645200,7),(388,1856394000,8),(388,1869094800,7),(388,1887843600,8),(388,1901149200,7),(388,1919293200,8),(388,1932598800,7),(388,1950742800,8),(388,1964048400,7),(388,1982797200,8),(388,1995498000,7),(388,2014246800,8),(388,2026947600,7),(388,2045696400,8),(388,2058397200,7),(388,2077146000,8),(388,2090451600,7),(388,2108595600,8),(388,2121901200,7),(388,2140045200,8),(424,-1693700372,0),(424,-1680484772,1),(424,-1663453172,2),(424,-1650147572,3),(424,-1633213172,2),(424,-1617488372,3),(424,-1601158772,2),(424,-1586038772,3),(424,-1569709172,2),(424,-1554589172,3),(424,-1538259572,2),(424,-1523139572,3),(424,-1507501172,2),(424,-1490566772,3),(424,-1470176372,2),(424,-1459117172,3),(424,-1443997172,2),(424,-1427667572,3),(424,-1406672372,2),(424,-1396217972,3),(424,-1376950772,2),(424,-1364768372,3),(424,-1345414772,2),(424,-1333318772,3),(424,-1313792372,2),(424,-1301264372,3),(424,-1282256372,2),(424,-1269814772,3),(424,-1250720372,2),(424,-1238365172,3),(424,-1219184372,2),(424,-1206915572,3),(424,-1186957172,2),(424,-1175465972,3),(424,-1156025972,2),(424,-1143411572,3),(424,-1124489972,2),(424,-1111961972,3),(424,-1092953972,2),(424,-1080512372,3),(424,-1061331572,2),(424,-1049062772,3),(424,-1029190772,2),(424,-1025745572,6),(424,-1017613200,4),(424,-998259600,5),(424,-986163600,4),(424,-966723600,5),(424,-954109200,4),(424,-935022000,9),(424,-857257200,7),(424,-844556400,8),(424,-828226800,7),(424,-812502000,8),(424,-796777200,7),(424,-781052400,8),(424,-766623600,7),(424,220921200,12),(424,228877200,10),(424,243997200,11),(424,260326800,10),(424,276051600,11),(424,291776400,10),(424,307501200,11),(424,323830800,10),(424,338950800,11),(424,354675600,10),(424,370400400,11),(424,386125200,10),(424,401850000,11),(424,417574800,10),(424,433299600,11),(424,449024400,10),(424,465354000,11),(424,481078800,10),(424,496803600,11),(424,512528400,10),(424,528253200,11),(424,543978000,10),(424,559702800,11),(424,575427600,10),(424,591152400,11),(424,606877200,10),(424,622602000,11),(424,638326800,10),(424,654656400,11),(424,670381200,10),(424,686106000,11),(424,701830800,10),(424,717555600,11),(424,733280400,10),(424,749005200,11),(424,764730000,10),(424,780454800,11),(424,796179600,10),(424,811904400,11),(424,828234000,10),(424,846378000,11),(424,859683600,10),(424,877827600,11),(424,891133200,10),(424,909277200,11),(424,922582800,10),(424,941331600,11),(424,954032400,10),(424,972781200,11),(424,985482000,10),(424,1004230800,11),(424,1017536400,10),(424,1035680400,11),(424,1048986000,10),(424,1067130000,11),(424,1080435600,10),(424,1099184400,11),(424,1111885200,10),(424,1130634000,11),(424,1143334800,10),(424,1162083600,11),(424,1174784400,10),(424,1193533200,11),(424,1206838800,10),(424,1224982800,11),(424,1238288400,10),(424,1256432400,11),(424,1269738000,10),(424,1288486800,11),(424,1301187600,10),(424,1319936400,11),(424,1332637200,10),(424,1351386000,11),(424,1364691600,10),(424,1382835600,11),(424,1396141200,10),(424,1414285200,11),(424,1427590800,10),(424,1445734800,11),(424,1459040400,10),(424,1477789200,11),(424,1490490000,10),(424,1509238800,11),(424,1521939600,10),(424,1540688400,11),(424,1553994000,10),(424,1572138000,11),(424,1585443600,10),(424,1603587600,11),(424,1616893200,10),(424,1635642000,11),(424,1648342800,10),(424,1667091600,11),(424,1679792400,10),(424,1698541200,11),(424,1711846800,10),(424,1729990800,11),(424,1743296400,10),(424,1761440400,11),(424,1774746000,10),(424,1792890000,11),(424,1806195600,10),(424,1824944400,11),(424,1837645200,10),(424,1856394000,11),(424,1869094800,10),(424,1887843600,11),(424,1901149200,10),(424,1919293200,11),(424,1932598800,10),(424,1950742800,11),(424,1964048400,10),(424,1982797200,11),(424,1995498000,10),(424,2014246800,11),(424,2026947600,10),(424,2045696400,11),(424,2058397200,10),(424,2077146000,11),(424,2090451600,10),(424,2108595600,11),(424,2121901200,10),(424,2140045200,11),(425,-733881600,1),(425,481078800,2),(425,496803600,3),(425,512528400,2),(425,528253200,3),(425,543978000,2),(425,559702800,3),(425,575427600,2),(425,591152400,3),(425,606877200,2),(425,622602000,3),(425,638326800,2),(425,654656400,3),(425,670381200,2),(425,686106000,3),(425,701830800,2),(425,717555600,3),(425,733280400,2),(425,749005200,3),(425,764730000,2),(425,780454800,3),(425,796179600,2),(425,811904400,3),(425,828234000,2),(425,846378000,3),(425,859683600,2),(425,877827600,3),(425,891133200,2),(425,909277200,3),(425,922582800,2),(425,941331600,3),(425,954032400,2),(425,972781200,3),(425,985482000,2),(425,1004230800,3),(425,1017536400,2),(425,1035680400,3),(425,1048986000,2),(425,1067130000,3),(425,1080435600,2),(425,1099184400,3),(425,1111885200,2),(425,1130634000,3),(425,1143334800,2),(425,1162083600,3),(425,1174784400,2),(425,1193533200,3),(425,1206838800,2),(425,1224982800,3),(425,1238288400,2),(425,1256432400,3),(425,1269738000,2),(425,1288486800,3),(425,1301187600,2),(425,1319936400,3),(425,1332637200,2),(425,1351386000,3),(425,1364691600,2),(425,1382835600,3),(425,1396141200,2),(425,1414285200,3),(425,1427590800,2),(425,1445734800,3),(425,1459040400,2),(425,1477789200,3),(425,1490490000,2),(425,1509238800,3),(425,1521939600,2),(425,1540688400,3),(425,1553994000,2),(425,1572138000,3),(425,1585443600,2),(425,1603587600,3),(425,1616893200,2),(425,1635642000,3),(425,1648342800,2),(425,1667091600,3),(425,1679792400,2),(425,1698541200,3),(425,1711846800,2),(425,1729990800,3),(425,1743296400,2),(425,1761440400,3),(425,1774746000,2),(425,1792890000,3),(425,1806195600,2),(425,1824944400,3),(425,1837645200,2),(425,1856394000,3),(425,1869094800,2),(425,1887843600,3),(425,1901149200,2),(425,1919293200,3),(425,1932598800,2),(425,1950742800,3),(425,1964048400,2),(425,1982797200,3),(425,1995498000,2),(425,2014246800,3),(425,2026947600,2),(425,2045696400,3),(425,2058397200,2),(425,2077146000,3),(425,2090451600,2),(425,2108595600,3),(425,2121901200,2),(425,2140045200,3),(426,-1441249932,1),(426,-1247540400,3),(426,354916800,2),(426,370724400,3),(426,386452800,2),(426,402260400,3),(426,417988800,2),(426,433796400,3),(426,449611200,2),(426,465343200,4),(426,481068000,5),(426,496792800,4),(426,512517600,5),(426,528242400,4),(426,543967200,5),(426,559692000,4),(426,575416800,5),(426,591141600,4),(426,606866400,6),(426,622594800,7),(426,638319600,6),(426,654649200,7),(426,670374000,4),(426,701820000,6),(426,717548400,7),(426,733273200,6),(426,748998000,7),(426,764722800,6),(426,780447600,7),(426,796172400,6),(426,811897200,7),(426,828226800,6),(426,846370800,7),(426,859676400,6),(426,877820400,7),(426,891126000,6),(426,909270000,7),(426,922575600,6),(426,941324400,7),(426,954025200,6),(426,972774000,7),(426,985474800,6),(426,1004223600,7),(426,1017529200,6),(426,1035673200,7),(426,1048978800,6),(426,1067122800,7),(426,1080428400,6),(426,1099177200,7),(426,1111878000,6),(426,1130626800,7),(426,1143327600,6),(426,1162076400,7),(426,1174777200,6),(426,1193526000,7),(426,1206831600,6),(426,1224975600,7),(426,1238281200,6),(426,1256425200,7),(426,1269730800,6),(426,1288479600,7),(426,1301180400,4),(426,1414274400,7),(426,1459033200,4),(427,-1686101632,2),(427,-1182996000,1),(427,-1178161200,2),(427,-906861600,1),(427,-904878000,4),(427,-857257200,3),(427,-844477200,4),(427,-828237600,3),(427,-812422800,2),(427,-552362400,1),(427,-541652400,2),(427,166485600,5),(427,186184800,6),(427,198028800,5),(427,213753600,6),(427,228873600,5),(427,244080000,6),(427,260323200,5),(427,275446800,2),(427,291798000,1),(427,307407600,2),(427,323388000,1),(427,338936400,2),(427,354675600,7),(427,370400400,8),(427,386125200,7),(427,401850000,8),(427,417574800,7),(427,433299600,8),(427,449024400,7),(427,465354000,8),(427,481078800,7),(427,496803600,8),(427,512528400,7),(427,528253200,8),(427,543978000,7),(427,559702800,8),(427,575427600,7),(427,591152400,8),(427,606877200,7),(427,622602000,8),(427,638326800,7),(427,654656400,8),(427,670381200,7),(427,686106000,8),(427,701830800,7),(427,717555600,8),(427,733280400,7),(427,749005200,8),(427,764730000,7),(427,780454800,8),(427,796179600,7),(427,811904400,8),(427,828234000,7),(427,846378000,8),(427,859683600,7),(427,877827600,8),(427,891133200,7),(427,909277200,8),(427,922582800,7),(427,941331600,8),(427,954032400,7),(427,972781200,8),(427,985482000,7),(427,1004230800,8),(427,1017536400,7),(427,1035680400,8),(427,1048986000,7),(427,1067130000,8),(427,1080435600,7),(427,1099184400,8),(427,1111885200,7),(427,1130634000,8),(427,1143334800,7),(427,1162083600,8),(427,1174784400,7),(427,1193533200,8),(427,1206838800,7),(427,1224982800,8),(427,1238288400,7),(427,1256432400,8),(427,1269738000,7),(427,1288486800,8),(427,1301187600,7),(427,1319936400,8),(427,1332637200,7),(427,1351386000,8),(427,1364691600,7),(427,1382835600,8),(427,1396141200,7),(427,1414285200,8),(427,1427590800,7),(427,1445734800,8),(427,1459040400,7),(427,1477789200,8),(427,1490490000,7),(427,1509238800,8),(427,1521939600,7),(427,1540688400,8),(427,1553994000,7),(427,1572138000,8),(427,1585443600,7),(427,1603587600,8),(427,1616893200,7),(427,1635642000,8),(427,1648342800,7),(427,1667091600,8),(427,1679792400,7),(427,1698541200,8),(427,1711846800,7),(427,1729990800,8),(427,1743296400,7),(427,1761440400,8),(427,1774746000,7),(427,1792890000,8),(427,1806195600,7),(427,1824944400,8),(427,1837645200,7),(427,1856394000,8),(427,1869094800,7),(427,1887843600,8),(427,1901149200,7),(427,1919293200,8),(427,1932598800,7),(427,1950742800,8),(427,1964048400,7),(427,1982797200,8),(427,1995498000,7),(427,2014246800,8),(427,2026947600,7),(427,2045696400,8),(427,2058397200,7),(427,2077146000,8),(427,2090451600,7),(427,2108595600,8),(427,2121901200,7),(427,2140045200,8),(428,-1691964000,0),(428,-1680472800,1),(428,-1664143200,0),(428,-1650146400,1),(428,-1633903200,0),(428,-1617487200,1),(428,-1601848800,0),(428,-1586037600,1),(428,-1570399200,0),(428,-1552168800,1),(428,-1538344800,0),(428,-1522533600,1),(428,-1507500000,0),(428,-1490565600,1),(428,-1473631200,0),(428,-1460930400,1),(428,-1442786400,0),(428,-1428876000,1),(428,-1410732000,0),(428,-1396216800,1),(428,-1379282400,0),(428,-1364767200,1),(428,-1348437600,0),(428,-1333317600,1),(428,-1315778400,0),(428,-1301263200,1),(428,-1284328800,0),(428,-1269813600,1),(428,-1253484000,0),(428,-1238364000,1),(428,-1221429600,0),(428,-1206914400,1),(428,-1189980000,0),(428,-1175464800,1),(428,-1159135200,0),(428,-1143410400,1),(428,-1126476000,0),(428,-1111960800,1),(428,-1095631200,0),(428,-1080511200,1),(428,-1063576800,0),(428,-1049061600,1),(428,-1032127200,0),(428,-1017612000,1),(428,-1001282400,0),(428,-986162400,1),(428,-969228000,0),(428,-950479200,1),(428,-942012000,0),(428,-904518000,2),(428,-896050800,0),(428,-875487600,2),(428,-864601200,0),(428,-844038000,2),(428,-832546800,0),(428,-812588400,2),(428,-798073200,0),(428,-781052400,2),(428,-772066800,0),(428,-764805600,1),(428,-748476000,0),(428,-733356000,1),(428,-719445600,0),(428,-717030000,2),(428,-706748400,0),(428,-699487200,1),(428,-687996000,0),(428,-668037600,1),(428,-654732000,0),(428,-636588000,1),(428,-622072800,0),(428,-605743200,1),(428,-590623200,0),(428,-574293600,1),(428,-558568800,0),(428,-542239200,1),(428,-527119200,0),(428,-512604000,1),(428,-496274400,0),(428,-481154400,1),(428,-464220000,0),(428,-449704800,1),(428,-432165600,0),(428,-417650400,1),(428,-401320800,0),(428,-386200800,1),(428,-369266400,0),(428,-354751200,1),(428,-337816800,0),(428,-323301600,1),(428,-306972000,0),(428,-291852000,1),(428,-276732000,0),(428,-257983200,1),(428,-245282400,0),(428,-226533600,1),(428,-213228000,0),(428,-195084000,1),(428,-182383200,0),(428,-163634400,1),(428,-150933600,0),(428,-132184800,1),(428,-119484000,0),(428,-100735200,1),(428,-88034400,0),(428,-68680800,1),(428,-59004000,0),(428,-37242000,3),(428,57722400,5),(428,69818400,0),(428,89172000,1),(428,101268000,0),(428,120621600,1),(428,132717600,0),(428,152071200,1),(428,164167200,0),(428,183520800,1),(428,196221600,0),(428,214970400,1),(428,227671200,0),(428,246420000,1),(428,259120800,0),(428,278474400,1),(428,290570400,0),(428,309924000,1),(428,322020000,0),(428,341373600,1),(428,354675600,4),(428,372819600,5),(428,386125200,4),(428,404269200,5),(428,417574800,4),(428,435718800,5),(428,449024400,4),(428,467773200,5),(428,481078800,4),(428,499222800,5),(428,512528400,4),(428,530672400,5),(428,543978000,4),(428,562122000,5),(428,575427600,4),(428,593571600,5),(428,606877200,4),(428,625626000,5),(428,638326800,4),(428,657075600,5),(428,670381200,4),(428,688525200,5),(428,701830800,4),(428,719974800,5),(428,733280400,4),(428,751424400,5),(428,764730000,4),(428,782874000,5),(428,796179600,4),(428,814323600,5),(428,820454400,6),(428,828234000,4),(428,846378000,5),(428,859683600,4),(428,877827600,5),(428,891133200,4),(428,909277200,5),(428,922582800,4),(428,941331600,5),(428,954032400,4),(428,972781200,5),(428,985482000,4),(428,1004230800,5),(428,1017536400,4),(428,1035680400,5),(428,1048986000,4),(428,1067130000,5),(428,1080435600,4),(428,1099184400,5),(428,1111885200,4),(428,1130634000,5),(428,1143334800,4),(428,1162083600,5),(428,1174784400,4),(428,1193533200,5),(428,1206838800,4),(428,1224982800,5),(428,1238288400,4),(428,1256432400,5),(428,1269738000,4),(428,1288486800,5),(428,1301187600,4),(428,1319936400,5),(428,1332637200,4),(428,1351386000,5),(428,1364691600,4),(428,1382835600,5),(428,1396141200,4),(428,1414285200,5),(428,1427590800,4),(428,1445734800,5),(428,1459040400,4),(428,1477789200,5),(428,1490490000,4),(428,1509238800,5),(428,1521939600,4),(428,1540688400,5),(428,1553994000,4),(428,1572138000,5),(428,1585443600,4),(428,1603587600,5),(428,1616893200,4),(428,1635642000,5),(428,1648342800,4),(428,1667091600,5),(428,1679792400,4),(428,1698541200,5),(428,1711846800,4),(428,1729990800,5),(428,1743296400,4),(428,1761440400,5),(428,1774746000,4),(428,1792890000,5),(428,1806195600,4),(428,1824944400,5),(428,1837645200,4),(428,1856394000,5),(428,1869094800,4),(428,1887843600,5),(428,1901149200,4),(428,1919293200,5),(428,1932598800,4),(428,1950742800,5),(428,1964048400,4),(428,1982797200,5),(428,1995498000,4),(428,2014246800,5),(428,2026947600,4),(428,2045696400,5),(428,2058397200,4),(428,2077146000,5),(428,2090451600,4),(428,2108595600,5),(428,2121901200,4),(428,2140045200,5),(429,-905824800,3),(429,-857257200,1),(429,-844556400,2),(429,-828226800,1),(429,-812502000,2),(429,-796777200,1),(429,-788922000,0),(429,-777942000,2),(429,-766623600,1),(429,407199600,0),(429,417574800,4),(429,433299600,5),(429,449024400,4),(429,465354000,5),(429,481078800,4),(429,496803600,5),(429,512528400,4),(429,528253200,5),(429,543978000,4),(429,559702800,5),(429,575427600,4),(429,591152400,5),(429,606877200,4),(429,622602000,5),(429,638326800,4),(429,654656400,5),(429,670381200,4),(429,686106000,5),(429,701830800,4),(429,717555600,5),(429,733280400,4),(429,749005200,5),(429,764730000,4),(429,780454800,5),(429,796179600,4),(429,811904400,5),(429,828234000,4),(429,846378000,5),(429,859683600,4),(429,877827600,5),(429,891133200,4),(429,909277200,5),(429,922582800,4),(429,941331600,5),(429,954032400,4),(429,972781200,5),(429,985482000,4),(429,1004230800,5),(429,1017536400,4),(429,1035680400,5),(429,1048986000,4),(429,1067130000,5),(429,1080435600,4),(429,1099184400,5),(429,1111885200,4),(429,1130634000,5),(429,1143334800,4),(429,1162083600,5),(429,1174784400,4),(429,1193533200,5),(429,1206838800,4),(429,1224982800,5),(429,1238288400,4),(429,1256432400,5),(429,1269738000,4),(429,1288486800,5),(429,1301187600,4),(429,1319936400,5),(429,1332637200,4),(429,1351386000,5),(429,1364691600,4),(429,1382835600,5),(429,1396141200,4),(429,1414285200,5),(429,1427590800,4),(429,1445734800,5),(429,1459040400,4),(429,1477789200,5),(429,1490490000,4),(429,1509238800,5),(429,1521939600,4),(429,1540688400,5),(429,1553994000,4),(429,1572138000,5),(429,1585443600,4),(429,1603587600,5),(429,1616893200,4),(429,1635642000,5),(429,1648342800,4),(429,1667091600,5),(429,1679792400,4),(429,1698541200,5),(429,1711846800,4),(429,1729990800,5),(429,1743296400,4),(429,1761440400,5),(429,1774746000,4),(429,1792890000,5),(429,1806195600,4),(429,1824944400,5),(429,1837645200,4),(429,1856394000,5),(429,1869094800,4),(429,1887843600,5),(429,1901149200,4),(429,1919293200,5),(429,1932598800,4),(429,1950742800,5),(429,1964048400,4),(429,1982797200,5),(429,1995498000,4),(429,2014246800,5),(429,2026947600,4),(429,2045696400,5),(429,2058397200,4),(429,2077146000,5),(429,2090451600,4),(429,2108595600,5),(429,2121901200,4),(429,2140045200,5),(430,-1693706400,0),(430,-1680483600,1),(430,-1663455600,2),(430,-1650150000,3),(430,-1632006000,2),(430,-1618700400,3),(430,-938905200,2),(430,-857257200,3),(430,-844556400,2),(430,-828226800,3),(430,-812502000,2),(430,-796777200,3),(430,-781052400,2),(430,-776563200,4),(430,-765936000,0),(430,-761180400,3),(430,-757386000,1),(430,-748479600,2),(430,-733273200,3),(430,-717631200,2),(430,-714610800,5),(430,-710380800,0),(430,-701910000,3),(430,-684975600,2),(430,-670460400,3),(430,-654130800,2),(430,-639010800,3),(430,315529200,1),(430,323830800,6),(430,338950800,7),(430,354675600,6),(430,370400400,7),(430,386125200,6),(430,401850000,7),(430,417574800,6),(430,433299600,7),(430,449024400,6),(430,465354000,7),(430,481078800,6),(430,496803600,7),(430,512528400,6),(430,528253200,7),(430,543978000,6),(430,559702800,7),(430,575427600,6),(430,591152400,7),(430,606877200,6),(430,622602000,7),(430,638326800,6),(430,654656400,7),(430,670381200,6),(430,686106000,7),(430,701830800,6),(430,717555600,7),(430,733280400,6),(430,749005200,7),(430,764730000,6),(430,780454800,7),(430,796179600,6),(430,811904400,7),(430,828234000,6),(430,846378000,7),(430,859683600,6),(430,877827600,7),(430,891133200,6),(430,909277200,7),(430,922582800,6),(430,941331600,7),(430,954032400,6),(430,972781200,7),(430,985482000,6),(430,1004230800,7),(430,1017536400,6),(430,1035680400,7),(430,1048986000,6),(430,1067130000,7),(430,1080435600,6),(430,1099184400,7),(430,1111885200,6),(430,1130634000,7),(430,1143334800,6),(430,1162083600,7),(430,1174784400,6),(430,1193533200,7),(430,1206838800,6),(430,1224982800,7),(430,1238288400,6),(430,1256432400,7),(430,1269738000,6),(430,1288486800,7),(430,1301187600,6),(430,1319936400,7),(430,1332637200,6),(430,1351386000,7),(430,1364691600,6),(430,1382835600,7),(430,1396141200,6),(430,1414285200,7),(430,1427590800,6),(430,1445734800,7),(430,1459040400,6),(430,1477789200,7),(430,1490490000,6),(430,1509238800,7),(430,1521939600,6),(430,1540688400,7),(430,1553994000,6),(430,1572138000,7),(430,1585443600,6),(430,1603587600,7),(430,1616893200,6),(430,1635642000,7),(430,1648342800,6),(430,1667091600,7),(430,1679792400,6),(430,1698541200,7),(430,1711846800,6),(430,1729990800,7),(430,1743296400,6),(430,1761440400,7),(430,1774746000,6),(430,1792890000,7),(430,1806195600,6),(430,1824944400,7),(430,1837645200,6),(430,1856394000,7),(430,1869094800,6),(430,1887843600,7),(430,1901149200,6),(430,1919293200,7),(430,1932598800,6),(430,1950742800,7),(430,1964048400,6),(430,1982797200,7),(430,1995498000,6),(430,2014246800,7),(430,2026947600,6),(430,2045696400,7),(430,2058397200,6),(430,2077146000,7),(430,2090451600,6),(430,2108595600,7),(430,2121901200,6),(430,2140045200,7),(431,-1693706400,0),(431,-1680483600,1),(431,-1663455600,2),(431,-1650150000,3),(431,-1632006000,2),(431,-1618700400,3),(431,-938905200,2),(431,-857257200,3),(431,-844556400,2),(431,-828226800,3),(431,-812502000,2),(431,-796777200,3),(431,-781052400,2),(431,-777866400,0),(431,-765327600,3),(431,-746578800,2),(431,-733359600,3),(431,-728517600,4),(431,-721260000,1),(431,-716425200,2),(431,-701910000,3),(431,-684975600,2),(431,-670460400,3),(431,-654217200,2),(431,-639010800,3),(431,283993200,1),(431,291776400,5),(431,307501200,6),(431,323830800,5),(431,338950800,6),(431,354675600,5),(431,370400400,6),(431,386125200,5),(431,401850000,6),(431,417574800,5),(431,433299600,6),(431,449024400,5),(431,465354000,6),(431,481078800,5),(431,496803600,6),(431,512528400,5),(431,528253200,6),(431,543978000,5),(431,559702800,6),(431,575427600,5),(431,591152400,6),(431,606877200,5),(431,622602000,6),(431,638326800,5),(431,654656400,6),(431,670381200,5),(431,686106000,6),(431,701830800,5),(431,717555600,6),(431,733280400,5),(431,749005200,6),(431,764730000,5),(431,780454800,6),(431,796179600,5),(431,811904400,6),(431,828234000,5),(431,846378000,6),(431,859683600,5),(431,877827600,6),(431,891133200,5),(431,909277200,6),(431,922582800,5),(431,941331600,6),(431,954032400,5),(431,972781200,6),(431,985482000,5),(431,1004230800,6),(431,1017536400,5),(431,1035680400,6),(431,1048986000,5),(431,1067130000,6),(431,1080435600,5),(431,1099184400,6),(431,1111885200,5),(431,1130634000,6),(431,1143334800,5),(431,1162083600,6),(431,1174784400,5),(431,1193533200,6),(431,1206838800,5),(431,1224982800,6),(431,1238288400,5),(431,1256432400,6),(431,1269738000,5),(431,1288486800,6),(431,1301187600,5),(431,1319936400,6),(431,1332637200,5),(431,1351386000,6),(431,1364691600,5),(431,1382835600,6),(431,1396141200,5),(431,1414285200,6),(431,1427590800,5),(431,1445734800,6),(431,1459040400,5),(431,1477789200,6),(431,1490490000,5),(431,1509238800,6),(431,1521939600,5),(431,1540688400,6),(431,1553994000,5),(431,1572138000,6),(431,1585443600,5),(431,1603587600,6),(431,1616893200,5),(431,1635642000,6),(431,1648342800,5),(431,1667091600,6),(431,1679792400,5),(431,1698541200,6),(431,1711846800,5),(431,1729990800,6),(431,1743296400,5),(431,1761440400,6),(431,1774746000,5),(431,1792890000,6),(431,1806195600,5),(431,1824944400,6),(431,1837645200,5),(431,1856394000,6),(431,1869094800,5),(431,1887843600,6),(431,1901149200,5),(431,1919293200,6),(431,1932598800,5),(431,1950742800,6),(431,1964048400,5),(431,1982797200,6),(431,1995498000,5),(431,2014246800,6),(431,2026947600,5),(431,2045696400,6),(431,2058397200,5),(431,2077146000,6),(431,2090451600,5),(431,2108595600,6),(431,2121901200,5),(431,2140045200,6),(432,-1740355200,1),(432,-1693702800,4),(432,-1680483600,1),(432,-1663455600,2),(432,-1650150000,3),(432,-1632006000,2),(432,-1618700400,3),(432,-1613826000,7),(432,-1604278800,5),(432,-1585530000,6),(432,-1574038800,5),(432,-1552266000,6),(432,-1539997200,5),(432,-1520557200,6),(432,-1507510800,5),(432,-1490576400,6),(432,-1473642000,5),(432,-1459126800,6),(432,-1444006800,5),(432,-1427677200,6),(432,-1411952400,5),(432,-1396227600,6),(432,-1379293200,5),(432,-1364778000,6),(432,-1348448400,5),(432,-1333328400,6),(432,-1316394000,5),(432,-1301263200,6),(432,-1284328800,5),(432,-1269813600,6),(432,-1253484000,5),(432,-1238364000,6),(432,-1221429600,5),(432,-1206914400,6),(432,-1191189600,5),(432,-1175464800,6),(432,-1160344800,5),(432,-1143410400,6),(432,-1127685600,5),(432,-1111960800,6),(432,-1096840800,5),(432,-1080511200,6),(432,-1063576800,5),(432,-1049061600,6),(432,-1033336800,5),(432,-1017612000,6),(432,-1002492000,5),(432,-986162400,6),(432,-969228000,5),(432,-950479200,6),(432,-942012000,5),(432,-934668000,2),(432,-857257200,3),(432,-844556400,2),(432,-828226800,3),(432,-812502000,2),(432,-799293600,4),(432,-798073200,3),(432,-781052400,2),(432,-766623600,3),(432,-745455600,2),(432,-733273200,3),(432,220921200,1),(432,228877200,8),(432,243997200,9),(432,260326800,8),(432,276051600,9),(432,291776400,8),(432,307501200,9),(432,323830800,8),(432,338950800,9),(432,354675600,8),(432,370400400,9),(432,386125200,8),(432,401850000,9),(432,417574800,8),(432,433299600,9),(432,449024400,8),(432,465354000,9),(432,481078800,8),(432,496803600,9),(432,512528400,8),(432,528253200,9),(432,543978000,8),(432,559702800,9),(432,575427600,8),(432,591152400,9),(432,606877200,8),(432,622602000,9),(432,638326800,8),(432,654656400,9),(432,670381200,8),(432,686106000,9),(432,701830800,8),(432,717555600,9),(432,733280400,8),(432,749005200,9),(432,764730000,8),(432,780454800,9),(432,796179600,8),(432,811904400,9),(432,828234000,8),(432,846378000,9),(432,859683600,8),(432,877827600,9),(432,891133200,8),(432,909277200,9),(432,922582800,8),(432,941331600,9),(432,954032400,8),(432,972781200,9),(432,985482000,8),(432,1004230800,9),(432,1017536400,8),(432,1035680400,9),(432,1048986000,8),(432,1067130000,9),(432,1080435600,8),(432,1099184400,9),(432,1111885200,8),(432,1130634000,9),(432,1143334800,8),(432,1162083600,9),(432,1174784400,8),(432,1193533200,9),(432,1206838800,8),(432,1224982800,9),(432,1238288400,8),(432,1256432400,9),(432,1269738000,8),(432,1288486800,9),(432,1301187600,8),(432,1319936400,9),(432,1332637200,8),(432,1351386000,9),(432,1364691600,8),(432,1382835600,9),(432,1396141200,8),(432,1414285200,9),(432,1427590800,8),(432,1445734800,9),(432,1459040400,8),(432,1477789200,9),(432,1490490000,8),(432,1509238800,9),(432,1521939600,8),(432,1540688400,9),(432,1553994000,8),(432,1572138000,9),(432,1585443600,8),(432,1603587600,9),(432,1616893200,8),(432,1635642000,9),(432,1648342800,8),(432,1667091600,9),(432,1679792400,8),(432,1698541200,9),(432,1711846800,8),(432,1729990800,9),(432,1743296400,8),(432,1761440400,9),(432,1774746000,8),(432,1792890000,9),(432,1806195600,8),(432,1824944400,9),(432,1837645200,8),(432,1856394000,9),(432,1869094800,8),(432,1887843600,9),(432,1901149200,8),(432,1919293200,9),(432,1932598800,8),(432,1950742800,9),(432,1964048400,8),(432,1982797200,9),(432,1995498000,8),(432,2014246800,9),(432,2026947600,8),(432,2045696400,9),(432,2058397200,8),(432,2077146000,9),(432,2090451600,8),(432,2108595600,9),(432,2121901200,8),(432,2140045200,9),(433,-1213148664,4),(433,-1187056800,1),(433,-1175479200,2),(433,-1159754400,1),(433,-1144029600,2),(433,-1127700000,1),(433,-1111975200,2),(433,-1096250400,1),(433,-1080525600,2),(433,-1064800800,1),(433,-1049076000,2),(433,-1033351200,1),(433,-1017626400,2),(433,-1001901600,1),(433,-986176800,2),(433,-970452000,1),(433,-954727200,2),(433,296604000,3),(433,307486800,4),(433,323816400,3),(433,338940000,4),(433,354672000,1),(433,370396800,2),(433,386121600,1),(433,401846400,2),(433,417571200,1),(433,433296000,2),(433,449020800,1),(433,465350400,2),(433,481075200,1),(433,496800000,2),(433,512524800,1),(433,528249600,2),(433,543974400,1),(433,559699200,2),(433,575424000,1),(433,591148800,2),(433,606873600,1),(433,622598400,2),(433,638323200,1),(433,654652800,2),(433,662680800,4),(433,670370400,1),(433,686095200,2),(433,701820000,1),(433,717544800,2),(433,733269600,1),(433,748994400,2),(433,757375200,4),(433,764719200,3),(433,780440400,4),(433,796168800,3),(433,811890000,4),(433,828223200,3),(433,846363600,4),(433,859683600,5),(433,877827600,6),(433,891133200,5),(433,909277200,6),(433,922582800,5),(433,941331600,6),(433,954032400,5),(433,972781200,6),(433,985482000,5),(433,1004230800,6),(433,1017536400,5),(433,1035680400,6),(433,1048986000,5),(433,1067130000,6),(433,1080435600,5),(433,1099184400,6),(433,1111885200,5),(433,1130634000,6),(433,1143334800,5),(433,1162083600,6),(433,1174784400,5),(433,1193533200,6),(433,1206838800,5),(433,1224982800,6),(433,1238288400,5),(433,1256432400,6),(433,1269738000,5),(433,1288486800,6),(433,1301187600,5),(433,1319936400,6),(433,1332637200,5),(433,1351386000,6),(433,1364691600,5),(433,1382835600,6),(433,1396141200,5),(433,1414285200,6),(433,1427590800,5),(433,1445734800,6),(433,1459040400,5),(433,1477789200,6),(433,1490490000,5),(433,1509238800,6),(433,1521939600,5),(433,1540688400,6),(433,1553994000,5),(433,1572138000,6),(433,1585443600,5),(433,1603587600,6),(433,1616893200,5),(433,1635642000,6),(433,1648342800,5),(433,1667091600,6),(433,1679792400,5),(433,1698541200,6),(433,1711846800,5),(433,1729990800,6),(433,1743296400,5),(433,1761440400,6),(433,1774746000,5),(433,1792890000,6),(433,1806195600,5),(433,1824944400,6),(433,1837645200,5),(433,1856394000,6),(433,1869094800,5),(433,1887843600,6),(433,1901149200,5),(433,1919293200,6),(433,1932598800,5),(433,1950742800,6),(433,1964048400,5),(433,1982797200,6),(433,1995498000,5),(433,2014246800,6),(433,2026947600,5),(433,2045696400,6),(433,2058397200,5),(433,2077146000,6),(433,2090451600,5),(433,2108595600,6),(433,2121901200,5),(433,2140045200,6),(434,-1693706400,0),(434,-1680483600,1),(434,-1663455600,2),(434,-1650150000,3),(434,-1640998800,1),(434,-1633212000,0),(434,-1618700400,1),(434,-1600466400,0),(434,-1581202800,1),(434,-906771600,0),(434,-857257200,3),(434,-844556400,2),(434,-828226800,3),(434,-812502000,2),(434,-796777200,3),(434,-788922000,1),(434,-778471200,0),(434,-762660000,1),(434,-749689200,2),(434,-733359600,3),(434,-717634800,2),(434,-701910000,3),(434,-686185200,2),(434,-670460400,3),(434,-654130800,2),(434,-639010800,3),(434,-621990000,2),(434,-605660400,3),(434,-492656400,0),(434,-481168800,1),(434,-461120400,0),(434,-449632800,1),(434,-428547600,0),(434,-418269600,1),(434,-397094400,0),(434,-386809200,1),(434,323827200,0),(434,338950800,4),(434,354675600,5),(434,370400400,4),(434,386125200,5),(434,401850000,4),(434,417574800,5),(434,433299600,4),(434,449024400,5),(434,465354000,4),(434,481078800,5),(434,496803600,4),(434,512528400,5),(434,528253200,4),(434,543978000,5),(434,559702800,4),(434,575427600,5),(434,591152400,4),(434,606877200,5),(434,622602000,4),(434,638326800,5),(434,654656400,4),(434,670381200,5),(434,686106000,4),(434,701830800,5),(434,717555600,4),(434,733280400,5),(434,749005200,4),(434,764730000,5),(434,780454800,4),(434,796179600,5),(434,811904400,4),(434,828234000,5),(434,846378000,4),(434,859683600,5),(434,877827600,4),(434,891133200,5),(434,909277200,4),(434,922582800,5),(434,941331600,4),(434,954032400,5),(434,972781200,4),(434,985482000,5),(434,1004230800,4),(434,1017536400,5),(434,1035680400,4),(434,1048986000,5),(434,1067130000,4),(434,1080435600,5),(434,1099184400,4),(434,1111885200,5),(434,1130634000,4),(434,1143334800,5),(434,1162083600,4),(434,1174784400,5),(434,1193533200,4),(434,1206838800,5),(434,1224982800,4),(434,1238288400,5),(434,1256432400,4),(434,1269738000,5),(434,1288486800,4),(434,1301187600,5),(434,1319936400,4),(434,1332637200,5),(434,1351386000,4),(434,1364691600,5),(434,1382835600,4),(434,1396141200,5),(434,1414285200,4),(434,1427590800,5),(434,1445734800,4),(434,1459040400,5),(434,1477789200,4),(434,1490490000,5),(434,1509238800,4),(434,1521939600,5),(434,1540688400,4),(434,1553994000,5),(434,1572138000,4),(434,1585443600,5),(434,1603587600,4),(434,1616893200,5),(434,1635642000,4),(434,1648342800,5),(434,1667091600,4),(434,1679792400,5),(434,1698541200,4),(434,1711846800,5),(434,1729990800,4),(434,1743296400,5),(434,1761440400,4),(434,1774746000,5),(434,1792890000,4),(434,1806195600,5),(434,1824944400,4),(434,1837645200,5),(434,1856394000,4),(434,1869094800,5),(434,1887843600,4),(434,1901149200,5),(434,1919293200,4),(434,1932598800,5),(434,1950742800,4),(434,1964048400,5),(434,1982797200,4),(434,1995498000,5),(434,2014246800,4),(434,2026947600,5),(434,2045696400,4),(434,2058397200,5),(434,2077146000,4),(434,2090451600,5),(434,2108595600,4),(434,2121901200,5),(434,2140045200,4),(435,-904435200,0),(435,-891129600,1),(435,-872985600,0),(435,-859680000,1),(435,354675600,2),(435,370400400,3),(435,386125200,2),(435,401850000,3),(435,417574800,2),(435,433299600,3),(435,449024400,2),(435,465354000,3),(435,481078800,2),(435,496803600,3),(435,512528400,2),(435,528253200,3),(435,543978000,2),(435,559702800,3),(435,575427600,2),(435,591152400,3),(435,606877200,2),(435,622602000,3),(435,638326800,2),(435,654656400,3),(435,670381200,2),(435,686106000,3),(435,701830800,2),(435,717555600,3),(435,733280400,2),(435,749005200,3),(435,764730000,2),(435,780454800,3),(435,796179600,2),(435,811904400,3),(435,828234000,2),(435,846378000,3),(435,859683600,2),(435,877827600,3),(435,891133200,2),(435,909277200,3),(435,922582800,2),(435,941331600,3),(435,954032400,2),(435,972781200,3),(435,985482000,2),(435,1004230800,3),(435,1017536400,2),(435,1035680400,3),(435,1048986000,2),(435,1067130000,3),(435,1080435600,2),(435,1099184400,3),(435,1111885200,2),(435,1130634000,3),(435,1143334800,2),(435,1162083600,3),(435,1174784400,2),(435,1193533200,3),(435,1206838800,2),(435,1224982800,3),(435,1238288400,2),(435,1256432400,3),(435,1269738000,2),(435,1288486800,3),(435,1301187600,2),(435,1319936400,3),(435,1332637200,2),(435,1351386000,3),(435,1364691600,2),(435,1382835600,3),(435,1396141200,2),(435,1414285200,3),(435,1427590800,2),(435,1445734800,3),(435,1459040400,2),(435,1477789200,3),(435,1490490000,2),(435,1509238800,3),(435,1521939600,2),(435,1540688400,3),(435,1553994000,2),(435,1572138000,3),(435,1585443600,2),(435,1603587600,3),(435,1616893200,2),(435,1635642000,3),(435,1648342800,2),(435,1667091600,3),(435,1679792400,2),(435,1698541200,3),(435,1711846800,2),(435,1729990800,3),(435,1743296400,2),(435,1761440400,3),(435,1774746000,2),(435,1792890000,3),(435,1806195600,2),(435,1824944400,3),(435,1837645200,2),(435,1856394000,3),(435,1869094800,2),(435,1887843600,3),(435,1901149200,2),(435,1919293200,3),(435,1932598800,2),(435,1950742800,3),(435,1964048400,2),(435,1982797200,3),(435,1995498000,2),(435,2014246800,3),(435,2026947600,2),(435,2045696400,3),(435,2058397200,2),(435,2077146000,3),(435,2090451600,2),(435,2108595600,3),(435,2121901200,2),(435,2140045200,3),(436,-1637114100,1),(436,-1213148664,4),(436,-1187056800,2),(436,-1175479200,3),(436,-1159754400,2),(436,-1144029600,3),(436,-1127700000,2),(436,-1111975200,3),(436,-1096250400,2),(436,-1080525600,3),(436,-1064800800,2),(436,-1049076000,3),(436,-1033351200,2),(436,-1017626400,3),(436,-1001901600,2),(436,-986176800,3),(436,-970452000,2),(436,-954727200,3),(436,-927165600,5),(436,-898138800,8),(436,-857257200,6),(436,-844556400,7),(436,-828226800,6),(436,-812502000,7),(436,-800157600,10),(436,354920400,9),(436,370728000,10),(436,386456400,9),(436,402264000,10),(436,417992400,9),(436,433800000,10),(436,449614800,9),(436,465346800,11),(436,481071600,12),(436,496796400,11),(436,512521200,12),(436,528246000,11),(436,543970800,12),(436,559695600,11),(436,575420400,12),(436,591145200,11),(436,606870000,12),(436,622594800,11),(436,638319600,12),(436,641944800,5),(436,654652800,3),(436,670377600,2),(436,686102400,3),(436,694216800,4),(436,701820000,5),(436,717541200,4),(436,733269600,5),(436,748990800,4),(436,764719200,5),(436,780440400,4),(436,796168800,5),(436,811890000,4),(436,828223200,5),(436,846363600,4),(436,859680000,5),(436,877824000,4),(436,891129600,5),(436,909273600,4),(436,922579200,5),(436,941328000,4),(436,954028800,5),(436,972777600,4),(436,985478400,5),(436,1004227200,4),(436,1017532800,5),(436,1035676800,4),(436,1048982400,5),(436,1067126400,4),(436,1080432000,5),(436,1099180800,4),(436,1111881600,5),(436,1130630400,4),(436,1143331200,5),(436,1162080000,4),(436,1174780800,5),(436,1193529600,4),(436,1206835200,5),(436,1224979200,4),(436,1238284800,5),(436,1256428800,4),(436,1269734400,5),(436,1288483200,4),(436,1301184000,5),(436,1319932800,4),(436,1332633600,5),(436,1351382400,4),(436,1364688000,5),(436,1382832000,4),(436,1396137600,5),(436,1414281600,4),(436,1427587200,5),(436,1445731200,4),(436,1459036800,5),(436,1477785600,4),(436,1490486400,5),(436,1509235200,4),(436,1521936000,5),(436,1540684800,4),(436,1553990400,5),(436,1572134400,4),(436,1585440000,5),(436,1603584000,4),(436,1616889600,5),(436,1635638400,4),(436,1648339200,5),(436,1667088000,4),(436,1679788800,5),(436,1698537600,4),(436,1711843200,5),(436,1729987200,4),(436,1743292800,5),(436,1761436800,4),(436,1774742400,5),(436,1792886400,4),(436,1806192000,5),(436,1824940800,4),(436,1837641600,5),(436,1856390400,4),(436,1869091200,5),(436,1887840000,4),(436,1901145600,5),(436,1919289600,4),(436,1932595200,5),(436,1950739200,4),(436,1964044800,5),(436,1982793600,4),(436,1995494400,5),(436,2014243200,4),(436,2026944000,5),(436,2045692800,4),(436,2058393600,5),(436,2077142400,4),(436,2090448000,5),(436,2108592000,4),(436,2121897600,5),(436,2140041600,4),(437,-1692496800,0),(437,-1680490800,1),(437,-935110800,0),(437,-857257200,2),(437,-844556400,3),(437,-828226800,2),(437,-812502000,3),(437,-796777200,2),(437,-781052400,3),(437,-769388400,2),(437,-747010800,3),(437,-736383600,2),(437,-715215600,3),(437,-706748400,2),(437,-683161200,3),(437,-675298800,2),(437,315529200,1),(437,323830800,4),(437,338950800,5),(437,354675600,4),(437,370400400,5),(437,386125200,4),(437,401850000,5),(437,417574800,4),(437,433299600,5),(437,449024400,4),(437,465354000,5),(437,481078800,4),(437,496803600,5),(437,512528400,4),(437,528253200,5),(437,543978000,4),(437,559702800,5),(437,575427600,4),(437,591152400,5),(437,606877200,4),(437,622602000,5),(437,638326800,4),(437,654656400,5),(437,670381200,4),(437,686106000,5),(437,701830800,4),(437,717555600,5),(437,733280400,4),(437,749005200,5),(437,764730000,4),(437,780454800,5),(437,796179600,4),(437,811904400,5),(437,828234000,4),(437,846378000,5),(437,859683600,4),(437,877827600,5),(437,891133200,4),(437,909277200,5),(437,922582800,4),(437,941331600,5),(437,954032400,4),(437,972781200,5),(437,985482000,4),(437,1004230800,5),(437,1017536400,4),(437,1035680400,5),(437,1048986000,4),(437,1067130000,5),(437,1080435600,4),(437,1099184400,5),(437,1111885200,4),(437,1130634000,5),(437,1143334800,4),(437,1162083600,5),(437,1174784400,4),(437,1193533200,5),(437,1206838800,4),(437,1224982800,5),(437,1238288400,4),(437,1256432400,5),(437,1269738000,4),(437,1288486800,5),(437,1301187600,4),(437,1319936400,5),(437,1332637200,4),(437,1351386000,5),(437,1364691600,4),(437,1382835600,5),(437,1396141200,4),(437,1414285200,5),(437,1427590800,4),(437,1445734800,5),(437,1459040400,4),(437,1477789200,5),(437,1490490000,4),(437,1509238800,5),(437,1521939600,4),(437,1540688400,5),(437,1553994000,4),(437,1572138000,5),(437,1585443600,4),(437,1603587600,5),(437,1616893200,4),(437,1635642000,5),(437,1648342800,4),(437,1667091600,5),(437,1679792400,4),(437,1698541200,5),(437,1711846800,4),(437,1729990800,5),(437,1743296400,4),(437,1761440400,5),(437,1774746000,4),(437,1792890000,5),(437,1806195600,4),(437,1824944400,5),(437,1837645200,4),(437,1856394000,5),(437,1869094800,4),(437,1887843600,5),(437,1901149200,4),(437,1919293200,5),(437,1932598800,4),(437,1950742800,5),(437,1964048400,4),(437,1982797200,5),(437,1995498000,4),(437,2014246800,5),(437,2026947600,4),(437,2045696400,5),(437,2058397200,4),(437,2077146000,5),(437,2090451600,4),(437,2108595600,5),(437,2121901200,4),(437,2140045200,5),(438,-1691962479,1),(438,-1680471279,3),(438,-1664143200,2),(438,-1650146400,3),(438,-1633903200,2),(438,-1617487200,3),(438,-1601848800,2),(438,-1586037600,3),(438,-1570399200,2),(438,-1552168800,3),(438,-1538344800,2),(438,-1522533600,3),(438,-1517011200,5),(438,-1507500000,4),(438,-1490565600,3),(438,-1473631200,4),(438,-1460930400,3),(438,-1442786400,4),(438,-1428876000,3),(438,-1410732000,4),(438,-1396216800,3),(438,-1379282400,4),(438,-1364767200,3),(438,-1348437600,4),(438,-1333317600,3),(438,-1315778400,4),(438,-1301263200,3),(438,-1284328800,4),(438,-1269813600,3),(438,-1253484000,4),(438,-1238364000,3),(438,-1221429600,4),(438,-1206914400,3),(438,-1189980000,4),(438,-1175464800,3),(438,-1159135200,4),(438,-1143410400,3),(438,-1126476000,4),(438,-1111960800,3),(438,-1095631200,4),(438,-1080511200,3),(438,-1063576800,4),(438,-1049061600,3),(438,-1032127200,4),(438,-1017612000,3),(438,-1001282400,4),(438,-986162400,3),(438,-969228000,4),(438,-950479200,3),(438,-942012000,4),(438,-733356000,3),(438,-719445600,4),(438,-699487200,3),(438,-684972000,4),(438,-668037600,3),(438,-654732000,4),(438,-636588000,3),(438,-622072800,4),(438,-605743200,3),(438,-590623200,4),(438,-574293600,3),(438,-558568800,4),(438,-542239200,3),(438,-527119200,4),(438,-512604000,3),(438,-496274400,4),(438,-481154400,3),(438,-464220000,4),(438,-449704800,3),(438,-432165600,4),(438,-417650400,3),(438,-401320800,4),(438,-386200800,3),(438,-369266400,4),(438,-354751200,3),(438,-337816800,4),(438,-323301600,3),(438,-306972000,4),(438,-291852000,3),(438,-276732000,4),(438,-257983200,3),(438,-245282400,4),(438,-226533600,3),(438,-213228000,4),(438,-195084000,3),(438,-182383200,4),(438,-163634400,3),(438,-150933600,4),(438,-132184800,3),(438,-119484000,4),(438,-100735200,3),(438,-88034400,4),(438,-68680800,3),(438,-59004000,4),(438,-37242000,6),(438,57722400,8),(438,69818400,4),(438,89172000,3),(438,101268000,4),(438,120621600,3),(438,132717600,4),(438,152071200,3),(438,164167200,4),(438,183520800,3),(438,196221600,4),(438,214970400,3),(438,227671200,4),(438,246420000,3),(438,259120800,4),(438,278474400,3),(438,290570400,4),(438,309924000,3),(438,322020000,4),(438,341373600,3),(438,354675600,7),(438,372819600,8),(438,386125200,7),(438,404269200,8),(438,417574800,7),(438,435718800,8),(438,449024400,7),(438,467773200,8),(438,481078800,7),(438,499222800,8),(438,512528400,7),(438,530672400,8),(438,543978000,7),(438,562122000,8),(438,575427600,7),(438,593571600,8),(438,606877200,7),(438,625626000,8),(438,638326800,7),(438,657075600,8),(438,670381200,7),(438,688525200,8),(438,701830800,7),(438,719974800,8),(438,733280400,7),(438,751424400,8),(438,764730000,7),(438,782874000,8),(438,796179600,7),(438,814323600,8),(438,820454400,5),(438,828234000,7),(438,846378000,8),(438,859683600,7),(438,877827600,8),(438,891133200,7),(438,909277200,8),(438,922582800,7),(438,941331600,8),(438,954032400,7),(438,972781200,8),(438,985482000,7),(438,1004230800,8),(438,1017536400,7),(438,1035680400,8),(438,1048986000,7),(438,1067130000,8),(438,1080435600,7),(438,1099184400,8),(438,1111885200,7),(438,1130634000,8),(438,1143334800,7),(438,1162083600,8),(438,1174784400,7),(438,1193533200,8),(438,1206838800,7),(438,1224982800,8),(438,1238288400,7),(438,1256432400,8),(438,1269738000,7),(438,1288486800,8),(438,1301187600,7),(438,1319936400,8),(438,1332637200,7),(438,1351386000,8),(438,1364691600,7),(438,1382835600,8),(438,1396141200,7),(438,1414285200,8),(438,1427590800,7),(438,1445734800,8),(438,1459040400,7),(438,1477789200,8),(438,1490490000,7),(438,1509238800,8),(438,1521939600,7),(438,1540688400,8),(438,1553994000,7),(438,1572138000,8),(438,1585443600,7),(438,1603587600,8),(438,1616893200,7),(438,1635642000,8),(438,1648342800,7),(438,1667091600,8),(438,1679792400,7),(438,1698541200,8),(438,1711846800,7),(438,1729990800,8),(438,1743296400,7),(438,1761440400,8),(438,1774746000,7),(438,1792890000,8),(438,1806195600,7),(438,1824944400,8),(438,1837645200,7),(438,1856394000,8),(438,1869094800,7),(438,1887843600,8),(438,1901149200,7),(438,1919293200,8),(438,1932598800,7),(438,1950742800,8),(438,1964048400,7),(438,1982797200,8),(438,1995498000,7),(438,2014246800,8),(438,2026947600,7),(438,2045696400,8),(438,2058397200,7),(438,2077146000,8),(438,2090451600,7),(438,2108595600,8),(438,2121901200,7),(438,2140045200,8),(439,-1691964000,0),(439,-1680472800,1),(439,-1664143200,0),(439,-1650146400,1),(439,-1633903200,0),(439,-1617487200,1),(439,-1601848800,0),(439,-1586037600,1),(439,-1570399200,0),(439,-1552168800,1),(439,-1538344800,0),(439,-1522533600,1),(439,-1507500000,0),(439,-1490565600,1),(439,-1473631200,0),(439,-1460930400,1),(439,-1442786400,0),(439,-1428876000,1),(439,-1410732000,0),(439,-1396216800,1),(439,-1379282400,0),(439,-1364767200,1),(439,-1348437600,0),(439,-1333317600,1),(439,-1315778400,0),(439,-1301263200,1),(439,-1284328800,0),(439,-1269813600,1),(439,-1253484000,0),(439,-1238364000,1),(439,-1221429600,0),(439,-1206914400,1),(439,-1189980000,0),(439,-1175464800,1),(439,-1159135200,0),(439,-1143410400,1),(439,-1126476000,0),(439,-1111960800,1),(439,-1095631200,0),(439,-1080511200,1),(439,-1063576800,0),(439,-1049061600,1),(439,-1032127200,0),(439,-1017612000,1),(439,-1001282400,0),(439,-986162400,1),(439,-969228000,0),(439,-950479200,1),(439,-942012000,0),(439,-904518000,2),(439,-896050800,0),(439,-875487600,2),(439,-864601200,0),(439,-844038000,2),(439,-832546800,0),(439,-812588400,2),(439,-798073200,0),(439,-781052400,2),(439,-772066800,0),(439,-764805600,1),(439,-748476000,0),(439,-733356000,1),(439,-719445600,0),(439,-717030000,2),(439,-706748400,0),(439,-699487200,1),(439,-687996000,0),(439,-668037600,1),(439,-654732000,0),(439,-636588000,1),(439,-622072800,0),(439,-605743200,1),(439,-590623200,0),(439,-574293600,1),(439,-558568800,0),(439,-542239200,1),(439,-527119200,0),(439,-512604000,1),(439,-496274400,0),(439,-481154400,1),(439,-464220000,0),(439,-449704800,1),(439,-432165600,0),(439,-417650400,1),(439,-401320800,3),(439,386125200,4),(439,401850000,5),(439,417574800,4),(439,433299600,5),(439,449024400,4),(439,465354000,5),(439,481078800,4),(439,496803600,5),(439,512528400,4),(439,528253200,5),(439,543978000,4),(439,559702800,5),(439,575427600,4),(439,591152400,5),(439,606877200,4),(439,622602000,5),(439,638326800,4),(439,654656400,5),(439,670381200,4),(439,686106000,5),(439,701830800,4),(439,717555600,5),(439,733280400,4),(439,749005200,5),(439,764730000,4),(439,780454800,5),(439,796179600,4),(439,811904400,5),(439,828234000,4),(439,846378000,5),(439,859683600,4),(439,877827600,5),(439,891133200,4),(439,909277200,5),(439,922582800,4),(439,941331600,5),(439,954032400,4),(439,972781200,5),(439,985482000,4),(439,1004230800,5),(439,1017536400,4),(439,1035680400,5),(439,1048986000,4),(439,1067130000,5),(439,1080435600,4),(439,1099184400,5),(439,1111885200,4),(439,1130634000,5),(439,1143334800,4),(439,1162083600,5),(439,1174784400,4),(439,1193533200,5),(439,1206838800,4),(439,1224982800,5),(439,1238288400,4),(439,1256432400,5),(439,1269738000,4),(439,1288486800,5),(439,1301187600,4),(439,1319936400,5),(439,1332637200,4),(439,1351386000,5),(439,1364691600,4),(439,1382835600,5),(439,1396141200,4),(439,1414285200,5),(439,1427590800,4),(439,1445734800,5),(439,1459040400,4),(439,1477789200,5),(439,1490490000,4),(439,1509238800,5),(439,1521939600,4),(439,1540688400,5),(439,1553994000,4),(439,1572138000,5),(439,1585443600,4),(439,1603587600,5),(439,1616893200,4),(439,1635642000,5),(439,1648342800,4),(439,1667091600,5),(439,1679792400,4),(439,1698541200,5),(439,1711846800,4),(439,1729990800,5),(439,1743296400,4),(439,1761440400,5),(439,1774746000,4),(439,1792890000,5),(439,1806195600,4),(439,1824944400,5),(439,1837645200,4),(439,1856394000,5),(439,1869094800,4),(439,1887843600,5),(439,1901149200,4),(439,1919293200,5),(439,1932598800,4),(439,1950742800,5),(439,1964048400,4),(439,1982797200,5),(439,1995498000,4),(439,2014246800,5),(439,2026947600,4),(439,2045696400,5),(439,2058397200,4),(439,2077146000,5),(439,2090451600,4),(439,2108595600,5),(439,2121901200,4),(439,2140045200,5),(440,-1691964000,0),(440,-1680472800,1),(440,-1664143200,0),(440,-1650146400,1),(440,-1633903200,0),(440,-1617487200,1),(440,-1601848800,0),(440,-1586037600,1),(440,-1570399200,0),(440,-1552168800,1),(440,-1538344800,0),(440,-1522533600,1),(440,-1507500000,0),(440,-1490565600,1),(440,-1473631200,0),(440,-1460930400,1),(440,-1442786400,0),(440,-1428876000,1),(440,-1410732000,0),(440,-1396216800,1),(440,-1379282400,0),(440,-1364767200,1),(440,-1348437600,0),(440,-1333317600,1),(440,-1315778400,0),(440,-1301263200,1),(440,-1284328800,0),(440,-1269813600,1),(440,-1253484000,0),(440,-1238364000,1),(440,-1221429600,0),(440,-1206914400,1),(440,-1189980000,0),(440,-1175464800,1),(440,-1159135200,0),(440,-1143410400,1),(440,-1126476000,0),(440,-1111960800,1),(440,-1095631200,0),(440,-1080511200,1),(440,-1063576800,0),(440,-1049061600,1),(440,-1032127200,0),(440,-1017612000,1),(440,-1001282400,0),(440,-986162400,1),(440,-969228000,0),(440,-950479200,1),(440,-942012000,0),(440,-904518000,2),(440,-896050800,0),(440,-875487600,2),(440,-864601200,0),(440,-844038000,2),(440,-832546800,0),(440,-812588400,2),(440,-798073200,0),(440,-781052400,2),(440,-772066800,0),(440,-764805600,1),(440,-748476000,0),(440,-733356000,1),(440,-719445600,0),(440,-717030000,2),(440,-706748400,0),(440,-699487200,1),(440,-687996000,0),(440,-668037600,1),(440,-654732000,0),(440,-636588000,1),(440,-622072800,0),(440,-605743200,1),(440,-590623200,0),(440,-574293600,1),(440,-558568800,0),(440,-542239200,1),(440,-527119200,0),(440,-512604000,1),(440,-496274400,0),(440,-481154400,1),(440,-464220000,0),(440,-449704800,1),(440,-432165600,0),(440,-417650400,1),(440,-401320800,0),(440,-386200800,1),(440,-369266400,0),(440,-354751200,1),(440,-337816800,0),(440,-323301600,1),(440,-306972000,0),(440,-291852000,1),(440,-276732000,0),(440,-257983200,1),(440,-245282400,0),(440,-226533600,1),(440,-213228000,0),(440,-195084000,1),(440,-182383200,0),(440,-163634400,1),(440,-150933600,0),(440,-132184800,1),(440,-119484000,0),(440,-100735200,1),(440,-88034400,0),(440,-68680800,1),(440,-59004000,0),(440,-37242000,3),(440,57722400,5),(440,69818400,0),(440,89172000,1),(440,101268000,0),(440,120621600,1),(440,132717600,0),(440,152071200,1),(440,164167200,0),(440,183520800,1),(440,196221600,0),(440,214970400,1),(440,227671200,0),(440,246420000,1),(440,259120800,0),(440,278474400,1),(440,290570400,0),(440,309924000,1),(440,322020000,0),(440,341373600,1),(440,354675600,4),(440,372819600,5),(440,386125200,4),(440,404269200,5),(440,417574800,4),(440,435718800,5),(440,449024400,4),(440,467773200,5),(440,481078800,4),(440,499222800,5),(440,512528400,4),(440,530672400,5),(440,543978000,4),(440,562122000,5),(440,575427600,4),(440,593571600,5),(440,606877200,4),(440,625626000,5),(440,638326800,4),(440,657075600,5),(440,670381200,4),(440,688525200,5),(440,701830800,4),(440,719974800,5),(440,733280400,4),(440,751424400,5),(440,764730000,4),(440,782874000,5),(440,796179600,4),(440,814323600,5),(440,820454400,6),(440,828234000,4),(440,846378000,5),(440,859683600,4),(440,877827600,5),(440,891133200,4),(440,909277200,5),(440,922582800,4),(440,941331600,5),(440,954032400,4),(440,972781200,5),(440,985482000,4),(440,1004230800,5),(440,1017536400,4),(440,1035680400,5),(440,1048986000,4),(440,1067130000,5),(440,1080435600,4),(440,1099184400,5),(440,1111885200,4),(440,1130634000,5),(440,1143334800,4),(440,1162083600,5),(440,1174784400,4),(440,1193533200,5),(440,1206838800,4),(440,1224982800,5),(440,1238288400,4),(440,1256432400,5),(440,1269738000,4),(440,1288486800,5),(440,1301187600,4),(440,1319936400,5),(440,1332637200,4),(440,1351386000,5),(440,1364691600,4),(440,1382835600,5),(440,1396141200,4),(440,1414285200,5),(440,1427590800,4),(440,1445734800,5),(440,1459040400,4),(440,1477789200,5),(440,1490490000,4),(440,1509238800,5),(440,1521939600,4),(440,1540688400,5),(440,1553994000,4),(440,1572138000,5),(440,1585443600,4),(440,1603587600,5),(440,1616893200,4),(440,1635642000,5),(440,1648342800,4),(440,1667091600,5),(440,1679792400,4),(440,1698541200,5),(440,1711846800,4),(440,1729990800,5),(440,1743296400,4),(440,1761440400,5),(440,1774746000,4),(440,1792890000,5),(440,1806195600,4),(440,1824944400,5),(440,1837645200,4),(440,1856394000,5),(440,1869094800,4),(440,1887843600,5),(440,1901149200,4),(440,1919293200,5),(440,1932598800,4),(440,1950742800,5),(440,1964048400,4),(440,1982797200,5),(440,1995498000,4),(440,2014246800,5),(440,2026947600,4),(440,2045696400,5),(440,2058397200,4),(440,2077146000,5),(440,2090451600,4),(440,2108595600,5),(440,2121901200,4),(440,2140045200,5),(441,-1535938789,2),(441,-875671200,1),(441,-859773600,2),(441,354672000,1),(441,370396800,2),(441,386121600,1),(441,401846400,2),(441,417574800,3),(441,433299600,4),(441,449024400,3),(441,465354000,4),(441,481078800,3),(441,496803600,4),(441,512528400,3),(441,528253200,4),(441,543978000,3),(441,559702800,4),(441,575427600,3),(441,591152400,4),(441,606877200,3),(441,622602000,4),(441,638326800,3),(441,654656400,4),(441,670381200,3),(441,686106000,4),(441,701830800,3),(441,717555600,4),(441,733280400,3),(441,749005200,4),(441,764730000,3),(441,780454800,4),(441,796179600,3),(441,811904400,4),(441,828234000,3),(441,846378000,4),(441,859683600,3),(441,877827600,4),(441,891133200,3),(441,909277200,4),(441,922582800,3),(441,941331600,4),(441,954032400,3),(441,972781200,4),(441,985482000,3),(441,1004230800,4),(441,1017536400,3),(441,1035680400,4),(441,1048986000,3),(441,1067130000,4),(441,1080435600,3),(441,1099184400,4),(441,1111885200,3),(441,1130634000,4),(441,1143334800,3),(441,1162083600,4),(441,1174784400,3),(441,1193533200,4),(441,1206838800,3),(441,1224982800,4),(441,1238288400,3),(441,1256432400,4),(441,1269738000,3),(441,1288486800,4),(441,1301187600,3),(441,1319936400,4),(441,1332637200,3),(441,1351386000,4),(441,1364691600,3),(441,1382835600,4),(441,1396141200,3),(441,1414285200,4),(441,1427590800,3),(441,1445734800,4),(441,1459040400,3),(441,1477789200,4),(441,1490490000,3),(441,1509238800,4),(441,1521939600,3),(441,1540688400,4),(441,1553994000,3),(441,1572138000,4),(441,1585443600,3),(441,1603587600,4),(441,1616893200,3),(441,1635642000,4),(441,1648342800,3),(441,1667091600,4),(441,1679792400,3),(441,1698541200,4),(441,1711846800,3),(441,1729990800,4),(441,1743296400,3),(441,1761440400,4),(441,1774746000,3),(441,1792890000,4),(441,1806195600,3),(441,1824944400,4),(441,1837645200,3),(441,1856394000,4),(441,1869094800,3),(441,1887843600,4),(441,1901149200,3),(441,1919293200,4),(441,1932598800,3),(441,1950742800,4),(441,1964048400,3),(441,1982797200,4),(441,1995498000,3),(441,2014246800,4),(441,2026947600,3),(441,2045696400,4),(441,2058397200,3),(441,2077146000,4),(441,2090451600,3),(441,2108595600,4),(441,2121901200,3),(441,2140045200,4),(442,-1691964000,0),(442,-1680472800,1),(442,-1664143200,0),(442,-1650146400,1),(442,-1633903200,0),(442,-1617487200,1),(442,-1601848800,0),(442,-1586037600,1),(442,-1570399200,0),(442,-1552168800,1),(442,-1538344800,0),(442,-1522533600,1),(442,-1507500000,0),(442,-1490565600,1),(442,-1473631200,0),(442,-1460930400,1),(442,-1442786400,0),(442,-1428876000,1),(442,-1410732000,0),(442,-1396216800,1),(442,-1379282400,0),(442,-1364767200,1),(442,-1348437600,0),(442,-1333317600,1),(442,-1315778400,0),(442,-1301263200,1),(442,-1284328800,0),(442,-1269813600,1),(442,-1253484000,0),(442,-1238364000,1),(442,-1221429600,0),(442,-1206914400,1),(442,-1189980000,0),(442,-1175464800,1),(442,-1159135200,0),(442,-1143410400,1),(442,-1126476000,0),(442,-1111960800,1),(442,-1095631200,0),(442,-1080511200,1),(442,-1063576800,0),(442,-1049061600,1),(442,-1032127200,0),(442,-1017612000,1),(442,-1001282400,0),(442,-986162400,1),(442,-969228000,0),(442,-950479200,1),(442,-942012000,0),(442,-904518000,2),(442,-896050800,0),(442,-875487600,2),(442,-864601200,0),(442,-844038000,2),(442,-832546800,0),(442,-812588400,2),(442,-798073200,0),(442,-781052400,2),(442,-772066800,0),(442,-764805600,1),(442,-748476000,0),(442,-733356000,1),(442,-719445600,0),(442,-717030000,2),(442,-706748400,0),(442,-699487200,1),(442,-687996000,0),(442,-668037600,1),(442,-654732000,0),(442,-636588000,1),(442,-622072800,0),(442,-605743200,1),(442,-590623200,0),(442,-574293600,1),(442,-558568800,0),(442,-542239200,1),(442,-527119200,0),(442,-512604000,1),(442,-496274400,0),(442,-481154400,1),(442,-464220000,0),(442,-449704800,1),(442,-432165600,0),(442,-417650400,1),(442,-401320800,0),(442,-386200800,1),(442,-369266400,0),(442,-354751200,1),(442,-337816800,0),(442,-323301600,1),(442,-306972000,0),(442,-291852000,1),(442,-276732000,0),(442,-257983200,1),(442,-245282400,0),(442,-226533600,1),(442,-213228000,0),(442,-195084000,1),(442,-182383200,0),(442,-163634400,1),(442,-150933600,0),(442,-132184800,1),(442,-119484000,0),(442,-100735200,1),(442,-88034400,0),(442,-68680800,1),(442,-59004000,0),(442,-37242000,3),(442,57722400,5),(442,69818400,0),(442,89172000,1),(442,101268000,0),(442,120621600,1),(442,132717600,0),(442,152071200,1),(442,164167200,0),(442,183520800,1),(442,196221600,0),(442,214970400,1),(442,227671200,0),(442,246420000,1),(442,259120800,0),(442,278474400,1),(442,290570400,0),(442,309924000,1),(442,322020000,0),(442,341373600,1),(442,354675600,4),(442,372819600,5),(442,386125200,4),(442,404269200,5),(442,417574800,4),(442,435718800,5),(442,449024400,4),(442,467773200,5),(442,481078800,4),(442,499222800,5),(442,512528400,4),(442,530672400,5),(442,543978000,4),(442,562122000,5),(442,575427600,4),(442,593571600,5),(442,606877200,4),(442,625626000,5),(442,638326800,4),(442,657075600,5),(442,670381200,4),(442,688525200,5),(442,701830800,4),(442,719974800,5),(442,733280400,4),(442,751424400,5),(442,764730000,4),(442,782874000,5),(442,796179600,4),(442,814323600,5),(442,820454400,6),(442,828234000,4),(442,846378000,5),(442,859683600,4),(442,877827600,5),(442,891133200,4),(442,909277200,5),(442,922582800,4),(442,941331600,5),(442,954032400,4),(442,972781200,5),(442,985482000,4),(442,1004230800,5),(442,1017536400,4),(442,1035680400,5),(442,1048986000,4),(442,1067130000,5),(442,1080435600,4),(442,1099184400,5),(442,1111885200,4),(442,1130634000,5),(442,1143334800,4),(442,1162083600,5),(442,1174784400,4),(442,1193533200,5),(442,1206838800,4),(442,1224982800,5),(442,1238288400,4),(442,1256432400,5),(442,1269738000,4),(442,1288486800,5),(442,1301187600,4),(442,1319936400,5),(442,1332637200,4),(442,1351386000,5),(442,1364691600,4),(442,1382835600,5),(442,1396141200,4),(442,1414285200,5),(442,1427590800,4),(442,1445734800,5),(442,1459040400,4),(442,1477789200,5),(442,1490490000,4),(442,1509238800,5),(442,1521939600,4),(442,1540688400,5),(442,1553994000,4),(442,1572138000,5),(442,1585443600,4),(442,1603587600,5),(442,1616893200,4),(442,1635642000,5),(442,1648342800,4),(442,1667091600,5),(442,1679792400,4),(442,1698541200,5),(442,1711846800,4),(442,1729990800,5),(442,1743296400,4),(442,1761440400,5),(442,1774746000,4),(442,1792890000,5),(442,1806195600,4),(442,1824944400,5),(442,1837645200,4),(442,1856394000,5),(442,1869094800,4),(442,1887843600,5),(442,1901149200,4),(442,1919293200,5),(442,1932598800,4),(442,1950742800,5),(442,1964048400,4),(442,1982797200,5),(442,1995498000,4),(442,2014246800,5),(442,2026947600,4),(442,2045696400,5),(442,2058397200,4),(442,2077146000,5),(442,2090451600,4),(442,2108595600,5),(442,2121901200,4),(442,2140045200,5),(443,-1869875816,2),(443,-1693706400,1),(443,-1680490800,2),(443,-1570413600,1),(443,-1552186800,2),(443,-1538359200,1),(443,-1522551600,2),(443,-1507514400,1),(443,-1490583600,2),(443,-1440208800,1),(443,-1428030000,2),(443,-1409709600,1),(443,-1396494000,2),(443,-931140000,1),(443,-922762800,2),(443,-917834400,1),(443,-892436400,2),(443,-875844000,1),(443,-857358000,2),(443,-781063200,1),(443,-764737200,2),(443,-744343200,1),(443,-733806000,2),(443,-716436000,1),(443,-701924400,2),(443,-684986400,1),(443,-670474800,2),(443,-654141600,1),(443,-639025200,2),(443,-621828000,1),(443,-606970800,2),(443,-590032800,1),(443,-575434800,2),(443,-235620000,1),(443,-228279600,2),(443,-177732000,1),(443,-165726000,2),(443,10533600,1),(443,23835600,2),(443,41983200,1),(443,55285200,2),(443,74037600,1),(443,87339600,2),(443,107910000,1),(443,121219200,2),(443,133920000,1),(443,152676000,2),(443,165362400,1),(443,183502800,2),(443,202428000,1),(443,215557200,2),(443,228866400,1),(443,245797200,2),(443,260316000,1),(443,277246800,3),(443,308779200,4),(443,323827200,3),(443,340228800,4),(443,354672000,3),(443,371678400,4),(443,386121600,3),(443,403128000,4),(443,428446800,3),(443,433886400,4),(443,482792400,1),(443,496702800,2),(443,512521200,5),(443,528246000,6),(443,543970800,5),(443,559695600,6),(443,575420400,5),(443,591145200,6),(443,606870000,5),(443,622594800,6),(443,638319600,5),(443,654649200,6),(443,670374000,5),(443,686098800,6),(443,701823600,5),(443,717548400,6),(443,733273200,5),(443,748998000,6),(443,764118000,5),(443,780447600,6),(443,796172400,5),(443,811897200,6),(443,828226800,5),(443,846370800,6),(443,859676400,5),(443,877820400,6),(443,891126000,5),(443,909270000,6),(443,922575600,5),(443,941324400,6),(443,954025200,5),(443,972774000,6),(443,985474800,5),(443,1004223600,6),(443,1017529200,5),(443,1035673200,6),(443,1048978800,5),(443,1067122800,6),(443,1080428400,5),(443,1099177200,6),(443,1111878000,5),(443,1130626800,6),(443,1143327600,5),(443,1162076400,6),(443,1167602400,2),(443,1174784400,7),(443,1193533200,8),(443,1206838800,7),(443,1224982800,8),(443,1238288400,7),(443,1256432400,8),(443,1269738000,7),(443,1288486800,8),(443,1301274000,7),(443,1319936400,8),(443,1332637200,7),(443,1351386000,8),(443,1364691600,7),(443,1382835600,8),(443,1396227600,7),(443,1414285200,8),(443,1427590800,7),(443,1446944400,8),(443,1459040400,7),(443,1473195600,4),(444,-1691964000,0),(444,-1680472800,1),(444,-1664143200,0),(444,-1650146400,1),(444,-1633903200,0),(444,-1617487200,1),(444,-1601848800,0),(444,-1586037600,1),(444,-1570399200,0),(444,-1552168800,1),(444,-1538344800,0),(444,-1522533600,1),(444,-1507500000,0),(444,-1490565600,1),(444,-1473631200,0),(444,-1460930400,1),(444,-1442786400,0),(444,-1428876000,1),(444,-1410732000,0),(444,-1396216800,1),(444,-1379282400,0),(444,-1364767200,1),(444,-1348437600,0),(444,-1333317600,1),(444,-1315778400,0),(444,-1301263200,1),(444,-1284328800,0),(444,-1269813600,1),(444,-1253484000,0),(444,-1238364000,1),(444,-1221429600,0),(444,-1206914400,1),(444,-1189980000,0),(444,-1175464800,1),(444,-1159135200,0),(444,-1143410400,1),(444,-1126476000,0),(444,-1111960800,1),(444,-1095631200,0),(444,-1080511200,1),(444,-1063576800,0),(444,-1049061600,1),(444,-1032127200,0),(444,-1017612000,1),(444,-1001282400,0),(444,-986162400,1),(444,-969228000,0),(444,-950479200,1),(444,-942012000,0),(444,-904518000,2),(444,-896050800,0),(444,-875487600,2),(444,-864601200,0),(444,-844038000,2),(444,-832546800,0),(444,-812588400,2),(444,-798073200,0),(444,-781052400,2),(444,-772066800,0),(444,-764805600,1),(444,-748476000,0),(444,-733356000,1),(444,-719445600,0),(444,-717030000,2),(444,-706748400,0),(444,-699487200,1),(444,-687996000,0),(444,-668037600,1),(444,-654732000,0),(444,-636588000,1),(444,-622072800,0),(444,-605743200,1),(444,-590623200,0),(444,-574293600,1),(444,-558568800,0),(444,-542239200,1),(444,-527119200,0),(444,-512604000,1),(444,-496274400,0),(444,-481154400,1),(444,-464220000,0),(444,-449704800,1),(444,-432165600,0),(444,-417650400,1),(444,-401320800,0),(444,-386200800,1),(444,-369266400,0),(444,-354751200,1),(444,-337816800,0),(444,-323301600,1),(444,-306972000,0),(444,-291852000,1),(444,-276732000,0),(444,-257983200,1),(444,-245282400,0),(444,-226533600,1),(444,-213228000,0),(444,-195084000,1),(444,-182383200,0),(444,-163634400,1),(444,-150933600,0),(444,-132184800,1),(444,-119484000,0),(444,-100735200,1),(444,-88034400,0),(444,-68680800,1),(444,-59004000,0),(444,-37242000,3),(444,57722400,5),(444,69818400,0),(444,89172000,1),(444,101268000,0),(444,120621600,1),(444,132717600,0),(444,152071200,1),(444,164167200,0),(444,183520800,1),(444,196221600,0),(444,214970400,1),(444,227671200,0),(444,246420000,1),(444,259120800,0),(444,278474400,1),(444,290570400,0),(444,309924000,1),(444,322020000,0),(444,341373600,1),(444,354675600,4),(444,372819600,5),(444,386125200,4),(444,404269200,5),(444,417574800,4),(444,435718800,5),(444,449024400,4),(444,467773200,5),(444,481078800,4),(444,499222800,5),(444,512528400,4),(444,530672400,5),(444,543978000,4),(444,562122000,5),(444,575427600,4),(444,593571600,5),(444,606877200,4),(444,625626000,5),(444,638326800,4),(444,657075600,5),(444,670381200,4),(444,688525200,5),(444,701830800,4),(444,719974800,5),(444,733280400,4),(444,751424400,5),(444,764730000,4),(444,782874000,5),(444,796179600,4),(444,814323600,5),(444,820454400,6),(444,828234000,4),(444,846378000,5),(444,859683600,4),(444,877827600,5),(444,891133200,4),(444,909277200,5),(444,922582800,4),(444,941331600,5),(444,954032400,4),(444,972781200,5),(444,985482000,4),(444,1004230800,5),(444,1017536400,4),(444,1035680400,5),(444,1048986000,4),(444,1067130000,5),(444,1080435600,4),(444,1099184400,5),(444,1111885200,4),(444,1130634000,5),(444,1143334800,4),(444,1162083600,5),(444,1174784400,4),(444,1193533200,5),(444,1206838800,4),(444,1224982800,5),(444,1238288400,4),(444,1256432400,5),(444,1269738000,4),(444,1288486800,5),(444,1301187600,4),(444,1319936400,5),(444,1332637200,4),(444,1351386000,5),(444,1364691600,4),(444,1382835600,5),(444,1396141200,4),(444,1414285200,5),(444,1427590800,4),(444,1445734800,5),(444,1459040400,4),(444,1477789200,5),(444,1490490000,4),(444,1509238800,5),(444,1521939600,4),(444,1540688400,5),(444,1553994000,4),(444,1572138000,5),(444,1585443600,4),(444,1603587600,5),(444,1616893200,4),(444,1635642000,5),(444,1648342800,4),(444,1667091600,5),(444,1679792400,4),(444,1698541200,5),(444,1711846800,4),(444,1729990800,5),(444,1743296400,4),(444,1761440400,5),(444,1774746000,4),(444,1792890000,5),(444,1806195600,4),(444,1824944400,5),(444,1837645200,4),(444,1856394000,5),(444,1869094800,4),(444,1887843600,5),(444,1901149200,4),(444,1919293200,5),(444,1932598800,4),(444,1950742800,5),(444,1964048400,4),(444,1982797200,5),(444,1995498000,4),(444,2014246800,5),(444,2026947600,4),(444,2045696400,5),(444,2058397200,4),(444,2077146000,5),(444,2090451600,4),(444,2108595600,5),(444,2121901200,4),(444,2140045200,5),(445,-1693706400,0),(445,-1680483600,1),(445,-1663455600,2),(445,-1650150000,3),(445,-1632006000,2),(445,-1618700400,3),(445,-938905200,2),(445,-857257200,3),(445,-844556400,2),(445,-828226800,3),(445,-812502000,2),(445,-796777200,3),(445,-788922000,5),(445,-778730400,4),(445,-762663600,5),(445,-757389600,7),(445,354920400,6),(445,370728000,7),(445,386456400,6),(445,402264000,7),(445,417992400,6),(445,433800000,7),(445,449614800,6),(445,465346800,8),(445,481071600,9),(445,496796400,8),(445,512521200,9),(445,528246000,8),(445,543970800,9),(445,559695600,8),(445,575420400,9),(445,591145200,8),(445,606870000,10),(445,622598400,11),(445,638323200,10),(445,654652800,11),(445,670377600,10),(445,686102400,11),(445,701827200,10),(445,717552000,11),(445,733276800,10),(445,749001600,11),(445,764726400,10),(445,780451200,11),(445,796176000,10),(445,811900800,11),(445,828230400,10),(445,846374400,11),(445,859680000,10),(445,877824000,11),(445,891129600,10),(445,909273600,11),(445,922579200,10),(445,941328000,11),(445,954028800,10),(445,972777600,11),(445,985478400,10),(445,1004227200,11),(445,1017532800,10),(445,1035676800,11),(445,1048982400,10),(445,1067126400,11),(445,1080432000,10),(445,1099180800,11),(445,1111881600,10),(445,1130630400,11),(445,1143331200,10),(445,1162080000,11),(445,1174780800,10),(445,1193529600,11),(445,1206835200,10),(445,1224979200,11),(445,1238284800,10),(445,1256428800,11),(445,1269734400,10),(445,1288483200,11),(445,1301184000,12),(445,1414278000,11),(446,-1441159324,1),(446,-1247536800,2),(446,-892522800,5),(446,-857257200,3),(446,-844556400,4),(446,-828226800,3),(446,-825382800,2),(446,354920400,6),(446,370728000,2),(446,386456400,6),(446,402264000,2),(446,417992400,6),(446,433800000,2),(446,449614800,6),(446,465346800,7),(446,481071600,8),(446,496796400,7),(446,512521200,8),(446,528246000,7),(446,543970800,8),(446,559695600,7),(446,575420400,8),(446,591145200,7),(446,606870000,8),(446,622594800,7),(446,638319600,8),(446,646783200,9),(446,686102400,1),(446,701820000,9),(446,717541200,1),(446,733269600,9),(446,748990800,1),(446,764719200,9),(446,780440400,1),(446,796179600,10),(446,811904400,11),(446,828234000,10),(446,846378000,11),(446,859683600,10),(446,877827600,11),(446,891133200,10),(446,909277200,11),(446,922582800,10),(446,941331600,11),(446,954032400,10),(446,972781200,11),(446,985482000,10),(446,1004230800,11),(446,1017536400,10),(446,1035680400,11),(446,1048986000,10),(446,1067130000,11),(446,1080435600,10),(446,1099184400,11),(446,1111885200,10),(446,1130634000,11),(446,1143334800,10),(446,1162083600,11),(446,1174784400,10),(446,1193533200,11),(446,1206838800,10),(446,1224982800,11),(446,1238288400,10),(446,1256432400,11),(446,1269738000,10),(446,1288486800,11),(446,1301187600,10),(446,1319936400,11),(446,1332637200,10),(446,1351386000,11),(446,1364691600,10),(446,1382835600,11),(446,1396141200,10),(446,1414285200,11),(446,1427590800,10),(446,1445734800,11),(446,1459040400,10),(446,1477789200,11),(446,1490490000,10),(446,1509238800,11),(446,1521939600,10),(446,1540688400,11),(446,1553994000,10),(446,1572138000,11),(446,1585443600,10),(446,1603587600,11),(446,1616893200,10),(446,1635642000,11),(446,1648342800,10),(446,1667091600,11),(446,1679792400,10),(446,1698541200,11),(446,1711846800,10),(446,1729990800,11),(446,1743296400,10),(446,1761440400,11),(446,1774746000,10),(446,1792890000,11),(446,1806195600,10),(446,1824944400,11),(446,1837645200,10),(446,1856394000,11),(446,1869094800,10),(446,1887843600,11),(446,1901149200,10),(446,1919293200,11),(446,1932598800,10),(446,1950742800,11),(446,1964048400,10),(446,1982797200,11),(446,1995498000,10),(446,2014246800,11),(446,2026947600,10),(446,2045696400,11),(446,2058397200,10),(446,2077146000,11),(446,2090451600,10),(446,2108595600,11),(446,2121901200,10),(446,2140045200,11),(447,-1593820800,1),(447,-1247540400,3),(447,354916800,2),(447,370724400,3),(447,386452800,2),(447,402260400,3),(447,417988800,2),(447,433796400,3),(447,449611200,2),(447,465343200,4),(447,481068000,5),(447,496792800,4),(447,512517600,5),(447,528242400,4),(447,543967200,5),(447,559692000,4),(447,575416800,5),(447,591141600,4),(447,606866400,6),(447,622594800,7),(447,638319600,6),(447,654649200,7),(447,670374000,4),(447,701820000,6),(447,717548400,7),(447,733273200,6),(447,748998000,7),(447,764722800,6),(447,780447600,7),(447,796172400,6),(447,811897200,7),(447,828226800,6),(447,846370800,7),(447,859676400,6),(447,877820400,7),(447,891126000,6),(447,909270000,7),(447,922575600,6),(447,941324400,7),(447,954025200,6),(447,972774000,7),(447,985474800,6),(447,1004223600,7),(447,1017529200,6),(447,1035673200,7),(447,1048978800,6),(447,1067122800,7),(447,1080428400,6),(447,1099177200,7),(447,1111878000,6),(447,1130626800,7),(447,1143327600,6),(447,1162076400,7),(447,1174777200,6),(447,1193526000,7),(447,1206831600,6),(447,1224975600,7),(447,1238281200,6),(447,1256425200,7),(447,1269730800,6),(447,1288479600,7),(447,1301180400,4),(447,1414274400,7),(448,-1830384000,6),(448,-1689555600,1),(448,-1677801600,2),(448,-1667437200,3),(448,-1647738000,4),(448,-1635814800,3),(448,-1616202000,4),(448,-1604365200,3),(448,-1584666000,4),(448,-1572742800,3),(448,-1553043600,4),(448,-1541206800,3),(448,-1521507600,4),(448,-1442451600,3),(448,-1426813200,4),(448,-1379293200,3),(448,-1364778000,4),(448,-1348448400,3),(448,-1333328400,4),(448,-1316394000,3),(448,-1301274000,4),(448,-1284339600,3),(448,-1269824400,4),(448,-1221440400,3),(448,-1206925200,4),(448,-1191200400,3),(448,-1175475600,4),(448,-1127696400,3),(448,-1111971600,4),(448,-1096851600,3),(448,-1080522000,4),(448,-1063587600,3),(448,-1049072400,4),(448,-1033347600,3),(448,-1017622800,4),(448,-1002502800,3),(448,-986173200,4),(448,-969238800,3),(448,-950490000,4),(448,-942022800,3),(448,-922669200,4),(448,-906944400,3),(448,-891133200,4),(448,-877309200,3),(448,-873684000,5),(448,-864007200,3),(448,-857955600,4),(448,-845859600,3),(448,-842839200,5),(448,-831348000,3),(448,-825901200,4),(448,-814410000,3),(448,-810784800,5),(448,-799898400,3),(448,-794451600,4),(448,-782960400,3),(448,-779335200,5),(448,-768448800,3),(448,-763002000,4),(448,-749091600,3),(448,-733366800,4),(448,-717631200,3),(448,-701906400,4),(448,-686181600,3),(448,-670456800,4),(448,-654732000,3),(448,-639007200,4),(448,-591832800,3),(448,-575503200,4),(448,-559778400,3),(448,-544053600,4),(448,-528328800,3),(448,-512604000,4),(448,-496879200,3),(448,-481154400,4),(448,-465429600,3),(448,-449704800,4),(448,-433980000,3),(448,-417650400,4),(448,-401925600,3),(448,-386200800,4),(448,-370476000,3),(448,-354751200,4),(448,-339026400,3),(448,-323301600,4),(448,-307576800,3),(448,-291852000,4),(448,-276127200,3),(448,-260402400,4),(448,-244677600,3),(448,-228348000,4),(448,-212623200,3),(448,-196898400,4),(448,-181173600,3),(448,-165448800,4),(448,-149724000,3),(448,-133999200,4),(448,-118274400,7),(448,212544000,2),(448,228268800,3),(448,243993600,4),(448,260323200,3),(448,276048000,4),(448,291772800,3),(448,307501200,4),(448,323222400,3),(448,338950800,4),(448,354675600,3),(448,370400400,4),(448,386125200,3),(448,401850000,4),(448,417578400,3),(448,433299600,4),(448,449024400,3),(448,465354000,4),(448,481078800,3),(448,496803600,4),(448,512528400,3),(448,528253200,4),(448,543978000,3),(448,559702800,4),(448,575427600,3),(448,591152400,4),(448,606877200,3),(448,622602000,4),(448,638326800,3),(448,654656400,4),(448,670381200,3),(448,686106000,4),(448,701830800,3),(448,717555600,8),(448,733280400,9),(448,749005200,8),(448,764730000,9),(448,780454800,8),(448,796179600,9),(448,811904400,8),(448,828234000,10),(448,846378000,6),(448,859683600,10),(448,877827600,6),(448,891133200,10),(448,909277200,6),(448,922582800,10),(448,941331600,6),(448,954032400,10),(448,972781200,6),(448,985482000,10),(448,1004230800,6),(448,1017536400,10),(448,1035680400,6),(448,1048986000,10),(448,1067130000,6),(448,1080435600,10),(448,1099184400,6),(448,1111885200,10),(448,1130634000,6),(448,1143334800,10),(448,1162083600,6),(448,1174784400,10),(448,1193533200,6),(448,1206838800,10),(448,1224982800,6),(448,1238288400,10),(448,1256432400,6),(448,1269738000,10),(448,1288486800,6),(448,1301187600,10),(448,1319936400,6),(448,1332637200,10),(448,1351386000,6),(448,1364691600,10),(448,1382835600,6),(448,1396141200,10),(448,1414285200,6),(448,1427590800,10),(448,1445734800,6),(448,1459040400,10),(448,1477789200,6),(448,1490490000,10),(448,1509238800,6),(448,1521939600,10),(448,1540688400,6),(448,1553994000,10),(448,1572138000,6),(448,1585443600,10),(448,1603587600,6),(448,1616893200,10),(448,1635642000,6),(448,1648342800,10),(448,1667091600,6),(448,1679792400,10),(448,1698541200,6),(448,1711846800,10),(448,1729990800,6),(448,1743296400,10),(448,1761440400,6),(448,1774746000,10),(448,1792890000,6),(448,1806195600,10),(448,1824944400,6),(448,1837645200,10),(448,1856394000,6),(448,1869094800,10),(448,1887843600,6),(448,1901149200,10),(448,1919293200,6),(448,1932598800,10),(448,1950742800,6),(448,1964048400,10),(448,1982797200,6),(448,1995498000,10),(448,2014246800,6),(448,2026947600,10),(448,2045696400,6),(448,2058397200,10),(448,2077146000,6),(448,2090451600,10),(448,2108595600,6),(448,2121901200,10),(448,2140045200,6),(449,-905824800,3),(449,-857257200,1),(449,-844556400,2),(449,-828226800,1),(449,-812502000,2),(449,-796777200,1),(449,-788922000,0),(449,-777942000,2),(449,-766623600,1),(449,407199600,0),(449,417574800,4),(449,433299600,5),(449,449024400,4),(449,465354000,5),(449,481078800,4),(449,496803600,5),(449,512528400,4),(449,528253200,5),(449,543978000,4),(449,559702800,5),(449,575427600,4),(449,591152400,5),(449,606877200,4),(449,622602000,5),(449,638326800,4),(449,654656400,5),(449,670381200,4),(449,686106000,5),(449,701830800,4),(449,717555600,5),(449,733280400,4),(449,749005200,5),(449,764730000,4),(449,780454800,5),(449,796179600,4),(449,811904400,5),(449,828234000,4),(449,846378000,5),(449,859683600,4),(449,877827600,5),(449,891133200,4),(449,909277200,5),(449,922582800,4),(449,941331600,5),(449,954032400,4),(449,972781200,5),(449,985482000,4),(449,1004230800,5),(449,1017536400,4),(449,1035680400,5),(449,1048986000,4),(449,1067130000,5),(449,1080435600,4),(449,1099184400,5),(449,1111885200,4),(449,1130634000,5),(449,1143334800,4),(449,1162083600,5),(449,1174784400,4),(449,1193533200,5),(449,1206838800,4),(449,1224982800,5),(449,1238288400,4),(449,1256432400,5),(449,1269738000,4),(449,1288486800,5),(449,1301187600,4),(449,1319936400,5),(449,1332637200,4),(449,1351386000,5),(449,1364691600,4),(449,1382835600,5),(449,1396141200,4),(449,1414285200,5),(449,1427590800,4),(449,1445734800,5),(449,1459040400,4),(449,1477789200,5),(449,1490490000,4),(449,1509238800,5),(449,1521939600,4),(449,1540688400,5),(449,1553994000,4),(449,1572138000,5),(449,1585443600,4),(449,1603587600,5),(449,1616893200,4),(449,1635642000,5),(449,1648342800,4),(449,1667091600,5),(449,1679792400,4),(449,1698541200,5),(449,1711846800,4),(449,1729990800,5),(449,1743296400,4),(449,1761440400,5),(449,1774746000,4),(449,1792890000,5),(449,1806195600,4),(449,1824944400,5),(449,1837645200,4),(449,1856394000,5),(449,1869094800,4),(449,1887843600,5),(449,1901149200,4),(449,1919293200,5),(449,1932598800,4),(449,1950742800,5),(449,1964048400,4),(449,1982797200,5),(449,1995498000,4),(449,2014246800,5),(449,2026947600,4),(449,2045696400,5),(449,2058397200,4),(449,2077146000,5),(449,2090451600,4),(449,2108595600,5),(449,2121901200,4),(449,2140045200,5),(450,-1691964000,0),(450,-1680472800,1),(450,-1664143200,0),(450,-1650146400,1),(450,-1633903200,0),(450,-1617487200,1),(450,-1601848800,0),(450,-1586037600,1),(450,-1570399200,0),(450,-1552168800,1),(450,-1538344800,0),(450,-1522533600,1),(450,-1507500000,0),(450,-1490565600,1),(450,-1473631200,0),(450,-1460930400,1),(450,-1442786400,0),(450,-1428876000,1),(450,-1410732000,0),(450,-1396216800,1),(450,-1379282400,0),(450,-1364767200,1),(450,-1348437600,0),(450,-1333317600,1),(450,-1315778400,0),(450,-1301263200,1),(450,-1284328800,0),(450,-1269813600,1),(450,-1253484000,0),(450,-1238364000,1),(450,-1221429600,0),(450,-1206914400,1),(450,-1189980000,0),(450,-1175464800,1),(450,-1159135200,0),(450,-1143410400,1),(450,-1126476000,0),(450,-1111960800,1),(450,-1095631200,0),(450,-1080511200,1),(450,-1063576800,0),(450,-1049061600,1),(450,-1032127200,0),(450,-1017612000,1),(450,-1001282400,0),(450,-986162400,1),(450,-969228000,0),(450,-950479200,1),(450,-942012000,0),(450,-904518000,2),(450,-896050800,0),(450,-875487600,2),(450,-864601200,0),(450,-844038000,2),(450,-832546800,0),(450,-812588400,2),(450,-798073200,0),(450,-781052400,2),(450,-772066800,0),(450,-764805600,1),(450,-748476000,0),(450,-733356000,1),(450,-719445600,0),(450,-717030000,2),(450,-706748400,0),(450,-699487200,1),(450,-687996000,0),(450,-668037600,1),(450,-654732000,0),(450,-636588000,1),(450,-622072800,0),(450,-605743200,1),(450,-590623200,0),(450,-574293600,1),(450,-558568800,0),(450,-542239200,1),(450,-527119200,0),(450,-512604000,1),(450,-496274400,0),(450,-481154400,1),(450,-464220000,0),(450,-449704800,1),(450,-432165600,0),(450,-417650400,1),(450,-401320800,0),(450,-386200800,1),(450,-369266400,0),(450,-354751200,1),(450,-337816800,0),(450,-323301600,1),(450,-306972000,0),(450,-291852000,1),(450,-276732000,0),(450,-257983200,1),(450,-245282400,0),(450,-226533600,1),(450,-213228000,0),(450,-195084000,1),(450,-182383200,0),(450,-163634400,1),(450,-150933600,0),(450,-132184800,1),(450,-119484000,0),(450,-100735200,1),(450,-88034400,0),(450,-68680800,1),(450,-59004000,0),(450,-37242000,3),(450,57722400,5),(450,69818400,0),(450,89172000,1),(450,101268000,0),(450,120621600,1),(450,132717600,0),(450,152071200,1),(450,164167200,0),(450,183520800,1),(450,196221600,0),(450,214970400,1),(450,227671200,0),(450,246420000,1),(450,259120800,0),(450,278474400,1),(450,290570400,0),(450,309924000,1),(450,322020000,0),(450,341373600,1),(450,354675600,4),(450,372819600,5),(450,386125200,4),(450,404269200,5),(450,417574800,4),(450,435718800,5),(450,449024400,4),(450,467773200,5),(450,481078800,4),(450,499222800,5),(450,512528400,4),(450,530672400,5),(450,543978000,4),(450,562122000,5),(450,575427600,4),(450,593571600,5),(450,606877200,4),(450,625626000,5),(450,638326800,4),(450,657075600,5),(450,670381200,4),(450,688525200,5),(450,701830800,4),(450,719974800,5),(450,733280400,4),(450,751424400,5),(450,764730000,4),(450,782874000,5),(450,796179600,4),(450,814323600,5),(450,820454400,6),(450,828234000,4),(450,846378000,5),(450,859683600,4),(450,877827600,5),(450,891133200,4),(450,909277200,5),(450,922582800,4),(450,941331600,5),(450,954032400,4),(450,972781200,5),(450,985482000,4),(450,1004230800,5),(450,1017536400,4),(450,1035680400,5),(450,1048986000,4),(450,1067130000,5),(450,1080435600,4),(450,1099184400,5),(450,1111885200,4),(450,1130634000,5),(450,1143334800,4),(450,1162083600,5),(450,1174784400,4),(450,1193533200,5),(450,1206838800,4),(450,1224982800,5),(450,1238288400,4),(450,1256432400,5),(450,1269738000,4),(450,1288486800,5),(450,1301187600,4),(450,1319936400,5),(450,1332637200,4),(450,1351386000,5),(450,1364691600,4),(450,1382835600,5),(450,1396141200,4),(450,1414285200,5),(450,1427590800,4),(450,1445734800,5),(450,1459040400,4),(450,1477789200,5),(450,1490490000,4),(450,1509238800,5),(450,1521939600,4),(450,1540688400,5),(450,1553994000,4),(450,1572138000,5),(450,1585443600,4),(450,1603587600,5),(450,1616893200,4),(450,1635642000,5),(450,1648342800,4),(450,1667091600,5),(450,1679792400,4),(450,1698541200,5),(450,1711846800,4),(450,1729990800,5),(450,1743296400,4),(450,1761440400,5),(450,1774746000,4),(450,1792890000,5),(450,1806195600,4),(450,1824944400,5),(450,1837645200,4),(450,1856394000,5),(450,1869094800,4),(450,1887843600,5),(450,1901149200,4),(450,1919293200,5),(450,1932598800,4),(450,1950742800,5),(450,1964048400,4),(450,1982797200,5),(450,1995498000,4),(450,2014246800,5),(450,2026947600,4),(450,2045696400,5),(450,2058397200,4),(450,2077146000,5),(450,2090451600,4),(450,2108595600,5),(450,2121901200,4),(450,2140045200,5),(451,-2069713476,2),(451,-1692496800,1),(451,-1680483600,2),(451,-1662343200,1),(451,-1650157200,2),(451,-1632006000,3),(451,-1618700400,4),(451,-1612659600,6),(451,-1604278800,5),(451,-1585519200,6),(451,-1574038800,5),(451,-1552258800,6),(451,-1539997200,5),(451,-1520550000,6),(451,-1507510800,5),(451,-1490572800,6),(451,-1473642000,5),(451,-1459119600,6),(451,-1444006800,5),(451,-1427673600,6),(451,-1411866000,5),(451,-1396224000,6),(451,-1379293200,5),(451,-1364774400,6),(451,-1348448400,5),(451,-1333324800,6),(451,-1316394000,5),(451,-1301270400,6),(451,-1284339600,5),(451,-1269813600,7),(451,-1253484000,8),(451,-1238364000,7),(451,-1221429600,8),(451,-1206914400,7),(451,-1191189600,8),(451,-1175464800,7),(451,-1160344800,8),(451,-1143410400,7),(451,-1127685600,8),(451,-1111960800,7),(451,-1096840800,8),(451,-1080511200,7),(451,-1063576800,8),(451,-1049061600,7),(451,-1033336800,8),(451,-1017612000,7),(451,-1002492000,8),(451,-986162400,7),(451,-969228000,8),(451,-950479200,7),(451,-942012000,8),(451,-935186400,11),(451,-857257200,9),(451,-844556400,10),(451,-828226800,9),(451,-812502000,10),(451,-797986800,2),(451,-781052400,3),(451,-766623600,4),(451,-745455600,3),(451,-733273200,4),(451,220921200,2),(451,228877200,12),(451,243997200,13),(451,260326800,12),(451,276051600,13),(451,291776400,12),(451,307501200,13),(451,323830800,12),(451,338950800,13),(451,354675600,12),(451,370400400,13),(451,386125200,12),(451,401850000,13),(451,417574800,12),(451,433299600,13),(451,449024400,12),(451,465354000,13),(451,481078800,12),(451,496803600,13),(451,512528400,12),(451,528253200,13),(451,543978000,12),(451,559702800,13),(451,575427600,12),(451,591152400,13),(451,606877200,12),(451,622602000,13),(451,638326800,12),(451,654656400,13),(451,670381200,12),(451,686106000,13),(451,701830800,12),(451,717555600,13),(451,733280400,12),(451,749005200,13),(451,764730000,12),(451,780454800,13),(451,796179600,12),(451,811904400,13),(451,828234000,12),(451,846378000,13),(451,859683600,12),(451,877827600,13),(451,891133200,12),(451,909277200,13),(451,922582800,12),(451,941331600,13),(451,954032400,12),(451,972781200,13),(451,985482000,12),(451,1004230800,13),(451,1017536400,12),(451,1035680400,13),(451,1048986000,12),(451,1067130000,13),(451,1080435600,12),(451,1099184400,13),(451,1111885200,12),(451,1130634000,13),(451,1143334800,12),(451,1162083600,13),(451,1174784400,12),(451,1193533200,13),(451,1206838800,12),(451,1224982800,13),(451,1238288400,12),(451,1256432400,13),(451,1269738000,12),(451,1288486800,13),(451,1301187600,12),(451,1319936400,13),(451,1332637200,12),(451,1351386000,13),(451,1364691600,12),(451,1382835600,13),(451,1396141200,12),(451,1414285200,13),(451,1427590800,12),(451,1445734800,13),(451,1459040400,12),(451,1477789200,13),(451,1490490000,12),(451,1509238800,13),(451,1521939600,12),(451,1540688400,13),(451,1553994000,12),(451,1572138000,13),(451,1585443600,12),(451,1603587600,13),(451,1616893200,12),(451,1635642000,13),(451,1648342800,12),(451,1667091600,13),(451,1679792400,12),(451,1698541200,13),(451,1711846800,12),(451,1729990800,13),(451,1743296400,12),(451,1761440400,13),(451,1774746000,12),(451,1792890000,13),(451,1806195600,12),(451,1824944400,13),(451,1837645200,12),(451,1856394000,13),(451,1869094800,12),(451,1887843600,13),(451,1901149200,12),(451,1919293200,13),(451,1932598800,12),(451,1950742800,13),(451,1964048400,12),(451,1982797200,13),(451,1995498000,12),(451,2014246800,13),(451,2026947600,12),(451,2045696400,13),(451,2058397200,12),(451,2077146000,13),(451,2090451600,12),(451,2108595600,13),(451,2121901200,12),(451,2140045200,13),(452,-1631926800,0),(452,-1616889600,1),(452,-1601168400,0),(452,-1585353600,1),(452,-1442451600,0),(452,-1427673600,1),(452,-1379293200,0),(452,-1364774400,1),(452,-1348448400,0),(452,-1333324800,1),(452,-1316390400,0),(452,-1301270400,1),(452,-1284339600,0),(452,-1269820800,1),(452,-1026954000,0),(452,-1017619200,1),(452,-1001898000,0),(452,-999482400,2),(452,-986090400,0),(452,-954115200,1),(452,-940208400,5),(452,-873079200,4),(452,-862621200,5),(452,-842839200,4),(452,-828320400,5),(452,-811389600,4),(452,-796870800,5),(452,-779940000,4),(452,-765421200,5),(452,-748490400,4),(452,-733971600,5),(452,-652327200,4),(452,-639018000,5),(452,135122400,4),(452,150246000,5),(452,166572000,4),(452,181695600,5),(452,196812000,4),(452,212540400,5),(452,228866400,4),(452,243990000,5),(452,260326800,6),(452,276051600,7),(452,283993200,5),(452,291776400,8),(452,307501200,9),(452,323830800,8),(452,338950800,9),(452,354675600,8),(452,370400400,9),(452,386125200,8),(452,401850000,9),(452,417574800,8),(452,433299600,9),(452,449024400,8),(452,465354000,9),(452,481078800,8),(452,496803600,9),(452,512528400,8),(452,528253200,9),(452,543978000,8),(452,559702800,9),(452,575427600,8),(452,591152400,9),(452,606877200,8),(452,622602000,9),(452,638326800,8),(452,654656400,9),(452,670381200,8),(452,686106000,9),(452,701830800,8),(452,717555600,9),(452,733280400,8),(452,749005200,9),(452,764730000,8),(452,780454800,9),(452,796179600,8),(452,811904400,9),(452,828234000,8),(452,846378000,9),(452,859683600,8),(452,877827600,9),(452,891133200,8),(452,909277200,9),(452,922582800,8),(452,941331600,9),(452,954032400,8),(452,972781200,9),(452,985482000,8),(452,1004230800,9),(452,1017536400,8),(452,1035680400,9),(452,1048986000,8),(452,1067130000,9),(452,1080435600,8),(452,1099184400,9),(452,1111885200,8),(452,1130634000,9),(452,1143334800,8),(452,1162083600,9),(452,1174784400,8),(452,1193533200,9),(452,1206838800,8),(452,1224982800,9),(452,1238288400,8),(452,1256432400,9),(452,1269738000,8),(452,1288486800,9),(452,1301187600,8),(452,1319936400,9),(452,1332637200,8),(452,1351386000,9),(452,1364691600,8),(452,1382835600,9),(452,1396141200,8),(452,1414285200,9),(452,1427590800,8),(452,1445734800,9),(452,1459040400,8),(452,1477789200,9),(452,1490490000,8),(452,1509238800,9),(452,1521939600,8),(452,1540688400,9),(452,1553994000,8),(452,1572138000,9),(452,1585443600,8),(452,1603587600,9),(452,1616893200,8),(452,1635642000,9),(452,1648342800,8),(452,1667091600,9),(452,1679792400,8),(452,1698541200,9),(452,1711846800,8),(452,1729990800,9),(452,1743296400,8),(452,1761440400,9),(452,1774746000,8),(452,1792890000,9),(452,1806195600,8),(452,1824944400,9),(452,1837645200,8),(452,1856394000,9),(452,1869094800,8),(452,1887843600,9),(452,1901149200,8),(452,1919293200,9),(452,1932598800,8),(452,1950742800,9),(452,1964048400,8),(452,1982797200,9),(452,1995498000,8),(452,2014246800,9),(452,2026947600,8),(452,2045696400,9),(452,2058397200,8),(452,2077146000,9),(452,2090451600,8),(452,2108595600,9),(452,2121901200,8),(452,2140045200,9),(453,-1690765200,0),(453,-1680487200,1),(453,-1664758800,0),(453,-1648951200,1),(453,-1635123600,0),(453,-1616896800,1),(453,-1604278800,0),(453,-1585533600,1),(453,-1571014800,0),(453,-1555293600,1),(453,-932432400,0),(453,-857257200,2),(453,-844556400,3),(453,-828226800,2),(453,-812588400,3),(453,-798073200,2),(453,-781052400,0),(453,-766717200,1),(453,-750898800,3),(453,-733359600,2),(453,-719456400,3),(453,-701917200,2),(453,-689209200,3),(453,-670460400,2),(453,-114051600,3),(453,-103168800,1),(453,-81997200,3),(453,-71715600,2),(453,-50547600,3),(453,-40266000,2),(453,-18493200,3),(453,-8211600,2),(453,12956400,3),(453,23238000,2),(453,43801200,3),(453,54687600,2),(453,75855600,3),(453,86742000,2),(453,102380400,3),(453,118105200,2),(453,135730800,3),(453,148518000,2),(453,167187600,0),(453,180489600,1),(453,198637200,0),(453,211939200,1),(453,230086800,0),(453,243388800,1),(453,261536400,0),(453,274838400,1),(453,292986000,0),(453,306288000,1),(453,323312400,0),(453,338342400,1),(453,354675600,4),(453,370400400,5),(453,386125200,4),(453,401850000,5),(453,417574800,4),(453,433299600,5),(453,449024400,4),(453,465354000,5),(453,481078800,4),(453,496803600,5),(453,512528400,4),(453,528253200,5),(453,543978000,4),(453,559702800,5),(453,575427600,4),(453,591152400,5),(453,606877200,4),(453,622602000,5),(453,638326800,4),(453,654656400,5),(453,670381200,4),(453,686106000,5),(453,701830800,4),(453,717555600,5),(453,733280400,4),(453,749005200,5),(453,764730000,4),(453,780454800,5),(453,796179600,4),(453,811904400,5),(453,828234000,4),(453,846378000,5),(453,859683600,4),(453,877827600,5),(453,891133200,4),(453,909277200,5),(453,922582800,4),(453,941331600,5),(453,954032400,4),(453,972781200,5),(453,985482000,4),(453,1004230800,5),(453,1017536400,4),(453,1035680400,5),(453,1048986000,4),(453,1067130000,5),(453,1080435600,4),(453,1099184400,5),(453,1111885200,4),(453,1130634000,5),(453,1143334800,4),(453,1162083600,5),(453,1174784400,4),(453,1193533200,5),(453,1206838800,4),(453,1224982800,5),(453,1238288400,4),(453,1256432400,5),(453,1269738000,4),(453,1288486800,5),(453,1301187600,4),(453,1319936400,5),(453,1332637200,4),(453,1351386000,5),(453,1364691600,4),(453,1382835600,5),(453,1396141200,4),(453,1414285200,5),(453,1427590800,4),(453,1445734800,5),(453,1459040400,4),(453,1477789200,5),(453,1490490000,4),(453,1509238800,5),(453,1521939600,4),(453,1540688400,5),(453,1553994000,4),(453,1572138000,5),(453,1585443600,4),(453,1603587600,5),(453,1616893200,4),(453,1635642000,5),(453,1648342800,4),(453,1667091600,5),(453,1679792400,4),(453,1698541200,5),(453,1711846800,4),(453,1729990800,5),(453,1743296400,4),(453,1761440400,5),(453,1774746000,4),(453,1792890000,5),(453,1806195600,4),(453,1824944400,5),(453,1837645200,4),(453,1856394000,5),(453,1869094800,4),(453,1887843600,5),(453,1901149200,4),(453,1919293200,5),(453,1932598800,4),(453,1950742800,5),(453,1964048400,4),(453,1982797200,5),(453,1995498000,4),(453,2014246800,5),(453,2026947600,4),(453,2045696400,5),(453,2058397200,4),(453,2077146000,5),(453,2090451600,4),(453,2108595600,5),(453,2121901200,4),(453,2140045200,5),(454,-1535938789,2),(454,-875671200,1),(454,-859773600,2),(454,354672000,1),(454,370396800,2),(454,386121600,1),(454,401846400,2),(454,417574800,3),(454,433299600,4),(454,449024400,3),(454,465354000,4),(454,481078800,3),(454,496803600,4),(454,512528400,3),(454,528253200,4),(454,543978000,3),(454,559702800,4),(454,575427600,3),(454,591152400,4),(454,606877200,3),(454,622602000,4),(454,638326800,3),(454,654656400,4),(454,670381200,3),(454,686106000,4),(454,701830800,3),(454,717555600,4),(454,733280400,3),(454,749005200,4),(454,764730000,3),(454,780454800,4),(454,796179600,3),(454,811904400,4),(454,828234000,3),(454,846378000,4),(454,859683600,3),(454,877827600,4),(454,891133200,3),(454,909277200,4),(454,922582800,3),(454,941331600,4),(454,954032400,3),(454,972781200,4),(454,985482000,3),(454,1004230800,4),(454,1017536400,3),(454,1035680400,4),(454,1048986000,3),(454,1067130000,4),(454,1080435600,3),(454,1099184400,4),(454,1111885200,3),(454,1130634000,4),(454,1143334800,3),(454,1162083600,4),(454,1174784400,3),(454,1193533200,4),(454,1206838800,3),(454,1224982800,4),(454,1238288400,3),(454,1256432400,4),(454,1269738000,3),(454,1288486800,4),(454,1301187600,3),(454,1319936400,4),(454,1332637200,3),(454,1351386000,4),(454,1364691600,3),(454,1382835600,4),(454,1396141200,3),(454,1414285200,4),(454,1427590800,3),(454,1445734800,4),(454,1459040400,3),(454,1477789200,4),(454,1490490000,3),(454,1509238800,4),(454,1521939600,3),(454,1540688400,4),(454,1553994000,3),(454,1572138000,4),(454,1585443600,3),(454,1603587600,4),(454,1616893200,3),(454,1635642000,4),(454,1648342800,3),(454,1667091600,4),(454,1679792400,3),(454,1698541200,4),(454,1711846800,3),(454,1729990800,4),(454,1743296400,3),(454,1761440400,4),(454,1774746000,3),(454,1792890000,4),(454,1806195600,3),(454,1824944400,4),(454,1837645200,3),(454,1856394000,4),(454,1869094800,3),(454,1887843600,4),(454,1901149200,3),(454,1919293200,4),(454,1932598800,3),(454,1950742800,4),(454,1964048400,3),(454,1982797200,4),(454,1995498000,3),(454,2014246800,4),(454,2026947600,3),(454,2045696400,4),(454,2058397200,3),(454,2077146000,4),(454,2090451600,3),(454,2108595600,4),(454,2121901200,3),(454,2140045200,4),(455,-1441158600,1),(455,-1247536800,2),(455,-899780400,5),(455,-857257200,3),(455,-844556400,4),(455,-828226800,3),(455,-812502000,4),(455,-804650400,2),(455,354920400,6),(455,370728000,2),(455,386456400,6),(455,402264000,2),(455,417992400,6),(455,433800000,2),(455,449614800,6),(455,465346800,7),(455,481071600,8),(455,496796400,7),(455,512521200,8),(455,528246000,7),(455,543970800,8),(455,559695600,7),(455,575420400,8),(455,591145200,7),(455,606870000,8),(455,622594800,7),(455,631141200,2),(455,670374000,9),(455,686102400,10),(455,701827200,9),(455,717552000,10),(455,733276800,9),(455,749001600,10),(455,764726400,9),(455,780451200,10),(455,796176000,9),(455,811900800,10),(455,828230400,9),(455,846374400,10),(455,859680000,9),(455,877824000,10),(455,891129600,9),(455,909273600,10),(455,922579200,9),(455,941328000,10),(455,954028800,9),(455,972777600,10),(455,985478400,9),(455,1004227200,10),(455,1017532800,9),(455,1035676800,10),(455,1048982400,9),(455,1067126400,10),(455,1080432000,9),(455,1099180800,10),(455,1111881600,9),(455,1130630400,10),(455,1143331200,9),(455,1162080000,10),(455,1174780800,9),(455,1193529600,10),(455,1206835200,9),(455,1224979200,10),(455,1238284800,9),(455,1256428800,10),(455,1269734400,9),(455,1288483200,10),(455,1301184000,11),(456,-1855958961,5),(456,-1689814800,1),(456,-1680397200,2),(456,-1665363600,1),(456,-1648342800,2),(456,-1635123600,1),(456,-1616893200,2),(456,-1604278800,1),(456,-1585443600,2),(456,-1574038800,1),(456,-1552266000,2),(456,-1539997200,1),(456,-1520557200,2),(456,-1507510800,1),(456,-1490576400,2),(456,-1470618000,1),(456,-1459126800,2),(456,-1444006800,1),(456,-1427677200,2),(456,-1411952400,1),(456,-1396227600,2),(456,-1379293200,1),(456,-1364778000,2),(456,-1348448400,1),(456,-1333328400,2),(456,-1316394000,1),(456,-1301274000,2),(456,-1284339600,1),(456,-1269824400,2),(456,-1253494800,1),(456,-1238374800,2),(456,-1221440400,1),(456,-1206925200,2),(456,-1191200400,1),(456,-1175475600,2),(456,-1160355600,1),(456,-1143421200,2),(456,-1127696400,1),(456,-1111971600,2),(456,-1096851600,1),(456,-1080522000,2),(456,-1063587600,1),(456,-1049072400,2),(456,-1033347600,1),(456,-1017622800,2),(456,-1002502800,1),(456,-986173200,2),(456,-969238800,1),(456,-950490000,2),(456,-942012000,3),(456,-904438800,4),(456,-891136800,3),(456,-877827600,4),(456,-857257200,3),(456,-844556400,4),(456,-828226800,3),(456,-812502000,4),(456,-796266000,3),(456,-781052400,4),(456,-766623600,7),(456,196819200,6),(456,212540400,7),(456,228877200,8),(456,243997200,9),(456,260326800,8),(456,276051600,9),(456,291776400,8),(456,307501200,9),(456,323830800,8),(456,338950800,9),(456,354675600,8),(456,370400400,9),(456,386125200,8),(456,401850000,9),(456,417574800,8),(456,433299600,9),(456,449024400,8),(456,465354000,9),(456,481078800,8),(456,496803600,9),(456,512528400,8),(456,528253200,9),(456,543978000,8),(456,559702800,9),(456,575427600,8),(456,591152400,9),(456,606877200,8),(456,622602000,9),(456,638326800,8),(456,654656400,9),(456,670381200,8),(456,686106000,9),(456,701830800,8),(456,717555600,9),(456,733280400,8),(456,749005200,9),(456,764730000,8),(456,780454800,9),(456,796179600,8),(456,811904400,9),(456,828234000,8),(456,846378000,9),(456,859683600,8),(456,877827600,9),(456,891133200,8),(456,909277200,9),(456,922582800,8),(456,941331600,9),(456,954032400,8),(456,972781200,9),(456,985482000,8),(456,1004230800,9),(456,1017536400,8),(456,1035680400,9),(456,1048986000,8),(456,1067130000,9),(456,1080435600,8),(456,1099184400,9),(456,1111885200,8),(456,1130634000,9),(456,1143334800,8),(456,1162083600,9),(456,1174784400,8),(456,1193533200,9),(456,1206838800,8),(456,1224982800,9),(456,1238288400,8),(456,1256432400,9),(456,1269738000,8),(456,1288486800,9),(456,1301187600,8),(456,1319936400,9),(456,1332637200,8),(456,1351386000,9),(456,1364691600,8),(456,1382835600,9),(456,1396141200,8),(456,1414285200,9),(456,1427590800,8),(456,1445734800,9),(456,1459040400,8),(456,1477789200,9),(456,1490490000,8),(456,1509238800,9),(456,1521939600,8),(456,1540688400,9),(456,1553994000,8),(456,1572138000,9),(456,1585443600,8),(456,1603587600,9),(456,1616893200,8),(456,1635642000,9),(456,1648342800,8),(456,1667091600,9),(456,1679792400,8),(456,1698541200,9),(456,1711846800,8),(456,1729990800,9),(456,1743296400,8),(456,1761440400,9),(456,1774746000,8),(456,1792890000,9),(456,1806195600,8),(456,1824944400,9),(456,1837645200,8),(456,1856394000,9),(456,1869094800,8),(456,1887843600,9),(456,1901149200,8),(456,1919293200,9),(456,1932598800,8),(456,1950742800,9),(456,1964048400,8),(456,1982797200,9),(456,1995498000,8),(456,2014246800,9),(456,2026947600,8),(456,2045696400,9),(456,2058397200,8),(456,2077146000,9),(456,2090451600,8),(456,2108595600,9),(456,2121901200,8),(456,2140045200,9),(457,-1688265017,2),(457,-1656819079,1),(457,-1641353479,2),(457,-1627965079,3),(457,-1618716679,1),(457,-1596429079,3),(457,-1593820800,4),(457,-1589860800,5),(457,-1542427200,6),(457,-1539493200,7),(457,-1525323600,6),(457,-1522728000,5),(457,-1491188400,8),(457,-1247536800,5),(457,354920400,6),(457,370728000,5),(457,386456400,6),(457,402264000,5),(457,417992400,6),(457,433800000,5),(457,449614800,6),(457,465346800,9),(457,481071600,10),(457,496796400,9),(457,512521200,10),(457,528246000,9),(457,543970800,10),(457,559695600,9),(457,575420400,10),(457,591145200,9),(457,606870000,10),(457,622594800,9),(457,638319600,10),(457,654649200,9),(457,670374000,11),(457,686102400,12),(457,695779200,9),(457,701823600,10),(457,717548400,9),(457,733273200,10),(457,748998000,9),(457,764722800,10),(457,780447600,9),(457,796172400,10),(457,811897200,9),(457,828226800,10),(457,846370800,9),(457,859676400,10),(457,877820400,9),(457,891126000,10),(457,909270000,9),(457,922575600,10),(457,941324400,9),(457,954025200,10),(457,972774000,9),(457,985474800,10),(457,1004223600,9),(457,1017529200,10),(457,1035673200,9),(457,1048978800,10),(457,1067122800,9),(457,1080428400,10),(457,1099177200,9),(457,1111878000,10),(457,1130626800,9),(457,1143327600,10),(457,1162076400,9),(457,1174777200,10),(457,1193526000,9),(457,1206831600,10),(457,1224975600,9),(457,1238281200,10),(457,1256425200,9),(457,1269730800,10),(457,1288479600,9),(457,1301180400,13),(457,1414274400,9),(458,-1518920008,2),(458,166572000,1),(458,182293200,2),(458,200959200,1),(458,213829200,2),(458,228866400,1),(458,243982800,2),(458,260316000,1),(458,276123600,2),(458,291765600,1),(458,307486800,2),(458,323820000,1),(458,338936400,2),(458,354664800,1),(458,370386000,2),(458,386114400,1),(458,401835600,2),(458,417564000,1),(458,433285200,2),(458,449013600,1),(458,465339600,2),(458,481068000,1),(458,496789200,2),(458,512517600,1),(458,528238800,2),(458,543967200,1),(458,559688400,2),(458,575416800,1),(458,591138000,2),(458,606866400,1),(458,622587600,2),(458,638316000,1),(458,654642000,2),(458,670370400,1),(458,686091600,2),(458,701820000,1),(458,717541200,2),(458,733269600,1),(458,748990800,2),(458,764719200,1),(458,780440400,2),(458,796168800,1),(458,811890000,2),(458,828223200,1),(458,843944400,2),(458,859672800,1),(458,875394000,2),(458,891122400,1),(458,909277200,3),(458,922582800,4),(458,941331600,3),(458,954032400,4),(458,972781200,3),(458,985482000,4),(458,1004230800,3),(458,1017536400,4),(458,1035680400,3),(458,1048986000,4),(458,1067130000,3),(458,1080435600,4),(458,1099184400,3),(458,1111885200,4),(458,1130634000,3),(458,1143334800,4),(458,1162083600,3),(458,1174784400,4),(458,1193533200,3),(458,1206838800,4),(458,1224982800,3),(458,1238288400,4),(458,1256432400,3),(458,1269738000,4),(458,1288486800,3),(458,1301187600,4),(458,1319936400,3),(458,1332637200,4),(458,1351386000,3),(458,1364691600,4),(458,1382835600,3),(458,1396141200,4),(458,1414285200,3),(458,1427590800,4),(458,1445734800,3),(458,1459040400,4),(458,1477789200,3),(458,1490490000,4),(458,1509238800,3),(458,1521939600,4),(458,1540688400,3),(458,1553994000,4),(458,1572138000,3),(458,1585443600,4),(458,1603587600,3),(458,1616893200,4),(458,1635642000,3),(458,1648342800,4),(458,1667091600,3),(458,1679792400,4),(458,1698541200,3),(458,1711846800,4),(458,1729990800,3),(458,1743296400,4),(458,1761440400,3),(458,1774746000,4),(458,1792890000,3),(458,1806195600,4),(458,1824944400,3),(458,1837645200,4),(458,1856394000,3),(458,1869094800,4),(458,1887843600,3),(458,1901149200,4),(458,1919293200,3),(458,1932598800,4),(458,1950742800,3),(458,1964048400,4),(458,1982797200,3),(458,1995498000,4),(458,2014246800,3),(458,2026947600,4),(458,2045696400,3),(458,2058397200,4),(458,2077146000,3),(458,2090451600,4),(458,2108595600,3),(458,2121901200,4),(458,2140045200,3),(459,-1691884800,0),(459,-1680573600,1),(459,-927511200,0),(459,-857257200,2),(459,-844556400,3),(459,-828226800,2),(459,-812502000,3),(459,-796777200,2),(459,-781052400,3),(459,-765327600,2),(459,-340844400,3),(459,-324514800,2),(459,-308790000,3),(459,-293065200,2),(459,-277340400,3),(459,-261615600,2),(459,-245890800,3),(459,-230166000,2),(459,-214441200,3),(459,-198716400,2),(459,-182991600,3),(459,-166662000,2),(459,-147913200,3),(459,-135212400,2),(459,315529200,1),(459,323830800,4),(459,338950800,5),(459,354675600,4),(459,370400400,5),(459,386125200,4),(459,401850000,5),(459,417574800,4),(459,433299600,5),(459,449024400,4),(459,465354000,5),(459,481078800,4),(459,496803600,5),(459,512528400,4),(459,528253200,5),(459,543978000,4),(459,559702800,5),(459,575427600,4),(459,591152400,5),(459,606877200,4),(459,622602000,5),(459,638326800,4),(459,654656400,5),(459,670381200,4),(459,686106000,5),(459,701830800,4),(459,717555600,5),(459,733280400,4),(459,749005200,5),(459,764730000,4),(459,780454800,5),(459,796179600,4),(459,811904400,5),(459,828234000,4),(459,846378000,5),(459,859683600,4),(459,877827600,5),(459,891133200,4),(459,909277200,5),(459,922582800,4),(459,941331600,5),(459,954032400,4),(459,972781200,5),(459,985482000,4),(459,1004230800,5),(459,1017536400,4),(459,1035680400,5),(459,1048986000,4),(459,1067130000,5),(459,1080435600,4),(459,1099184400,5),(459,1111885200,4),(459,1130634000,5),(459,1143334800,4),(459,1162083600,5),(459,1174784400,4),(459,1193533200,5),(459,1206838800,4),(459,1224982800,5),(459,1238288400,4),(459,1256432400,5),(459,1269738000,4),(459,1288486800,5),(459,1301187600,4),(459,1319936400,5),(459,1332637200,4),(459,1351386000,5),(459,1364691600,4),(459,1382835600,5),(459,1396141200,4),(459,1414285200,5),(459,1427590800,4),(459,1445734800,5),(459,1459040400,4),(459,1477789200,5),(459,1490490000,4),(459,1509238800,5),(459,1521939600,4),(459,1540688400,5),(459,1553994000,4),(459,1572138000,5),(459,1585443600,4),(459,1603587600,5),(459,1616893200,4),(459,1635642000,5),(459,1648342800,4),(459,1667091600,5),(459,1679792400,4),(459,1698541200,5),(459,1711846800,4),(459,1729990800,5),(459,1743296400,4),(459,1761440400,5),(459,1774746000,4),(459,1792890000,5),(459,1806195600,4),(459,1824944400,5),(459,1837645200,4),(459,1856394000,5),(459,1869094800,4),(459,1887843600,5),(459,1901149200,4),(459,1919293200,5),(459,1932598800,4),(459,1950742800,5),(459,1964048400,4),(459,1982797200,5),(459,1995498000,4),(459,2014246800,5),(459,2026947600,4),(459,2045696400,5),(459,2058397200,4),(459,2077146000,5),(459,2090451600,4),(459,2108595600,5),(459,2121901200,4),(459,2140045200,5),(460,-1855958901,4),(460,-1689814800,1),(460,-1680397200,2),(460,-1665363600,1),(460,-1648342800,2),(460,-1635123600,1),(460,-1616893200,2),(460,-1604278800,1),(460,-1585443600,2),(460,-1574038800,1),(460,-1552266000,2),(460,-1539997200,1),(460,-1520557200,2),(460,-1507510800,1),(460,-1490576400,2),(460,-1470618000,1),(460,-1459126800,2),(460,-1444006800,1),(460,-1427677200,2),(460,-1411952400,1),(460,-1396227600,2),(460,-1379293200,1),(460,-1364778000,2),(460,-1348448400,1),(460,-1333328400,2),(460,-1316394000,1),(460,-1301274000,2),(460,-1284339600,1),(460,-1269824400,2),(460,-1253494800,1),(460,-1238374800,2),(460,-1221440400,1),(460,-1206925200,2),(460,-1191200400,1),(460,-1175475600,2),(460,-1160355600,1),(460,-1143421200,2),(460,-1127696400,1),(460,-1111971600,2),(460,-1096851600,1),(460,-1080522000,2),(460,-1063587600,1),(460,-1049072400,2),(460,-1033347600,1),(460,-1017622800,2),(460,-1002502800,1),(460,-986173200,2),(460,-969238800,1),(460,-950490000,2),(460,-942012000,3),(460,-932436000,7),(460,-857257200,5),(460,-844556400,6),(460,-828226800,5),(460,-812502000,6),(460,-800071200,8),(460,-796266000,3),(460,-781052400,8),(460,-766623600,9),(460,196819200,7),(460,212540400,9),(460,228877200,10),(460,243997200,11),(460,260326800,10),(460,276051600,11),(460,291776400,10),(460,307501200,11),(460,323830800,10),(460,338950800,11),(460,354675600,10),(460,370400400,11),(460,386125200,10),(460,401850000,11),(460,417574800,10),(460,433299600,11),(460,449024400,10),(460,465354000,11),(460,481078800,10),(460,496803600,11),(460,512528400,10),(460,528253200,11),(460,543978000,10),(460,559702800,11),(460,575427600,10),(460,591152400,11),(460,606877200,10),(460,622602000,11),(460,638326800,10),(460,654656400,11),(460,670381200,10),(460,686106000,11),(460,701830800,10),(460,717555600,11),(460,733280400,10),(460,749005200,11),(460,764730000,10),(460,780454800,11),(460,796179600,10),(460,811904400,11),(460,828234000,10),(460,846378000,11),(460,859683600,10),(460,877827600,11),(460,891133200,10),(460,909277200,11),(460,922582800,10),(460,941331600,11),(460,954032400,10),(460,972781200,11),(460,985482000,10),(460,1004230800,11),(460,1017536400,10),(460,1035680400,11),(460,1048986000,10),(460,1067130000,11),(460,1080435600,10),(460,1099184400,11),(460,1111885200,10),(460,1130634000,11),(460,1143334800,10),(460,1162083600,11),(460,1174784400,10),(460,1193533200,11),(460,1206838800,10),(460,1224982800,11),(460,1238288400,10),(460,1256432400,11),(460,1269738000,10),(460,1288486800,11),(460,1301187600,10),(460,1319936400,11),(460,1332637200,10),(460,1351386000,11),(460,1364691600,10),(460,1382835600,11),(460,1396141200,10),(460,1414285200,11),(460,1427590800,10),(460,1445734800,11),(460,1459040400,10),(460,1477789200,11),(460,1490490000,10),(460,1509238800,11),(460,1521939600,10),(460,1540688400,11),(460,1553994000,10),(460,1572138000,11),(460,1585443600,10),(460,1603587600,11),(460,1616893200,10),(460,1635642000,11),(460,1648342800,10),(460,1667091600,11),(460,1679792400,10),(460,1698541200,11),(460,1711846800,10),(460,1729990800,11),(460,1743296400,10),(460,1761440400,11),(460,1774746000,10),(460,1792890000,11),(460,1806195600,10),(460,1824944400,11),(460,1837645200,10),(460,1856394000,11),(460,1869094800,10),(460,1887843600,11),(460,1901149200,10),(460,1919293200,11),(460,1932598800,10),(460,1950742800,11),(460,1964048400,10),(460,1982797200,11),(460,1995498000,10),(460,2014246800,11),(460,2026947600,10),(460,2045696400,11),(460,2058397200,10),(460,2077146000,11),(460,2090451600,10),(460,2108595600,11),(460,2121901200,10),(460,2140045200,11),(461,-905824800,3),(461,-857257200,1),(461,-844556400,2),(461,-828226800,1),(461,-812502000,2),(461,-796777200,1),(461,-788922000,0),(461,-777942000,2),(461,-766623600,1),(461,407199600,0),(461,417574800,4),(461,433299600,5),(461,449024400,4),(461,465354000,5),(461,481078800,4),(461,496803600,5),(461,512528400,4),(461,528253200,5),(461,543978000,4),(461,559702800,5),(461,575427600,4),(461,591152400,5),(461,606877200,4),(461,622602000,5),(461,638326800,4),(461,654656400,5),(461,670381200,4),(461,686106000,5),(461,701830800,4),(461,717555600,5),(461,733280400,4),(461,749005200,5),(461,764730000,4),(461,780454800,5),(461,796179600,4),(461,811904400,5),(461,828234000,4),(461,846378000,5),(461,859683600,4),(461,877827600,5),(461,891133200,4),(461,909277200,5),(461,922582800,4),(461,941331600,5),(461,954032400,4),(461,972781200,5),(461,985482000,4),(461,1004230800,5),(461,1017536400,4),(461,1035680400,5),(461,1048986000,4),(461,1067130000,5),(461,1080435600,4),(461,1099184400,5),(461,1111885200,4),(461,1130634000,5),(461,1143334800,4),(461,1162083600,5),(461,1174784400,4),(461,1193533200,5),(461,1206838800,4),(461,1224982800,5),(461,1238288400,4),(461,1256432400,5),(461,1269738000,4),(461,1288486800,5),(461,1301187600,4),(461,1319936400,5),(461,1332637200,4),(461,1351386000,5),(461,1364691600,4),(461,1382835600,5),(461,1396141200,4),(461,1414285200,5),(461,1427590800,4),(461,1445734800,5),(461,1459040400,4),(461,1477789200,5),(461,1490490000,4),(461,1509238800,5),(461,1521939600,4),(461,1540688400,5),(461,1553994000,4),(461,1572138000,5),(461,1585443600,4),(461,1603587600,5),(461,1616893200,4),(461,1635642000,5),(461,1648342800,4),(461,1667091600,5),(461,1679792400,4),(461,1698541200,5),(461,1711846800,4),(461,1729990800,5),(461,1743296400,4),(461,1761440400,5),(461,1774746000,4),(461,1792890000,5),(461,1806195600,4),(461,1824944400,5),(461,1837645200,4),(461,1856394000,5),(461,1869094800,4),(461,1887843600,5),(461,1901149200,4),(461,1919293200,5),(461,1932598800,4),(461,1950742800,5),(461,1964048400,4),(461,1982797200,5),(461,1995498000,4),(461,2014246800,5),(461,2026947600,4),(461,2045696400,5),(461,2058397200,4),(461,2077146000,5),(461,2090451600,4),(461,2108595600,5),(461,2121901200,4),(461,2140045200,5),(462,-1693706400,0),(462,-1680483600,1),(462,-1663455600,2),(462,-1650150000,3),(462,-1632006000,2),(462,-1618700400,3),(462,-938905200,2),(462,-857257200,3),(462,-844556400,2),(462,-828226800,3),(462,-812502000,2),(462,-796777200,3),(462,-781052400,2),(462,-777866400,0),(462,-765327600,3),(462,-746578800,2),(462,-733359600,3),(462,-728517600,4),(462,-721260000,1),(462,-716425200,2),(462,-701910000,3),(462,-684975600,2),(462,-670460400,3),(462,-654217200,2),(462,-639010800,3),(462,283993200,1),(462,291776400,5),(462,307501200,6),(462,323830800,5),(462,338950800,6),(462,354675600,5),(462,370400400,6),(462,386125200,5),(462,401850000,6),(462,417574800,5),(462,433299600,6),(462,449024400,5),(462,465354000,6),(462,481078800,5),(462,496803600,6),(462,512528400,5),(462,528253200,6),(462,543978000,5),(462,559702800,6),(462,575427600,5),(462,591152400,6),(462,606877200,5),(462,622602000,6),(462,638326800,5),(462,654656400,6),(462,670381200,5),(462,686106000,6),(462,701830800,5),(462,717555600,6),(462,733280400,5),(462,749005200,6),(462,764730000,5),(462,780454800,6),(462,796179600,5),(462,811904400,6),(462,828234000,5),(462,846378000,6),(462,859683600,5),(462,877827600,6),(462,891133200,5),(462,909277200,6),(462,922582800,5),(462,941331600,6),(462,954032400,5),(462,972781200,6),(462,985482000,5),(462,1004230800,6),(462,1017536400,5),(462,1035680400,6),(462,1048986000,5),(462,1067130000,6),(462,1080435600,5),(462,1099184400,6),(462,1111885200,5),(462,1130634000,6),(462,1143334800,5),(462,1162083600,6),(462,1174784400,5),(462,1193533200,6),(462,1206838800,5),(462,1224982800,6),(462,1238288400,5),(462,1256432400,6),(462,1269738000,5),(462,1288486800,6),(462,1301187600,5),(462,1319936400,6),(462,1332637200,5),(462,1351386000,6),(462,1364691600,5),(462,1382835600,6),(462,1396141200,5),(462,1414285200,6),(462,1427590800,5),(462,1445734800,6),(462,1459040400,5),(462,1477789200,6),(462,1490490000,5),(462,1509238800,6),(462,1521939600,5),(462,1540688400,6),(462,1553994000,5),(462,1572138000,6),(462,1585443600,5),(462,1603587600,6),(462,1616893200,5),(462,1635642000,6),(462,1648342800,5),(462,1667091600,6),(462,1679792400,5),(462,1698541200,6),(462,1711846800,5),(462,1729990800,6),(462,1743296400,5),(462,1761440400,6),(462,1774746000,5),(462,1792890000,6),(462,1806195600,5),(462,1824944400,6),(462,1837645200,5),(462,1856394000,6),(462,1869094800,5),(462,1887843600,6),(462,1901149200,5),(462,1919293200,6),(462,1932598800,5),(462,1950742800,6),(462,1964048400,5),(462,1982797200,6),(462,1995498000,5),(462,2014246800,6),(462,2026947600,5),(462,2045696400,6),(462,2058397200,5),(462,2077146000,6),(462,2090451600,5),(462,2108595600,6),(462,2121901200,5),(462,2140045200,6),(463,-1632008194,1),(463,-1618702594,0),(463,-1601681794,1),(463,-1597275394,0),(463,-1377308194,2),(463,-928029600,3),(463,-899521200,6),(463,-857257200,4),(463,-844556400,5),(463,-828226800,4),(463,-812502000,5),(463,-796777200,4),(463,-795834000,3),(463,354920400,7),(463,370728000,3),(463,386456400,7),(463,402264000,3),(463,417992400,7),(463,433800000,3),(463,449614800,7),(463,465346800,8),(463,481071600,9),(463,496796400,8),(463,512521200,9),(463,528246000,8),(463,543970800,9),(463,559695600,8),(463,575420400,9),(463,591145200,8),(463,606870000,10),(463,622598400,11),(463,638323200,10),(463,654652800,11),(463,670377600,10),(463,686102400,11),(463,701827200,10),(463,717552000,11),(463,733276800,10),(463,749001600,11),(463,764726400,10),(463,780451200,11),(463,796176000,10),(463,811900800,11),(463,828230400,10),(463,843955200,11),(463,853797600,2),(463,859683600,12),(463,877827600,13),(463,891133200,12),(463,909277200,13),(463,922582800,12),(463,941331600,13),(463,951775200,2),(463,985482000,12),(463,1004230800,13),(463,1017536400,12),(463,1035680400,13),(463,1048986000,12),(463,1067130000,13),(463,1080435600,12),(463,1099184400,13),(463,1111885200,12),(463,1130634000,13),(463,1143334800,12),(463,1162083600,13),(463,1174784400,12),(463,1193533200,13),(463,1206838800,12),(463,1224982800,13),(463,1238288400,12),(463,1256432400,13),(463,1269738000,12),(463,1288486800,13),(463,1301187600,12),(463,1319936400,13),(463,1332637200,12),(463,1351386000,13),(463,1364691600,12),(463,1382835600,13),(463,1396141200,12),(463,1414285200,13),(463,1427590800,12),(463,1445734800,13),(463,1459040400,12),(463,1477789200,13),(463,1490490000,12),(463,1509238800,13),(463,1521939600,12),(463,1540688400,13),(463,1553994000,12),(463,1572138000,13),(463,1585443600,12),(463,1603587600,13),(463,1616893200,12),(463,1635642000,13),(463,1648342800,12),(463,1667091600,13),(463,1679792400,12),(463,1698541200,13),(463,1711846800,12),(463,1729990800,13),(463,1743296400,12),(463,1761440400,13),(463,1774746000,12),(463,1792890000,13),(463,1806195600,12),(463,1824944400,13),(463,1837645200,12),(463,1856394000,13),(463,1869094800,12),(463,1887843600,13),(463,1901149200,12),(463,1919293200,13),(463,1932598800,12),(463,1950742800,13),(463,1964048400,12),(463,1982797200,13),(463,1995498000,12),(463,2014246800,13),(463,2026947600,12),(463,2045696400,13),(463,2058397200,12),(463,2077146000,13),(463,2090451600,12),(463,2108595600,13),(463,2121901200,12),(463,2140045200,13),(464,-1690765200,0),(464,-1680487200,1),(464,-1664758800,0),(464,-1648951200,1),(464,-1635123600,0),(464,-1616896800,1),(464,-1604278800,0),(464,-1585533600,1),(464,-1571014800,0),(464,-1555293600,1),(464,-932432400,0),(464,-857257200,2),(464,-844556400,3),(464,-830311200,0),(464,-828226800,2),(464,-812502000,3),(464,-807156000,0),(464,-798073200,2),(464,-781052400,0),(464,-766717200,1),(464,-750898800,3),(464,-733359600,2),(464,-719456400,3),(464,-701917200,2),(464,-689209200,3),(464,-670460400,2),(464,-114051600,3),(464,-103168800,1),(464,-81997200,3),(464,-71715600,2),(464,-50547600,3),(464,-40266000,2),(464,-18493200,3),(464,-8211600,2),(464,12956400,3),(464,23238000,2),(464,43801200,3),(464,54687600,2),(464,75855600,3),(464,86742000,2),(464,107910000,3),(464,118191600,2),(464,138754800,3),(464,149641200,2),(464,170809200,3),(464,181090800,2),(464,202258800,3),(464,212540400,2),(464,233103600,3),(464,243990000,2),(464,265158000,3),(464,276044400,2),(464,296607600,3),(464,307494000,2),(464,315529200,1),(464,323830800,4),(464,338950800,5),(464,354675600,4),(464,370400400,5),(464,386125200,4),(464,401850000,5),(464,417574800,4),(464,433299600,5),(464,449024400,4),(464,465354000,5),(464,481078800,4),(464,496803600,5),(464,512528400,4),(464,528253200,5),(464,543978000,4),(464,559702800,5),(464,575427600,4),(464,591152400,5),(464,606877200,4),(464,622602000,5),(464,638326800,4),(464,654656400,5),(464,670381200,4),(464,686106000,5),(464,701830800,4),(464,717555600,5),(464,733280400,4),(464,749005200,5),(464,764730000,4),(464,780454800,5),(464,796179600,4),(464,811904400,5),(464,828234000,4),(464,846378000,5),(464,859683600,4),(464,877827600,5),(464,891133200,4),(464,909277200,5),(464,922582800,4),(464,941331600,5),(464,954032400,4),(464,972781200,5),(464,985482000,4),(464,1004230800,5),(464,1017536400,4),(464,1035680400,5),(464,1048986000,4),(464,1067130000,5),(464,1080435600,4),(464,1099184400,5),(464,1111885200,4),(464,1130634000,5),(464,1143334800,4),(464,1162083600,5),(464,1174784400,4),(464,1193533200,5),(464,1206838800,4),(464,1224982800,5),(464,1238288400,4),(464,1256432400,5),(464,1269738000,4),(464,1288486800,5),(464,1301187600,4),(464,1319936400,5),(464,1332637200,4),(464,1351386000,5),(464,1364691600,4),(464,1382835600,5),(464,1396141200,4),(464,1414285200,5),(464,1427590800,4),(464,1445734800,5),(464,1459040400,4),(464,1477789200,5),(464,1490490000,4),(464,1509238800,5),(464,1521939600,4),(464,1540688400,5),(464,1553994000,4),(464,1572138000,5),(464,1585443600,4),(464,1603587600,5),(464,1616893200,4),(464,1635642000,5),(464,1648342800,4),(464,1667091600,5),(464,1679792400,4),(464,1698541200,5),(464,1711846800,4),(464,1729990800,5),(464,1743296400,4),(464,1761440400,5),(464,1774746000,4),(464,1792890000,5),(464,1806195600,4),(464,1824944400,5),(464,1837645200,4),(464,1856394000,5),(464,1869094800,4),(464,1887843600,5),(464,1901149200,4),(464,1919293200,5),(464,1932598800,4),(464,1950742800,5),(464,1964048400,4),(464,1982797200,5),(464,1995498000,4),(464,2014246800,5),(464,2026947600,4),(464,2045696400,5),(464,2058397200,4),(464,2077146000,5),(464,2090451600,4),(464,2108595600,5),(464,2121901200,4),(464,2140045200,5),(465,-1593820800,1),(465,-1247540400,2),(465,354916800,3),(465,370724400,2),(465,386452800,3),(465,402260400,2),(465,417988800,3),(465,433796400,2),(465,449611200,3),(465,465343200,4),(465,481068000,5),(465,496792800,4),(465,512517600,5),(465,528242400,4),(465,543967200,5),(465,559692000,4),(465,575416800,5),(465,591141600,4),(465,606866400,6),(465,622594800,7),(465,638319600,6),(465,654649200,7),(465,670374000,8),(465,686102400,7),(465,687916800,2),(465,701820000,5),(465,717544800,4),(465,733269600,5),(465,748994400,4),(465,764719200,5),(465,780444000,4),(465,796168800,5),(465,811893600,4),(465,828223200,5),(465,846367200,4),(465,859672800,5),(465,877816800,4),(465,891122400,5),(465,909266400,4),(465,922572000,5),(465,941320800,4),(465,954021600,5),(465,972770400,4),(465,985471200,5),(465,1004220000,4),(465,1017525600,5),(465,1035669600,4),(465,1048975200,5),(465,1067119200,4),(465,1080424800,5),(465,1099173600,4),(465,1111874400,5),(465,1130623200,4),(465,1143324000,5),(465,1162072800,4),(465,1174773600,5),(465,1193522400,4),(465,1206828000,5),(465,1224972000,4),(465,1238277600,5),(465,1256421600,4),(465,1269727200,6),(465,1288479600,7),(465,1301180400,4),(466,-1690765200,0),(466,-1680487200,1),(466,-1664758800,0),(466,-1648951200,1),(466,-1635123600,0),(466,-1616896800,1),(466,-1604278800,0),(466,-1585533600,1),(466,-1571014800,0),(466,-1555293600,1),(466,-932432400,0),(466,-857257200,2),(466,-844556400,3),(466,-830311200,0),(466,-828226800,2),(466,-812502000,3),(466,-807156000,0),(466,-798073200,2),(466,-781052400,0),(466,-766717200,1),(466,-750898800,3),(466,-733359600,2),(466,-719456400,3),(466,-701917200,2),(466,-689209200,3),(466,-670460400,2),(466,-114051600,3),(466,-103168800,1),(466,-81997200,3),(466,-71715600,2),(466,-50547600,3),(466,-40266000,2),(466,-18493200,3),(466,-8211600,2),(466,12956400,3),(466,23238000,2),(466,43801200,3),(466,54687600,2),(466,75855600,3),(466,86742000,2),(466,107910000,3),(466,118191600,2),(466,138754800,3),(466,149641200,2),(466,170809200,3),(466,181090800,2),(466,202258800,3),(466,212540400,2),(466,233103600,3),(466,243990000,2),(466,265158000,3),(466,276044400,2),(466,296607600,3),(466,307494000,2),(466,315529200,1),(466,323830800,4),(466,338950800,5),(466,354675600,4),(466,370400400,5),(466,386125200,4),(466,401850000,5),(466,417574800,4),(466,433299600,5),(466,449024400,4),(466,465354000,5),(466,481078800,4),(466,496803600,5),(466,512528400,4),(466,528253200,5),(466,543978000,4),(466,559702800,5),(466,575427600,4),(466,591152400,5),(466,606877200,4),(466,622602000,5),(466,638326800,4),(466,654656400,5),(466,670381200,4),(466,686106000,5),(466,701830800,4),(466,717555600,5),(466,733280400,4),(466,749005200,5),(466,764730000,4),(466,780454800,5),(466,796179600,4),(466,811904400,5),(466,828234000,4),(466,846378000,5),(466,859683600,4),(466,877827600,5),(466,891133200,4),(466,909277200,5),(466,922582800,4),(466,941331600,5),(466,954032400,4),(466,972781200,5),(466,985482000,4),(466,1004230800,5),(466,1017536400,4),(466,1035680400,5),(466,1048986000,4),(466,1067130000,5),(466,1080435600,4),(466,1099184400,5),(466,1111885200,4),(466,1130634000,5),(466,1143334800,4),(466,1162083600,5),(466,1174784400,4),(466,1193533200,5),(466,1206838800,4),(466,1224982800,5),(466,1238288400,4),(466,1256432400,5),(466,1269738000,4),(466,1288486800,5),(466,1301187600,4),(466,1319936400,5),(466,1332637200,4),(466,1351386000,5),(466,1364691600,4),(466,1382835600,5),(466,1396141200,4),(466,1414285200,5),(466,1427590800,4),(466,1445734800,5),(466,1459040400,4),(466,1477789200,5),(466,1490490000,4),(466,1509238800,5),(466,1521939600,4),(466,1540688400,5),(466,1553994000,4),(466,1572138000,5),(466,1585443600,4),(466,1603587600,5),(466,1616893200,4),(466,1635642000,5),(466,1648342800,4),(466,1667091600,5),(466,1679792400,4),(466,1698541200,5),(466,1711846800,4),(466,1729990800,5),(466,1743296400,4),(466,1761440400,5),(466,1774746000,4),(466,1792890000,5),(466,1806195600,4),(466,1824944400,5),(466,1837645200,4),(466,1856394000,5),(466,1869094800,4),(466,1887843600,5),(466,1901149200,4),(466,1919293200,5),(466,1932598800,4),(466,1950742800,5),(466,1964048400,4),(466,1982797200,5),(466,1995498000,4),(466,2014246800,5),(466,2026947600,4),(466,2045696400,5),(466,2058397200,4),(466,2077146000,5),(466,2090451600,4),(466,2108595600,5),(466,2121901200,4),(466,2140045200,5),(467,-905824800,3),(467,-857257200,1),(467,-844556400,2),(467,-828226800,1),(467,-812502000,2),(467,-796777200,1),(467,-788922000,0),(467,-777942000,2),(467,-766623600,1),(467,407199600,0),(467,417574800,4),(467,433299600,5),(467,449024400,4),(467,465354000,5),(467,481078800,4),(467,496803600,5),(467,512528400,4),(467,528253200,5),(467,543978000,4),(467,559702800,5),(467,575427600,4),(467,591152400,5),(467,606877200,4),(467,622602000,5),(467,638326800,4),(467,654656400,5),(467,670381200,4),(467,686106000,5),(467,701830800,4),(467,717555600,5),(467,733280400,4),(467,749005200,5),(467,764730000,4),(467,780454800,5),(467,796179600,4),(467,811904400,5),(467,828234000,4),(467,846378000,5),(467,859683600,4),(467,877827600,5),(467,891133200,4),(467,909277200,5),(467,922582800,4),(467,941331600,5),(467,954032400,4),(467,972781200,5),(467,985482000,4),(467,1004230800,5),(467,1017536400,4),(467,1035680400,5),(467,1048986000,4),(467,1067130000,5),(467,1080435600,4),(467,1099184400,5),(467,1111885200,4),(467,1130634000,5),(467,1143334800,4),(467,1162083600,5),(467,1174784400,4),(467,1193533200,5),(467,1206838800,4),(467,1224982800,5),(467,1238288400,4),(467,1256432400,5),(467,1269738000,4),(467,1288486800,5),(467,1301187600,4),(467,1319936400,5),(467,1332637200,4),(467,1351386000,5),(467,1364691600,4),(467,1382835600,5),(467,1396141200,4),(467,1414285200,5),(467,1427590800,4),(467,1445734800,5),(467,1459040400,4),(467,1477789200,5),(467,1490490000,4),(467,1509238800,5),(467,1521939600,4),(467,1540688400,5),(467,1553994000,4),(467,1572138000,5),(467,1585443600,4),(467,1603587600,5),(467,1616893200,4),(467,1635642000,5),(467,1648342800,4),(467,1667091600,5),(467,1679792400,4),(467,1698541200,5),(467,1711846800,4),(467,1729990800,5),(467,1743296400,4),(467,1761440400,5),(467,1774746000,4),(467,1792890000,5),(467,1806195600,4),(467,1824944400,5),(467,1837645200,4),(467,1856394000,5),(467,1869094800,4),(467,1887843600,5),(467,1901149200,4),(467,1919293200,5),(467,1932598800,4),(467,1950742800,5),(467,1964048400,4),(467,1982797200,5),(467,1995498000,4),(467,2014246800,5),(467,2026947600,4),(467,2045696400,5),(467,2058397200,4),(467,2077146000,5),(467,2090451600,4),(467,2108595600,5),(467,2121901200,4),(467,2140045200,5),(468,-1593820800,1),(468,-1247540400,3),(468,354916800,2),(468,370724400,3),(468,386452800,2),(468,402260400,3),(468,417988800,2),(468,433796400,3),(468,449611200,2),(468,465343200,4),(468,481068000,5),(468,496792800,4),(468,512517600,5),(468,528242400,4),(468,543967200,5),(468,559692000,4),(468,575416800,6),(468,591145200,7),(468,606870000,6),(468,622594800,7),(468,638319600,6),(468,654649200,7),(468,670374000,4),(468,701820000,6),(468,717548400,7),(468,733273200,6),(468,748998000,7),(468,764722800,6),(468,780447600,7),(468,796172400,6),(468,811897200,7),(468,828226800,6),(468,846370800,7),(468,859676400,6),(468,877820400,7),(468,891126000,6),(468,909270000,7),(468,922575600,6),(468,941324400,7),(468,954025200,6),(468,972774000,7),(468,985474800,6),(468,1004223600,7),(468,1017529200,6),(468,1035673200,7),(468,1048978800,6),(468,1067122800,7),(468,1080428400,6),(468,1099177200,7),(468,1111878000,6),(468,1130626800,7),(468,1143327600,6),(468,1162076400,7),(468,1174777200,6),(468,1193526000,7),(468,1206831600,6),(468,1224975600,7),(468,1238281200,6),(468,1256425200,7),(468,1269730800,6),(468,1288479600,7),(468,1301180400,4),(468,1414274400,7),(468,1480806000,4),(469,-1441160160,1),(469,-1247536800,2),(469,-888894000,5),(469,-857257200,3),(469,-844556400,4),(469,-828226800,3),(469,-812502000,4),(469,-811648800,2),(469,354920400,6),(469,370728000,2),(469,386456400,6),(469,402264000,2),(469,417992400,6),(469,433800000,2),(469,449614800,6),(469,465346800,7),(469,481071600,8),(469,496796400,7),(469,512521200,8),(469,528246000,7),(469,543970800,8),(469,559695600,7),(469,575420400,8),(469,591145200,7),(469,606870000,8),(469,622594800,7),(469,631141200,2),(469,646786800,1),(469,701820000,9),(469,717541200,1),(469,733269600,9),(469,748990800,1),(469,764719200,9),(469,767739600,6),(469,780436800,2),(469,796165200,6),(469,811886400,2),(469,828219600,8),(469,846374400,7),(469,852066000,2),(469,859683600,10),(469,877827600,11),(469,891133200,10),(469,909277200,11),(469,922582800,10),(469,941331600,11),(469,954032400,10),(469,972781200,11),(469,985482000,10),(469,1004230800,11),(469,1017536400,10),(469,1035680400,11),(469,1048986000,10),(469,1067130000,11),(469,1080435600,10),(469,1099184400,11),(469,1111885200,10),(469,1130634000,11),(469,1143334800,10),(469,1162083600,11),(469,1174784400,10),(469,1193533200,11),(469,1206838800,10),(469,1224982800,11),(469,1238288400,10),(469,1256432400,11),(469,1269738000,10),(469,1288486800,11),(469,1301187600,10),(469,1319936400,11),(469,1332637200,10),(469,1351386000,11),(469,1364691600,10),(469,1382835600,11),(469,1396137600,12),(469,1414274400,7),(470,-905824800,3),(470,-857257200,1),(470,-844556400,2),(470,-828226800,1),(470,-812502000,2),(470,-796777200,1),(470,-788922000,0),(470,-777942000,2),(470,-766623600,1),(470,407199600,0),(470,417574800,4),(470,433299600,5),(470,449024400,4),(470,465354000,5),(470,481078800,4),(470,496803600,5),(470,512528400,4),(470,528253200,5),(470,543978000,4),(470,559702800,5),(470,575427600,4),(470,591152400,5),(470,606877200,4),(470,622602000,5),(470,638326800,4),(470,654656400,5),(470,670381200,4),(470,686106000,5),(470,701830800,4),(470,717555600,5),(470,733280400,4),(470,749005200,5),(470,764730000,4),(470,780454800,5),(470,796179600,4),(470,811904400,5),(470,828234000,4),(470,846378000,5),(470,859683600,4),(470,877827600,5),(470,891133200,4),(470,909277200,5),(470,922582800,4),(470,941331600,5),(470,954032400,4),(470,972781200,5),(470,985482000,4),(470,1004230800,5),(470,1017536400,4),(470,1035680400,5),(470,1048986000,4),(470,1067130000,5),(470,1080435600,4),(470,1099184400,5),(470,1111885200,4),(470,1130634000,5),(470,1143334800,4),(470,1162083600,5),(470,1174784400,4),(470,1193533200,5),(470,1206838800,4),(470,1224982800,5),(470,1238288400,4),(470,1256432400,5),(470,1269738000,4),(470,1288486800,5),(470,1301187600,4),(470,1319936400,5),(470,1332637200,4),(470,1351386000,5),(470,1364691600,4),(470,1382835600,5),(470,1396141200,4),(470,1414285200,5),(470,1427590800,4),(470,1445734800,5),(470,1459040400,4),(470,1477789200,5),(470,1490490000,4),(470,1509238800,5),(470,1521939600,4),(470,1540688400,5),(470,1553994000,4),(470,1572138000,5),(470,1585443600,4),(470,1603587600,5),(470,1616893200,4),(470,1635642000,5),(470,1648342800,4),(470,1667091600,5),(470,1679792400,4),(470,1698541200,5),(470,1711846800,4),(470,1729990800,5),(470,1743296400,4),(470,1761440400,5),(470,1774746000,4),(470,1792890000,5),(470,1806195600,4),(470,1824944400,5),(470,1837645200,4),(470,1856394000,5),(470,1869094800,4),(470,1887843600,5),(470,1901149200,4),(470,1919293200,5),(470,1932598800,4),(470,1950742800,5),(470,1964048400,4),(470,1982797200,5),(470,1995498000,4),(470,2014246800,5),(470,2026947600,4),(470,2045696400,5),(470,2058397200,4),(470,2077146000,5),(470,2090451600,4),(470,2108595600,5),(470,2121901200,4),(470,2140045200,5),(471,-857257200,1),(471,-844556400,2),(471,-828226800,1),(471,-812502000,2),(471,-796777200,1),(471,-788922000,3),(471,-781048800,0),(471,291762000,4),(471,307576800,0),(471,323816400,4),(471,339026400,0),(471,355266000,4),(471,370393200,0),(471,386715600,4),(471,401846400,5),(471,417571200,6),(471,433296000,5),(471,449020800,6),(471,465350400,5),(471,481075200,6),(471,496800000,5),(471,512524800,6),(471,528249600,5),(471,543974400,6),(471,559699200,5),(471,575424000,6),(471,591148800,5),(471,606873600,6),(471,622598400,5),(471,638323200,6),(471,654652800,5),(471,662680800,0),(471,670370400,4),(471,686091600,0),(471,701820000,4),(471,717541200,0),(471,733269600,4),(471,748990800,0),(471,764719200,4),(471,780440400,0),(471,796168800,4),(471,811890000,0),(471,828223200,4),(471,846363600,0),(471,859683600,7),(471,877827600,8),(471,891133200,7),(471,909277200,8),(471,922582800,7),(471,941331600,8),(471,954032400,7),(471,972781200,8),(471,985482000,7),(471,1004230800,8),(471,1017536400,7),(471,1035680400,8),(471,1048986000,7),(471,1067130000,8),(471,1080435600,7),(471,1099184400,8),(471,1111885200,7),(471,1130634000,8),(471,1143334800,7),(471,1162083600,8),(471,1174784400,7),(471,1193533200,8),(471,1206838800,7),(471,1224982800,8),(471,1238288400,7),(471,1256432400,8),(471,1269738000,7),(471,1288486800,8),(471,1301187600,7),(471,1319936400,8),(471,1332637200,7),(471,1351386000,8),(471,1364691600,7),(471,1382835600,8),(471,1396141200,7),(471,1414285200,8),(471,1427590800,7),(471,1445734800,8),(471,1459040400,7),(471,1477789200,8),(471,1490490000,7),(471,1509238800,8),(471,1521939600,7),(471,1540688400,8),(471,1553994000,7),(471,1572138000,8),(471,1585443600,7),(471,1603587600,8),(471,1616893200,7),(471,1635642000,8),(471,1648342800,7),(471,1667091600,8),(471,1679792400,7),(471,1698541200,8),(471,1711846800,7),(471,1729990800,8),(471,1743296400,7),(471,1761440400,8),(471,1774746000,7),(471,1792890000,8),(471,1806195600,7),(471,1824944400,8),(471,1837645200,7),(471,1856394000,8),(471,1869094800,7),(471,1887843600,8),(471,1901149200,7),(471,1919293200,8),(471,1932598800,7),(471,1950742800,8),(471,1964048400,7),(471,1982797200,8),(471,1995498000,7),(471,2014246800,8),(471,2026947600,7),(471,2045696400,8),(471,2058397200,7),(471,2077146000,8),(471,2090451600,7),(471,2108595600,8),(471,2121901200,7),(471,2140045200,8),(472,-1692496800,1),(472,-1680483600,0),(472,323830800,2),(472,338950800,3),(472,354675600,2),(472,370400400,3),(472,386125200,2),(472,401850000,3),(472,417574800,2),(472,433299600,3),(472,449024400,2),(472,465354000,3),(472,481078800,2),(472,496803600,3),(472,512528400,2),(472,528253200,3),(472,543978000,2),(472,559702800,3),(472,575427600,2),(472,591152400,3),(472,606877200,2),(472,622602000,3),(472,638326800,2),(472,654656400,3),(472,670381200,2),(472,686106000,3),(472,701830800,2),(472,717555600,3),(472,733280400,2),(472,749005200,3),(472,764730000,2),(472,780454800,3),(472,796179600,2),(472,811904400,3),(472,828234000,2),(472,846378000,3),(472,859683600,2),(472,877827600,3),(472,891133200,2),(472,909277200,3),(472,922582800,2),(472,941331600,3),(472,954032400,2),(472,972781200,3),(472,985482000,2),(472,1004230800,3),(472,1017536400,2),(472,1035680400,3),(472,1048986000,2),(472,1067130000,3),(472,1080435600,2),(472,1099184400,3),(472,1111885200,2),(472,1130634000,3),(472,1143334800,2),(472,1162083600,3),(472,1174784400,2),(472,1193533200,3),(472,1206838800,2),(472,1224982800,3),(472,1238288400,2),(472,1256432400,3),(472,1269738000,2),(472,1288486800,3),(472,1301187600,2),(472,1319936400,3),(472,1332637200,2),(472,1351386000,3),(472,1364691600,2),(472,1382835600,3),(472,1396141200,2),(472,1414285200,3),(472,1427590800,2),(472,1445734800,3),(472,1459040400,2),(472,1477789200,3),(472,1490490000,2),(472,1509238800,3),(472,1521939600,2),(472,1540688400,3),(472,1553994000,2),(472,1572138000,3),(472,1585443600,2),(472,1603587600,3),(472,1616893200,2),(472,1635642000,3),(472,1648342800,2),(472,1667091600,3),(472,1679792400,2),(472,1698541200,3),(472,1711846800,2),(472,1729990800,3),(472,1743296400,2),(472,1761440400,3),(472,1774746000,2),(472,1792890000,3),(472,1806195600,2),(472,1824944400,3),(472,1837645200,2),(472,1856394000,3),(472,1869094800,2),(472,1887843600,3),(472,1901149200,2),(472,1919293200,3),(472,1932598800,2),(472,1950742800,3),(472,1964048400,2),(472,1982797200,3),(472,1995498000,2),(472,2014246800,3),(472,2026947600,2),(472,2045696400,3),(472,2058397200,2),(472,2077146000,3),(472,2090451600,2),(472,2108595600,3),(472,2121901200,2),(472,2140045200,3),(473,-1638322740,3),(473,-1632006000,1),(473,-1618700400,2),(473,-1593824400,0),(473,-1535938740,4),(473,-927943200,5),(473,-892954800,6),(473,-857257200,2),(473,-844556400,1),(473,-828226800,2),(473,-812502000,1),(473,-797652000,5),(473,354920400,7),(473,370728000,5),(473,386456400,7),(473,402264000,5),(473,417992400,7),(473,433800000,5),(473,449614800,7),(473,465346800,8),(473,481071600,9),(473,496796400,8),(473,512521200,9),(473,528246000,8),(473,543970800,9),(473,559695600,8),(473,575420400,9),(473,591145200,8),(473,606870000,10),(473,622598400,11),(473,638323200,10),(473,654652800,11),(473,670377600,10),(473,686102400,11),(473,701827200,10),(473,717552000,11),(473,733276800,10),(473,749001600,11),(473,764726400,10),(473,780451200,11),(473,796176000,10),(473,811900800,11),(473,828230400,10),(473,846374400,11),(473,859680000,10),(473,877824000,11),(473,891129600,10),(473,906411600,14),(473,909277200,12),(473,922582800,13),(473,941331600,4),(473,1017536400,13),(473,1035680400,12),(473,1048986000,13),(473,1067130000,12),(473,1080435600,13),(473,1099184400,12),(473,1111885200,13),(473,1130634000,12),(473,1143334800,13),(473,1162083600,12),(473,1174784400,13),(473,1193533200,12),(473,1206838800,13),(473,1224982800,12),(473,1238288400,13),(473,1256432400,12),(473,1269738000,13),(473,1288486800,12),(473,1301187600,13),(473,1319936400,12),(473,1332637200,13),(473,1351386000,12),(473,1364691600,13),(473,1382835600,12),(473,1396141200,13),(473,1414285200,12),(473,1427590800,13),(473,1445734800,12),(473,1459040400,13),(473,1477789200,12),(473,1490490000,13),(473,1509238800,12),(473,1521939600,13),(473,1540688400,12),(473,1553994000,13),(473,1572138000,12),(473,1585443600,13),(473,1603587600,12),(473,1616893200,13),(473,1635642000,12),(473,1648342800,13),(473,1667091600,12),(473,1679792400,13),(473,1698541200,12),(473,1711846800,13),(473,1729990800,12),(473,1743296400,13),(473,1761440400,12),(473,1774746000,13),(473,1792890000,12),(473,1806195600,13),(473,1824944400,12),(473,1837645200,13),(473,1856394000,12),(473,1869094800,13),(473,1887843600,12),(473,1901149200,13),(473,1919293200,12),(473,1932598800,13),(473,1950742800,12),(473,1964048400,13),(473,1982797200,12),(473,1995498000,13),(473,2014246800,12),(473,2026947600,13),(473,2045696400,12),(473,2058397200,13),(473,2077146000,12),(473,2090451600,13),(473,2108595600,12),(473,2121901200,13),(473,2140045200,12),(474,-1767230360,1),(474,-932346000,2),(474,-857257200,1),(474,-844556400,2),(474,-843519600,1),(474,136854000,2),(474,149896800,1),(474,168130800,2),(474,181432800,1),(474,199839600,2),(474,213141600,1),(474,231894000,2),(474,244591200,1),(474,263257200,2),(474,276040800,1),(474,294706800,2),(474,307490400,1),(474,326156400,2),(474,339458400,1),(474,357087600,2),(474,370389600,1),(474,389142000,2),(474,402444000,1),(474,419468400,2),(474,433807200,1),(474,449622000,2),(474,465354000,3),(474,481078800,4),(474,496803600,3),(474,512528400,4),(474,528253200,3),(474,543978000,4),(474,559702800,3),(474,575427600,4),(474,591152400,3),(474,606877200,4),(474,622602000,3),(474,638326800,4),(474,654656400,3),(474,670381200,4),(474,686106000,3),(474,701830800,4),(474,717555600,3),(474,733280400,4),(474,749005200,3),(474,764730000,4),(474,780454800,3),(474,796179600,4),(474,811904400,3),(474,828234000,4),(474,846378000,3),(474,859683600,4),(474,877827600,3),(474,891133200,4),(474,909277200,3),(474,922582800,4),(474,941331600,3),(474,954032400,4),(474,972781200,3),(474,985482000,4),(474,1004230800,3),(474,1017536400,4),(474,1035680400,3),(474,1048986000,4),(474,1067130000,3),(474,1080435600,4),(474,1099184400,3),(474,1111885200,4),(474,1130634000,3),(474,1143334800,4),(474,1162083600,3),(474,1174784400,4),(474,1193533200,3),(474,1206838800,4),(474,1224982800,3),(474,1238288400,4),(474,1256432400,3),(474,1269738000,4),(474,1288486800,3),(474,1301187600,4),(474,1319936400,3),(474,1332637200,4),(474,1351386000,3),(474,1364691600,4),(474,1382835600,3),(474,1396141200,4),(474,1414285200,3),(474,1427590800,4),(474,1445734800,3),(474,1459040400,4),(474,1477789200,3),(474,1490490000,4),(474,1509238800,3),(474,1521939600,4),(474,1540688400,3),(474,1553994000,4),(474,1572138000,3),(474,1585443600,4),(474,1603587600,3),(474,1616893200,4),(474,1635642000,3),(474,1648342800,4),(474,1667091600,3),(474,1679792400,4),(474,1698541200,3),(474,1711846800,4),(474,1729990800,3),(474,1743296400,4),(474,1761440400,3),(474,1774746000,4),(474,1792890000,3),(474,1806195600,4),(474,1824944400,3),(474,1837645200,4),(474,1856394000,3),(474,1869094800,4),(474,1887843600,3),(474,1901149200,4),(474,1919293200,3),(474,1932598800,4),(474,1950742800,3),(474,1964048400,4),(474,1982797200,3),(474,1995498000,4),(474,2014246800,3),(474,2026947600,4),(474,2045696400,3),(474,2058397200,4),(474,2077146000,3),(474,2090451600,4),(474,2108595600,3),(474,2121901200,4),(474,2140045200,3),(475,-1637114100,1),(475,-1213148664,4),(475,-1187056800,2),(475,-1175479200,3),(475,-1159754400,2),(475,-1144029600,3),(475,-1127700000,2),(475,-1111975200,3),(475,-1096250400,2),(475,-1080525600,3),(475,-1064800800,2),(475,-1049076000,3),(475,-1033351200,2),(475,-1017626400,3),(475,-1001901600,2),(475,-986176800,3),(475,-970452000,2),(475,-954727200,3),(475,-927165600,5),(475,-898138800,8),(475,-857257200,6),(475,-844556400,7),(475,-828226800,6),(475,-812502000,7),(475,-800157600,10),(475,354920400,9),(475,370728000,10),(475,386456400,9),(475,402264000,10),(475,417992400,9),(475,433800000,10),(475,449614800,9),(475,465346800,11),(475,481071600,12),(475,496796400,11),(475,512521200,12),(475,528246000,11),(475,543970800,12),(475,559695600,11),(475,575420400,12),(475,591145200,11),(475,606870000,12),(475,622594800,11),(475,638319600,12),(475,641944800,5),(475,654652800,3),(475,670377600,2),(475,686102400,3),(475,694216800,4),(475,701820000,5),(475,717541200,4),(475,733269600,5),(475,748990800,4),(475,764719200,5),(475,780440400,4),(475,796168800,5),(475,811890000,4),(475,828223200,5),(475,846363600,4),(475,859680000,5),(475,877824000,4),(475,891129600,5),(475,909273600,4),(475,922579200,5),(475,941328000,4),(475,954028800,5),(475,972777600,4),(475,985478400,5),(475,1004227200,4),(475,1017532800,5),(475,1035676800,4),(475,1048982400,5),(475,1067126400,4),(475,1080432000,5),(475,1099180800,4),(475,1111881600,5),(475,1130630400,4),(475,1143331200,5),(475,1162080000,4),(475,1174780800,5),(475,1193529600,4),(475,1206835200,5),(475,1224979200,4),(475,1238284800,5),(475,1256428800,4),(475,1269734400,5),(475,1288483200,4),(475,1301184000,5),(475,1319932800,4),(475,1332633600,5),(475,1351382400,4),(475,1364688000,5),(475,1382832000,4),(475,1396137600,5),(475,1414281600,4),(475,1427587200,5),(475,1445731200,4),(475,1459036800,5),(475,1477785600,4),(475,1490486400,5),(475,1509235200,4),(475,1521936000,5),(475,1540684800,4),(475,1553990400,5),(475,1572134400,4),(475,1585440000,5),(475,1603584000,4),(475,1616889600,5),(475,1635638400,4),(475,1648339200,5),(475,1667088000,4),(475,1679788800,5),(475,1698537600,4),(475,1711843200,5),(475,1729987200,4),(475,1743292800,5),(475,1761436800,4),(475,1774742400,5),(475,1792886400,4),(475,1806192000,5),(475,1824940800,4),(475,1837641600,5),(475,1856390400,4),(475,1869091200,5),(475,1887840000,4),(475,1901145600,5),(475,1919289600,4),(475,1932595200,5),(475,1950739200,4),(475,1964044800,5),(475,1982793600,4),(475,1995494400,5),(475,2014243200,4),(475,2026944000,5),(475,2045692800,4),(475,2058393600,5),(475,2077142400,4),(475,2090448000,5),(475,2108592000,4),(475,2121897600,5),(475,2140041600,4),(476,-1593820800,1),(476,-1247540400,3),(476,354916800,2),(476,370724400,3),(476,386452800,2),(476,402260400,3),(476,417988800,2),(476,433796400,3),(476,449611200,2),(476,465343200,4),(476,481068000,5),(476,496792800,4),(476,512517600,5),(476,528242400,4),(476,543967200,5),(476,559692000,4),(476,575416800,5),(476,591141600,4),(476,606866400,6),(476,622594800,7),(476,638319600,6),(476,654649200,7),(476,670374000,8),(476,686102400,9),(476,695779200,7),(476,701823600,6),(476,717548400,7),(476,733273200,6),(476,748998000,7),(476,764722800,6),(476,780447600,7),(476,796172400,6),(476,811897200,7),(476,828226800,6),(476,846370800,7),(476,859676400,6),(476,877820400,7),(476,891126000,6),(476,909270000,7),(476,922575600,6),(476,941324400,7),(476,954025200,6),(476,972774000,7),(476,985474800,6),(476,1004223600,7),(476,1017529200,6),(476,1035673200,7),(476,1048978800,6),(476,1067122800,7),(476,1080428400,6),(476,1099177200,7),(476,1111878000,6),(476,1130626800,7),(476,1143327600,6),(476,1162076400,7),(476,1174777200,6),(476,1193526000,7),(476,1206831600,6),(476,1224975600,7),(476,1238281200,6),(476,1256425200,7),(476,1269730800,6),(476,1288479600,7),(476,1301180400,4),(476,1414274400,7),(476,1459033200,4),(477,-938905200,1),(477,-857257200,2),(477,-844556400,1),(477,-828226800,2),(477,-812502000,1),(477,-796874400,3),(477,-794714400,0),(477,-773456400,5),(477,354920400,4),(477,370728000,5),(477,386456400,4),(477,402264000,5),(477,417992400,4),(477,433800000,5),(477,449614800,4),(477,465346800,6),(477,481071600,7),(477,496796400,6),(477,512521200,7),(477,528246000,6),(477,543970800,7),(477,559695600,6),(477,575420400,7),(477,591145200,6),(477,606870000,7),(477,622594800,6),(477,631141200,5),(477,646786800,0),(477,670384800,8),(477,701820000,9),(477,717541200,8),(477,733269600,9),(477,748990800,8),(477,764719200,9),(477,780440400,8),(477,796179600,10),(477,811904400,11),(477,828234000,10),(477,846378000,11),(477,859683600,10),(477,877827600,11),(477,891133200,10),(477,909277200,11),(477,922582800,10),(477,941331600,11),(477,954032400,10),(477,972781200,11),(477,985482000,10),(477,1004230800,11),(477,1017536400,10),(477,1035680400,11),(477,1048986000,10),(477,1067130000,11),(477,1080435600,10),(477,1099184400,11),(477,1111885200,10),(477,1130634000,11),(477,1143334800,10),(477,1162083600,11),(477,1174784400,10),(477,1193533200,11),(477,1206838800,10),(477,1224982800,11),(477,1238288400,10),(477,1256432400,11),(477,1269738000,10),(477,1288486800,11),(477,1301187600,10),(477,1319936400,11),(477,1332637200,10),(477,1351386000,11),(477,1364691600,10),(477,1382835600,11),(477,1396141200,10),(477,1414285200,11),(477,1427590800,10),(477,1445734800,11),(477,1459040400,10),(477,1477789200,11),(477,1490490000,10),(477,1509238800,11),(477,1521939600,10),(477,1540688400,11),(477,1553994000,10),(477,1572138000,11),(477,1585443600,10),(477,1603587600,11),(477,1616893200,10),(477,1635642000,11),(477,1648342800,10),(477,1667091600,11),(477,1679792400,10),(477,1698541200,11),(477,1711846800,10),(477,1729990800,11),(477,1743296400,10),(477,1761440400,11),(477,1774746000,10),(477,1792890000,11),(477,1806195600,10),(477,1824944400,11),(477,1837645200,10),(477,1856394000,11),(477,1869094800,10),(477,1887843600,11),(477,1901149200,10),(477,1919293200,11),(477,1932598800,10),(477,1950742800,11),(477,1964048400,10),(477,1982797200,11),(477,1995498000,10),(477,2014246800,11),(477,2026947600,10),(477,2045696400,11),(477,2058397200,10),(477,2077146000,11),(477,2090451600,10),(477,2108595600,11),(477,2121901200,10),(477,2140045200,11),(478,-904435200,0),(478,-891129600,1),(478,-872985600,0),(478,-859680000,1),(478,354675600,2),(478,370400400,3),(478,386125200,2),(478,401850000,3),(478,417574800,2),(478,433299600,3),(478,449024400,2),(478,465354000,3),(478,481078800,2),(478,496803600,3),(478,512528400,2),(478,528253200,3),(478,543978000,2),(478,559702800,3),(478,575427600,2),(478,591152400,3),(478,606877200,2),(478,622602000,3),(478,638326800,2),(478,654656400,3),(478,670381200,2),(478,686106000,3),(478,701830800,2),(478,717555600,3),(478,733280400,2),(478,749005200,3),(478,764730000,2),(478,780454800,3),(478,796179600,2),(478,811904400,3),(478,828234000,2),(478,846378000,3),(478,859683600,2),(478,877827600,3),(478,891133200,2),(478,909277200,3),(478,922582800,2),(478,941331600,3),(478,954032400,2),(478,972781200,3),(478,985482000,2),(478,1004230800,3),(478,1017536400,2),(478,1035680400,3),(478,1048986000,2),(478,1067130000,3),(478,1080435600,2),(478,1099184400,3),(478,1111885200,2),(478,1130634000,3),(478,1143334800,2),(478,1162083600,3),(478,1174784400,2),(478,1193533200,3),(478,1206838800,2),(478,1224982800,3),(478,1238288400,2),(478,1256432400,3),(478,1269738000,2),(478,1288486800,3),(478,1301187600,2),(478,1319936400,3),(478,1332637200,2),(478,1351386000,3),(478,1364691600,2),(478,1382835600,3),(478,1396141200,2),(478,1414285200,3),(478,1427590800,2),(478,1445734800,3),(478,1459040400,2),(478,1477789200,3),(478,1490490000,2),(478,1509238800,3),(478,1521939600,2),(478,1540688400,3),(478,1553994000,2),(478,1572138000,3),(478,1585443600,2),(478,1603587600,3),(478,1616893200,2),(478,1635642000,3),(478,1648342800,2),(478,1667091600,3),(478,1679792400,2),(478,1698541200,3),(478,1711846800,2),(478,1729990800,3),(478,1743296400,2),(478,1761440400,3),(478,1774746000,2),(478,1792890000,3),(478,1806195600,2),(478,1824944400,3),(478,1837645200,2),(478,1856394000,3),(478,1869094800,2),(478,1887843600,3),(478,1901149200,2),(478,1919293200,3),(478,1932598800,2),(478,1950742800,3),(478,1964048400,2),(478,1982797200,3),(478,1995498000,2),(478,2014246800,3),(478,2026947600,2),(478,2045696400,3),(478,2058397200,2),(478,2077146000,3),(478,2090451600,2),(478,2108595600,3),(478,2121901200,2),(478,2140045200,3),(479,-1690765200,0),(479,-1680487200,1),(479,-1664758800,0),(479,-1648951200,1),(479,-1635123600,0),(479,-1616896800,1),(479,-1604278800,0),(479,-1585533600,1),(479,-1571014800,0),(479,-1555293600,1),(479,-932432400,0),(479,-857257200,2),(479,-844556400,3),(479,-830311200,0),(479,-828226800,2),(479,-812502000,3),(479,-807156000,0),(479,-798073200,2),(479,-781052400,0),(479,-766717200,1),(479,-750898800,3),(479,-733359600,2),(479,-719456400,3),(479,-701917200,2),(479,-689209200,3),(479,-670460400,2),(479,-114051600,3),(479,-103168800,1),(479,-81997200,3),(479,-71715600,2),(479,-50547600,3),(479,-40266000,2),(479,-18493200,3),(479,-8211600,2),(479,12956400,3),(479,23238000,2),(479,43801200,3),(479,54687600,2),(479,75855600,3),(479,86742000,2),(479,107910000,3),(479,118191600,2),(479,138754800,3),(479,149641200,2),(479,170809200,3),(479,181090800,2),(479,202258800,3),(479,212540400,2),(479,233103600,3),(479,243990000,2),(479,265158000,3),(479,276044400,2),(479,296607600,3),(479,307494000,2),(479,315529200,1),(479,323830800,4),(479,338950800,5),(479,354675600,4),(479,370400400,5),(479,386125200,4),(479,401850000,5),(479,417574800,4),(479,433299600,5),(479,449024400,4),(479,465354000,5),(479,481078800,4),(479,496803600,5),(479,512528400,4),(479,528253200,5),(479,543978000,4),(479,559702800,5),(479,575427600,4),(479,591152400,5),(479,606877200,4),(479,622602000,5),(479,638326800,4),(479,654656400,5),(479,670381200,4),(479,686106000,5),(479,701830800,4),(479,717555600,5),(479,733280400,4),(479,749005200,5),(479,764730000,4),(479,780454800,5),(479,796179600,4),(479,811904400,5),(479,828234000,4),(479,846378000,5),(479,859683600,4),(479,877827600,5),(479,891133200,4),(479,909277200,5),(479,922582800,4),(479,941331600,5),(479,954032400,4),(479,972781200,5),(479,985482000,4),(479,1004230800,5),(479,1017536400,4),(479,1035680400,5),(479,1048986000,4),(479,1067130000,5),(479,1080435600,4),(479,1099184400,5),(479,1111885200,4),(479,1130634000,5),(479,1143334800,4),(479,1162083600,5),(479,1174784400,4),(479,1193533200,5),(479,1206838800,4),(479,1224982800,5),(479,1238288400,4),(479,1256432400,5),(479,1269738000,4),(479,1288486800,5),(479,1301187600,4),(479,1319936400,5),(479,1332637200,4),(479,1351386000,5),(479,1364691600,4),(479,1382835600,5),(479,1396141200,4),(479,1414285200,5),(479,1427590800,4),(479,1445734800,5),(479,1459040400,4),(479,1477789200,5),(479,1490490000,4),(479,1509238800,5),(479,1521939600,4),(479,1540688400,5),(479,1553994000,4),(479,1572138000,5),(479,1585443600,4),(479,1603587600,5),(479,1616893200,4),(479,1635642000,5),(479,1648342800,4),(479,1667091600,5),(479,1679792400,4),(479,1698541200,5),(479,1711846800,4),(479,1729990800,5),(479,1743296400,4),(479,1761440400,5),(479,1774746000,4),(479,1792890000,5),(479,1806195600,4),(479,1824944400,5),(479,1837645200,4),(479,1856394000,5),(479,1869094800,4),(479,1887843600,5),(479,1901149200,4),(479,1919293200,5),(479,1932598800,4),(479,1950742800,5),(479,1964048400,4),(479,1982797200,5),(479,1995498000,4),(479,2014246800,5),(479,2026947600,4),(479,2045696400,5),(479,2058397200,4),(479,2077146000,5),(479,2090451600,4),(479,2108595600,5),(479,2121901200,4),(479,2140045200,5),(480,-1693706400,0),(480,-1680483600,1),(480,-1663455600,2),(480,-1650150000,3),(480,-1632006000,2),(480,-1618700400,3),(480,-1577926800,1),(480,-1569711600,2),(480,-1555801200,3),(480,-938905200,2),(480,-857257200,3),(480,-844556400,2),(480,-828226800,3),(480,-812502000,2),(480,-796777200,3),(480,-781052400,2),(480,-780188400,3),(480,-757386000,1),(480,-748479600,2),(480,-733359600,3),(480,-717634800,2),(480,-701910000,3),(480,-684975600,2),(480,-670460400,3),(480,323823600,0),(480,338940000,1),(480,354675600,4),(480,370400400,5),(480,386125200,4),(480,401850000,5),(480,417574800,4),(480,433299600,5),(480,449024400,4),(480,465354000,5),(480,481078800,4),(480,496803600,5),(480,512528400,4),(480,528253200,5),(480,543978000,4),(480,559702800,5),(480,575427600,4),(480,591152400,5),(480,606877200,4),(480,622602000,5),(480,638326800,4),(480,654656400,5),(480,670381200,4),(480,686106000,5),(480,701830800,4),(480,717555600,5),(480,733280400,4),(480,749005200,5),(480,764730000,4),(480,780454800,5),(480,796179600,4),(480,811904400,5),(480,828234000,4),(480,846378000,5),(480,859683600,4),(480,877827600,5),(480,891133200,4),(480,909277200,5),(480,922582800,4),(480,941331600,5),(480,954032400,4),(480,972781200,5),(480,985482000,4),(480,1004230800,5),(480,1017536400,4),(480,1035680400,5),(480,1048986000,4),(480,1067130000,5),(480,1080435600,4),(480,1099184400,5),(480,1111885200,4),(480,1130634000,5),(480,1143334800,4),(480,1162083600,5),(480,1174784400,4),(480,1193533200,5),(480,1206838800,4),(480,1224982800,5),(480,1238288400,4),(480,1256432400,5),(480,1269738000,4),(480,1288486800,5),(480,1301187600,4),(480,1319936400,5),(480,1332637200,4),(480,1351386000,5),(480,1364691600,4),(480,1382835600,5),(480,1396141200,4),(480,1414285200,5),(480,1427590800,4),(480,1445734800,5),(480,1459040400,4),(480,1477789200,5),(480,1490490000,4),(480,1509238800,5),(480,1521939600,4),(480,1540688400,5),(480,1553994000,4),(480,1572138000,5),(480,1585443600,4),(480,1603587600,5),(480,1616893200,4),(480,1635642000,5),(480,1648342800,4),(480,1667091600,5),(480,1679792400,4),(480,1698541200,5),(480,1711846800,4),(480,1729990800,5),(480,1743296400,4),(480,1761440400,5),(480,1774746000,4),(480,1792890000,5),(480,1806195600,4),(480,1824944400,5),(480,1837645200,4),(480,1856394000,5),(480,1869094800,4),(480,1887843600,5),(480,1901149200,4),(480,1919293200,5),(480,1932598800,4),(480,1950742800,5),(480,1964048400,4),(480,1982797200,5),(480,1995498000,4),(480,2014246800,5),(480,2026947600,4),(480,2045696400,5),(480,2058397200,4),(480,2077146000,5),(480,2090451600,4),(480,2108595600,5),(480,2121901200,4),(480,2140045200,5),(481,-1672536240,1),(481,-1585100136,2),(481,-1561251600,3),(481,-1553565600,2),(481,-928198800,4),(481,-900126000,7),(481,-857257200,5),(481,-844556400,6),(481,-828226800,5),(481,-812502000,6),(481,-802144800,4),(481,354920400,8),(481,370728000,4),(481,386456400,8),(481,402264000,4),(481,417992400,8),(481,433800000,4),(481,449614800,8),(481,465346800,9),(481,481071600,10),(481,496796400,9),(481,512521200,10),(481,528246000,9),(481,543970800,10),(481,559695600,9),(481,575420400,10),(481,591145200,9),(481,606870000,11),(481,622598400,12),(481,638323200,11),(481,654652800,12),(481,670377600,11),(481,686102400,12),(481,701827200,11),(481,717552000,12),(481,733276800,11),(481,749001600,12),(481,764726400,11),(481,780451200,12),(481,796176000,11),(481,811900800,12),(481,828230400,11),(481,846374400,12),(481,859680000,11),(481,877824000,12),(481,883605600,3),(481,891133200,13),(481,909277200,14),(481,922582800,13),(481,941331600,15),(481,1041372000,3),(481,1048986000,16),(481,1067130000,15),(481,1080435600,16),(481,1099184400,15),(481,1111885200,16),(481,1130634000,15),(481,1143334800,16),(481,1162083600,15),(481,1174784400,16),(481,1193533200,15),(481,1206838800,16),(481,1224982800,15),(481,1238288400,16),(481,1256432400,15),(481,1269738000,16),(481,1288486800,15),(481,1301187600,16),(481,1319936400,15),(481,1332637200,16),(481,1351386000,15),(481,1364691600,16),(481,1382835600,15),(481,1396141200,16),(481,1414285200,15),(481,1427590800,16),(481,1445734800,15),(481,1459040400,16),(481,1477789200,15),(481,1490490000,16),(481,1509238800,15),(481,1521939600,16),(481,1540688400,15),(481,1553994000,16),(481,1572138000,15),(481,1585443600,16),(481,1603587600,15),(481,1616893200,16),(481,1635642000,15),(481,1648342800,16),(481,1667091600,15),(481,1679792400,16),(481,1698541200,15),(481,1711846800,16),(481,1729990800,15),(481,1743296400,16),(481,1761440400,15),(481,1774746000,16),(481,1792890000,15),(481,1806195600,16),(481,1824944400,15),(481,1837645200,16),(481,1856394000,15),(481,1869094800,16),(481,1887843600,15),(481,1901149200,16),(481,1919293200,15),(481,1932598800,16),(481,1950742800,15),(481,1964048400,16),(481,1982797200,15),(481,1995498000,16),(481,2014246800,15),(481,2026947600,16),(481,2045696400,15),(481,2058397200,16),(481,2077146000,15),(481,2090451600,16),(481,2108595600,15),(481,2121901200,16),(481,2140045200,15),(482,-1577761060,1),(482,-1247540400,2),(482,354916800,3),(482,370724400,2),(482,386452800,3),(482,402260400,2),(482,417988800,3),(482,433796400,2),(482,449611200,3),(482,465343200,4),(482,481068000,5),(482,496792800,4),(482,512517600,5),(482,528242400,4),(482,543967200,5),(482,559692000,4),(482,575416800,6),(482,591145200,7),(482,606870000,6),(482,622594800,7),(482,638319600,6),(482,654649200,7),(482,670374000,4),(482,701820000,6),(482,717548400,7),(482,733273200,6),(482,748998000,7),(482,764722800,6),(482,780447600,7),(482,796172400,6),(482,811897200,7),(482,828226800,6),(482,846370800,7),(482,859676400,6),(482,877820400,7),(482,891126000,6),(482,909270000,7),(482,922575600,6),(482,941324400,7),(482,954025200,6),(482,972774000,7),(482,985474800,6),(482,1004223600,7),(482,1017529200,6),(482,1035673200,7),(482,1048978800,6),(482,1067122800,7),(482,1080428400,6),(482,1099177200,7),(482,1111878000,6),(482,1130626800,7),(482,1143327600,6),(482,1162076400,7),(482,1174777200,6),(482,1193526000,7),(482,1206831600,6),(482,1224975600,7),(482,1238281200,6),(482,1256425200,7),(482,1269730800,6),(482,1288479600,7),(482,1301180400,4),(482,1414274400,7),(483,-1717032240,2),(483,-1693706400,1),(483,-1680483600,2),(483,-1663455600,3),(483,-1650150000,4),(483,-1632006000,3),(483,-1618700400,7),(483,-1600473600,5),(483,-1587168000,6),(483,-1501725600,2),(483,-931734000,1),(483,-857257200,4),(483,-844556400,3),(483,-828226800,4),(483,-812502000,3),(483,-796874400,1),(483,-796608000,2),(483,-778726800,1),(483,-762660000,2),(483,-748486800,3),(483,-733273200,4),(483,-715215600,3),(483,-701910000,4),(483,-684975600,3),(483,-670460400,4),(483,-654130800,3),(483,-639010800,4),(483,-397094400,3),(483,-386812800,4),(483,-371088000,3),(483,-355363200,4),(483,-334195200,3),(483,-323308800,4),(483,-307584000,3),(483,-291859200,4),(483,-271296000,3),(483,-260409600,4),(483,-239846400,3),(483,-228960000,4),(483,-208396800,3),(483,-197510400,4),(483,-176342400,3),(483,-166060800,4),(483,220921200,2),(483,228873600,3),(483,243993600,4),(483,260323200,3),(483,276048000,4),(483,291772800,3),(483,307497600,4),(483,323827200,3),(483,338947200,4),(483,354672000,3),(483,370396800,4),(483,386121600,3),(483,401846400,4),(483,417571200,3),(483,433296000,4),(483,449020800,3),(483,465350400,4),(483,481075200,3),(483,496800000,4),(483,512524800,3),(483,528249600,4),(483,543974400,3),(483,559699200,4),(483,567990000,2),(483,575427600,8),(483,591152400,9),(483,606877200,8),(483,622602000,9),(483,638326800,8),(483,654656400,9),(483,670381200,8),(483,686106000,9),(483,701830800,8),(483,717555600,9),(483,733280400,8),(483,749005200,9),(483,764730000,8),(483,780454800,9),(483,796179600,8),(483,811904400,9),(483,828234000,8),(483,846378000,9),(483,859683600,8),(483,877827600,9),(483,891133200,8),(483,909277200,9),(483,922582800,8),(483,941331600,9),(483,954032400,8),(483,972781200,9),(483,985482000,8),(483,1004230800,9),(483,1017536400,8),(483,1035680400,9),(483,1048986000,8),(483,1067130000,9),(483,1080435600,8),(483,1099184400,9),(483,1111885200,8),(483,1130634000,9),(483,1143334800,8),(483,1162083600,9),(483,1174784400,8),(483,1193533200,9),(483,1206838800,8),(483,1224982800,9),(483,1238288400,8),(483,1256432400,9),(483,1269738000,8),(483,1288486800,9),(483,1301187600,8),(483,1319936400,9),(483,1332637200,8),(483,1351386000,9),(483,1364691600,8),(483,1382835600,9),(483,1396141200,8),(483,1414285200,9),(483,1427590800,8),(483,1445734800,9),(483,1459040400,8),(483,1477789200,9),(483,1490490000,8),(483,1509238800,9),(483,1521939600,8),(483,1540688400,9),(483,1553994000,8),(483,1572138000,9),(483,1585443600,8),(483,1603587600,9),(483,1616893200,8),(483,1635642000,9),(483,1648342800,8),(483,1667091600,9),(483,1679792400,8),(483,1698541200,9),(483,1711846800,8),(483,1729990800,9),(483,1743296400,8),(483,1761440400,9),(483,1774746000,8),(483,1792890000,9),(483,1806195600,8),(483,1824944400,9),(483,1837645200,8),(483,1856394000,9),(483,1869094800,8),(483,1887843600,9),(483,1901149200,8),(483,1919293200,9),(483,1932598800,8),(483,1950742800,9),(483,1964048400,8),(483,1982797200,9),(483,1995498000,8),(483,2014246800,9),(483,2026947600,8),(483,2045696400,9),(483,2058397200,8),(483,2077146000,9),(483,2090451600,8),(483,2108595600,9),(483,2121901200,8),(483,2140045200,9),(484,-905824800,3),(484,-857257200,1),(484,-844556400,2),(484,-828226800,1),(484,-812502000,2),(484,-796777200,1),(484,-788922000,0),(484,-777942000,2),(484,-766623600,1),(484,407199600,0),(484,417574800,4),(484,433299600,5),(484,449024400,4),(484,465354000,5),(484,481078800,4),(484,496803600,5),(484,512528400,4),(484,528253200,5),(484,543978000,4),(484,559702800,5),(484,575427600,4),(484,591152400,5),(484,606877200,4),(484,622602000,5),(484,638326800,4),(484,654656400,5),(484,670381200,4),(484,686106000,5),(484,701830800,4),(484,717555600,5),(484,733280400,4),(484,749005200,5),(484,764730000,4),(484,780454800,5),(484,796179600,4),(484,811904400,5),(484,828234000,4),(484,846378000,5),(484,859683600,4),(484,877827600,5),(484,891133200,4),(484,909277200,5),(484,922582800,4),(484,941331600,5),(484,954032400,4),(484,972781200,5),(484,985482000,4),(484,1004230800,5),(484,1017536400,4),(484,1035680400,5),(484,1048986000,4),(484,1067130000,5),(484,1080435600,4),(484,1099184400,5),(484,1111885200,4),(484,1130634000,5),(484,1143334800,4),(484,1162083600,5),(484,1174784400,4),(484,1193533200,5),(484,1206838800,4),(484,1224982800,5),(484,1238288400,4),(484,1256432400,5),(484,1269738000,4),(484,1288486800,5),(484,1301187600,4),(484,1319936400,5),(484,1332637200,4),(484,1351386000,5),(484,1364691600,4),(484,1382835600,5),(484,1396141200,4),(484,1414285200,5),(484,1427590800,4),(484,1445734800,5),(484,1459040400,4),(484,1477789200,5),(484,1490490000,4),(484,1509238800,5),(484,1521939600,4),(484,1540688400,5),(484,1553994000,4),(484,1572138000,5),(484,1585443600,4),(484,1603587600,5),(484,1616893200,4),(484,1635642000,5),(484,1648342800,4),(484,1667091600,5),(484,1679792400,4),(484,1698541200,5),(484,1711846800,4),(484,1729990800,5),(484,1743296400,4),(484,1761440400,5),(484,1774746000,4),(484,1792890000,5),(484,1806195600,4),(484,1824944400,5),(484,1837645200,4),(484,1856394000,5),(484,1869094800,4),(484,1887843600,5),(484,1901149200,4),(484,1919293200,5),(484,1932598800,4),(484,1950742800,5),(484,1964048400,4),(484,1982797200,5),(484,1995498000,4),(484,2014246800,5),(484,2026947600,4),(484,2045696400,5),(484,2058397200,4),(484,2077146000,5),(484,2090451600,4),(484,2108595600,5),(484,2121901200,4),(484,2140045200,5),(485,-1441160400,1),(485,-1247536800,2),(485,-894769200,5),(485,-857257200,3),(485,-844556400,4),(485,-828226800,3),(485,-826419600,2),(485,354920400,6),(485,370728000,2),(485,386456400,6),(485,402264000,2),(485,417992400,6),(485,433800000,2),(485,449614800,6),(485,465346800,7),(485,481071600,8),(485,496796400,7),(485,512521200,8),(485,528246000,7),(485,543970800,8),(485,559695600,7),(485,575420400,8),(485,591145200,7),(485,606870000,8),(485,622594800,7),(485,638319600,8),(485,654649200,7),(485,670374000,9),(485,686091600,1),(485,701820000,9),(485,717541200,1),(485,733269600,9),(485,748990800,1),(485,764719200,9),(485,780440400,1),(485,796179600,10),(485,811904400,11),(485,828234000,10),(485,846378000,11),(485,859683600,10),(485,877827600,11),(485,891133200,10),(485,909277200,11),(485,922582800,10),(485,941331600,11),(485,954032400,10),(485,972781200,11),(485,985482000,10),(485,1004230800,11),(485,1017536400,10),(485,1035680400,11),(485,1048986000,10),(485,1067130000,11),(485,1080435600,10),(485,1099184400,11),(485,1111885200,10),(485,1130634000,11),(485,1143334800,10),(485,1162083600,11),(485,1174784400,10),(485,1193533200,11),(485,1206838800,10),(485,1224982800,11),(485,1238288400,10),(485,1256432400,11),(485,1269738000,10),(485,1288486800,11),(485,1301187600,10),(485,1319936400,11),(485,1332637200,10),(485,1351386000,11),(485,1364691600,10),(485,1382835600,11),(485,1396141200,10),(485,1414285200,11),(485,1427590800,10),(485,1445734800,11),(485,1459040400,10),(485,1477789200,11),(485,1490490000,10),(485,1509238800,11),(485,1521939600,10),(485,1540688400,11),(485,1553994000,10),(485,1572138000,11),(485,1585443600,10),(485,1603587600,11),(485,1616893200,10),(485,1635642000,11),(485,1648342800,10),(485,1667091600,11),(485,1679792400,10),(485,1698541200,11),(485,1711846800,10),(485,1729990800,11),(485,1743296400,10),(485,1761440400,11),(485,1774746000,10),(485,1792890000,11),(485,1806195600,10),(485,1824944400,11),(485,1837645200,10),(485,1856394000,11),(485,1869094800,10),(485,1887843600,11),(485,1901149200,10),(485,1919293200,11),(485,1932598800,10),(485,1950742800,11),(485,1964048400,10),(485,1982797200,11),(485,1995498000,10),(485,2014246800,11),(485,2026947600,10),(485,2045696400,11),(485,2058397200,10),(485,2077146000,11),(485,2090451600,10),(485,2108595600,11),(485,2121901200,10),(485,2140045200,11),(486,-904435200,0),(486,-891129600,1),(486,-872985600,0),(486,-859680000,1),(486,354675600,2),(486,370400400,3),(486,386125200,2),(486,401850000,3),(486,417574800,2),(486,433299600,3),(486,449024400,2),(486,465354000,3),(486,481078800,2),(486,496803600,3),(486,512528400,2),(486,528253200,3),(486,543978000,2),(486,559702800,3),(486,575427600,2),(486,591152400,3),(486,606877200,2),(486,622602000,3),(486,638326800,2),(486,654656400,3),(486,670381200,2),(486,686106000,3),(486,701830800,2),(486,717555600,3),(486,733280400,2),(486,749005200,3),(486,764730000,2),(486,780454800,3),(486,796179600,2),(486,811904400,3),(486,828234000,2),(486,846378000,3),(486,859683600,2),(486,877827600,3),(486,891133200,2),(486,909277200,3),(486,922582800,2),(486,941331600,3),(486,954032400,2),(486,972781200,3),(486,985482000,2),(486,1004230800,3),(486,1017536400,2),(486,1035680400,3),(486,1048986000,2),(486,1067130000,3),(486,1080435600,2),(486,1099184400,3),(486,1111885200,2),(486,1130634000,3),(486,1143334800,2),(486,1162083600,3),(486,1174784400,2),(486,1193533200,3),(486,1206838800,2),(486,1224982800,3),(486,1238288400,2),(486,1256432400,3),(486,1269738000,2),(486,1288486800,3),(486,1301187600,2),(486,1319936400,3),(486,1332637200,2),(486,1351386000,3),(486,1364691600,2),(486,1382835600,3),(486,1396141200,2),(486,1414285200,3),(486,1427590800,2),(486,1445734800,3),(486,1459040400,2),(486,1477789200,3),(486,1490490000,2),(486,1509238800,3),(486,1521939600,2),(486,1540688400,3),(486,1553994000,2),(486,1572138000,3),(486,1585443600,2),(486,1603587600,3),(486,1616893200,2),(486,1635642000,3),(486,1648342800,2),(486,1667091600,3),(486,1679792400,2),(486,1698541200,3),(486,1711846800,2),(486,1729990800,3),(486,1743296400,2),(486,1761440400,3),(486,1774746000,2),(486,1792890000,3),(486,1806195600,2),(486,1824944400,3),(486,1837645200,2),(486,1856394000,3),(486,1869094800,2),(486,1887843600,3),(486,1901149200,2),(486,1919293200,3),(486,1932598800,2),(486,1950742800,3),(486,1964048400,2),(486,1982797200,3),(486,1995498000,2),(486,2014246800,3),(486,2026947600,2),(486,2045696400,3),(486,2058397200,2),(486,2077146000,3),(486,2090451600,2),(486,2108595600,3),(486,2121901200,2),(486,2140045200,3),(487,-1691964000,0),(487,-1680472800,1),(487,-1664143200,0),(487,-1650146400,1),(487,-1633903200,0),(487,-1617487200,1),(487,-1601848800,0),(487,-1586037600,1),(487,-1570399200,0),(487,-1552168800,1),(487,-1538344800,0),(487,-1522533600,1),(487,-1507500000,0),(487,-1490565600,1),(487,-1473631200,0),(487,-1460930400,1),(487,-1442786400,0),(487,-1428876000,1),(487,-1410732000,0),(487,-1396216800,1),(487,-1379282400,0),(487,-1364767200,1),(487,-1348437600,0),(487,-1333317600,1),(487,-1315778400,0),(487,-1301263200,1),(487,-1284328800,0),(487,-1269813600,1),(487,-1253484000,0),(487,-1238364000,1),(487,-1221429600,0),(487,-1206914400,1),(487,-1189980000,0),(487,-1175464800,1),(487,-1159135200,0),(487,-1143410400,1),(487,-1126476000,0),(487,-1111960800,1),(487,-1095631200,0),(487,-1080511200,1),(487,-1063576800,0),(487,-1049061600,1),(487,-1032127200,0),(487,-1017612000,1),(487,-1001282400,0),(487,-986162400,1),(487,-969228000,0),(487,-950479200,1),(487,-942012000,0),(487,-904518000,2),(487,-896050800,0),(487,-875487600,2),(487,-864601200,0),(487,-844038000,2),(487,-832546800,0),(487,-812588400,2),(487,-798073200,0),(487,-781052400,2),(487,-772066800,0),(487,-764805600,1),(487,-748476000,0),(487,-733356000,1),(487,-719445600,0),(487,-717030000,2),(487,-706748400,0),(487,-699487200,1),(487,-687996000,0),(487,-668037600,1),(487,-654732000,0),(487,-636588000,1),(487,-622072800,0),(487,-605743200,1),(487,-590623200,0),(487,-574293600,1),(487,-558568800,0),(487,-542239200,1),(487,-527119200,0),(487,-512604000,1),(487,-496274400,0),(487,-481154400,1),(487,-464220000,0),(487,-449704800,1),(487,-432165600,0),(487,-417650400,1),(487,-401320800,0),(487,-386200800,1),(487,-369266400,0),(487,-354751200,1),(487,-337816800,0),(487,-323301600,1),(487,-306972000,0),(487,-291852000,1),(487,-276732000,0),(487,-257983200,1),(487,-245282400,0),(487,-226533600,1),(487,-213228000,0),(487,-195084000,1),(487,-182383200,0),(487,-163634400,1),(487,-150933600,0),(487,-132184800,1),(487,-119484000,0),(487,-100735200,1),(487,-88034400,0),(487,-68680800,1),(487,-59004000,0),(487,-37242000,3),(487,57722400,5),(487,69818400,0),(487,89172000,1),(487,101268000,0),(487,120621600,1),(487,132717600,0),(487,152071200,1),(487,164167200,0),(487,183520800,1),(487,196221600,0),(487,214970400,1),(487,227671200,0),(487,246420000,1),(487,259120800,0),(487,278474400,1),(487,290570400,0),(487,309924000,1),(487,322020000,0),(487,341373600,1),(487,354675600,4),(487,372819600,5),(487,386125200,4),(487,404269200,5),(487,417574800,4),(487,435718800,5),(487,449024400,4),(487,467773200,5),(487,481078800,4),(487,499222800,5),(487,512528400,4),(487,530672400,5),(487,543978000,4),(487,562122000,5),(487,575427600,4),(487,593571600,5),(487,606877200,4),(487,625626000,5),(487,638326800,4),(487,657075600,5),(487,670381200,4),(487,688525200,5),(487,701830800,4),(487,719974800,5),(487,733280400,4),(487,751424400,5),(487,764730000,4),(487,782874000,5),(487,796179600,4),(487,814323600,5),(487,820454400,6),(487,828234000,4),(487,846378000,5),(487,859683600,4),(487,877827600,5),(487,891133200,4),(487,909277200,5),(487,922582800,4),(487,941331600,5),(487,954032400,4),(487,972781200,5),(487,985482000,4),(487,1004230800,5),(487,1017536400,4),(487,1035680400,5),(487,1048986000,4),(487,1067130000,5),(487,1080435600,4),(487,1099184400,5),(487,1111885200,4),(487,1130634000,5),(487,1143334800,4),(487,1162083600,5),(487,1174784400,4),(487,1193533200,5),(487,1206838800,4),(487,1224982800,5),(487,1238288400,4),(487,1256432400,5),(487,1269738000,4),(487,1288486800,5),(487,1301187600,4),(487,1319936400,5),(487,1332637200,4),(487,1351386000,5),(487,1364691600,4),(487,1382835600,5),(487,1396141200,4),(487,1414285200,5),(487,1427590800,4),(487,1445734800,5),(487,1459040400,4),(487,1477789200,5),(487,1490490000,4),(487,1509238800,5),(487,1521939600,4),(487,1540688400,5),(487,1553994000,4),(487,1572138000,5),(487,1585443600,4),(487,1603587600,5),(487,1616893200,4),(487,1635642000,5),(487,1648342800,4),(487,1667091600,5),(487,1679792400,4),(487,1698541200,5),(487,1711846800,4),(487,1729990800,5),(487,1743296400,4),(487,1761440400,5),(487,1774746000,4),(487,1792890000,5),(487,1806195600,4),(487,1824944400,5),(487,1837645200,4),(487,1856394000,5),(487,1869094800,4),(487,1887843600,5),(487,1901149200,4),(487,1919293200,5),(487,1932598800,4),(487,1950742800,5),(487,1964048400,4),(487,1982797200,5),(487,1995498000,4),(487,2014246800,5),(487,2026947600,4),(487,2045696400,5),(487,2058397200,4),(487,2077146000,5),(487,2090451600,4),(487,2108595600,5),(487,2121901200,4),(487,2140045200,5),(488,-1691964000,0),(488,-1680472800,1),(488,-1664143200,0),(488,-1650146400,1),(488,-1633903200,0),(488,-1617487200,1),(488,-1601848800,0),(488,-1586037600,1),(488,-1570399200,0),(488,-1552168800,1),(488,-1538344800,0),(488,-1522533600,1),(488,-1507500000,0),(488,-1490565600,1),(488,-1473631200,0),(488,-1460930400,1),(488,-1442786400,0),(488,-1428876000,1),(488,-1410732000,0),(488,-1396216800,1),(488,-1379282400,0),(488,-1364767200,1),(488,-1348437600,0),(488,-1333317600,1),(488,-1315778400,0),(488,-1301263200,1),(488,-1284328800,0),(488,-1269813600,1),(488,-1253484000,0),(488,-1238364000,1),(488,-1221429600,0),(488,-1206914400,1),(488,-1189980000,0),(488,-1175464800,1),(488,-1159135200,0),(488,-1143410400,1),(488,-1126476000,0),(488,-1111960800,1),(488,-1095631200,0),(488,-1080511200,1),(488,-1063576800,0),(488,-1049061600,1),(488,-1032127200,0),(488,-1017612000,1),(488,-1001282400,0),(488,-986162400,1),(488,-969228000,0),(488,-950479200,1),(488,-942012000,0),(488,-904518000,2),(488,-896050800,0),(488,-875487600,2),(488,-864601200,0),(488,-844038000,2),(488,-832546800,0),(488,-812588400,2),(488,-798073200,0),(488,-781052400,2),(488,-772066800,0),(488,-764805600,1),(488,-748476000,0),(488,-733356000,1),(488,-719445600,0),(488,-717030000,2),(488,-706748400,0),(488,-699487200,1),(488,-687996000,0),(488,-668037600,1),(488,-654732000,0),(488,-636588000,1),(488,-622072800,0),(488,-605743200,1),(488,-590623200,0),(488,-574293600,1),(488,-558568800,0),(488,-542239200,1),(488,-527119200,0),(488,-512604000,1),(488,-496274400,0),(488,-481154400,1),(488,-464220000,0),(488,-449704800,1),(488,-432165600,0),(488,-417650400,1),(488,-401320800,0),(488,-386200800,1),(488,-369266400,0),(488,-354751200,1),(488,-337816800,0),(488,-323301600,1),(488,-306972000,0),(488,-291852000,1),(488,-276732000,0),(488,-257983200,1),(488,-245282400,0),(488,-226533600,1),(488,-213228000,0),(488,-195084000,1),(488,-182383200,0),(488,-163634400,1),(488,-150933600,0),(488,-132184800,1),(488,-119484000,0),(488,-100735200,1),(488,-88034400,0),(488,-68680800,1),(488,-59004000,0),(488,-37242000,3),(488,57722400,5),(488,69818400,0),(488,89172000,1),(488,101268000,0),(488,120621600,1),(488,132717600,0),(488,152071200,1),(488,164167200,0),(488,183520800,1),(488,196221600,0),(488,214970400,1),(488,227671200,0),(488,246420000,1),(488,259120800,0),(488,278474400,1),(488,290570400,0),(488,309924000,1),(488,322020000,0),(488,341373600,1),(488,354675600,4),(488,372819600,5),(488,386125200,4),(488,404269200,5),(488,417574800,4),(488,435718800,5),(488,449024400,4),(488,467773200,5),(488,481078800,4),(488,499222800,5),(488,512528400,4),(488,530672400,5),(488,543978000,4),(488,562122000,5),(488,575427600,4),(488,593571600,5),(488,606877200,4),(488,625626000,5),(488,638326800,4),(488,657075600,5),(488,670381200,4),(488,688525200,5),(488,701830800,4),(488,719974800,5),(488,733280400,4),(488,751424400,5),(488,764730000,4),(488,782874000,5),(488,796179600,4),(488,814323600,5),(488,820454400,6),(488,828234000,4),(488,846378000,5),(488,859683600,4),(488,877827600,5),(488,891133200,4),(488,909277200,5),(488,922582800,4),(488,941331600,5),(488,954032400,4),(488,972781200,5),(488,985482000,4),(488,1004230800,5),(488,1017536400,4),(488,1035680400,5),(488,1048986000,4),(488,1067130000,5),(488,1080435600,4),(488,1099184400,5),(488,1111885200,4),(488,1130634000,5),(488,1143334800,4),(488,1162083600,5),(488,1174784400,4),(488,1193533200,5),(488,1206838800,4),(488,1224982800,5),(488,1238288400,4),(488,1256432400,5),(488,1269738000,4),(488,1288486800,5),(488,1301187600,4),(488,1319936400,5),(488,1332637200,4),(488,1351386000,5),(488,1364691600,4),(488,1382835600,5),(488,1396141200,4),(488,1414285200,5),(488,1427590800,4),(488,1445734800,5),(488,1459040400,4),(488,1477789200,5),(488,1490490000,4),(488,1509238800,5),(488,1521939600,4),(488,1540688400,5),(488,1553994000,4),(488,1572138000,5),(488,1585443600,4),(488,1603587600,5),(488,1616893200,4),(488,1635642000,5),(488,1648342800,4),(488,1667091600,5),(488,1679792400,4),(488,1698541200,5),(488,1711846800,4),(488,1729990800,5),(488,1743296400,4),(488,1761440400,5),(488,1774746000,4),(488,1792890000,5),(488,1806195600,4),(488,1824944400,5),(488,1837645200,4),(488,1856394000,5),(488,1869094800,4),(488,1887843600,5),(488,1901149200,4),(488,1919293200,5),(488,1932598800,4),(488,1950742800,5),(488,1964048400,4),(488,1982797200,5),(488,1995498000,4),(488,2014246800,5),(488,2026947600,4),(488,2045696400,5),(488,2058397200,4),(488,2077146000,5),(488,2090451600,4),(488,2108595600,5),(488,2121901200,4),(488,2140045200,5),(495,-2056693002,2),(495,-907389000,1),(495,-891667800,2),(495,-884246400,3),(495,-766746000,2),(495,-747981000,1),(495,-728544600,2),(495,-717049800,1),(495,-694503000,2),(495,-683785800,1),(495,-668064600,2),(495,-654755400,1),(495,-636615000,2),(495,-623305800,1),(495,-605165400,2),(495,-591856200,1),(495,-573715800,2),(495,-559801800,1),(495,-542352600,2),(495,-528352200,1),(495,-510211800,2),(495,-498112200,1),(495,-478762200,2),(495,-466662600,1),(495,-446707800,2),(495,-435213000,1),(495,-415258200,2),(495,-403158600,1),(495,-383808600,2),(495,-371709000,1),(495,-352359000,2),(495,-340259400,1),(495,-320909400,2),(495,-308809800,1),(495,-288855000,2),(495,-277360200,1),(495,-257405400,2),(495,-245910600,1),(495,-225955800,2),(495,-213856200,1),(495,-194506200,2),(495,-182406600,1),(495,-163056600,2),(495,-148537800,1),(495,-132816600,2),(495,-117088200,1),(495,-101367000,2),(495,-85638600,1),(495,-69312600,2),(495,-53584200,1),(495,-37863000,2),(495,-22134600,1),(495,-6413400,2),(495,9315000,1),(495,25036200,2),(495,40764600,1),(495,56485800,2),(495,72214200,1),(495,88540200,2),(495,104268600,1),(495,119989800,2),(495,126041400,1),(495,151439400,2),(495,167167800,1),(495,182889000,2),(495,198617400,1),(495,214338600,2),(495,295385400,1),(495,309292200,2),(496,-1956609120,2),(496,-1668211200,1),(496,-1647212400,2),(496,-1636675200,1),(496,-1613430000,2),(496,-1605139200,1),(496,-1581894000,2),(496,-1539561600,1),(496,-1531350000,2),(496,-968025600,1),(496,-952293600,2),(496,-942008400,1),(496,-920239200,3),(496,-909957600,4),(496,-888789600,3),(496,-877903200,4),(496,-857944800,3),(496,-846453600,4),(496,-826495200,3),(496,-815004000,4),(496,-795045600,3),(496,-783554400,4),(496,-762991200,3),(496,-752104800,4),(496,-731541600,3),(496,-717631200,4),(496,-700092000,3),(496,-686181600,4),(496,-668642400,3),(496,-654732000,4),(496,-636588000,3),(496,-623282400,4),(496,-605743200,3),(496,-591832800,4),(496,-573688800,3),(496,-559778400,4),(496,-542239200,3),(496,-528328800,4),(496,-510789600,3),(496,-496879200,4),(496,-479340000,3),(496,-465429600,4),(496,-447890400,3),(496,-433980000,4),(496,-415836000,3),(496,-401925600,4),(496,-384386400,3),(496,-370476000,4),(496,-352936800,3),(496,-339026400,4),(496,-321487200,3),(496,-307576800,4),(496,-290037600,3),(496,-276127200,4),(496,-258588000,3),(496,-244677600,4),(496,-226533600,3),(496,-212623200,4),(496,-195084000,3),(496,-181173600,4),(496,-163634400,3),(496,-149724000,4),(496,-132184800,3),(496,-118274400,4),(496,-100735200,3),(496,-86824800,4),(496,-68680800,3),(496,-54770400,5),(497,-1309746436,1),(497,-1262314800,2),(497,-946780200,3),(497,-315629100,1),(498,-1988167780,1),(498,820436400,2),(501,-1309746436,1),(501,-1262314800,2),(501,-946780200,3),(501,-315629100,1),(502,-631152000,1),(503,-2006653308,1),(504,-315636840,1),(505,-1988164200,2),(505,403041600,1),(505,417034800,2),(505,1224972000,1),(505,1238274000,2),(506,-1309746436,1),(506,-1262314800,2),(506,-946780200,3),(506,-315629100,1),(507,-1848886912,1),(508,-1704165944,1),(508,-757394744,2),(508,247177800,4),(508,259272000,3),(508,277758000,4),(508,283982400,2),(508,290809800,5),(508,306531000,2),(508,322432200,5),(508,338499000,2),(508,673216200,5),(508,685481400,2),(508,701209800,5),(508,717103800,2),(508,732745800,5),(508,748639800,2),(508,764281800,5),(508,780175800,2),(508,795817800,5),(508,811711800,2),(508,827353800,5),(508,843247800,2),(508,858976200,5),(508,874870200,2),(508,890512200,5),(508,906406200,2),(508,922048200,5),(508,937942200,2),(508,953584200,5),(508,969478200,2),(508,985206600,5),(508,1001100600,2),(508,1016742600,5),(508,1032636600,2),(508,1048278600,5),(508,1064172600,2),(508,1079814600,5),(508,1095708600,2),(508,1111437000,5),(508,1127331000,2),(508,1206045000,5),(508,1221939000,2),(508,1237667400,5),(508,1253561400,2),(508,1269203400,5),(508,1285097400,2),(508,1300739400,5),(508,1316633400,2),(508,1332275400,5),(508,1348169400,2),(508,1363897800,5),(508,1379791800,2),(508,1395433800,5),(508,1411327800,2),(508,1426969800,5),(508,1442863800,2),(508,1458505800,5),(508,1474399800,2),(508,1490128200,5),(508,1506022200,2),(508,1521664200,5),(508,1537558200,2),(508,1553200200,5),(508,1569094200,2),(508,1584736200,5),(508,1600630200,2),(508,1616358600,5),(508,1632252600,2),(508,1647894600,5),(508,1663788600,2),(508,1679430600,5),(508,1695324600,2),(508,1710966600,5),(508,1726860600,2),(508,1742589000,5),(508,1758483000,2),(508,1774125000,5),(508,1790019000,2),(508,1805661000,5),(508,1821555000,2),(508,1837197000,5),(508,1853091000,2),(508,1868733000,5),(508,1884627000,2),(508,1900355400,5),(508,1916249400,2),(508,1931891400,5),(508,1947785400,2),(508,1963427400,5),(508,1979321400,2),(508,1994963400,5),(508,2010857400,2),(508,2026585800,5),(508,2042479800,2),(508,2058121800,5),(508,2074015800,2),(508,2089657800,5),(508,2105551800,2),(508,2121193800,5),(508,2137087800,2),(509,-1641003640,2),(509,-933645600,1),(509,-857358000,2),(509,-844300800,1),(509,-825822000,2),(509,-812685600,1),(509,-794199600,2),(509,-779853600,1),(509,-762656400,2),(509,-748310400,1),(509,-731127600,2),(509,-681962400,3),(509,-673243200,1),(509,-667962000,2),(509,-652327200,1),(509,-636426000,2),(509,-622087200,1),(509,-608947200,2),(509,-591847200,1),(509,-572486400,2),(509,-558576000,1),(509,-542851200,2),(509,-527731200,1),(509,-514425600,2),(509,-490845600,1),(509,-482986800,2),(509,-459475200,1),(509,-451537200,2),(509,-428551200,1),(509,-418262400,2),(509,-400032000,1),(509,-387428400,2),(509,142380000,1),(509,150843600,2),(509,167176800,1),(509,178664400,2),(509,482277600,1),(509,495579600,2),(509,516751200,1),(509,526424400,2),(509,545436000,1),(509,558478800,2),(509,576626400,1),(509,589323600,2),(509,609890400,1),(509,620773200,2),(509,638316000,1),(509,651618000,2),(509,669765600,1),(509,683672400,2),(509,701820000,1),(509,715726800,2),(509,733701600,1),(509,747176400,2),(509,765151200,1),(509,778021200,2),(509,796600800,1),(509,810075600,2),(509,826840800,1),(509,842821200,2),(509,858895200,1),(509,874184400,2),(509,890344800,1),(509,905029200,2),(509,923011200,1),(509,936313200,2),(509,955670400,1),(509,970783200,2),(509,986770800,1),(509,1001282400,2),(509,1017356400,1),(509,1033941600,2),(509,1048806000,1),(509,1065132000,2),(509,1081292400,1),(509,1095804000,2),(509,1112313600,1),(509,1128812400,2),(509,1143763200,1),(509,1159657200,2),(509,1175212800,1),(509,1189897200,2),(509,1206662400,1),(509,1223161200,2),(509,1238112000,1),(509,1254006000,2),(509,1269561600,1),(509,1284246000,2),(509,1301616000,1),(509,1317510000,2),(509,1333065600,1),(509,1348354800,2),(509,1364515200,1),(509,1382828400,2),(509,1395964800,1),(509,1414278000,2),(509,1427414400,1),(509,1445727600,2),(509,1458864000,1),(509,1477782000,2),(509,1490313600,1),(509,1509231600,2),(509,1521763200,1),(509,1540681200,2),(509,1553817600,1),(509,1572130800,2),(509,1585267200,1),(509,1603580400,2),(509,1616716800,1),(509,1635634800,2),(509,1648166400,1),(509,1667084400,2),(509,1679616000,1),(509,1698534000,2),(509,1711670400,1),(509,1729983600,2),(509,1743120000,1),(509,1761433200,2),(509,1774569600,1),(509,1792882800,2),(509,1806019200,1),(509,1824937200,2),(509,1837468800,1),(509,1856386800,2),(509,1868918400,1),(509,1887836400,2),(509,1900972800,1),(509,1919286000,2),(509,1932422400,1),(509,1950735600,2),(509,1963872000,1),(509,1982790000,2),(509,1995321600,1),(509,2014239600,2),(509,2026771200,1),(509,2045689200,2),(509,2058220800,1),(509,2077138800,2),(509,2090275200,1),(509,2108588400,2),(509,2121724800,1),(509,2140038000,2),(510,-1827687170,1),(510,126687600,2),(510,152085600,1),(510,162370800,2),(510,183535200,1),(510,199263600,2),(510,215589600,1),(510,230713200,2),(510,247039200,1),(510,262767600,2),(510,278488800,1),(510,294217200,2),(510,309938400,1),(510,325666800,2),(510,341388000,1),(510,357116400,2),(510,372837600,1),(510,388566000,2),(510,404892000,1),(510,420015600,2),(510,436341600,1),(511,-683802000,0),(511,-672314400,1),(511,-654771600,0),(511,-640864800,1),(511,-620298000,0),(511,-609415200,1),(511,-588848400,0),(511,-577965600,1),(512,-7988400,1),(512,745848000,2),(513,-1577926364,2),(513,-574902000,1),(513,-568087200,2),(513,-512175600,1),(513,-504928800,2),(513,-449888400,1),(513,-441856800,2),(513,-347158800,3),(513,378684000,2),(513,386463600,1),(513,402271200,2),(513,417999600,1),(513,433807200,2),(513,449622000,1),(513,465429600,2),(513,481590000,1),(513,496965600,2),(513,512953200,1),(513,528674400,2),(513,544230000,1),(513,560037600,2),(513,575852400,1),(513,591660000,2),(513,607388400,1),(513,623196000,2),(513,641775600,3),(513,844034400,2),(513,860108400,1),(513,875916000,3),(513,1352505600,2),(513,1364515200,1),(513,1382659200,3),(514,-1693706400,0),(514,-1680483600,1),(514,-1663455600,2),(514,-1650150000,3),(514,-1632006000,2),(514,-1618700400,3),(514,-938905200,2),(514,-857257200,3),(514,-844556400,2),(514,-828226800,3),(514,-812502000,2),(514,-796777200,3),(514,-781052400,2),(514,-766623600,3),(514,228877200,2),(514,243997200,3),(514,260326800,2),(514,276051600,3),(514,291776400,2),(514,307501200,3),(514,323830800,2),(514,338950800,3),(514,354675600,2),(514,370400400,3),(514,386125200,2),(514,401850000,3),(514,417574800,2),(514,433299600,3),(514,449024400,2),(514,465354000,3),(514,481078800,2),(514,496803600,3),(514,512528400,2),(514,528253200,3),(514,543978000,2),(514,559702800,3),(514,575427600,2),(514,591152400,3),(514,606877200,2),(514,622602000,3),(514,638326800,2),(514,654656400,3),(514,670381200,2),(514,686106000,3),(514,701830800,2),(514,717555600,3),(514,733280400,2),(514,749005200,3),(514,764730000,2),(514,780454800,3),(514,796179600,2),(514,811904400,3),(514,828234000,2),(514,846378000,3),(514,859683600,2),(514,877827600,3),(514,891133200,2),(514,909277200,3),(514,922582800,2),(514,941331600,3),(514,954032400,2),(514,972781200,3),(514,985482000,2),(514,1004230800,3),(514,1017536400,2),(514,1035680400,3),(514,1048986000,2),(514,1067130000,3),(514,1080435600,2),(514,1099184400,3),(514,1111885200,2),(514,1130634000,3),(514,1143334800,2),(514,1162083600,3),(514,1174784400,2),(514,1193533200,3),(514,1206838800,2),(514,1224982800,3),(514,1238288400,2),(514,1256432400,3),(514,1269738000,2),(514,1288486800,3),(514,1301187600,2),(514,1319936400,3),(514,1332637200,2),(514,1351386000,3),(514,1364691600,2),(514,1382835600,3),(514,1396141200,2),(514,1414285200,3),(514,1427590800,2),(514,1445734800,3),(514,1459040400,2),(514,1477789200,3),(514,1490490000,2),(514,1509238800,3),(514,1521939600,2),(514,1540688400,3),(514,1553994000,2),(514,1572138000,3),(514,1585443600,2),(514,1603587600,3),(514,1616893200,2),(514,1635642000,3),(514,1648342800,2),(514,1667091600,3),(514,1679792400,2),(514,1698541200,3),(514,1711846800,2),(514,1729990800,3),(514,1743296400,2),(514,1761440400,3),(514,1774746000,2),(514,1792890000,3),(514,1806195600,2),(514,1824944400,3),(514,1837645200,2),(514,1856394000,3),(514,1869094800,2),(514,1887843600,3),(514,1901149200,2),(514,1919293200,3),(514,1932598800,2),(514,1950742800,3),(514,1964048400,2),(514,1982797200,3),(514,1995498000,2),(514,2014246800,3),(514,2026947600,2),(514,2045696400,3),(514,2058397200,2),(514,2077146000,3),(514,2090451600,2),(514,2108595600,3),(514,2121901200,2),(514,2140045200,3),(516,-1633273200,0),(516,-1615132800,1),(516,-1601823600,0),(516,-1583683200,1),(516,-880210800,2),(516,-769395600,3),(516,-765388800,1),(516,-84380400,0),(516,-68659200,1),(516,-52930800,0),(516,-37209600,1),(516,-21481200,0),(516,-5760000,1),(516,9968400,0),(516,25689600,1),(516,41418000,0),(516,57744000,1),(516,73472400,0),(516,89193600,1),(516,104922000,0),(516,120643200,1),(516,126694800,0),(516,152092800,1),(516,162378000,0),(516,183542400,1),(516,199270800,0),(516,215596800,1),(516,230720400,0),(516,247046400,1),(516,262774800,0),(516,278496000,1),(516,294224400,0),(516,309945600,1),(516,325674000,0),(516,341395200,1),(516,357123600,0),(516,372844800,1),(516,388573200,0),(516,404899200,1),(516,420022800,0),(516,436348800,1),(516,452077200,0),(516,467798400,1),(516,483526800,0),(516,499248000,1),(516,514976400,0),(516,530697600,1),(516,544611600,0),(516,562147200,1),(516,576061200,0),(516,594201600,1),(516,607510800,0),(516,625651200,1),(516,638960400,0),(516,657100800,1),(516,671014800,0),(516,688550400,1),(516,702464400,0),(516,720000000,1),(516,733914000,0),(516,752054400,1),(516,765363600,0),(516,783504000,1),(516,796813200,0),(516,814953600,1),(516,828867600,0),(516,846403200,1),(516,860317200,0),(516,877852800,1),(516,891766800,0),(516,909302400,1),(516,923216400,0),(516,941356800,1),(516,954666000,0),(516,972806400,1),(516,986115600,0),(516,1004256000,1),(516,1018170000,0),(516,1035705600,1),(516,1049619600,0),(516,1067155200,1),(516,1081069200,0),(516,1099209600,1),(516,1112518800,0),(516,1130659200,1),(516,1143968400,0),(516,1162108800,1),(516,1173603600,0),(516,1194163200,1),(516,1205053200,0),(516,1225612800,1),(516,1236502800,0),(516,1257062400,1),(516,1268557200,0),(516,1289116800,1),(516,1300006800,0),(516,1320566400,1),(516,1331456400,0),(516,1352016000,1),(516,1362906000,0),(516,1383465600,1),(516,1394355600,0),(516,1414915200,1),(516,1425805200,0),(516,1446364800,1),(516,1457859600,0),(516,1478419200,1),(516,1489309200,0),(516,1509868800,1),(516,1520758800,0),(516,1541318400,1),(516,1552208400,0),(516,1572768000,1),(516,1583658000,0),(516,1604217600,1),(516,1615712400,0),(516,1636272000,1),(516,1647162000,0),(516,1667721600,1),(516,1678611600,0),(516,1699171200,1),(516,1710061200,0),(516,1730620800,1),(516,1741510800,0),(516,1762070400,1),(516,1772960400,0),(516,1793520000,1),(516,1805014800,0),(516,1825574400,1),(516,1836464400,0),(516,1857024000,1),(516,1867914000,0),(516,1888473600,1),(516,1899363600,0),(516,1919923200,1),(516,1930813200,0),(516,1951372800,1),(516,1962867600,0),(516,1983427200,1),(516,1994317200,0),(516,2014876800,1),(516,2025766800,0),(516,2046326400,1),(516,2057216400,0),(516,2077776000,1),(516,2088666000,0),(516,2109225600,1),(516,2120115600,0),(516,2140675200,1),(517,-1514736000,1),(517,-1451667600,2),(517,-1343062800,1),(517,-1234803600,2),(517,-1222963200,3),(517,-1207242000,2),(517,-873820800,4),(517,-769395600,5),(517,-761677200,2),(517,-686073600,3),(517,-661539600,2),(517,-495039600,3),(517,-481734000,2),(517,-463590000,3),(517,-450284400,2),(517,-431535600,3),(517,-418230000,2),(517,-400086000,3),(517,-386780400,2),(517,-368636400,3),(517,-355330800,2),(517,-337186800,3),(517,-323881200,2),(517,-305737200,3),(517,-292431600,2),(517,199274400,3),(517,215600400,2),(517,230724000,3),(517,247050000,2),(517,262778400,3),(517,278499600,2),(517,294228000,3),(517,309949200,2),(517,325677600,3),(517,341398800,2),(517,357127200,3),(517,372848400,2),(517,388576800,3),(517,404902800,2),(517,420026400,3),(517,436352400,2),(517,452080800,3),(517,467802000,2),(517,483530400,3),(517,499251600,2),(517,514980000,3),(517,530701200,2),(517,544615200,3),(517,562150800,2),(517,576064800,3),(517,594205200,2),(517,607514400,3),(517,625654800,2),(517,638964000,3),(517,657104400,2),(517,671018400,3),(517,688554000,2),(517,702468000,3),(517,720003600,2),(517,733917600,3),(517,752058000,2),(517,765367200,3),(517,783507600,2),(517,796816800,3),(517,814957200,2),(517,828871200,3),(517,846406800,2),(517,860320800,3),(517,877856400,2),(517,891770400,3),(517,909306000,2),(517,923220000,3),(517,941360400,2),(517,954669600,3),(517,972810000,2),(517,986119200,3),(517,1004259600,2),(517,1018173600,3),(517,1035709200,2),(517,1049623200,3),(517,1067158800,2),(517,1081072800,3),(517,1099213200,2),(517,1112522400,3),(517,1130662800,2),(517,1143972000,3),(517,1162112400,2),(517,1175421600,3),(517,1193562000,2),(517,1207476000,3),(517,1225011600,2),(517,1238925600,3),(517,1256461200,2),(517,1268560800,3),(517,1289120400,2),(517,1300010400,3),(517,1320570000,2),(517,1331460000,3),(517,1352019600,2),(517,1362909600,3),(517,1383469200,2),(517,1394359200,3),(517,1414918800,2),(517,1425808800,3),(517,1446368400,2),(517,1457863200,3),(517,1478422800,2),(517,1489312800,3),(517,1509872400,2),(517,1520762400,3),(517,1541322000,2),(517,1552212000,3),(517,1572771600,2),(517,1583661600,3),(517,1604221200,2),(517,1615716000,3),(517,1636275600,2),(517,1647165600,3),(517,1667725200,2),(517,1678615200,3),(517,1699174800,2),(517,1710064800,3),(517,1730624400,2),(517,1741514400,3),(517,1762074000,2),(517,1772964000,3),(517,1793523600,2),(517,1805018400,3),(517,1825578000,2),(517,1836468000,3),(517,1857027600,2),(517,1867917600,3),(517,1888477200,2),(517,1899367200,3),(517,1919926800,2),(517,1930816800,3),(517,1951376400,2),(517,1962871200,3),(517,1983430800,2),(517,1994320800,3),(517,2014880400,2),(517,2025770400,3),(517,2046330000,2),(517,2057220000,3),(517,2077779600,2),(517,2088669600,3),(517,2109229200,2),(517,2120119200,3),(517,2140678800,2),(518,-1514739600,1),(518,-1343066400,2),(518,-1234807200,1),(518,-1220292000,2),(518,-1207159200,1),(518,-1191344400,2),(518,-873828000,1),(518,-661539600,3),(518,28800,1),(518,828867600,4),(518,846403200,1),(518,860317200,4),(518,877852800,1),(518,891766800,4),(518,909302400,1),(518,923216400,4),(518,941356800,1),(518,954666000,4),(518,972806400,1),(518,989139600,4),(518,1001836800,1),(518,1018170000,4),(518,1035705600,1),(518,1049619600,4),(518,1067155200,1),(518,1081069200,4),(518,1099209600,1),(518,1112518800,4),(518,1130659200,1),(518,1143968400,4),(518,1162108800,1),(518,1175418000,4),(518,1193558400,1),(518,1207472400,4),(518,1225008000,1),(518,1238922000,4),(518,1256457600,1),(518,1270371600,4),(518,1288512000,1),(518,1301821200,4),(518,1319961600,1),(518,1333270800,4),(518,1351411200,1),(518,1365325200,4),(518,1382860800,1),(518,1396774800,4),(518,1414310400,1),(518,1428224400,4),(518,1445760000,1),(518,1459674000,4),(518,1477814400,1),(518,1491123600,4),(518,1509264000,1),(518,1522573200,4),(518,1540713600,1),(518,1554627600,4),(518,1572163200,1),(518,1586077200,4),(518,1603612800,1),(518,1617526800,4),(518,1635667200,1),(518,1648976400,4),(518,1667116800,1),(518,1680426000,4),(518,1698566400,1),(518,1712480400,4),(518,1730016000,1),(518,1743930000,4),(518,1761465600,1),(518,1775379600,4),(518,1792915200,1),(518,1806829200,4),(518,1824969600,1),(518,1838278800,4),(518,1856419200,1),(518,1869728400,4),(518,1887868800,1),(518,1901782800,4),(518,1919318400,1),(518,1933232400,4),(518,1950768000,1),(518,1964682000,4),(518,1982822400,1),(518,1996131600,4),(518,2014272000,1),(518,2027581200,4),(518,2045721600,1),(518,2059030800,4),(518,2077171200,1),(518,2091085200,4),(518,2108620800,1),(518,2122534800,4),(518,2140070400,1),(519,-1514739600,1),(519,-1343066400,2),(519,-1234807200,1),(519,-1220292000,2),(519,-1207159200,1),(519,-1191344400,2),(519,-975261600,3),(519,-963169200,2),(519,-917114400,3),(519,-907354800,2),(519,-821901600,4),(519,-810068400,2),(519,-627501600,3),(519,-612990000,2),(519,828864000,3),(519,846399600,2),(519,860313600,3),(519,877849200,2),(519,891763200,3),(519,909298800,2),(519,923212800,3),(519,941353200,2),(519,954662400,3),(519,972802800,2),(519,989136000,3),(519,1001833200,2),(519,1018166400,3),(519,1035702000,2),(519,1049616000,3),(519,1067151600,2),(519,1081065600,3),(519,1099206000,2),(519,1112515200,3),(519,1130655600,2),(519,1143964800,3),(519,1162105200,2),(519,1175414400,3),(519,1193554800,2),(519,1207468800,3),(519,1225004400,2),(519,1238918400,3),(519,1256454000,2),(519,1270368000,3),(519,1288508400,2),(519,1301817600,3),(519,1319958000,2),(519,1333267200,3),(519,1351407600,2),(519,1365321600,3),(519,1382857200,2),(519,1396771200,3),(519,1414306800,2),(519,1428220800,3),(519,1445756400,2),(519,1459670400,3),(519,1477810800,2),(519,1491120000,3),(519,1509260400,2),(519,1522569600,3),(519,1540710000,2),(519,1554624000,3),(519,1572159600,2),(519,1586073600,3),(519,1603609200,2),(519,1617523200,3),(519,1635663600,2),(519,1648972800,3),(519,1667113200,2),(519,1680422400,3),(519,1698562800,2),(519,1712476800,3),(519,1730012400,2),(519,1743926400,3),(519,1761462000,2),(519,1775376000,3),(519,1792911600,2),(519,1806825600,3),(519,1824966000,2),(519,1838275200,3),(519,1856415600,2),(519,1869724800,3),(519,1887865200,2),(519,1901779200,3),(519,1919314800,2),(519,1933228800,3),(519,1950764400,2),(519,1964678400,3),(519,1982818800,2),(519,1996128000,3),(519,2014268400,2),(519,2027577600,3),(519,2045718000,2),(519,2059027200,3),(519,2077167600,2),(519,2091081600,3),(519,2108617200,2),(519,2122531200,3),(519,2140066800,2),(520,-1330335000,0),(520,-1320057000,1),(520,-1300699800,2),(520,-1287396000,1),(520,-1269250200,2),(520,-1255946400,1),(520,-1237800600,2),(520,-1224496800,1),(520,-1206351000,2),(520,-1192442400,1),(520,-1174901400,2),(520,-1160992800,1),(520,-1143451800,2),(520,-1125914400,1),(520,-1112607000,2),(520,-1094464800,1),(520,-1081157400,2),(520,-1063015200,1),(520,-1049707800,2),(520,-1031565600,1),(520,-1018258200,2),(520,-1000116000,1),(520,-986808600,2),(520,-968061600,1),(520,-955359000,2),(520,-936612000,1),(520,-923304600,2),(520,-757425600,5),(520,152632800,3),(520,162309600,4),(520,183477600,3),(520,194968800,4),(520,215532000,3),(520,226418400,4),(520,246981600,3),(520,257868000,4),(520,278431200,3),(520,289317600,4),(520,309880800,3),(520,320767200,4),(520,341330400,3),(520,352216800,4),(520,372780000,3),(520,384271200,4),(520,404834400,3),(520,415720800,4),(520,436284000,3),(520,447170400,4),(520,467733600,3),(520,478620000,4),(520,499183200,3),(520,510069600,4),(520,530632800,3),(520,541519200,4),(520,562082400,3),(520,573573600,4),(520,594136800,3),(520,605023200,4),(520,623772000,3),(520,637682400,4),(520,655221600,3),(520,669132000,4),(520,686671200,3),(520,700581600,4),(520,718120800,3),(520,732636000,4),(520,749570400,3),(520,764085600,4),(520,781020000,3),(520,795535200,4),(520,812469600,3),(520,826984800,4),(520,844524000,3),(520,858434400,4),(520,875973600,3),(520,889884000,4),(520,907423200,3),(520,921938400,4),(520,938872800,3),(520,953388000,4),(520,970322400,3),(520,984837600,4),(520,1002376800,3),(520,1016287200,4),(520,1033826400,3),(520,1047736800,4),(520,1065276000,3),(520,1079791200,4),(520,1096725600,3),(520,1111240800,4),(520,1128175200,3),(520,1142690400,4),(520,1159624800,3),(520,1174140000,4),(520,1191074400,3),(520,1207404000,4),(520,1222524000,3),(520,1238853600,4),(520,1253973600,3),(520,1270303200,4),(520,1285423200,3),(520,1301752800,4),(520,1316872800,3),(520,1333202400,4),(520,1348927200,3),(520,1365256800,4),(520,1380376800,3),(520,1396706400,4),(520,1411826400,3),(520,1428156000,4),(520,1443276000,3),(520,1459605600,4),(520,1474725600,3),(520,1491055200,4),(520,1506175200,3),(520,1522504800,4),(520,1538229600,3),(520,1554559200,4),(520,1569679200,3),(520,1586008800,4),(520,1601128800,3),(520,1617458400,4),(520,1632578400,3),(520,1648908000,4),(520,1664028000,3),(520,1680357600,4),(520,1695477600,3),(520,1712412000,4),(520,1727532000,3),(520,1743861600,4),(520,1758981600,3),(520,1775311200,4),(520,1790431200,3),(520,1806760800,4),(520,1821880800,3),(520,1838210400,4),(520,1853330400,3),(520,1869660000,4),(520,1885384800,3),(520,1901714400,4),(520,1916834400,3),(520,1933164000,4),(520,1948284000,3),(520,1964613600,4),(520,1979733600,3),(520,1996063200,4),(520,2011183200,3),(520,2027512800,4),(520,2042632800,3),(520,2058962400,4),(520,2074687200,3),(520,2091016800,4),(520,2106136800,3),(520,2122466400,4),(520,2137586400,3),(521,-757426500,3),(521,152632800,1),(521,162309600,2),(521,183477600,1),(521,194968800,2),(521,215532000,1),(521,226418400,2),(521,246981600,1),(521,257868000,2),(521,278431200,1),(521,289317600,2),(521,309880800,1),(521,320767200,2),(521,341330400,1),(521,352216800,2),(521,372780000,1),(521,384271200,2),(521,404834400,1),(521,415720800,2),(521,436284000,1),(521,447170400,2),(521,467733600,1),(521,478620000,2),(521,499183200,1),(521,510069600,2),(521,530632800,1),(521,541519200,2),(521,562082400,1),(521,573573600,2),(521,594136800,1),(521,605023200,2),(521,623772000,1),(521,637682400,2),(521,655221600,1),(521,669132000,2),(521,686671200,1),(521,700581600,2),(521,718120800,1),(521,732636000,2),(521,749570400,1),(521,764085600,2),(521,781020000,1),(521,795535200,2),(521,812469600,1),(521,826984800,2),(521,844524000,1),(521,858434400,2),(521,875973600,1),(521,889884000,2),(521,907423200,1),(521,921938400,2),(521,938872800,1),(521,953388000,2),(521,970322400,1),(521,984837600,2),(521,1002376800,1),(521,1016287200,2),(521,1033826400,1),(521,1047736800,2),(521,1065276000,1),(521,1079791200,2),(521,1096725600,1),(521,1111240800,2),(521,1128175200,1),(521,1142690400,2),(521,1159624800,1),(521,1174140000,2),(521,1191074400,1),(521,1207404000,2),(521,1222524000,1),(521,1238853600,2),(521,1253973600,1),(521,1270303200,2),(521,1285423200,1),(521,1301752800,2),(521,1316872800,1),(521,1333202400,2),(521,1348927200,1),(521,1365256800,2),(521,1380376800,1),(521,1396706400,2),(521,1411826400,1),(521,1428156000,2),(521,1443276000,1),(521,1459605600,2),(521,1474725600,1),(521,1491055200,2),(521,1506175200,1),(521,1522504800,2),(521,1538229600,1),(521,1554559200,2),(521,1569679200,1),(521,1586008800,2),(521,1601128800,1),(521,1617458400,2),(521,1632578400,1),(521,1648908000,2),(521,1664028000,1),(521,1680357600,2),(521,1695477600,1),(521,1712412000,2),(521,1727532000,1),(521,1743861600,2),(521,1758981600,1),(521,1775311200,2),(521,1790431200,1),(521,1806760800,2),(521,1821880800,1),(521,1838210400,2),(521,1853330400,1),(521,1869660000,2),(521,1885384800,1),(521,1901714400,2),(521,1916834400,1),(521,1933164000,2),(521,1948284000,1),(521,1964613600,2),(521,1979733600,1),(521,1996063200,2),(521,2011183200,1),(521,2027512800,2),(521,2042632800,1),(521,2058962400,2),(521,2074687200,1),(521,2091016800,2),(521,2106136800,1),(521,2122466400,2),(521,2137586400,1),(522,-1633273200,0),(522,-1615132800,1),(522,-1601823600,0),(522,-1583683200,1),(522,-1570374000,0),(522,-1551628800,1),(522,-1538924400,0),(522,-1534089600,1),(522,-880210800,2),(522,-769395600,3),(522,-765388800,1),(522,-147884400,0),(522,-131558400,1),(522,-116434800,0),(522,-100108800,1),(522,-84380400,0),(522,-68659200,1),(522,-52930800,0),(522,-37209600,1),(522,-21481200,0),(522,-5760000,1),(522,9968400,0),(522,25689600,1),(522,41418000,0),(522,57744000,1),(522,73472400,0),(522,89193600,1),(522,104922000,0),(522,120643200,1),(522,126694800,0),(522,152092800,1),(522,162378000,0),(522,183542400,1),(522,199270800,0),(522,215596800,1),(522,230720400,0),(522,247046400,1),(522,262774800,0),(522,278496000,1),(522,294224400,0),(522,309945600,1),(522,325674000,0),(522,341395200,1),(522,357123600,0),(522,372844800,1),(522,388573200,0),(522,404899200,1),(522,420022800,0),(522,436348800,1),(522,452077200,0),(522,467798400,1),(522,483526800,0),(522,499248000,1),(522,514976400,0),(522,530697600,1),(522,544611600,0),(522,562147200,1),(522,576061200,0),(522,594201600,1),(522,607510800,0),(522,625651200,1),(522,638960400,0),(522,657100800,1),(522,671014800,0),(522,688550400,1),(522,702464400,0),(522,720000000,1),(522,733914000,0),(522,752054400,1),(522,765363600,0),(522,783504000,1),(522,796813200,0),(522,814953600,1),(522,828867600,0),(522,846403200,1),(522,860317200,0),(522,877852800,1),(522,891766800,0),(522,909302400,1),(522,923216400,0),(522,941356800,1),(522,954666000,0),(522,972806400,1),(522,986115600,0),(522,1004256000,1),(522,1018170000,0),(522,1035705600,1),(522,1049619600,0),(522,1067155200,1),(522,1081069200,0),(522,1099209600,1),(522,1112518800,0),(522,1130659200,1),(522,1143968400,0),(522,1162108800,1),(522,1173603600,0),(522,1194163200,1),(522,1205053200,0),(522,1225612800,1),(522,1236502800,0),(522,1257062400,1),(522,1268557200,0),(522,1289116800,1),(522,1300006800,0),(522,1320566400,1),(522,1331456400,0),(522,1352016000,1),(522,1362906000,0),(522,1383465600,1),(522,1394355600,0),(522,1414915200,1),(522,1425805200,0),(522,1446364800,1),(522,1457859600,0),(522,1478419200,1),(522,1489309200,0),(522,1509868800,1),(522,1520758800,0),(522,1541318400,1),(522,1552208400,0),(522,1572768000,1),(522,1583658000,0),(522,1604217600,1),(522,1615712400,0),(522,1636272000,1),(522,1647162000,0),(522,1667721600,1),(522,1678611600,0),(522,1699171200,1),(522,1710061200,0),(522,1730620800,1),(522,1741510800,0),(522,1762070400,1),(522,1772960400,0),(522,1793520000,1),(522,1805014800,0),(522,1825574400,1),(522,1836464400,0),(522,1857024000,1),(522,1867914000,0),(522,1888473600,1),(522,1899363600,0),(522,1919923200,1),(522,1930813200,0),(522,1951372800,1),(522,1962867600,0),(522,1983427200,1),(522,1994317200,0),(522,2014876800,1),(522,2025766800,0),(522,2046326400,1),(522,2057216400,0),(522,2077776000,1),(522,2088666000,0),(522,2109225600,1),(522,2120115600,0),(522,2140675200,1),(523,-933494400,0),(523,-923130000,1),(523,-908784000,0),(523,-891594000,1),(523,515520000,0),(523,527007600,1),(523,545155200,0),(523,558457200,1),(523,576604800,0),(523,589906800,1),(523,608659200,0),(523,621961200,1),(523,640108800,0),(523,653410800,1),(523,671558400,0),(523,684860400,1),(524,-1633269600,0),(524,-1615129200,1),(524,-1601820000,0),(524,-1583679600,1),(524,-880207200,2),(524,-769395600,3),(524,-765385200,1),(524,-84376800,0),(524,-68655600,1),(524,-52927200,0),(524,-37206000,1),(524,-21477600,0),(524,-5756400,1),(524,9972000,0),(524,25693200,1),(524,41421600,0),(524,57747600,1),(524,73476000,0),(524,89197200,1),(524,104925600,0),(524,120646800,1),(524,126698400,0),(524,152096400,1),(524,162381600,0),(524,183546000,1),(524,199274400,0),(524,215600400,1),(524,230724000,0),(524,247050000,1),(524,262778400,0),(524,278499600,1),(524,294228000,0),(524,309949200,1),(524,325677600,0),(524,341398800,1),(524,357127200,0),(524,372848400,1),(524,388576800,0),(524,404902800,1),(524,420026400,0),(524,436352400,1),(524,452080800,0),(524,467802000,1),(524,483530400,0),(524,499251600,1),(524,514980000,0),(524,530701200,1),(524,544615200,0),(524,562150800,1),(524,576064800,0),(524,594205200,1),(524,607514400,0),(524,625654800,1),(524,638964000,0),(524,657104400,1),(524,671018400,0),(524,688554000,1),(524,702468000,0),(524,720003600,1),(524,733917600,0),(524,752058000,1),(524,765367200,0),(524,783507600,1),(524,796816800,0),(524,814957200,1),(524,828871200,0),(524,846406800,1),(524,860320800,0),(524,877856400,1),(524,891770400,0),(524,909306000,1),(524,923220000,0),(524,941360400,1),(524,954669600,0),(524,972810000,1),(524,986119200,0),(524,1004259600,1),(524,1018173600,0),(524,1035709200,1),(524,1049623200,0),(524,1067158800,1),(524,1081072800,0),(524,1099213200,1),(524,1112522400,0),(524,1130662800,1),(524,1143972000,0),(524,1162112400,1),(524,1173607200,0),(524,1194166800,1),(524,1205056800,0),(524,1225616400,1),(524,1236506400,0),(524,1257066000,1),(524,1268560800,0),(524,1289120400,1),(524,1300010400,0),(524,1320570000,1),(524,1331460000,0),(524,1352019600,1),(524,1362909600,0),(524,1383469200,1),(524,1394359200,0),(524,1414918800,1),(524,1425808800,0),(524,1446368400,1),(524,1457863200,0),(524,1478422800,1),(524,1489312800,0),(524,1509872400,1),(524,1520762400,0),(524,1541322000,1),(524,1552212000,0),(524,1572771600,1),(524,1583661600,0),(524,1604221200,1),(524,1615716000,0),(524,1636275600,1),(524,1647165600,0),(524,1667725200,1),(524,1678615200,0),(524,1699174800,1),(524,1710064800,0),(524,1730624400,1),(524,1741514400,0),(524,1762074000,1),(524,1772964000,0),(524,1793523600,1),(524,1805018400,0),(524,1825578000,1),(524,1836468000,0),(524,1857027600,1),(524,1867917600,0),(524,1888477200,1),(524,1899367200,0),(524,1919926800,1),(524,1930816800,0),(524,1951376400,1),(524,1962871200,0),(524,1983430800,1),(524,1994320800,0),(524,2014880400,1),(524,2025770400,0),(524,2046330000,1),(524,2057220000,0),(524,2077779600,1),(524,2088669600,0),(524,2109229200,1),(524,2120119200,0),(524,2140678800,1),(525,-1861878784,1),(525,-631110600,3),(525,1285498800,2),(525,1301752800,3),(525,1316872800,2),(525,1325239200,5),(525,1333202400,4),(525,1348927200,5),(525,1365256800,4),(525,1380376800,5),(525,1396706400,4),(525,1411826400,5),(525,1428156000,4),(525,1443276000,5),(525,1459605600,4),(525,1474725600,5),(525,1491055200,4),(525,1506175200,5),(525,1522504800,4),(525,1538229600,5),(525,1554559200,4),(525,1569679200,5),(525,1586008800,4),(525,1601128800,5),(525,1617458400,4),(525,1632578400,5),(525,1648908000,4),(525,1664028000,5),(525,1680357600,4),(525,1695477600,5),(525,1712412000,4),(525,1727532000,5),(525,1743861600,4),(525,1758981600,5),(525,1775311200,4),(525,1790431200,5),(525,1806760800,4),(525,1821880800,5),(525,1838210400,4),(525,1853330400,5),(525,1869660000,4),(525,1885384800,5),(525,1901714400,4),(525,1916834400,5),(525,1933164000,4),(525,1948284000,5),(525,1964613600,4),(525,1979733600,5),(525,1996063200,4),(525,2011183200,5),(525,2027512800,4),(525,2042632800,5),(525,2058962400,4),(525,2074687200,5),(525,2091016800,4),(525,2106136800,5),(525,2122466400,4),(525,2137586400,5),(526,-1330335000,0),(526,-1320057000,1),(526,-1300699800,2),(526,-1287396000,1),(526,-1269250200,2),(526,-1255946400,1),(526,-1237800600,2),(526,-1224496800,1),(526,-1206351000,2),(526,-1192442400,1),(526,-1174901400,2),(526,-1160992800,1),(526,-1143451800,2),(526,-1125914400,1),(526,-1112607000,2),(526,-1094464800,1),(526,-1081157400,2),(526,-1063015200,1),(526,-1049707800,2),(526,-1031565600,1),(526,-1018258200,2),(526,-1000116000,1),(526,-986808600,2),(526,-968061600,1),(526,-955359000,2),(526,-936612000,1),(526,-923304600,2),(526,-757425600,5),(526,152632800,3),(526,162309600,4),(526,183477600,3),(526,194968800,4),(526,215532000,3),(526,226418400,4),(526,246981600,3),(526,257868000,4),(526,278431200,3),(526,289317600,4),(526,309880800,3),(526,320767200,4),(526,341330400,3),(526,352216800,4),(526,372780000,3),(526,384271200,4),(526,404834400,3),(526,415720800,4),(526,436284000,3),(526,447170400,4),(526,467733600,3),(526,478620000,4),(526,499183200,3),(526,510069600,4),(526,530632800,3),(526,541519200,4),(526,562082400,3),(526,573573600,4),(526,594136800,3),(526,605023200,4),(526,623772000,3),(526,637682400,4),(526,655221600,3),(526,669132000,4),(526,686671200,3),(526,700581600,4),(526,718120800,3),(526,732636000,4),(526,749570400,3),(526,764085600,4),(526,781020000,3),(526,795535200,4),(526,812469600,3),(526,826984800,4),(526,844524000,3),(526,858434400,4),(526,875973600,3),(526,889884000,4),(526,907423200,3),(526,921938400,4),(526,938872800,3),(526,953388000,4),(526,970322400,3),(526,984837600,4),(526,1002376800,3),(526,1016287200,4),(526,1033826400,3),(526,1047736800,4),(526,1065276000,3),(526,1079791200,4),(526,1096725600,3),(526,1111240800,4),(526,1128175200,3),(526,1142690400,4),(526,1159624800,3),(526,1174140000,4),(526,1191074400,3),(526,1207404000,4),(526,1222524000,3),(526,1238853600,4),(526,1253973600,3),(526,1270303200,4),(526,1285423200,3),(526,1301752800,4),(526,1316872800,3),(526,1333202400,4),(526,1348927200,3),(526,1365256800,4),(526,1380376800,3),(526,1396706400,4),(526,1411826400,3),(526,1428156000,4),(526,1443276000,3),(526,1459605600,4),(526,1474725600,3),(526,1491055200,4),(526,1506175200,3),(526,1522504800,4),(526,1538229600,3),(526,1554559200,4),(526,1569679200,3),(526,1586008800,4),(526,1601128800,3),(526,1617458400,4),(526,1632578400,3),(526,1648908000,4),(526,1664028000,3),(526,1680357600,4),(526,1695477600,3),(526,1712412000,4),(526,1727532000,3),(526,1743861600,4),(526,1758981600,3),(526,1775311200,4),(526,1790431200,3),(526,1806760800,4),(526,1821880800,3),(526,1838210400,4),(526,1853330400,3),(526,1869660000,4),(526,1885384800,3),(526,1901714400,4),(526,1916834400,3),(526,1933164000,4),(526,1948284000,3),(526,1964613600,4),(526,1979733600,3),(526,1996063200,4),(526,2011183200,3),(526,2027512800,4),(526,2042632800,3),(526,2058962400,4),(526,2074687200,3),(526,2091016800,4),(526,2106136800,3),(526,2122466400,4),(526,2137586400,3),(527,-868010400,1),(527,-768906000,0),(527,1419696000,2),(528,-757426500,3),(528,152632800,1),(528,162309600,2),(528,183477600,1),(528,194968800,2),(528,215532000,1),(528,226418400,2),(528,246981600,1),(528,257868000,2),(528,278431200,1),(528,289317600,2),(528,309880800,1),(528,320767200,2),(528,341330400,1),(528,352216800,2),(528,372780000,1),(528,384271200,2),(528,404834400,1),(528,415720800,2),(528,436284000,1),(528,447170400,2),(528,467733600,1),(528,478620000,2),(528,499183200,1),(528,510069600,2),(528,530632800,1),(528,541519200,2),(528,562082400,1),(528,573573600,2),(528,594136800,1),(528,605023200,2),(528,623772000,1),(528,637682400,2),(528,655221600,1),(528,669132000,2),(528,686671200,1),(528,700581600,2),(528,718120800,1),(528,732636000,2),(528,749570400,1),(528,764085600,2),(528,781020000,1),(528,795535200,2),(528,812469600,1),(528,826984800,2),(528,844524000,1),(528,858434400,2),(528,875973600,1),(528,889884000,2),(528,907423200,1),(528,921938400,2),(528,938872800,1),(528,953388000,2),(528,970322400,1),(528,984837600,2),(528,1002376800,1),(528,1016287200,2),(528,1033826400,1),(528,1047736800,2),(528,1065276000,1),(528,1079791200,2),(528,1096725600,1),(528,1111240800,2),(528,1128175200,1),(528,1142690400,2),(528,1159624800,1),(528,1174140000,2),(528,1191074400,1),(528,1207404000,2),(528,1222524000,1),(528,1238853600,2),(528,1253973600,1),(528,1270303200,2),(528,1285423200,1),(528,1301752800,2),(528,1316872800,1),(528,1333202400,2),(528,1348927200,1),(528,1365256800,2),(528,1380376800,1),(528,1396706400,2),(528,1411826400,1),(528,1428156000,2),(528,1443276000,1),(528,1459605600,2),(528,1474725600,1),(528,1491055200,2),(528,1506175200,1),(528,1522504800,2),(528,1538229600,1),(528,1554559200,2),(528,1569679200,1),(528,1586008800,2),(528,1601128800,1),(528,1617458400,2),(528,1632578400,1),(528,1648908000,2),(528,1664028000,1),(528,1680357600,2),(528,1695477600,1),(528,1712412000,2),(528,1727532000,1),(528,1743861600,2),(528,1758981600,1),(528,1775311200,2),(528,1790431200,1),(528,1806760800,2),(528,1821880800,1),(528,1838210400,2),(528,1853330400,1),(528,1869660000,2),(528,1885384800,1),(528,1901714400,2),(528,1916834400,1),(528,1933164000,2),(528,1948284000,1),(528,1964613600,2),(528,1979733600,1),(528,1996063200,2),(528,2011183200,1),(528,2027512800,2),(528,2042632800,1),(528,2058962400,2),(528,2074687200,1),(528,2091016800,2),(528,2106136800,1),(528,2122466400,2),(528,2137586400,1),(530,-1178124152,3),(530,-36619200,1),(530,-23922000,2),(530,-3355200,1),(530,7527600,2),(530,24465600,1),(530,37767600,2),(530,55915200,1),(530,69217200,2),(530,87969600,1),(530,100666800,2),(530,118209600,1),(530,132116400,2),(530,150868800,1),(530,163566000,2),(530,182318400,1),(530,195620400,2),(530,213768000,1),(530,227070000,2),(530,245217600,1),(530,258519600,2),(530,277272000,1),(530,289969200,2),(530,308721600,1),(530,321418800,2),(530,340171200,1),(530,353473200,2),(530,371620800,1),(530,384922800,4),(530,403070400,5),(530,416372400,4),(530,434520000,5),(530,447822000,4),(530,466574400,5),(530,479271600,4),(530,498024000,5),(530,510721200,4),(530,529473600,5),(530,545194800,4),(530,560923200,5),(530,574225200,4),(530,592372800,5),(530,605674800,4),(530,624427200,5),(530,637124400,4),(530,653457600,5),(530,668574000,4),(530,687326400,5),(530,700628400,4),(530,718776000,5),(530,732078000,4),(530,750225600,5),(530,763527600,4),(530,781675200,5),(530,794977200,4),(530,813729600,5),(530,826426800,4),(530,845179200,5),(530,859690800,4),(530,876628800,5),(530,889930800,4),(530,906868800,5),(530,923194800,4),(530,939528000,5),(530,952830000,4),(530,971582400,5),(530,984279600,4),(530,1003032000,5),(530,1015729200,4),(530,1034481600,5),(530,1047178800,4),(530,1065931200,5),(530,1079233200,4),(530,1097380800,5),(530,1110682800,4),(530,1128830400,5),(530,1142132400,4),(530,1160884800,5),(530,1173582000,4),(530,1192334400,5),(530,1206846000,4),(530,1223784000,5),(530,1237086000,4),(530,1255233600,5),(530,1270350000,4),(530,1286683200,5),(530,1304823600,4),(530,1313899200,5),(530,1335668400,4),(530,1346558400,5),(530,1367118000,4),(530,1378612800,5),(530,1398567600,4),(530,1410062400,5),(530,1463281200,4),(530,1471147200,5),(530,1494730800,4),(530,1502596800,5),(530,1526180400,4),(530,1534046400,5),(530,1557630000,4),(530,1565496000,5),(530,1589079600,4),(530,1596945600,5),(530,1620529200,4),(530,1629000000,5),(530,1652583600,4),(530,1660449600,5),(530,1684033200,4),(530,1691899200,5),(530,1715482800,4),(530,1723348800,5),(530,1746932400,4),(530,1754798400,5),(530,1778382000,4),(530,1786248000,5),(530,1809831600,4),(530,1818302400,5),(530,1841886000,4),(530,1849752000,5),(530,1873335600,4),(530,1881201600,5),(530,1904785200,4),(530,1912651200,5),(530,1936234800,4),(530,1944100800,5),(530,1967684400,4),(530,1976155200,5),(530,1999738800,4),(530,2007604800,5),(530,2031188400,4),(530,2039054400,5),(530,2062638000,4),(530,2070504000,5),(530,2094087600,4),(530,2101953600,5),(530,2125537200,4),(530,2133403200,5),(531,-1829387596,2),(531,433256400,1),(531,448977600,2),(531,467298000,1),(531,480427200,2),(531,496760400,1),(531,511876800,2),(531,528210000,1),(531,543931200,2),(531,559659600,1),(531,575380800,2),(531,591109200,1),(531,606830400,2),(531,622558800,1),(531,638280000,2),(531,654008400,1),(531,669729600,2),(531,686062800,1),(531,696340800,2),(531,719931600,1),(531,727790400,2),(532,307627200,1),(532,788871600,2),(533,1325242800,1),(534,-1709985344,2),(534,909842400,1),(534,920124000,2),(534,941896800,1),(534,951573600,2),(534,1259416800,1),(534,1269698400,2),(534,1287842400,1),(534,1299333600,2),(534,1319292000,1),(534,1327154400,2),(534,1350741600,1),(534,1358604000,2),(534,1382796000,1),(534,1390050000,2),(534,1414850400,1),(534,1421503200,2),(534,1446300000,1),(534,1452952800,2),(534,1478354400,1),(534,1484402400,2),(534,1509804000,1),(534,1515852000,2),(534,1541253600,1),(534,1547906400,2),(534,1572703200,1),(534,1579356000,2),(534,1604152800,1),(534,1610805600,2),(534,1636207200,1),(534,1642255200,2),(534,1667656800,1),(534,1673704800,2),(534,1699106400,1),(534,1705154400,2),(534,1730556000,1),(534,1737208800,2),(534,1762005600,1),(534,1768658400,2),(534,1793455200,1),(534,1800108000,2),(534,1825509600,1),(534,1831557600,2),(534,1856959200,1),(534,1863007200,2),(534,1888408800,1),(534,1895061600,2),(534,1919858400,1),(534,1926511200,2),(534,1951308000,1),(534,1957960800,2),(534,1983362400,1),(534,1989410400,2),(534,2014812000,1),(534,2020860000,2),(534,2046261600,1),(534,2052309600,2),(534,2077711200,1),(534,2084364000,2),(534,2109160800,1),(534,2115813600,2),(534,2140610400,1),(534,2147263200,2),(536,-1230746496,1),(536,504939600,3),(536,722930400,2),(536,728888400,3),(537,-1806678012,1),(538,-1806748788,1),(539,977493600,1),(540,-1157283000,1),(540,-1155436200,0),(540,-880198200,1),(540,-765376200,0),(540,-712150200,2),(541,-1157283000,1),(541,-1155436200,0),(541,-880198200,1),(541,-765376200,0),(541,-712150200,2),(542,307622400,1),(542,788868000,2),(543,-7988400,1),(543,915105600,0),(544,-7988400,1),(544,745848000,2),(545,-7988400,1),(546,-1806676920,1),(547,-1861879032,1),(548,-1545131260,1),(548,-877347000,2),(548,-800960400,1),(548,294323400,3),(549,-599575200,1),(549,276089400,2),(550,-599656320,1),(550,152029800,2),(550,162912600,1),(550,1443882600,3),(551,-1829387148,2),(551,250002000,1),(551,257342400,2),(551,281451600,1),(551,288878400,2),(551,849366000,3),(551,857228400,4),(552,-1861879032,1),(554,893665800,1),(558,279714600,2),(558,289387800,1),(558,309952800,2),(558,320837400,1),(558,341402400,2),(558,352287000,1),(558,372852000,2),(558,384341400,1),(558,404906400,2),(558,415791000,1),(558,436356000,2),(558,447240600,1),(558,467805600,2),(558,478690200,1),(558,499255200,2),(558,510139800,1),(558,530704800,2),(558,541589400,1),(558,562154400,2),(558,573643800,1),(558,594208800,2),(558,605093400,1),(558,625658400,2),(558,636543000,1),(558,657108000,2),(558,667992600,1),(559,977493600,1),(560,-1861879032,1),(561,-1806674504,1),(563,-915193200,1),(563,939214800,2),(563,953384400,3),(563,973342800,4),(563,980596800,1),(563,1004792400,4),(563,1012046400,1),(563,1478350800,4),(563,1484398800,1),(568,-1717032240,2),(568,-1693706400,1),(568,-1680483600,2),(568,-1663455600,3),(568,-1650150000,4),(568,-1632006000,3),(568,-1618700400,7),(568,-1600473600,5),(568,-1587168000,6),(568,-1501725600,2),(568,-931734000,1),(568,-857257200,4),(568,-844556400,3),(568,-828226800,4),(568,-812502000,3),(568,-796874400,1),(568,-796608000,2),(568,-778726800,1),(568,-762660000,2),(568,-748486800,3),(568,-733273200,4),(568,-715215600,3),(568,-701910000,4),(568,-684975600,3),(568,-670460400,4),(568,-654130800,3),(568,-639010800,4),(568,-397094400,3),(568,-386812800,4),(568,-371088000,3),(568,-355363200,4),(568,-334195200,3),(568,-323308800,4),(568,-307584000,3),(568,-291859200,4),(568,-271296000,3),(568,-260409600,4),(568,-239846400,3),(568,-228960000,4),(568,-208396800,3),(568,-197510400,4),(568,-176342400,3),(568,-166060800,4),(568,220921200,2),(568,228873600,3),(568,243993600,4),(568,260323200,3),(568,276048000,4),(568,291772800,3),(568,307497600,4),(568,323827200,3),(568,338947200,4),(568,354672000,3),(568,370396800,4),(568,386121600,3),(568,401846400,4),(568,417571200,3),(568,433296000,4),(568,449020800,3),(568,465350400,4),(568,481075200,3),(568,496800000,4),(568,512524800,3),(568,528249600,4),(568,543974400,3),(568,559699200,4),(568,567990000,2),(568,575427600,8),(568,591152400,9),(568,606877200,8),(568,622602000,9),(568,638326800,8),(568,654656400,9),(568,670381200,8),(568,686106000,9),(568,701830800,8),(568,717555600,9),(568,733280400,8),(568,749005200,9),(568,764730000,8),(568,780454800,9),(568,796179600,8),(568,811904400,9),(568,828234000,8),(568,846378000,9),(568,859683600,8),(568,877827600,9),(568,891133200,8),(568,909277200,9),(568,922582800,8),(568,941331600,9),(568,954032400,8),(568,972781200,9),(568,985482000,8),(568,1004230800,9),(568,1017536400,8),(568,1035680400,9),(568,1048986000,8),(568,1067130000,9),(568,1080435600,8),(568,1099184400,9),(568,1111885200,8),(568,1130634000,9),(568,1143334800,8),(568,1162083600,9),(568,1174784400,8),(568,1193533200,9),(568,1206838800,8),(568,1224982800,9),(568,1238288400,8),(568,1256432400,9),(568,1269738000,8),(568,1288486800,9),(568,1301187600,8),(568,1319936400,9),(568,1332637200,8),(568,1351386000,9),(568,1364691600,8),(568,1382835600,9),(568,1396141200,8),(568,1414285200,9),(568,1427590800,8),(568,1445734800,9),(568,1459040400,8),(568,1477789200,9),(568,1490490000,8),(568,1509238800,9),(568,1521939600,8),(568,1540688400,9),(568,1553994000,8),(568,1572138000,9),(568,1585443600,8),(568,1603587600,9),(568,1616893200,8),(568,1635642000,9),(568,1648342800,8),(568,1667091600,9),(568,1679792400,8),(568,1698541200,9),(568,1711846800,8),(568,1729990800,9),(568,1743296400,8),(568,1761440400,9),(568,1774746000,8),(568,1792890000,9),(568,1806195600,8),(568,1824944400,9),(568,1837645200,8),(568,1856394000,9),(568,1869094800,8),(568,1887843600,9),(568,1901149200,8),(568,1919293200,9),(568,1932598800,8),(568,1950742800,9),(568,1964048400,8),(568,1982797200,9),(568,1995498000,8),(568,2014246800,9),(568,2026947600,8),(568,2045696400,9),(568,2058397200,8),(568,2077146000,9),(568,2090451600,8),(568,2108595600,9),(568,2121901200,8),(568,2140045200,9),(569,-1830384000,6),(569,-1689555600,1),(569,-1677801600,2),(569,-1667437200,3),(569,-1647738000,4),(569,-1635814800,3),(569,-1616202000,4),(569,-1604365200,3),(569,-1584666000,4),(569,-1572742800,3),(569,-1553043600,4),(569,-1541206800,3),(569,-1521507600,4),(569,-1442451600,3),(569,-1426813200,4),(569,-1379293200,3),(569,-1364778000,4),(569,-1348448400,3),(569,-1333328400,4),(569,-1316394000,3),(569,-1301274000,4),(569,-1284339600,3),(569,-1269824400,4),(569,-1221440400,3),(569,-1206925200,4),(569,-1191200400,3),(569,-1175475600,4),(569,-1127696400,3),(569,-1111971600,4),(569,-1096851600,3),(569,-1080522000,4),(569,-1063587600,3),(569,-1049072400,4),(569,-1033347600,3),(569,-1017622800,4),(569,-1002502800,3),(569,-986173200,4),(569,-969238800,3),(569,-950490000,4),(569,-942022800,3),(569,-922669200,4),(569,-906944400,3),(569,-891133200,4),(569,-877309200,3),(569,-873684000,5),(569,-864007200,3),(569,-857955600,4),(569,-845859600,3),(569,-842839200,5),(569,-831348000,3),(569,-825901200,4),(569,-814410000,3),(569,-810784800,5),(569,-799898400,3),(569,-794451600,4),(569,-782960400,3),(569,-779335200,5),(569,-768448800,3),(569,-763002000,4),(569,-749091600,3),(569,-733366800,4),(569,-717631200,3),(569,-701906400,4),(569,-686181600,3),(569,-670456800,4),(569,-654732000,3),(569,-639007200,4),(569,-591832800,3),(569,-575503200,4),(569,-559778400,3),(569,-544053600,4),(569,-528328800,3),(569,-512604000,4),(569,-496879200,3),(569,-481154400,4),(569,-465429600,3),(569,-449704800,4),(569,-433980000,3),(569,-417650400,4),(569,-401925600,3),(569,-386200800,4),(569,-370476000,3),(569,-354751200,4),(569,-339026400,3),(569,-323301600,4),(569,-307576800,3),(569,-291852000,4),(569,-276127200,3),(569,-260402400,4),(569,-244677600,3),(569,-228348000,4),(569,-212623200,3),(569,-196898400,4),(569,-181173600,3),(569,-165448800,4),(569,-149724000,3),(569,-133999200,4),(569,-118274400,7),(569,212544000,2),(569,228268800,3),(569,243993600,4),(569,260323200,3),(569,276048000,4),(569,291772800,3),(569,307501200,4),(569,323222400,3),(569,338950800,4),(569,354675600,3),(569,370400400,4),(569,386125200,3),(569,401850000,4),(569,417578400,3),(569,433299600,4),(569,449024400,3),(569,465354000,4),(569,481078800,3),(569,496803600,4),(569,512528400,3),(569,528253200,4),(569,543978000,3),(569,559702800,4),(569,575427600,3),(569,591152400,4),(569,606877200,3),(569,622602000,4),(569,638326800,3),(569,654656400,4),(569,670381200,3),(569,686106000,4),(569,701830800,3),(569,717555600,8),(569,733280400,9),(569,749005200,8),(569,764730000,9),(569,780454800,8),(569,796179600,9),(569,811904400,8),(569,828234000,10),(569,846378000,6),(569,859683600,10),(569,877827600,6),(569,891133200,10),(569,909277200,6),(569,922582800,10),(569,941331600,6),(569,954032400,10),(569,972781200,6),(569,985482000,10),(569,1004230800,6),(569,1017536400,10),(569,1035680400,6),(569,1048986000,10),(569,1067130000,6),(569,1080435600,10),(569,1099184400,6),(569,1111885200,10),(569,1130634000,6),(569,1143334800,10),(569,1162083600,6),(569,1174784400,10),(569,1193533200,6),(569,1206838800,10),(569,1224982800,6),(569,1238288400,10),(569,1256432400,6),(569,1269738000,10),(569,1288486800,6),(569,1301187600,10),(569,1319936400,6),(569,1332637200,10),(569,1351386000,6),(569,1364691600,10),(569,1382835600,6),(569,1396141200,10),(569,1414285200,6),(569,1427590800,10),(569,1445734800,6),(569,1459040400,10),(569,1477789200,6),(569,1490490000,10),(569,1509238800,6),(569,1521939600,10),(569,1540688400,6),(569,1553994000,10),(569,1572138000,6),(569,1585443600,10),(569,1603587600,6),(569,1616893200,10),(569,1635642000,6),(569,1648342800,10),(569,1667091600,6),(569,1679792400,10),(569,1698541200,6),(569,1711846800,10),(569,1729990800,6),(569,1743296400,10),(569,1761440400,6),(569,1774746000,10),(569,1792890000,6),(569,1806195600,10),(569,1824944400,6),(569,1837645200,10),(569,1856394000,6),(569,1869094800,10),(569,1887843600,6),(569,1901149200,10),(569,1919293200,6),(569,1932598800,10),(569,1950742800,6),(569,1964048400,10),(569,1982797200,6),(569,1995498000,10),(569,2014246800,6),(569,2026947600,10),(569,2045696400,6),(569,2058397200,10),(569,2077146000,6),(569,2090451600,10),(569,2108595600,6),(569,2121901200,10),(569,2140045200,6),(570,-1017820800,1),(570,-766224000,0),(570,-745833600,2),(570,-733827600,0),(570,-716889600,2),(570,-699613200,0),(570,-683884800,2),(570,-670669200,0),(570,-652348800,2),(570,-639133200,0),(570,-620812800,2),(570,-607597200,0),(570,-589276800,2),(570,-576061200,0),(570,-562924800,2),(570,-541760400,0),(570,-528710400,2),(570,-510224400,0),(570,-497174400,2),(570,-478688400,0),(570,-465638400,2),(570,-449830800,0),(570,-434016000,2),(570,-418208400,0),(570,-402480000,2),(570,-386672400,0),(570,-370944000,2),(570,-355136400,0),(570,-339408000,2),(570,-323600400,0),(570,-302515200,2),(570,-291978000,0),(570,-270979200,2),(570,-260442000,0),(570,133977600,2),(570,149785200,0),(570,165513600,2),(570,181321200,0),(570,299606400,2),(570,307551600,0),(571,-1948782472,1),(571,-1830414600,2),(571,-767350800,3),(571,-498128400,1),(571,-462702600,4),(571,-451733400,1),(571,-429784200,4),(571,-418296600,1),(571,-399544200,4),(571,-387451800,1),(571,-368094600,4),(571,-356002200,1),(571,-336645000,4),(571,-324552600,1),(571,-305195400,4),(571,-293103000,1),(571,-264933000,3),(571,547578000,5),(571,560883600,3),(571,579027600,5),(571,592333200,3),(572,-2038200925,1),(572,-1167634800,2),(572,-1073028000,3),(572,-894180000,4),(572,-879665400,5),(572,-767005200,4),(572,378664200,6),(573,-1869875816,2),(573,-1693706400,1),(573,-1680490800,2),(573,-1570413600,1),(573,-1552186800,2),(573,-1538359200,1),(573,-1522551600,2),(573,-1507514400,1),(573,-1490583600,2),(573,-1440208800,1),(573,-1428030000,2),(573,-1409709600,1),(573,-1396494000,2),(573,-931140000,1),(573,-922762800,2),(573,-917834400,1),(573,-892436400,2),(573,-875844000,1),(573,-857358000,2),(573,-781063200,1),(573,-764737200,2),(573,-744343200,1),(573,-733806000,2),(573,-716436000,1),(573,-701924400,2),(573,-684986400,1),(573,-670474800,2),(573,-654141600,1),(573,-639025200,2),(573,-621828000,1),(573,-606970800,2),(573,-590032800,1),(573,-575434800,2),(573,-235620000,1),(573,-228279600,2),(573,-177732000,1),(573,-165726000,2),(573,10533600,1),(573,23835600,2),(573,41983200,1),(573,55285200,2),(573,74037600,1),(573,87339600,2),(573,107910000,1),(573,121219200,2),(573,133920000,1),(573,152676000,2),(573,165362400,1),(573,183502800,2),(573,202428000,1),(573,215557200,2),(573,228866400,1),(573,245797200,2),(573,260316000,1),(573,277246800,3),(573,308779200,4),(573,323827200,3),(573,340228800,4),(573,354672000,3),(573,371678400,4),(573,386121600,3),(573,403128000,4),(573,428446800,3),(573,433886400,4),(573,482792400,1),(573,496702800,2),(573,512521200,5),(573,528246000,6),(573,543970800,5),(573,559695600,6),(573,575420400,5),(573,591145200,6),(573,606870000,5),(573,622594800,6),(573,638319600,5),(573,654649200,6),(573,670374000,5),(573,686098800,6),(573,701823600,5),(573,717548400,6),(573,733273200,5),(573,748998000,6),(573,764118000,5),(573,780447600,6),(573,796172400,5),(573,811897200,6),(573,828226800,5),(573,846370800,6),(573,859676400,5),(573,877820400,6),(573,891126000,5),(573,909270000,6),(573,922575600,5),(573,941324400,6),(573,954025200,5),(573,972774000,6),(573,985474800,5),(573,1004223600,6),(573,1017529200,5),(573,1035673200,6),(573,1048978800,5),(573,1067122800,6),(573,1080428400,5),(573,1099177200,6),(573,1111878000,5),(573,1130626800,6),(573,1143327600,5),(573,1162076400,6),(573,1167602400,2),(573,1174784400,7),(573,1193533200,8),(573,1206838800,7),(573,1224982800,8),(573,1238288400,7),(573,1256432400,8),(573,1269738000,7),(573,1288486800,8),(573,1301274000,7),(573,1319936400,8),(573,1332637200,7),(573,1351386000,8),(573,1364691600,7),(573,1382835600,8),(573,1396227600,7),(573,1414285200,8),(573,1427590800,7),(573,1446944400,8),(573,1459040400,7),(573,1473195600,4),(575,-880200000,1),(575,-769395600,2),(575,-765378000,0),(575,-86882400,3),(575,-21470400,4),(575,-5749200,3),(575,9979200,4),(575,25700400,3),(575,41428800,4),(575,57754800,3),(575,73483200,4),(575,89204400,3),(575,104932800,4),(575,120654000,3),(575,126705600,4),(575,152103600,3),(575,162388800,4),(575,183553200,3),(575,199281600,4),(575,215607600,3),(575,230731200,4),(575,247057200,3),(575,262785600,4),(575,278506800,3),(575,294235200,4),(575,309956400,3),(575,325684800,4),(575,341406000,3),(575,357134400,4),(575,372855600,3),(575,388584000,4),(575,404910000,3),(575,420033600,4),(575,436359600,5),(575,439030800,7),(575,452084400,6),(575,467805600,7),(575,483534000,6),(575,499255200,7),(575,514983600,6),(575,530704800,7),(575,544618800,6),(575,562154400,7),(575,576068400,6),(575,594208800,7),(575,607518000,6),(575,625658400,7),(575,638967600,6),(575,657108000,7),(575,671022000,6),(575,688557600,7),(575,702471600,6),(575,720007200,7),(575,733921200,6),(575,752061600,7),(575,765370800,6),(575,783511200,7),(575,796820400,6),(575,814960800,7),(575,828874800,6),(575,846410400,7),(575,860324400,6),(575,877860000,7),(575,891774000,6),(575,909309600,7),(575,923223600,6),(575,941364000,7),(575,954673200,6),(575,972813600,7),(575,986122800,6),(575,1004263200,7),(575,1018177200,6),(575,1035712800,7),(575,1049626800,6),(575,1067162400,7),(575,1081076400,6),(575,1099216800,7),(575,1112526000,6),(575,1130666400,7),(575,1143975600,6),(575,1162116000,7),(575,1173610800,6),(575,1194170400,7),(575,1205060400,6),(575,1225620000,7),(575,1236510000,6),(575,1257069600,7),(575,1268564400,6),(575,1289124000,7),(575,1300014000,6),(575,1320573600,7),(575,1331463600,6),(575,1352023200,7),(575,1362913200,6),(575,1383472800,7),(575,1394362800,6),(575,1414922400,7),(575,1425812400,6),(575,1446372000,7),(575,1457866800,6),(575,1478426400,7),(575,1489316400,6),(575,1509876000,7),(575,1520766000,6),(575,1541325600,7),(575,1552215600,6),(575,1572775200,7),(575,1583665200,6),(575,1604224800,7),(575,1615719600,6),(575,1636279200,7),(575,1647169200,6),(575,1667728800,7),(575,1678618800,6),(575,1699178400,7),(575,1710068400,6),(575,1730628000,7),(575,1741518000,6),(575,1762077600,7),(575,1772967600,6),(575,1793527200,7),(575,1805022000,6),(575,1825581600,7),(575,1836471600,6),(575,1857031200,7),(575,1867921200,6),(575,1888480800,7),(575,1899370800,6),(575,1919930400,7),(575,1930820400,6),(575,1951380000,7),(575,1962874800,6),(575,1983434400,7),(575,1994324400,6),(575,2014884000,7),(575,2025774000,6),(575,2046333600,7),(575,2057223600,6),(575,2077783200,7),(575,2088673200,6),(575,2109232800,7),(575,2120122800,6),(575,2140682400,7),(576,-880196400,1),(576,-769395600,2),(576,-765374400,0),(576,-86878800,3),(576,-21466800,4),(576,-5745600,3),(576,9982800,4),(576,25704000,3),(576,41432400,4),(576,57758400,3),(576,73486800,4),(576,89208000,3),(576,104936400,4),(576,120657600,3),(576,126709200,4),(576,152107200,3),(576,162392400,4),(576,183556800,3),(576,199285200,4),(576,215611200,3),(576,230734800,4),(576,247060800,3),(576,262789200,4),(576,278510400,3),(576,294238800,4),(576,309960000,3),(576,325688400,4),(576,341409600,3),(576,357138000,4),(576,372859200,3),(576,388587600,4),(576,404913600,3),(576,420037200,4),(576,436363200,5),(576,439034400,7),(576,452088000,6),(576,467809200,7),(576,483537600,6),(576,499258800,7),(576,514987200,6),(576,530708400,7),(576,544622400,6),(576,562158000,7),(576,576072000,6),(576,594212400,7),(576,607521600,6),(576,625662000,7),(576,638971200,6),(576,657111600,7),(576,671025600,6),(576,688561200,7),(576,702475200,6),(576,720010800,7),(576,733924800,6),(576,752065200,7),(576,765374400,6),(576,783514800,7),(576,796824000,6),(576,814964400,7),(576,828878400,6),(576,846414000,7),(576,860328000,6),(576,877863600,7),(576,891777600,6),(576,909313200,7),(576,923227200,6),(576,941367600,7),(576,954676800,6),(576,972817200,7),(576,986126400,6),(576,1004266800,7),(576,1018180800,6),(576,1035716400,7),(576,1049630400,6),(576,1067166000,7),(576,1081080000,6),(576,1099220400,7),(576,1112529600,6),(576,1130670000,7),(576,1143979200,6),(576,1162119600,7),(576,1173614400,6),(576,1194174000,7),(576,1205064000,6),(576,1225623600,7),(576,1236513600,6),(576,1257073200,7),(576,1268568000,6),(576,1289127600,7),(576,1300017600,6),(576,1320577200,7),(576,1331467200,6),(576,1352026800,7),(576,1362916800,6),(576,1383476400,7),(576,1394366400,6),(576,1414926000,7),(576,1425816000,6),(576,1446375600,7),(576,1457870400,6),(576,1478430000,7),(576,1489320000,6),(576,1509879600,7),(576,1520769600,6),(576,1541329200,7),(576,1552219200,6),(576,1572778800,7),(576,1583668800,6),(576,1604228400,7),(576,1615723200,6),(576,1636282800,7),(576,1647172800,6),(576,1667732400,7),(576,1678622400,6),(576,1699182000,7),(576,1710072000,6),(576,1730631600,7),(576,1741521600,6),(576,1762081200,7),(576,1772971200,6),(576,1793530800,7),(576,1805025600,6),(576,1825585200,7),(576,1836475200,6),(576,1857034800,7),(576,1867924800,6),(576,1888484400,7),(576,1899374400,6),(576,1919934000,7),(576,1930824000,6),(576,1951383600,7),(576,1962878400,6),(576,1983438000,7),(576,1994328000,6),(576,2014887600,7),(576,2025777600,6),(576,2046337200,7),(576,2057227200,6),(576,2077786800,7),(576,2088676800,6),(576,2109236400,7),(576,2120126400,6),(576,2140686000,7),(577,-1633273200,0),(577,-1615132800,1),(577,-1601823600,0),(577,-1583683200,1),(577,-880210800,2),(577,-820519140,1),(577,-812653140,2),(577,-796845540,1),(577,-84380400,0),(577,-68659200,1),(578,-1633276800,0),(578,-1615136400,1),(578,-1601827200,0),(578,-1583686800,1),(578,-1563724800,0),(578,-1551632400,1),(578,-1538928000,0),(578,-1520182800,1),(578,-1504454400,0),(578,-1491757200,1),(578,-1473004800,0),(578,-1459702800,1),(578,-1441555200,0),(578,-1428253200,1),(578,-1410105600,0),(578,-1396803600,1),(578,-1378656000,0),(578,-1365354000,1),(578,-1347206400,0),(578,-1333904400,1),(578,-1315152000,0),(578,-1301850000,1),(578,-1283702400,0),(578,-1270400400,1),(578,-1252252800,0),(578,-1238950800,1),(578,-1220803200,0),(578,-1207501200,1),(578,-1189353600,0),(578,-1176051600,1),(578,-1157299200,0),(578,-1144602000,1),(578,-1125849600,0),(578,-1112547600,1),(578,-1094400000,0),(578,-1081098000,1),(578,-1067788800,2),(578,-1045414800,1),(578,-1031500800,0),(578,-1018198800,1),(578,-1000051200,0),(578,-986749200,1),(578,-967996800,0),(578,-955299600,1),(578,-936547200,0),(578,-923245200,1),(578,-905097600,0),(578,-891795600,1),(578,-880214400,3),(578,-769395600,4),(578,-765392400,1),(578,-747244800,0),(578,-733942800,1),(578,-715795200,0),(578,-702493200,1),(578,-684345600,0),(578,-671043600,1),(578,-652896000,0),(578,-639594000,1),(578,-620841600,0),(578,-608144400,1),(578,-589392000,0),(578,-576090000,1),(578,-557942400,0),(578,-544640400,1),(578,-526492800,0),(578,-513190800,1),(578,-495043200,0),(578,-481741200,1),(578,-463593600,0),(578,-447267600,1),(578,-431539200,0),(578,-415818000,1),(578,-400089600,0),(578,-384368400,1),(578,-368640000,0),(578,-352918800,1),(578,-337190400,0),(578,-321469200,1),(578,-305740800,0),(578,-289414800,1),(578,-273686400,0),(578,-257965200,1),(578,-242236800,0),(578,-226515600,1),(578,-210787200,0),(578,-195066000,1),(578,-179337600,0),(578,-163616400,1),(578,-147888000,0),(578,-131562000,1),(578,-116438400,0),(578,-100112400,1),(578,-84384000,0),(578,-68662800,1),(578,-52934400,0),(578,-37213200,1),(578,-21484800,0),(578,-5763600,1),(578,9964800,0),(578,25686000,1),(578,41414400,0),(578,57740400,1),(578,73468800,0),(578,89190000,1),(578,104918400,0),(578,120639600,1),(578,126691200,0),(578,152089200,1),(578,162374400,0),(578,183538800,1),(578,199267200,0),(578,215593200,1),(578,230716800,0),(578,247042800,1),(578,262771200,0),(578,278492400,1),(578,294220800,0),(578,309942000,1),(578,325670400,0),(578,341391600,1),(578,357120000,0),(578,372841200,1),(578,388569600,0),(578,404895600,1),(578,420019200,0),(578,436345200,1),(578,452073600,0),(578,467794800,1),(578,483523200,0),(578,499244400,1),(578,514972800,0),(578,530694000,1),(578,544608000,0),(578,562143600,1),(578,576057600,0),(578,594198000,1),(578,607507200,0),(578,625647600,1),(578,638956800,0),(578,657097200,1),(578,671011200,0),(578,688546800,1),(578,702460800,0),(578,719996400,1),(578,733910400,0),(578,752050800,1),(578,765360000,0),(578,783500400,1),(578,796809600,0),(578,814950000,1),(578,828864000,0),(578,846399600,1),(578,860313600,0),(578,877849200,1),(578,891763200,0),(578,909298800,1),(578,923212800,0),(578,941353200,1),(578,954662400,0),(578,972802800,1),(578,986112000,0),(578,1004252400,1),(578,1018166400,0),(578,1035702000,1),(578,1049616000,0),(578,1067151600,1),(578,1081065600,0),(578,1099206000,1),(578,1112515200,0),(578,1130655600,1),(578,1143964800,0),(578,1162105200,1),(578,1173600000,0),(578,1194159600,1),(578,1205049600,0),(578,1225609200,1),(578,1236499200,0),(578,1257058800,1),(578,1268553600,0),(578,1289113200,1),(578,1300003200,0),(578,1320562800,1),(578,1331452800,0),(578,1352012400,1),(578,1362902400,0),(578,1383462000,1),(578,1394352000,0),(578,1414911600,1),(578,1425801600,0),(578,1446361200,1),(578,1457856000,0),(578,1478415600,1),(578,1489305600,0),(578,1509865200,1),(578,1520755200,0),(578,1541314800,1),(578,1552204800,0),(578,1572764400,1),(578,1583654400,0),(578,1604214000,1),(578,1615708800,0),(578,1636268400,1),(578,1647158400,0),(578,1667718000,1),(578,1678608000,0),(578,1699167600,1),(578,1710057600,0),(578,1730617200,1),(578,1741507200,0),(578,1762066800,1),(578,1772956800,0),(578,1793516400,1),(578,1805011200,0),(578,1825570800,1),(578,1836460800,0),(578,1857020400,1),(578,1867910400,0),(578,1888470000,1),(578,1899360000,0),(578,1919919600,1),(578,1930809600,0),(578,1951369200,1),(578,1962864000,0),(578,1983423600,1),(578,1994313600,0),(578,2014873200,1),(578,2025763200,0),(578,2046322800,1),(578,2057212800,0),(578,2077772400,1),(578,2088662400,0),(578,2109222000,1),(578,2120112000,0),(578,2140671600,1),(579,-1633276800,0),(579,-1615136400,1),(579,-1601827200,0),(579,-1583686800,1),(579,-900259200,0),(579,-891795600,1),(579,-880214400,2),(579,-769395600,3),(579,-765392400,1),(579,-747244800,0),(579,-733942800,1),(579,-715795200,0),(579,-702493200,1),(579,-684345600,0),(579,-671043600,1),(579,-652896000,0),(579,-639594000,1),(579,-620841600,0),(579,-608144400,1),(579,-589392000,0),(579,-576090000,1),(579,-557942400,0),(579,-544640400,1),(579,-526492800,0),(579,-513190800,1),(579,-495043200,0),(579,-481741200,1),(579,-463593600,4),(579,-386787600,1),(579,-368640000,4),(579,-21488400,5),(579,-5767200,4),(579,9961200,5),(579,25682400,4),(579,1143961200,5),(579,1162101600,4),(579,1173596400,5),(579,1194156000,4),(579,1205046000,5),(579,1225605600,4),(579,1236495600,5),(579,1257055200,4),(579,1268550000,5),(579,1289109600,4),(579,1299999600,5),(579,1320559200,4),(579,1331449200,5),(579,1352008800,4),(579,1362898800,5),(579,1383458400,4),(579,1394348400,5),(579,1414908000,4),(579,1425798000,5),(579,1446357600,4),(579,1457852400,5),(579,1478412000,4),(579,1489302000,5),(579,1509861600,4),(579,1520751600,5),(579,1541311200,4),(579,1552201200,5),(579,1572760800,4),(579,1583650800,5),(579,1604210400,4),(579,1615705200,5),(579,1636264800,4),(579,1647154800,5),(579,1667714400,4),(579,1678604400,5),(579,1699164000,4),(579,1710054000,5),(579,1730613600,4),(579,1741503600,5),(579,1762063200,4),(579,1772953200,5),(579,1793512800,4),(579,1805007600,5),(579,1825567200,4),(579,1836457200,5),(579,1857016800,4),(579,1867906800,5),(579,1888466400,4),(579,1899356400,5),(579,1919916000,4),(579,1930806000,5),(579,1951365600,4),(579,1962860400,5),(579,1983420000,4),(579,1994310000,5),(579,2014869600,4),(579,2025759600,5),(579,2046319200,4),(579,2057209200,5),(579,2077768800,4),(579,2088658800,5),(579,2109218400,4),(579,2120108400,5),(579,2140668000,4),(580,-1633280400,0),(580,-1615140000,1),(580,-1601830800,0),(580,-1583690400,1),(580,-1570381200,0),(580,-1551636000,1),(580,-1536512400,0),(580,-1523210400,1),(580,-1504458000,0),(580,-1491760800,1),(580,-1473008400,0),(580,-1459706400,1),(580,-1441558800,0),(580,-1428256800,1),(580,-1410109200,0),(580,-1396807200,1),(580,-1378659600,0),(580,-1365357600,1),(580,-1347210000,0),(580,-1333908000,1),(580,-1315155600,0),(580,-1301853600,1),(580,-1283706000,0),(580,-1270404000,1),(580,-1252256400,0),(580,-1238954400,1),(580,-1220806800,0),(580,-1207504800,1),(580,-1189357200,0),(580,-1176055200,1),(580,-1157302800,0),(580,-1144605600,1),(580,-1125853200,0),(580,-1112551200,1),(580,-1094403600,0),(580,-1081101600,1),(580,-1062954000,0),(580,-1049652000,1),(580,-1031504400,0),(580,-1018202400,1),(580,-1000054800,0),(580,-986752800,1),(580,-968000400,0),(580,-955303200,1),(580,-936550800,0),(580,-923248800,1),(580,-905101200,0),(580,-891799200,1),(580,-880218000,2),(580,-769395600,3),(580,-765396000,1),(580,-747248400,0),(580,-733946400,1),(580,-715798800,0),(580,-702496800,1),(580,-684349200,0),(580,-671047200,1),(580,-652899600,0),(580,-639597600,1),(580,-620845200,0),(580,-608148000,1),(580,-589395600,0),(580,-576093600,1),(580,-557946000,0),(580,-544644000,1),(580,-526496400,0),(580,-513194400,1),(580,-495046800,0),(580,-481744800,1),(580,-463597200,0),(580,-447271200,1),(580,-431542800,0),(580,-415821600,1),(580,-400093200,0),(580,-384372000,1),(580,-368643600,0),(580,-352922400,1),(580,-337194000,0),(580,-321472800,1),(580,-305744400,0),(580,-289418400,1),(580,-273690000,0),(580,-257968800,1),(580,-242240400,0),(580,-226519200,1),(580,-210790800,0),(580,-195069600,1),(580,-179341200,0),(580,-163620000,1),(580,-147891600,0),(580,-131565600,1),(580,-116442000,0),(580,-100116000,1),(580,-84387600,0),(580,-68666400,1),(580,-52938000,0),(580,-37216800,1),(580,-21488400,0),(580,-5767200,1),(580,9961200,0),(580,25682400,1),(580,41410800,0),(580,57736800,1),(580,73465200,0),(580,89186400,1),(580,104914800,0),(580,120636000,1),(580,126687600,0),(580,152085600,1),(580,162370800,0),(580,183535200,1),(580,199263600,0),(580,215589600,1),(580,230713200,0),(580,247039200,1),(580,262767600,0),(580,278488800,1),(580,294217200,0),(580,309938400,1),(580,325666800,0),(580,341388000,1),(580,357116400,0),(580,372837600,1),(580,388566000,0),(580,404892000,1),(580,420015600,0),(580,436341600,1),(580,452070000,0),(580,467791200,1),(580,483519600,0),(580,499240800,1),(580,514969200,0),(580,530690400,1),(580,544604400,0),(580,562140000,1),(580,576054000,0),(580,594194400,1),(580,607503600,0),(580,625644000,1),(580,638953200,0),(580,657093600,1),(580,671007600,0),(580,688543200,1),(580,702457200,0),(580,719992800,1),(580,733906800,0),(580,752047200,1),(580,765356400,0),(580,783496800,1),(580,796806000,0),(580,814946400,1),(580,828860400,0),(580,846396000,1),(580,860310000,0),(580,877845600,1),(580,891759600,0),(580,909295200,1),(580,923209200,0),(580,941349600,1),(580,954658800,0),(580,972799200,1),(580,986108400,0),(580,1004248800,1),(580,1018162800,0),(580,1035698400,1),(580,1049612400,0),(580,1067148000,1),(580,1081062000,0),(580,1099202400,1),(580,1112511600,0),(580,1130652000,1),(580,1143961200,0),(580,1162101600,1),(580,1173596400,0),(580,1194156000,1),(580,1205046000,0),(580,1225605600,1),(580,1236495600,0),(580,1257055200,1),(580,1268550000,0),(580,1289109600,1),(580,1299999600,0),(580,1320559200,1),(580,1331449200,0),(580,1352008800,1),(580,1362898800,0),(580,1383458400,1),(580,1394348400,0),(580,1414908000,1),(580,1425798000,0),(580,1446357600,1),(580,1457852400,0),(580,1478412000,1),(580,1489302000,0),(580,1509861600,1),(580,1520751600,0),(580,1541311200,1),(580,1552201200,0),(580,1572760800,1),(580,1583650800,0),(580,1604210400,1),(580,1615705200,0),(580,1636264800,1),(580,1647154800,0),(580,1667714400,1),(580,1678604400,0),(580,1699164000,1),(580,1710054000,0),(580,1730613600,1),(580,1741503600,0),(580,1762063200,1),(580,1772953200,0),(580,1793512800,1),(580,1805007600,0),(580,1825567200,1),(580,1836457200,0),(580,1857016800,1),(580,1867906800,0),(580,1888466400,1),(580,1899356400,0),(580,1919916000,1),(580,1930806000,0),(580,1951365600,1),(580,1962860400,0),(580,1983420000,1),(580,1994310000,0),(580,2014869600,1),(580,2025759600,0),(580,2046319200,1),(580,2057209200,0),(580,2077768800,1),(580,2088658800,0),(580,2109218400,1),(580,2120108400,0),(580,2140668000,1),(581,-1157283000,1),(581,-1155436200,0),(581,-880198200,1),(581,-765376200,0),(581,-712150200,2),(582,-1633276800,0),(582,-1615136400,1),(582,-1601827200,0),(582,-1583686800,1),(582,-880214400,2),(582,-769395600,3),(582,-765392400,1),(582,-715795200,0),(582,-702493200,1),(582,-684345600,0),(582,-671043600,1),(582,-652896000,0),(582,-639594000,1),(582,-620841600,0),(582,-608144400,1),(582,-589392000,0),(582,-576090000,1),(582,-557942400,0),(582,-544640400,1),(582,-526492800,0),(582,-513190800,1),(582,-495043200,0),(582,-481741200,1),(582,-463593600,0),(582,-447267600,1),(582,-431539200,0),(582,-415818000,1),(582,-400089600,0),(582,-386787600,1),(582,-368640000,0),(582,-355338000,1),(582,-337190400,0),(582,-321469200,1),(582,-305740800,0),(582,-289414800,1),(582,-273686400,0),(582,-257965200,1),(582,-242236800,4),(582,-195066000,1),(582,-84384000,0),(582,-68662800,1),(582,-52934400,0),(582,-37213200,1),(582,-21484800,0),(582,-5763600,1),(582,9964800,0),(582,25686000,1),(582,41414400,0),(582,57740400,1),(582,73468800,0),(582,89190000,1),(582,104918400,0),(582,120639600,1),(582,126691200,0),(582,152089200,1),(582,162374400,0),(582,183538800,1),(582,199267200,0),(582,215593200,1),(582,230716800,0),(582,247042800,1),(582,262771200,0),(582,278492400,1),(582,294220800,0),(582,309942000,1),(582,325670400,0),(582,341391600,1),(582,357120000,0),(582,372841200,1),(582,388569600,0),(582,404895600,1),(582,420019200,0),(582,436345200,1),(582,452073600,0),(582,467794800,1),(582,483523200,0),(582,499244400,1),(582,514972800,0),(582,530694000,1),(582,544608000,0),(582,562143600,1),(582,576057600,0),(582,594198000,1),(582,607507200,0),(582,625647600,1),(582,638956800,0),(582,657097200,1),(582,671011200,0),(582,688546800,4),(582,1143961200,0),(582,1162105200,1),(582,1173600000,0),(582,1194159600,1),(582,1205049600,0),(582,1225609200,1),(582,1236499200,0),(582,1257058800,1),(582,1268553600,0),(582,1289113200,1),(582,1300003200,0),(582,1320562800,1),(582,1331452800,0),(582,1352012400,1),(582,1362902400,0),(582,1383462000,1),(582,1394352000,0),(582,1414911600,1),(582,1425801600,0),(582,1446361200,1),(582,1457856000,0),(582,1478415600,1),(582,1489305600,0),(582,1509865200,1),(582,1520755200,0),(582,1541314800,1),(582,1552204800,0),(582,1572764400,1),(582,1583654400,0),(582,1604214000,1),(582,1615708800,0),(582,1636268400,1),(582,1647158400,0),(582,1667718000,1),(582,1678608000,0),(582,1699167600,1),(582,1710057600,0),(582,1730617200,1),(582,1741507200,0),(582,1762066800,1),(582,1772956800,0),(582,1793516400,1),(582,1805011200,0),(582,1825570800,1),(582,1836460800,0),(582,1857020400,1),(582,1867910400,0),(582,1888470000,1),(582,1899360000,0),(582,1919919600,1),(582,1930809600,0),(582,1951369200,1),(582,1962864000,0),(582,1983423600,1),(582,1994313600,0),(582,2014873200,1),(582,2025763200,0),(582,2046322800,1),(582,2057212800,0),(582,2077772400,1),(582,2088662400,0),(582,2109222000,1),(582,2120112000,0),(582,2140671600,1),(583,-2051202469,1),(583,-1724083200,2),(583,-880218000,3),(583,-769395600,4),(583,-765396000,2),(583,-684349200,5),(583,-671047200,2),(583,104914800,5),(583,120636000,2),(583,126687600,5),(583,152085600,2),(583,167814000,5),(583,183535200,2),(583,199263600,5),(583,215589600,2),(583,230713200,5),(583,247039200,2),(583,262767600,5),(583,278488800,2),(583,294217200,5),(583,309938400,2),(583,325666800,5),(583,341388000,2),(583,357116400,5),(583,372837600,2),(583,388566000,5),(583,404892000,2),(583,420015600,5),(583,436341600,2),(583,452070000,5),(583,467791200,2),(583,483519600,5),(583,499240800,2),(583,514969200,5),(583,530690400,2),(583,544604400,5),(583,562140000,2),(583,576054000,5),(583,594194400,2),(583,607503600,5),(583,625644000,2),(583,638953200,5),(583,657093600,2),(583,671007600,5),(583,688543200,2),(583,702457200,5),(583,719992800,2),(583,733906800,5),(583,752047200,2),(583,765356400,5),(583,783496800,2),(583,796806000,5),(583,814946400,2),(583,828860400,5),(583,846396000,2),(583,860310000,5),(583,877845600,2),(583,891759600,5),(583,909295200,2),(583,923209200,5),(583,941349600,2),(583,954658800,5),(583,972799200,2),(583,986108400,5),(583,1004248800,2),(583,1018162800,5),(583,1035698400,2),(583,1049612400,5),(583,1067148000,2),(583,1081062000,5),(583,1099202400,2),(583,1112511600,5),(583,1130652000,2),(583,1143961200,5),(583,1162101600,2),(583,1173596400,5),(583,1194156000,2),(583,1205046000,5),(583,1225605600,2),(583,1236495600,5),(583,1257055200,2),(583,1268550000,5),(583,1289109600,2),(583,1299999600,5),(583,1320559200,2),(583,1331449200,5),(583,1352008800,2),(583,1362898800,5),(583,1383458400,2),(583,1394348400,5),(583,1414908000,2),(583,1425798000,5),(583,1446357600,2),(583,1457852400,5),(583,1478412000,2),(583,1489302000,5),(583,1509861600,2),(583,1520751600,5),(583,1541311200,2),(583,1552201200,5),(583,1572760800,2),(583,1583650800,5),(583,1604210400,2),(583,1615705200,5),(583,1636264800,2),(583,1647154800,5),(583,1667714400,2),(583,1678604400,5),(583,1699164000,2),(583,1710054000,5),(583,1730613600,2),(583,1741503600,5),(583,1762063200,2),(583,1772953200,5),(583,1793512800,2),(583,1805007600,5),(583,1825567200,2),(583,1836457200,5),(583,1857016800,2),(583,1867906800,5),(583,1888466400,2),(583,1899356400,5),(583,1919916000,2),(583,1930806000,5),(583,1951365600,2),(583,1962860400,5),(583,1983420000,2),(583,1994310000,5),(583,2014869600,2),(583,2025759600,5),(583,2046319200,2),(583,2057209200,5),(583,2077768800,2),(583,2088658800,5),(583,2109218400,2),(583,2120108400,5),(583,2140668000,2),(584,-1633273200,0),(584,-1615132800,1),(584,-1601823600,0),(584,-1583683200,1),(584,-1570374000,0),(584,-1551628800,1),(584,-1538924400,0),(584,-1534089600,1),(584,-880210800,2),(584,-769395600,3),(584,-765388800,1),(584,-147884400,0),(584,-131558400,1),(584,-116434800,0),(584,-100108800,1),(584,-84380400,0),(584,-68659200,1),(584,-52930800,0),(584,-37209600,1),(584,-21481200,0),(584,-5760000,1),(584,9968400,0),(584,25689600,1),(584,41418000,0),(584,57744000,1),(584,73472400,0),(584,89193600,1),(584,104922000,0),(584,120643200,1),(584,126694800,0),(584,152092800,1),(584,162378000,0),(584,183542400,1),(584,199270800,0),(584,215596800,1),(584,230720400,0),(584,247046400,1),(584,262774800,0),(584,278496000,1),(584,294224400,0),(584,309945600,1),(584,325674000,0),(584,341395200,1),(584,357123600,0),(584,372844800,1),(584,388573200,0),(584,404899200,1),(584,420022800,0),(584,436348800,1),(584,452077200,0),(584,467798400,1),(584,483526800,0),(584,499248000,1),(584,514976400,0),(584,530697600,1),(584,544611600,0),(584,562147200,1),(584,576061200,0),(584,594201600,1),(584,607510800,0),(584,625651200,1),(584,638960400,0),(584,657100800,1),(584,671014800,0),(584,688550400,1),(584,702464400,0),(584,720000000,1),(584,733914000,0),(584,752054400,1),(584,765363600,0),(584,783504000,1),(584,796813200,0),(584,814953600,1),(584,828867600,0),(584,846403200,1),(584,860317200,0),(584,877852800,1),(584,891766800,0),(584,909302400,1),(584,923216400,0),(584,941356800,1),(584,954666000,0),(584,972806400,1),(584,986115600,0),(584,1004256000,1),(584,1018170000,0),(584,1035705600,1),(584,1049619600,0),(584,1067155200,1),(584,1081069200,0),(584,1099209600,1),(584,1112518800,0),(584,1130659200,1),(584,1143968400,0),(584,1162108800,1),(584,1173603600,0),(584,1194163200,1),(584,1205053200,0),(584,1225612800,1),(584,1236502800,0),(584,1257062400,1),(584,1268557200,0),(584,1289116800,1),(584,1300006800,0),(584,1320566400,1),(584,1331456400,0),(584,1352016000,1),(584,1362906000,0),(584,1383465600,1),(584,1394355600,0),(584,1414915200,1),(584,1425805200,0),(584,1446364800,1),(584,1457859600,0),(584,1478419200,1),(584,1489309200,0),(584,1509868800,1),(584,1520758800,0),(584,1541318400,1),(584,1552208400,0),(584,1572768000,1),(584,1583658000,0),(584,1604217600,1),(584,1615712400,0),(584,1636272000,1),(584,1647162000,0),(584,1667721600,1),(584,1678611600,0),(584,1699171200,1),(584,1710061200,0),(584,1730620800,1),(584,1741510800,0),(584,1762070400,1),(584,1772960400,0),(584,1793520000,1),(584,1805014800,0),(584,1825574400,1),(584,1836464400,0),(584,1857024000,1),(584,1867914000,0),(584,1888473600,1),(584,1899363600,0),(584,1919923200,1),(584,1930813200,0),(584,1951372800,1),(584,1962867600,0),(584,1983427200,1),(584,1994317200,0),(584,2014876800,1),(584,2025766800,0),(584,2046326400,1),(584,2057216400,0),(584,2077776000,1),(584,2088666000,0),(584,2109225600,1),(584,2120115600,0),(584,2140675200,1),(585,-1633269600,0),(585,-1615129200,1),(585,-1601820000,0),(585,-1583679600,1),(585,-880207200,2),(585,-769395600,3),(585,-765385200,1),(585,-687967140,0),(585,-662655600,1),(585,-620838000,0),(585,-608137200,1),(585,-589388400,0),(585,-576082800,1),(585,-557938800,0),(585,-544633200,1),(585,-526489200,0),(585,-513183600,1),(585,-495039600,0),(585,-481734000,1),(585,-463590000,0),(585,-450284400,1),(585,-431535600,0),(585,-418230000,1),(585,-400086000,0),(585,-386780400,1),(585,-368636400,0),(585,-355330800,1),(585,-337186800,0),(585,-323881200,1),(585,-305737200,0),(585,-292431600,1),(585,-273682800,0),(585,-260982000,1),(585,-242233200,0),(585,-226508400,1),(585,-210783600,0),(585,-195058800,1),(585,-179334000,0),(585,-163609200,1),(585,-147884400,0),(585,-131554800,1),(585,-116434800,0),(585,-100105200,1),(585,-84376800,0),(585,-68655600,1),(585,-52927200,0),(585,-37206000,1),(585,-21477600,0),(585,-5756400,1),(585,9972000,0),(585,25693200,1),(585,41421600,0),(585,57747600,1),(585,73476000,0),(585,89197200,1),(585,104925600,0),(585,120646800,1),(585,126698400,0),(585,152096400,1),(585,162381600,0),(585,183546000,1),(585,199274400,0),(585,215600400,1),(585,230724000,0),(585,247050000,1),(585,262778400,0),(585,278499600,1),(585,294228000,0),(585,309949200,1),(585,325677600,0),(585,341398800,1),(585,357127200,0),(585,372848400,1),(585,388576800,0),(585,404902800,1),(585,420026400,0),(585,436352400,1),(585,452080800,0),(585,467802000,1),(585,483530400,0),(585,499251600,1),(585,514980000,0),(585,530701200,1),(585,544615200,0),(585,562150800,1),(585,576064800,0),(585,594205200,1),(585,607514400,0),(585,625654800,1),(585,638964000,0),(585,657104400,1),(585,671018400,0),(585,688554000,1),(585,702468000,0),(585,720003600,1),(585,733917600,0),(585,752058000,1),(585,765367200,0),(585,783507600,1),(585,796816800,0),(585,814957200,1),(585,828871200,0),(585,846406800,1),(585,860320800,0),(585,877856400,1),(585,891770400,0),(585,909306000,1),(585,923220000,0),(585,941360400,1),(585,954669600,0),(585,972810000,1),(585,986119200,0),(585,1004259600,1),(585,1018173600,0),(585,1035709200,1),(585,1049623200,0),(585,1067158800,1),(585,1081072800,0),(585,1099213200,1),(585,1112522400,0),(585,1130662800,1),(585,1143972000,0),(585,1162112400,1),(585,1173607200,0),(585,1194166800,1),(585,1205056800,0),(585,1225616400,1),(585,1236506400,0),(585,1257066000,1),(585,1268560800,0),(585,1289120400,1),(585,1300010400,0),(585,1320570000,1),(585,1331460000,0),(585,1352019600,1),(585,1362909600,0),(585,1383469200,1),(585,1394359200,0),(585,1414918800,1),(585,1425808800,0),(585,1446368400,1),(585,1457863200,0),(585,1478422800,1),(585,1489312800,0),(585,1509872400,1),(585,1520762400,0),(585,1541322000,1),(585,1552212000,0),(585,1572771600,1),(585,1583661600,0),(585,1604221200,1),(585,1615716000,0),(585,1636275600,1),(585,1647165600,0),(585,1667725200,1),(585,1678615200,0),(585,1699174800,1),(585,1710064800,0),(585,1730624400,1),(585,1741514400,0),(585,1762074000,1),(585,1772964000,0),(585,1793523600,1),(585,1805018400,0),(585,1825578000,1),(585,1836468000,0),(585,1857027600,1),(585,1867917600,0),(585,1888477200,1),(585,1899367200,0),(585,1919926800,1),(585,1930816800,0),(585,1951376400,1),(585,1962871200,0),(585,1983430800,1),(585,1994320800,0),(585,2014880400,1),(585,2025770400,0),(585,2046330000,1),(585,2057220000,0),(585,2077779600,1),(585,2088669600,0),(585,2109229200,1),(585,2120119200,0),(585,2140678800,1),(586,-1633269600,0),(586,-1615129200,1),(586,-1601820000,0),(586,-1583679600,1),(586,-880207200,2),(586,-769395600,3),(586,-765385200,1),(586,-687967140,0),(586,-662655600,1),(586,-620838000,0),(586,-608137200,1),(586,-589388400,0),(586,-576082800,1),(586,-557938800,0),(586,-544633200,1),(586,-526489200,0),(586,-513183600,1),(586,-495039600,0),(586,-481734000,1),(586,-463590000,0),(586,-450284400,1),(586,-431535600,0),(586,-418230000,1),(586,-400086000,0),(586,-386780400,1),(586,-368636400,0),(586,-355330800,1),(586,-337186800,0),(586,-323881200,1),(586,-305737200,0),(586,-292431600,1),(586,-273682800,0),(586,-260982000,1),(586,-242233200,0),(586,-226508400,1),(586,-210783600,0),(586,-195058800,1),(586,-179334000,0),(586,-163609200,1),(586,-147884400,0),(586,-131554800,1),(586,-116434800,0),(586,-100105200,1),(586,-84376800,0),(586,-68655600,1),(586,-52927200,0),(586,-37206000,1),(586,-21477600,0),(586,-5756400,1),(586,9972000,0),(586,25693200,1),(586,41421600,0),(586,57747600,1),(586,73476000,0),(586,89197200,1),(586,104925600,0),(586,120646800,1),(586,126698400,0),(586,152096400,1),(586,162381600,0),(586,183546000,1),(586,199274400,0),(586,215600400,1),(586,230724000,0),(586,247050000,1),(586,262778400,0),(586,278499600,1),(586,294228000,0),(586,309949200,1),(586,325677600,0),(586,341398800,1),(586,357127200,0),(586,372848400,1),(586,388576800,0),(586,404902800,1),(586,420026400,0),(586,436352400,1),(586,452080800,0),(586,467802000,1),(586,483530400,0),(586,499251600,1),(586,514980000,0),(586,530701200,1),(586,544615200,0),(586,562150800,1),(586,576064800,0),(586,594205200,1),(586,607514400,0),(586,625654800,1),(586,638964000,0),(586,657104400,1),(586,671018400,0),(586,688554000,1),(586,702468000,0),(586,720003600,1),(586,733917600,0),(586,752058000,1),(586,765367200,0),(586,783507600,1),(586,796816800,0),(586,814957200,1),(586,828871200,0),(586,846406800,1),(586,860320800,0),(586,877856400,1),(586,891770400,0),(586,909306000,1),(586,923220000,0),(586,941360400,1),(586,954669600,0),(586,972810000,1),(586,986119200,0),(586,1004259600,1),(586,1018173600,0),(586,1035709200,1),(586,1049623200,0),(586,1067158800,1),(586,1081072800,0),(586,1099213200,1),(586,1112522400,0),(586,1130662800,1),(586,1143972000,0),(586,1162112400,1),(586,1173607200,0),(586,1194166800,1),(586,1205056800,0),(586,1225616400,1),(586,1236506400,0),(586,1257066000,1),(586,1268560800,0),(586,1289120400,1),(586,1300010400,0),(586,1320570000,1),(586,1331460000,0),(586,1352019600,1),(586,1362909600,0),(586,1383469200,1),(586,1394359200,0),(586,1414918800,1),(586,1425808800,0),(586,1446368400,1),(586,1457863200,0),(586,1478422800,1),(586,1489312800,0),(586,1509872400,1),(586,1520762400,0),(586,1541322000,1),(586,1552212000,0),(586,1572771600,1),(586,1583661600,0),(586,1604221200,1),(586,1615716000,0),(586,1636275600,1),(586,1647165600,0),(586,1667725200,1),(586,1678615200,0),(586,1699174800,1),(586,1710064800,0),(586,1730624400,1),(586,1741514400,0),(586,1762074000,1),(586,1772964000,0),(586,1793523600,1),(586,1805018400,0),(586,1825578000,1),(586,1836468000,0),(586,1857027600,1),(586,1867917600,0),(586,1888477200,1),(586,1899367200,0),(586,1919926800,1),(586,1930816800,0),(586,1951376400,1),(586,1962871200,0),(586,1983430800,1),(586,1994320800,0),(586,2014880400,1),(586,2025770400,0),(586,2046330000,1),(586,2057220000,0),(586,2077779600,1),(586,2088669600,0),(586,2109229200,1),(586,2120119200,0),(586,2140678800,1),(587,-1861879032,1),(590,-1688265017,2),(590,-1656819079,1),(590,-1641353479,2),(590,-1627965079,3),(590,-1618716679,1),(590,-1596429079,3),(590,-1593820800,4),(590,-1589860800,5),(590,-1542427200,6),(590,-1539493200,7),(590,-1525323600,6),(590,-1522728000,5),(590,-1491188400,8),(590,-1247536800,5),(590,354920400,6),(590,370728000,5),(590,386456400,6),(590,402264000,5),(590,417992400,6),(590,433800000,5),(590,449614800,6),(590,465346800,9),(590,481071600,10),(590,496796400,9),(590,512521200,10),(590,528246000,9),(590,543970800,10),(590,559695600,9),(590,575420400,10),(590,591145200,9),(590,606870000,10),(590,622594800,9),(590,638319600,10),(590,654649200,9),(590,670374000,11),(590,686102400,12),(590,695779200,9),(590,701823600,10),(590,717548400,9),(590,733273200,10),(590,748998000,9),(590,764722800,10),(590,780447600,9),(590,796172400,10),(590,811897200,9),(590,828226800,10),(590,846370800,9),(590,859676400,10),(590,877820400,9),(590,891126000,10),(590,909270000,9),(590,922575600,10),(590,941324400,9),(590,954025200,10),(590,972774000,9),(590,985474800,10),(590,1004223600,9),(590,1017529200,10),(590,1035673200,9),(590,1048978800,10),(590,1067122800,9),(590,1080428400,10),(590,1099177200,9),(590,1111878000,10),(590,1130626800,9),(590,1143327600,10),(590,1162076400,9),(590,1174777200,10),(590,1193526000,9),(590,1206831600,10),(590,1224975600,9),(590,1238281200,10),(590,1256425200,9),(590,1269730800,10),(590,1288479600,9),(590,1301180400,13),(590,1414274400,9),(591,228877200,0),(591,243997200,1),(591,260326800,0),(591,276051600,1),(591,291776400,0),(591,307501200,1),(591,323830800,0),(591,338950800,1),(591,354675600,0),(591,370400400,1),(591,386125200,0),(591,401850000,1),(591,417574800,0),(591,433299600,1),(591,449024400,0),(591,465354000,1),(591,481078800,0),(591,496803600,1),(591,512528400,0),(591,528253200,1),(591,543978000,0),(591,559702800,1),(591,575427600,0),(591,591152400,1),(591,606877200,0),(591,622602000,1),(591,638326800,0),(591,654656400,1),(591,670381200,0),(591,686106000,1),(591,701830800,0),(591,717555600,1),(591,733280400,0),(591,749005200,1),(591,764730000,0),(591,780454800,1),(591,796179600,0),(591,811904400,1),(591,828234000,0),(591,846378000,1),(591,859683600,0),(591,877827600,1),(591,891133200,0),(591,909277200,1),(591,922582800,0),(591,941331600,1),(591,954032400,0),(591,972781200,1),(591,985482000,0),(591,1004230800,1),(591,1017536400,0),(591,1035680400,1),(591,1048986000,0),(591,1067130000,1),(591,1080435600,0),(591,1099184400,1),(591,1111885200,0),(591,1130634000,1),(591,1143334800,0),(591,1162083600,1),(591,1174784400,0),(591,1193533200,1),(591,1206838800,0),(591,1224982800,1),(591,1238288400,0),(591,1256432400,1),(591,1269738000,0),(591,1288486800,1),(591,1301187600,0),(591,1319936400,1),(591,1332637200,0),(591,1351386000,1),(591,1364691600,0),(591,1382835600,1),(591,1396141200,0),(591,1414285200,1),(591,1427590800,0),(591,1445734800,1),(591,1459040400,0),(591,1477789200,1),(591,1490490000,0),(591,1509238800,1),(591,1521939600,0),(591,1540688400,1),(591,1553994000,0),(591,1572138000,1),(591,1585443600,0),(591,1603587600,1),(591,1616893200,0),(591,1635642000,1),(591,1648342800,0),(591,1667091600,1),(591,1679792400,0),(591,1698541200,1),(591,1711846800,0),(591,1729990800,1),(591,1743296400,0),(591,1761440400,1),(591,1774746000,0),(591,1792890000,1),(591,1806195600,0),(591,1824944400,1),(591,1837645200,0),(591,1856394000,1),(591,1869094800,0),(591,1887843600,1),(591,1901149200,0),(591,1919293200,1),(591,1932598800,0),(591,1950742800,1),(591,1964048400,0),(591,1982797200,1),(591,1995498000,0),(591,2014246800,1),(591,2026947600,0),(591,2045696400,1),(591,2058397200,0),(591,2077146000,1),(591,2090451600,0),(591,2108595600,1),(591,2121901200,0),(591,2140045200,1),(593,-1830383032,1),(594,-1640995148,2),(594,-1556841600,1),(594,-1546388400,2),(594,-1525305600,1),(594,-1514852400,2),(594,-1493769600,1),(594,-1483316400,2),(594,-1462233600,1),(594,-1451780400,2),(594,-1430611200,1),(594,-1420158000,2),(594,-1399075200,1),(594,-1388622000,2),(594,-1367539200,1),(594,-1357086000,2),(594,-1336003200,1),(594,-1325550000,2),(594,-1304380800,1),(594,-1293927600,2),(594,-1272844800,1),(594,-1262391600,2),(594,-1241308800,1),(594,-1230855600,2),(594,-1209772800,1),(594,-1199319600,2),(594,-1178150400,1),(594,-1167697200,2),(594,-1146614400,1),(594,-1136161200,2),(594,-1115078400,1),(594,-1104625200,2),(594,-1083542400,1),(594,-1073089200,2),(594,-1051920000,1),(594,-1041466800,2),(594,-1020384000,1),(594,-1009930800,2),(594,-988848000,1),(594,-978394800,2),(594,-957312000,1),(594,-946858800,2),(594,-925689600,1),(594,-915236400,2),(594,-894153600,1),(594,-883700400,2),(594,-862617600,1),(594,-852164400,2),(595,-1309746436,1),(595,-1262314800,2),(595,-946780200,3),(595,-315629100,1),(596,-1855958961,3),(596,-1689814800,1),(596,-1680397200,2),(596,-1665363600,1),(596,-1648342800,2),(596,-1635123600,1),(596,-1616893200,2),(596,-1604278800,1),(596,-1585443600,2),(596,-1574038800,1),(596,-1552266000,2),(596,-1539997200,1),(596,-1531443600,2),(596,-956365200,1),(596,-950486400,3),(596,-942012000,5),(596,-812502000,4),(596,-796262400,5),(596,-781052400,4),(596,-766630800,5),(596,-733280400,3),(596,-439430400,5),(596,-212029200,3),(596,41468400,1),(596,54774000,2),(596,231724800,6),(596,246236400,5),(596,259545600,4),(596,275274000,5),(596,309740400,3),(596,325468800,6),(596,341802000,3),(596,357523200,5),(597,-1309746436,1),(597,-1262314800,2),(597,-946780200,3),(597,-315629100,1),(598,-1309746436,1),(598,-1262314800,2),(598,-946780200,3),(598,-315629100,1),(599,-1830383032,1),(600,-1588464816,1),(601,-1830383032,1),(602,-1830380400,1),(602,157770000,2),(603,-2109291020,1),(604,-1588464816,1),(605,-2109291020,1),(606,-929844000,0),(606,-923108400,1),(606,-906170400,0),(606,-892868400,1),(606,-875844000,0),(606,-857790000,1),(606,-844308000,0),(606,-825822000,1),(606,-812685600,0),(606,-794199600,1),(606,-779853600,0),(606,-762663600,1),(606,-399088800,0),(606,-386650800,1),(606,-368330400,0),(606,-355114800,1),(606,-336790800,0),(606,-323654400,1),(606,-305168400,0),(606,-292032000,1),(606,-273632400,0),(606,-260496000,1),(606,-242096400,0),(606,-228960000,1),(606,-210560400,0),(606,-197424000,1),(606,-178938000,0),(606,-165801600,1),(606,-147402000,0),(606,-134265600,1),(606,-115866000,0),(606,-102643200,1),(606,-84330000,0),(606,-71107200,1),(606,-52707600,0),(606,-39484800,1),(606,-21171600,0),(606,-7948800,1),(606,10364400,0),(606,23587200,1),(606,41900400,0),(606,55123200,1),(606,73522800,0),(606,86745600,1),(606,105058800,0),(606,118281600,1),(606,136594800,0),(606,149817600,1),(606,168130800,0),(606,181353600,1),(606,199753200,0),(606,212976000,1),(606,231289200,0),(606,244512000,1),(606,262825200,0),(606,276048000,1),(606,294361200,0),(606,307584000,1),(606,325983600,0),(606,339206400,1),(606,357519600,0),(606,370742400,1),(606,396399600,0),(606,402278400,1),(606,426812400,0),(606,433814400,1),(606,452214000,0),(606,465436800,1),(606,483750000,0),(606,496972800,1),(606,515286000,0),(606,528508800,1),(606,546822000,0),(606,560044800,1),(606,578444400,0),(606,591667200,1),(606,610412400,0),(606,623203200,1),(606,641516400,0),(606,654739200,1),(606,673052400,0),(606,686275200,1),(606,704674800,0),(606,717897600,1),(606,736210800,0),(606,749433600,1),(606,767746800,0),(606,780969600,1),(606,799020000,2),(606,812322000,1),(606,830469600,2),(606,843771600,1),(606,861919200,2),(606,875221200,1),(606,893368800,2),(606,906670800,1),(606,925423200,2),(606,938725200,1),(606,956872800,2),(606,970174800,1),(606,988322400,2),(606,1001624400,1),(606,1019772000,2),(606,1033074000,1),(606,1051221600,2),(606,1064523600,1),(606,1083276000,2),(606,1096578000,1),(606,1114725600,2),(606,1128027600,1),(606,1146175200,2),(606,1158872400,1),(606,1177624800,2),(606,1189112400,1),(606,1209074400,2),(606,1219957200,1),(606,1240524000,2),(606,1250802000,1),(606,1272578400,2),(606,1281474000,1),(606,1284069600,0),(606,1285880400,1),(606,1400191200,0),(606,1403816400,1),(606,1406844000,0),(606,1411678800,1),(607,-1773012580,2),(607,-956361600,1),(607,-950490000,2),(607,-942019200,1),(607,-761187600,2),(607,-617241600,1),(607,-605149200,2),(607,-81432000,1),(607,-71110800,2),(607,141264000,1),(607,147222000,2),(607,199756800,1),(607,207702000,2),(607,231292800,1),(607,244249200,2),(607,265507200,1),(607,271033200,2),(607,448243200,3),(607,504918000,2),(607,1212278400,1),(607,1220223600,2),(607,1243814400,1),(607,1250809200,2),(607,1272758400,1),(607,1281222000,2),(607,1301788800,1),(607,1312066800,2),(607,1335664800,1),(607,1342749600,2),(607,1345428000,1),(607,1348970400,2),(607,1367114400,1),(607,1373162400,2),(607,1376100000,1),(607,1382839200,2),(607,1396144800,1),(607,1403920800,2),(607,1406944800,1),(607,1414288800,2),(607,1427594400,1),(607,1434247200,2),(607,1437271200,1),(607,1445738400,2),(607,1459044000,1),(607,1465092000,2),(607,1468116000,1),(607,1477792800,2),(607,1490493600,1),(607,1495332000,2),(607,1498960800,1),(607,1509242400,2),(607,1521943200,1),(607,1526176800,2),(607,1529200800,1),(607,1540692000,2),(607,1553997600,1),(607,1557021600,2),(607,1560045600,1),(607,1572141600,2),(607,1585447200,1),(607,1587261600,2),(607,1590285600,1),(607,1603591200,2),(607,1616896800,1),(607,1618106400,2),(607,1621130400,1),(607,1635645600,2),(607,1651975200,1),(607,1667095200,2),(607,1682215200,1),(607,1698544800,2),(607,1713060000,1),(607,1729994400,2),(607,1743904800,1),(607,1761444000,2),(607,1774749600,1),(607,1792893600,2),(607,1806199200,1),(607,1824948000,2),(607,1837648800,1),(607,1856397600,2),(607,1869098400,1),(607,1887847200,2),(607,1901152800,1),(607,1919296800,2),(607,1932602400,1),(607,1950746400,2),(607,1964052000,1),(607,1982800800,2),(607,1995501600,1),(607,2014250400,2),(607,2026951200,1),(607,2045700000,2),(607,2058400800,1),(607,2077149600,2),(607,2090455200,1),(607,2107994400,2),(607,2121904800,1),(607,2138234400,2),(608,-1630112400,1),(608,-1616810400,0),(608,-1442451600,1),(608,-1427673600,2),(608,-1379293200,1),(608,-1364774400,2),(608,-1348448400,1),(608,-1333324800,2),(608,-1316390400,1),(608,-1301270400,2),(608,-1293840000,0),(608,-81432000,1),(608,-71110800,0),(608,141264000,1),(608,147222000,0),(608,199756800,1),(608,207702000,0),(608,231292800,1),(608,244249200,0),(608,265507200,1),(608,271033200,0),(608,448243200,3),(608,512528400,4),(608,528253200,5),(608,543978000,4),(608,559702800,5),(608,575427600,4),(608,591152400,5),(608,606877200,4),(608,622602000,5),(608,638326800,4),(608,654656400,5),(608,670381200,4),(608,686106000,5),(608,701830800,4),(608,717555600,5),(608,733280400,4),(608,749005200,5),(608,764730000,4),(608,780454800,5),(608,796179600,4),(608,811904400,5),(608,828234000,4),(608,846378000,5),(608,859683600,4),(608,877827600,5),(608,891133200,4),(608,909277200,5),(608,922582800,4),(608,941331600,5),(608,954032400,4),(608,972781200,5),(608,985482000,4),(608,1004230800,5),(608,1017536400,4),(608,1035680400,5),(608,1048986000,4),(608,1067130000,5),(608,1080435600,4),(608,1099184400,5),(608,1111885200,4),(608,1130634000,5),(608,1143334800,4),(608,1162083600,5),(608,1174784400,4),(608,1193533200,5),(608,1206838800,4),(608,1224982800,5),(608,1238288400,4),(608,1256432400,5),(608,1269738000,4),(608,1288486800,5),(608,1301187600,4),(608,1319936400,5),(608,1332637200,4),(608,1351386000,5),(608,1364691600,4),(608,1382835600,5),(608,1396141200,4),(608,1414285200,5),(608,1427590800,4),(608,1445734800,5),(608,1459040400,4),(608,1477789200,5),(608,1490490000,4),(608,1509238800,5),(608,1521939600,4),(608,1540688400,5),(608,1553994000,4),(608,1572138000,5),(608,1585443600,4),(608,1603587600,5),(608,1616893200,4),(608,1635642000,5),(608,1648342800,4),(608,1667091600,5),(608,1679792400,4),(608,1698541200,5),(608,1711846800,4),(608,1729990800,5),(608,1743296400,4),(608,1761440400,5),(608,1774746000,4),(608,1792890000,5),(608,1806195600,4),(608,1824944400,5),(608,1837645200,4),(608,1856394000,5),(608,1869094800,4),(608,1887843600,5),(608,1901149200,4),(608,1919293200,5),(608,1932598800,4),(608,1950742800,5),(608,1964048400,4),(608,1982797200,5),(608,1995498000,4),(608,2014246800,5),(608,2026947600,4),(608,2045696400,5),(608,2058397200,4),(608,2077146000,5),(608,2090451600,4),(608,2108595600,5),(608,2121901200,4),(608,2140045200,5),(609,-1830383032,1),(610,-1830383032,1),(611,-1309746436,1),(611,-1262314800,2),(611,-946780200,3),(611,-315629100,1),(612,-1309746436,1),(612,-1262314800,2),(612,-946780200,3),(612,-315629100,1),(613,-1588464816,1),(614,-1136070432,1),(614,198291600,3),(614,199756800,2),(614,207702000,3),(614,231292800,2),(614,244249200,3),(614,265507200,2),(614,271033200,3),(614,1212278400,2),(614,1220223600,3),(614,1243814400,2),(614,1250809200,3),(614,1272758400,2),(614,1281222000,3),(614,1301788800,2),(614,1312066800,3),(614,1335664800,2),(614,1342749600,3),(614,1345428000,2),(614,1348970400,3),(614,1367114400,2),(614,1373162400,3),(614,1376100000,2),(614,1382839200,3),(614,1396144800,2),(614,1403920800,3),(614,1406944800,2),(614,1414288800,3),(614,1427594400,2),(614,1434247200,3),(614,1437271200,2),(614,1445738400,3),(614,1459044000,2),(614,1465092000,3),(614,1468116000,2),(614,1477792800,3),(614,1490493600,2),(614,1495332000,3),(614,1498960800,2),(614,1509242400,3),(614,1521943200,2),(614,1526176800,3),(614,1529200800,2),(614,1540692000,3),(614,1553997600,2),(614,1557021600,3),(614,1560045600,2),(614,1572141600,3),(614,1585447200,2),(614,1587261600,3),(614,1590285600,2),(614,1603591200,3),(614,1616896800,2),(614,1618106400,3),(614,1621130400,2),(614,1635645600,3),(614,1651975200,2),(614,1667095200,3),(614,1682215200,2),(614,1698544800,3),(614,1713060000,2),(614,1729994400,3),(614,1743904800,2),(614,1761444000,3),(614,1774749600,2),(614,1792893600,3),(614,1806199200,2),(614,1824948000,3),(614,1837648800,2),(614,1856397600,3),(614,1869098400,2),(614,1887847200,3),(614,1901152800,2),(614,1919296800,3),(614,1932602400,2),(614,1950746400,3),(614,1964052000,2),(614,1982800800,3),(614,1995501600,2),(614,2014250400,3),(614,2026951200,2),(614,2045700000,3),(614,2058400800,2),(614,2077149600,3),(614,2090455200,2),(614,2107994400,3),(614,2121904800,2),(614,2138234400,3),(615,-1830383032,1),(616,-2109291020,1),(617,-2109291020,1),(618,-2109288600,2),(618,-860976000,1),(618,-845254800,2),(618,-829526400,1),(618,-813805200,2),(619,-1230775588,2),(619,10360800,1),(619,24786000,2),(619,41810400,1),(619,56322000,2),(619,73432800,1),(619,87944400,2),(619,104882400,1),(619,119480400,2),(619,136332000,1),(619,151016400,2),(619,167781600,1),(619,182552400,2),(619,199231200,1),(619,214174800,2),(619,230680800,1),(619,245710800,2),(619,262735200,1),(619,277246800,2),(619,294184800,1),(619,308782800,2),(619,325634400,1),(619,340405200,2),(619,357084000,1),(619,371941200,2),(619,388533600,1),(619,403477200,2),(619,419983200,1),(619,435013200,2),(619,452037600,1),(619,466635600,2),(619,483487200,1),(619,498171600,2),(619,947930400,3),(620,-1309746436,1),(620,-1262314800,2),(620,-946780200,3),(620,-315629100,1),(621,-1230775808,2),(621,10360800,1),(621,24786000,2),(621,41810400,1),(621,56322000,2),(621,73432800,1),(621,87944400,2),(621,104882400,1),(621,119480400,2),(621,136332000,1),(621,151016400,2),(621,167781600,1),(621,182552400,2),(621,199231200,1),(621,214174800,2),(621,230680800,1),(621,245710800,2),(621,262735200,1),(621,277246800,2),(621,294184800,1),(621,308782800,2),(621,325634400,1),(621,340405200,2),(621,357084000,1),(621,371941200,2),(621,388533600,1),(621,403477200,2),(621,419983200,1),(621,435013200,2),(621,452037600,1),(621,466635600,2),(621,483487200,1),(621,498171600,2),(621,947930400,3),(621,1509483600,2),(622,-2109291020,1),(623,-1588464816,1),(624,-1588464816,1),(625,-1588464816,1),(626,-1830383032,1),(627,-1588464816,1),(628,-2109291020,1),(629,-2109291020,1),(630,-1588464816,1),(631,-2109291020,1),(632,-2109288600,2),(632,-860976000,1),(632,-845254800,2),(632,-829526400,1),(632,-813805200,2),(633,-2109288600,2),(633,-860976000,1),(633,-845254800,2),(633,-829526400,1),(633,-813805200,2),(634,-1309746436,1),(634,-1262314800,2),(634,-946780200,3),(634,-315629100,1),(635,-1604359012,1),(635,63593070,2),(636,-1309746436,1),(636,-1262314800,2),(636,-946780200,3),(636,-315629100,1),(637,-1830387612,1),(637,308703600,2),(637,321314400,1),(638,-1588464816,1),(639,-1830383032,1),(640,-1830383032,1),(641,-1588464816,1),(642,-1830384000,1),(642,1514768400,2),(643,-1830383032,1),(644,-1577926364,2),(644,-574902000,1),(644,-568087200,2),(644,-512175600,1),(644,-504928800,2),(644,-449888400,1),(644,-441856800,2),(644,-347158800,3),(644,378684000,2),(644,386463600,1),(644,402271200,2),(644,417999600,1),(644,433807200,2),(644,449622000,1),(644,465429600,2),(644,481590000,1),(644,496965600,2),(644,512953200,1),(644,528674400,2),(644,544230000,1),(644,560037600,2),(644,575852400,1),(644,591660000,2),(644,607388400,1),(644,623196000,2),(644,641775600,3),(644,844034400,2),(644,860108400,1),(644,875916000,3),(644,1352505600,2),(644,1364515200,1),(644,1382659200,3),(645,-1855958961,3),(645,-969242400,1),(645,-950493600,2),(645,-941940000,1),(645,-891136800,3),(645,-877827600,4),(645,-857257200,3),(645,-844556400,4),(645,-842918400,3),(645,-842223600,4),(645,-828230400,3),(645,-812502000,4),(645,-796269600,3),(645,-781052400,4),(645,-766634400,3),(645,231202800,1),(645,243903600,2),(645,262825200,1),(645,276044400,2),(645,581122800,1),(645,591145200,2),(645,606870000,1),(645,622594800,2),(645,641516400,1),(645,654649200,2),(645,1114902000,1),(645,1128038400,2),(645,1143334800,1),(645,1162083600,2),(645,1174784400,1),(645,1193533200,2),(645,1206838800,1),(645,1224982800,2),(646,-2109288600,1),(646,-860976000,2),(646,-845254800,1),(646,637970400,3),(646,764200800,4),(646,778640400,5),(646,796780800,4),(646,810090000,5),(646,828835200,4),(646,841539600,5),(646,860284800,4),(646,873594000,5),(646,891734400,4),(646,905043600,5),(646,923184000,4),(646,936493200,5),(646,954633600,4),(646,967942800,5),(646,986083200,4),(646,999392400,5),(646,1018137600,4),(646,1030842000,5),(646,1049587200,4),(646,1062896400,5),(646,1081036800,4),(646,1094346000,5),(646,1112486400,4),(646,1125795600,5),(646,1143936000,4),(646,1157245200,5),(646,1175385600,4),(646,1188694800,5),(646,1207440000,4),(646,1220749200,5),(646,1238889600,4),(646,1252198800,5),(646,1270339200,4),(646,1283648400,5),(646,1301788800,4),(646,1315098000,5),(646,1333238400,4),(646,1346547600,5),(646,1365292800,4),(646,1377997200,5),(646,1396742400,4),(646,1410051600,5),(646,1428192000,4),(646,1441501200,5),(646,1459641600,4),(646,1472950800,5),(646,1491091200,4),(646,1504400400,5),(646,1508796000,3),(647,-880196400,1),(647,-769395600,2),(647,-765374400,0),(647,-86878800,3),(647,-21466800,4),(647,-5745600,3),(647,9982800,4),(647,25704000,3),(647,41432400,4),(647,57758400,3),(647,73486800,4),(647,89208000,3),(647,104936400,4),(647,120657600,3),(647,126709200,4),(647,152107200,3),(647,162392400,4),(647,183556800,3),(647,199285200,4),(647,215611200,3),(647,230734800,4),(647,247060800,3),(647,262789200,4),(647,278510400,3),(647,294238800,4),(647,309960000,3),(647,325688400,4),(647,341409600,3),(647,357138000,4),(647,372859200,3),(647,388587600,4),(647,404913600,3),(647,420037200,4),(647,436363200,5),(647,439034400,7),(647,452088000,6),(647,467809200,7),(647,483537600,6),(647,499258800,7),(647,514987200,6),(647,530708400,7),(647,544622400,6),(647,562158000,7),(647,576072000,6),(647,594212400,7),(647,607521600,6),(647,625662000,7),(647,638971200,6),(647,657111600,7),(647,671025600,6),(647,688561200,7),(647,702475200,6),(647,720010800,7),(647,733924800,6),(647,752065200,7),(647,765374400,6),(647,783514800,7),(647,796824000,6),(647,814964400,7),(647,828878400,6),(647,846414000,7),(647,860328000,6),(647,877863600,7),(647,891777600,6),(647,909313200,7),(647,923227200,6),(647,941367600,7),(647,954676800,6),(647,972817200,7),(647,986126400,6),(647,1004266800,7),(647,1018180800,6),(647,1035716400,7),(647,1049630400,6),(647,1067166000,7),(647,1081080000,6),(647,1099220400,7),(647,1112529600,6),(647,1130670000,7),(647,1143979200,6),(647,1162119600,7),(647,1173614400,6),(647,1194174000,7),(647,1205064000,6),(647,1225623600,7),(647,1236513600,6),(647,1257073200,7),(647,1268568000,6),(647,1289127600,7),(647,1300017600,6),(647,1320577200,7),(647,1331467200,6),(647,1352026800,7),(647,1362916800,6),(647,1383476400,7),(647,1394366400,6),(647,1414926000,7),(647,1425816000,6),(647,1446375600,7),(647,1457870400,6),(647,1478430000,7),(647,1489320000,6),(647,1509879600,7),(647,1520769600,6),(647,1541329200,7),(647,1552219200,6),(647,1572778800,7),(647,1583668800,6),(647,1604228400,7),(647,1615723200,6),(647,1636282800,7),(647,1647172800,6),(647,1667732400,7),(647,1678622400,6),(647,1699182000,7),(647,1710072000,6),(647,1730631600,7),(647,1741521600,6),(647,1762081200,7),(647,1772971200,6),(647,1793530800,7),(647,1805025600,6),(647,1825585200,7),(647,1836475200,6),(647,1857034800,7),(647,1867924800,6),(647,1888484400,7),(647,1899374400,6),(647,1919934000,7),(647,1930824000,6),(647,1951383600,7),(647,1962878400,6),(647,1983438000,7),(647,1994328000,6),(647,2014887600,7),(647,2025777600,6),(647,2046337200,7),(647,2057227200,6),(647,2077786800,7),(647,2088676800,6),(647,2109236400,7),(647,2120126400,6),(647,2140686000,7),(648,-880200000,1),(648,-769395600,2),(648,-765378000,0),(648,-86882400,3),(648,-21470400,4),(648,-5749200,3),(648,9979200,4),(648,25700400,3),(648,41428800,4),(648,57754800,3),(648,73483200,4),(648,89204400,3),(648,104932800,4),(648,120654000,3),(648,126705600,4),(648,152103600,3),(648,162388800,4),(648,183553200,3),(648,199281600,4),(648,215607600,3),(648,230731200,4),(648,247057200,3),(648,262785600,4),(648,278506800,3),(648,294235200,4),(648,309956400,3),(648,325684800,4),(648,341406000,3),(648,357134400,4),(648,372855600,3),(648,388584000,4),(648,404910000,3),(648,420033600,4),(648,436359600,5),(648,439030800,7),(648,452084400,6),(648,467805600,7),(648,483534000,6),(648,499255200,7),(648,514983600,6),(648,530704800,7),(648,544618800,6),(648,562154400,7),(648,576068400,6),(648,594208800,7),(648,607518000,6),(648,625658400,7),(648,638967600,6),(648,657108000,7),(648,671022000,6),(648,688557600,7),(648,702471600,6),(648,720007200,7),(648,733921200,6),(648,752061600,7),(648,765370800,6),(648,783511200,7),(648,796820400,6),(648,814960800,7),(648,828874800,6),(648,846410400,7),(648,860324400,6),(648,877860000,7),(648,891774000,6),(648,909309600,7),(648,923223600,6),(648,941364000,7),(648,954673200,6),(648,972813600,7),(648,986122800,6),(648,1004263200,7),(648,1018177200,6),(648,1035712800,7),(648,1049626800,6),(648,1067162400,7),(648,1081076400,6),(648,1099216800,7),(648,1112526000,6),(648,1130666400,7),(648,1143975600,6),(648,1162116000,7),(648,1173610800,6),(648,1194170400,7),(648,1205060400,6),(648,1225620000,7),(648,1236510000,6),(648,1257069600,7),(648,1268564400,6),(648,1289124000,7),(648,1300014000,6),(648,1320573600,7),(648,1331463600,6),(648,1352023200,7),(648,1362913200,6),(648,1383472800,7),(648,1394362800,6),(648,1414922400,7),(648,1425812400,6),(648,1446372000,7),(648,1457866800,6),(648,1478426400,7),(648,1489316400,6),(648,1509876000,7),(648,1520766000,6),(648,1541325600,7),(648,1552215600,6),(648,1572775200,7),(648,1583665200,6),(648,1604224800,7),(648,1615719600,6),(648,1636279200,7),(648,1647169200,6),(648,1667728800,7),(648,1678618800,6),(648,1699178400,7),(648,1710068400,6),(648,1730628000,7),(648,1741518000,6),(648,1762077600,7),(648,1772967600,6),(648,1793527200,7),(648,1805022000,6),(648,1825581600,7),(648,1836471600,6),(648,1857031200,7),(648,1867921200,6),(648,1888480800,7),(648,1899370800,6),(648,1919930400,7),(648,1930820400,6),(648,1951380000,7),(648,1962874800,6),(648,1983434400,7),(648,1994324400,6),(648,2014884000,7),(648,2025774000,6),(648,2046333600,7),(648,2057223600,6),(648,2077783200,7),(648,2088673200,6),(648,2109232800,7),(648,2120122800,6),(648,2140682400,7),(649,-1825098836,1),(650,-1825098836,1),(651,-1767214032,2),(651,-1206957600,1),(651,-1191362400,2),(651,-1175374800,1),(651,-1159826400,2),(651,-633819600,1),(651,-622069200,2),(651,-602283600,1),(651,-591832800,2),(651,-570747600,1),(651,-560210400,2),(651,-539125200,1),(651,-531352800,2),(651,-191365200,1),(651,-184197600,2),(651,-155163600,1),(651,-150069600,2),(651,-128898000,1),(651,-121125600,2),(651,-99954000,1),(651,-89589600,2),(651,-68418000,1),(651,-57967200,2),(651,499748400,1),(651,511236000,2),(651,530593200,1),(651,540266400,2),(651,562129200,1),(651,571197600,2),(651,592974000,1),(651,602042400,2),(651,624423600,1),(651,634701600,2),(651,813726000,1),(651,824004000,2),(651,844570800,1),(651,856058400,2),(651,876106800,1),(651,888717600,2),(651,908074800,1),(651,919562400,2),(651,938919600,1),(651,951616800,2),(651,970974000,1),(651,982461600,2),(651,1003028400,1),(651,1013911200,2),(651,1036292400,1),(651,1045360800,2),(651,1350788400,1),(651,1361066400,2),(652,-1567453392,1),(652,-1233432000,2),(652,-1222981200,1),(652,-1205956800,2),(652,-1194037200,1),(652,-1172865600,2),(652,-1162501200,1),(652,-1141329600,2),(652,-1130965200,1),(652,-1109793600,2),(652,-1099429200,1),(652,-1078257600,2),(652,-1067806800,1),(652,-1046635200,2),(652,-1036270800,1),(652,-1015099200,2),(652,-1004734800,1),(652,-983563200,2),(652,-973198800,1),(652,-952027200,2),(652,-941576400,1),(652,-931032000,2),(652,-900882000,1),(652,-890337600,2),(652,-833749200,1),(652,-827265600,2),(652,-752274000,1),(652,-733780800,2),(652,-197326800,1),(652,-190843200,2),(652,-184194000,1),(652,-164491200,2),(652,-152658000,1),(652,-132955200,2),(652,-121122000,1),(652,-101419200,2),(652,-86821200,1),(652,-71092800,2),(652,-54766800,1),(652,-39038400,2),(652,-23317200,1),(652,-7588800,4),(652,128142000,3),(652,136605600,4),(652,596948400,3),(652,605066400,4),(652,624423600,3),(652,636516000,4),(652,656478000,3),(652,667965600,4),(652,687927600,3),(652,699415200,4),(652,719377200,3),(652,731469600,4),(652,938919600,2),(652,952052400,4),(652,1198983600,3),(652,1205632800,4),(652,1224385200,3),(652,1237082400,4),(653,-1567453392,1),(653,-1233432000,2),(653,-1222981200,1),(653,-1205956800,2),(653,-1194037200,1),(653,-1172865600,2),(653,-1162501200,1),(653,-1141329600,2),(653,-1130965200,1),(653,-1109793600,2),(653,-1099429200,1),(653,-1078257600,2),(653,-1067806800,1),(653,-1046635200,2),(653,-1036270800,1),(653,-1015099200,2),(653,-1004734800,1),(653,-983563200,2),(653,-973198800,1),(653,-952027200,2),(653,-941576400,1),(653,-931032000,2),(653,-900882000,1),(653,-890337600,2),(653,-833749200,1),(653,-827265600,2),(653,-752274000,1),(653,-733780800,2),(653,-197326800,1),(653,-190843200,2),(653,-184194000,1),(653,-164491200,2),(653,-152658000,1),(653,-132955200,2),(653,-121122000,1),(653,-101419200,2),(653,-86821200,1),(653,-71092800,2),(653,-54766800,1),(653,-39038400,2),(653,-23317200,1),(653,-7588800,4),(653,128142000,3),(653,136605600,4),(653,596948400,3),(653,605066400,4),(653,624423600,3),(653,636516000,4),(653,656478000,3),(653,667965600,1),(653,687931200,3),(653,699415200,4),(653,719377200,3),(653,731469600,4),(653,938919600,2),(653,952052400,4),(653,1086058800,1),(653,1087704000,4),(653,1198983600,3),(653,1205632800,4),(654,-1567453392,1),(654,-1233432000,2),(654,-1222981200,1),(654,-1205956800,2),(654,-1194037200,1),(654,-1172865600,2),(654,-1162501200,1),(654,-1141329600,2),(654,-1130965200,1),(654,-1109793600,2),(654,-1099429200,1),(654,-1078257600,2),(654,-1067806800,1),(654,-1046635200,2),(654,-1036270800,1),(654,-1015099200,2),(654,-1004734800,1),(654,-983563200,2),(654,-973198800,1),(654,-952027200,2),(654,-941576400,1),(654,-931032000,2),(654,-900882000,1),(654,-890337600,2),(654,-833749200,1),(654,-827265600,2),(654,-752274000,1),(654,-733780800,2),(654,-197326800,1),(654,-190843200,2),(654,-184194000,1),(654,-164491200,2),(654,-152658000,1),(654,-132955200,2),(654,-121122000,1),(654,-101419200,2),(654,-86821200,1),(654,-71092800,2),(654,-54766800,1),(654,-39038400,2),(654,-23317200,1),(654,-7588800,4),(654,128142000,3),(654,136605600,4),(654,596948400,3),(654,605066400,4),(654,624423600,3),(654,636516000,4),(654,656478000,3),(654,667965600,1),(654,687931200,3),(654,699415200,4),(654,719377200,3),(654,731469600,4),(654,938919600,2),(654,952052400,4),(654,1086058800,1),(654,1087704000,4),(654,1198983600,3),(654,1205632800,4),(655,-1567453392,1),(655,-1233432000,2),(655,-1222981200,1),(655,-1205956800,2),(655,-1194037200,1),(655,-1172865600,2),(655,-1162501200,1),(655,-1141329600,2),(655,-1130965200,1),(655,-1109793600,2),(655,-1099429200,1),(655,-1078257600,2),(655,-1067806800,1),(655,-1046635200,2),(655,-1036270800,1),(655,-1015099200,2),(655,-1004734800,1),(655,-983563200,2),(655,-973198800,1),(655,-952027200,2),(655,-941576400,1),(655,-931032000,2),(655,-900882000,1),(655,-890337600,2),(655,-833749200,1),(655,-827265600,2),(655,-752274000,1),(655,-733780800,2),(655,-197326800,1),(655,-190843200,2),(655,-184194000,1),(655,-164491200,2),(655,-152658000,1),(655,-132955200,2),(655,-121122000,1),(655,-101419200,2),(655,-86821200,1),(655,-71092800,2),(655,-54766800,1),(655,-39038400,2),(655,-23317200,1),(655,-7588800,4),(655,128142000,3),(655,136605600,4),(655,596948400,3),(655,605066400,4),(655,624423600,3),(655,636516000,4),(655,656478000,3),(655,667965600,1),(655,687931200,3),(655,699415200,4),(655,719377200,3),(655,731469600,4),(655,938919600,2),(655,952052400,4),(655,1198983600,3),(655,1205632800,4),(655,1224385200,3),(655,1237082400,4),(656,-1567453392,1),(656,-1233432000,2),(656,-1222981200,1),(656,-1205956800,2),(656,-1194037200,1),(656,-1172865600,2),(656,-1162501200,1),(656,-1141329600,2),(656,-1130965200,1),(656,-1109793600,2),(656,-1099429200,1),(656,-1078257600,2),(656,-1067806800,1),(656,-1046635200,2),(656,-1036270800,1),(656,-1015099200,2),(656,-1004734800,1),(656,-983563200,2),(656,-973198800,1),(656,-952027200,2),(656,-941576400,1),(656,-931032000,2),(656,-900882000,1),(656,-890337600,2),(656,-833749200,1),(656,-827265600,2),(656,-752274000,1),(656,-733780800,2),(656,-197326800,1),(656,-190843200,2),(656,-184194000,1),(656,-164491200,2),(656,-152658000,1),(656,-132955200,2),(656,-121122000,1),(656,-101419200,2),(656,-86821200,1),(656,-71092800,2),(656,-54766800,1),(656,-39038400,2),(656,-23317200,1),(656,-7588800,4),(656,128142000,3),(656,136605600,4),(656,596948400,3),(656,605066400,4),(656,624423600,3),(656,636516000,1),(656,657086400,2),(656,669178800,1),(656,686721600,3),(656,699415200,4),(656,719377200,3),(656,731469600,4),(656,938919600,2),(656,952052400,4),(656,1198983600,3),(656,1205632800,4),(657,-1567453392,1),(657,-1233432000,2),(657,-1222981200,1),(657,-1205956800,2),(657,-1194037200,1),(657,-1172865600,2),(657,-1162501200,1),(657,-1141329600,2),(657,-1130965200,1),(657,-1109793600,2),(657,-1099429200,1),(657,-1078257600,2),(657,-1067806800,1),(657,-1046635200,2),(657,-1036270800,1),(657,-1015099200,2),(657,-1004734800,1),(657,-983563200,2),(657,-973198800,1),(657,-952027200,2),(657,-941576400,1),(657,-931032000,2),(657,-900882000,1),(657,-890337600,2),(657,-833749200,1),(657,-827265600,2),(657,-752274000,1),(657,-733780800,2),(657,-197326800,1),(657,-190843200,2),(657,-184194000,1),(657,-164491200,2),(657,-152658000,1),(657,-132955200,2),(657,-121122000,1),(657,-101419200,2),(657,-86821200,1),(657,-71092800,2),(657,-54766800,1),(657,-39038400,2),(657,-23317200,1),(657,-7588800,4),(657,128142000,3),(657,136605600,4),(657,596948400,3),(657,605066400,4),(657,624423600,3),(657,636516000,4),(657,656478000,3),(657,667792800,1),(657,673588800,4),(657,687927600,3),(657,699415200,4),(657,719377200,3),(657,731469600,4),(657,938919600,2),(657,952052400,4),(657,1086058800,1),(657,1087704000,4),(657,1198983600,3),(657,1205632800,4),(658,-1567453392,1),(658,-1233432000,2),(658,-1222981200,1),(658,-1205956800,2),(658,-1194037200,1),(658,-1172865600,2),(658,-1162501200,1),(658,-1141329600,2),(658,-1130965200,1),(658,-1109793600,2),(658,-1099429200,1),(658,-1078257600,2),(658,-1067806800,1),(658,-1046635200,2),(658,-1036270800,1),(658,-1015099200,2),(658,-1004734800,1),(658,-983563200,2),(658,-973198800,1),(658,-952027200,2),(658,-941576400,1),(658,-931032000,2),(658,-900882000,1),(658,-890337600,2),(658,-833749200,1),(658,-827265600,2),(658,-752274000,1),(658,-733780800,2),(658,-197326800,1),(658,-190843200,2),(658,-184194000,1),(658,-164491200,2),(658,-152658000,1),(658,-132955200,2),(658,-121122000,1),(658,-101419200,2),(658,-86821200,1),(658,-71092800,2),(658,-54766800,1),(658,-39038400,2),(658,-23317200,1),(658,-7588800,4),(658,128142000,3),(658,136605600,4),(658,596948400,3),(658,605066400,4),(658,624423600,3),(658,636516000,1),(658,655963200,2),(658,667796400,1),(658,687499200,2),(658,699418800,1),(658,719380800,3),(658,731469600,4),(658,938919600,2),(658,952052400,4),(658,1085281200,1),(658,1096171200,4),(658,1198983600,3),(658,1205632800,4),(659,-1567453392,1),(659,-1233432000,2),(659,-1222981200,1),(659,-1205956800,2),(659,-1194037200,1),(659,-1172865600,2),(659,-1162501200,1),(659,-1141329600,2),(659,-1130965200,1),(659,-1109793600,2),(659,-1099429200,1),(659,-1078257600,2),(659,-1067806800,1),(659,-1046635200,2),(659,-1036270800,1),(659,-1015099200,2),(659,-1004734800,1),(659,-983563200,2),(659,-973198800,1),(659,-952027200,2),(659,-941576400,1),(659,-931032000,2),(659,-900882000,1),(659,-890337600,2),(659,-833749200,1),(659,-827265600,2),(659,-752274000,1),(659,-733780800,2),(659,-197326800,1),(659,-190843200,2),(659,-184194000,1),(659,-164491200,2),(659,-152658000,1),(659,-132955200,2),(659,-121122000,1),(659,-101419200,2),(659,-86821200,1),(659,-71092800,2),(659,-54766800,1),(659,-39038400,2),(659,-23317200,1),(659,-7588800,4),(659,128142000,3),(659,136605600,4),(659,596948400,3),(659,605066400,4),(659,624423600,3),(659,636516000,4),(659,656478000,3),(659,667965600,4),(659,687927600,3),(659,699415200,4),(659,719377200,3),(659,731469600,4),(659,938919600,2),(659,952052400,4),(659,1086058800,1),(659,1087704000,4),(659,1198983600,3),(659,1205632800,4),(660,-1567453392,1),(660,-1233432000,2),(660,-1222981200,1),(660,-1205956800,2),(660,-1194037200,1),(660,-1172865600,2),(660,-1162501200,1),(660,-1141329600,2),(660,-1130965200,1),(660,-1109793600,2),(660,-1099429200,1),(660,-1078257600,2),(660,-1067806800,1),(660,-1046635200,2),(660,-1036270800,1),(660,-1015099200,2),(660,-1004734800,1),(660,-983563200,2),(660,-973198800,1),(660,-952027200,2),(660,-941576400,1),(660,-931032000,2),(660,-900882000,1),(660,-890337600,2),(660,-833749200,1),(660,-827265600,2),(660,-752274000,1),(660,-733780800,2),(660,-197326800,1),(660,-190843200,2),(660,-184194000,1),(660,-164491200,2),(660,-152658000,1),(660,-132955200,2),(660,-121122000,1),(660,-101419200,2),(660,-86821200,1),(660,-71092800,2),(660,-54766800,1),(660,-39038400,2),(660,-23317200,1),(660,-7588800,4),(660,128142000,3),(660,136605600,4),(660,596948400,3),(660,605066400,4),(660,624423600,3),(660,636516000,4),(660,656478000,3),(660,667965600,1),(660,687931200,3),(660,699415200,4),(660,719377200,3),(660,731469600,4),(660,938919600,2),(660,952052400,4),(660,1198983600,3),(660,1205632800,4),(661,-1567453392,1),(661,-1233432000,2),(661,-1222981200,1),(661,-1205956800,2),(661,-1194037200,1),(661,-1172865600,2),(661,-1162501200,1),(661,-1141329600,2),(661,-1130965200,1),(661,-1109793600,2),(661,-1099429200,1),(661,-1078257600,2),(661,-1067806800,1),(661,-1046635200,2),(661,-1036270800,1),(661,-1015099200,2),(661,-1004734800,1),(661,-983563200,2),(661,-973198800,1),(661,-952027200,2),(661,-941576400,1),(661,-931032000,2),(661,-900882000,1),(661,-890337600,2),(661,-833749200,1),(661,-827265600,2),(661,-752274000,1),(661,-733780800,2),(661,-197326800,1),(661,-190843200,2),(661,-184194000,1),(661,-164491200,2),(661,-152658000,1),(661,-132955200,2),(661,-121122000,1),(661,-101419200,2),(661,-86821200,1),(661,-71092800,2),(661,-54766800,1),(661,-39038400,2),(661,-23317200,1),(661,-7588800,4),(661,128142000,3),(661,136605600,4),(661,596948400,3),(661,605066400,4),(661,624423600,3),(661,636516000,4),(661,656478000,3),(661,667792800,1),(661,673588800,4),(661,687927600,3),(661,699415200,4),(661,719377200,3),(661,731469600,4),(661,938919600,2),(661,952052400,4),(661,1085972400,1),(661,1090728000,4),(661,1198983600,3),(661,1205632800,4),(662,-1567453392,1),(662,-1233432000,2),(662,-1222981200,1),(662,-1205956800,2),(662,-1194037200,1),(662,-1172865600,2),(662,-1162501200,1),(662,-1141329600,2),(662,-1130965200,1),(662,-1109793600,2),(662,-1099429200,1),(662,-1078257600,2),(662,-1067806800,1),(662,-1046635200,2),(662,-1036270800,1),(662,-1015099200,2),(662,-1004734800,1),(662,-983563200,2),(662,-973198800,1),(662,-952027200,2),(662,-941576400,1),(662,-931032000,2),(662,-900882000,1),(662,-890337600,2),(662,-833749200,1),(662,-827265600,2),(662,-752274000,1),(662,-733780800,2),(662,-197326800,1),(662,-190843200,2),(662,-184194000,1),(662,-164491200,2),(662,-152658000,1),(662,-132955200,2),(662,-121122000,1),(662,-101419200,2),(662,-86821200,1),(662,-71092800,2),(662,-54766800,1),(662,-39038400,2),(662,-23317200,1),(662,-7588800,4),(662,128142000,3),(662,136605600,4),(662,596948400,3),(662,605066400,4),(662,624423600,3),(662,637380000,1),(662,655963200,2),(662,667796400,1),(662,675748800,4),(662,938919600,2),(662,952052400,4),(662,1085972400,1),(662,1090728000,4),(662,1198983600,3),(662,1200880800,2),(662,1205031600,1),(662,1223784000,2),(662,1236481200,1),(662,1255233600,4),(663,-1567453392,1),(663,-1233432000,2),(663,-1222981200,1),(663,-1205956800,2),(663,-1194037200,1),(663,-1172865600,2),(663,-1162501200,1),(663,-1141329600,2),(663,-1130965200,1),(663,-1109793600,2),(663,-1099429200,1),(663,-1078257600,2),(663,-1067806800,1),(663,-1046635200,2),(663,-1036270800,1),(663,-1015099200,2),(663,-1004734800,1),(663,-983563200,2),(663,-973198800,1),(663,-952027200,2),(663,-941576400,1),(663,-931032000,2),(663,-900882000,1),(663,-890337600,2),(663,-833749200,1),(663,-827265600,2),(663,-752274000,1),(663,-733780800,2),(663,-197326800,1),(663,-190843200,2),(663,-184194000,1),(663,-164491200,2),(663,-152658000,1),(663,-132955200,2),(663,-121122000,1),(663,-101419200,2),(663,-86821200,1),(663,-71092800,2),(663,-54766800,1),(663,-39038400,2),(663,-23317200,1),(663,-7588800,4),(663,128142000,3),(663,136605600,4),(663,596948400,3),(663,605066400,4),(663,624423600,3),(663,636516000,4),(663,656478000,3),(663,667965600,1),(663,687931200,3),(663,699415200,4),(663,719377200,3),(663,731469600,4),(663,938919600,2),(663,952052400,4),(663,1086058800,1),(663,1087099200,4),(663,1198983600,3),(663,1205632800,4),(663,1224385200,3),(663,1237082400,4),(664,-1567453392,1),(664,-1233432000,2),(664,-1222981200,1),(664,-1205956800,2),(664,-1194037200,1),(664,-1172865600,2),(664,-1162501200,1),(664,-1141329600,2),(664,-1130965200,1),(664,-1109793600,2),(664,-1099429200,1),(664,-1078257600,2),(664,-1067806800,1),(664,-1046635200,2),(664,-1036270800,1),(664,-1015099200,2),(664,-1004734800,1),(664,-983563200,2),(664,-973198800,1),(664,-952027200,2),(664,-941576400,1),(664,-931032000,2),(664,-900882000,1),(664,-890337600,2),(664,-833749200,1),(664,-827265600,2),(664,-752274000,1),(664,-733780800,2),(664,-197326800,1),(664,-190843200,2),(664,-184194000,1),(664,-164491200,2),(664,-152658000,1),(664,-132955200,2),(664,-121122000,1),(664,-101419200,2),(664,-86821200,1),(664,-71092800,2),(664,-54766800,1),(664,-39038400,2),(664,-23317200,1),(664,-7588800,4),(664,128142000,3),(664,136605600,4),(664,596948400,3),(664,605066400,4),(664,624423600,3),(664,636516000,4),(664,656478000,3),(664,667965600,4),(664,687927600,3),(664,699415200,4),(664,719377200,3),(664,731469600,4),(664,938919600,2),(664,952052400,4),(664,1085886000,1),(664,1087704000,4),(664,1198983600,3),(664,1205632800,4),(665,-1826738653,1),(665,-157750200,2),(666,-1206389360,1),(666,86760000,2),(666,134017200,1),(666,181368000,3),(666,194497200,1),(666,212990400,3),(666,226033200,1),(666,244526400,3),(666,257569200,1),(666,276062400,3),(666,291783600,1),(666,307598400,3),(666,323406000,1),(666,339220800,3),(666,354942000,1),(666,370756800,3),(666,386478000,1),(666,402292800,3),(666,418014000,1),(666,433828800,3),(666,449636400,1),(666,465451200,3),(666,481172400,1),(666,496987200,3),(666,512708400,1),(666,528523200,3),(666,544244400,1),(666,560059200,3),(666,575866800,1),(666,591681600,3),(666,607402800,1),(666,625032000,3),(666,638938800,1),(666,654753600,3),(666,670474800,1),(666,686721600,3),(666,699418800,1),(666,718257600,3),(666,733546800,1),(666,749448000,3),(666,762318000,1),(666,780984000,3),(666,793767600,1),(666,812520000,3),(666,825649200,1),(666,844574400,3),(666,856666800,1),(666,876024000,3),(666,888721200,1),(666,907473600,3),(666,920775600,1),(666,938923200,3),(666,952225200,1),(666,970372800,3),(666,983674800,1),(666,1002427200,3),(666,1018148400,1),(666,1030852800,3),(666,1049598000,1),(666,1062907200,3),(666,1081047600,1),(666,1097985600,3),(666,1110682800,1),(666,1129435200,3),(666,1142132400,1),(666,1160884800,3),(666,1173582000,1),(666,1192939200,3),(666,1205031600,1),(666,1224388800,3),(666,1236481200,1),(666,1255838400,3),(666,1270954800,1),(666,1286078400,3),(666,1302404400,1),(666,1317528000,3),(666,1333854000,1),(666,1349582400,3),(666,1364094000,1),(666,1381032000,3),(666,1395543600,1),(666,1412481600,3),(666,1426993200,1),(666,1443931200,3),(666,1459047600,1),(666,1475380800,3),(666,1490497200,1),(666,1506830400,3),(666,1521946800,1),(666,1538884800,3),(666,1553396400,1),(666,1570334400,3),(666,1584846000,1),(666,1601784000,3),(666,1616900400,1),(666,1633233600,3),(666,1648350000,1),(666,1664683200,3),(666,1679799600,1),(666,1696132800,3),(666,1711249200,1),(666,1728187200,3),(666,1742698800,1),(666,1759636800,3),(666,1774148400,1),(666,1791086400,3),(666,1806202800,1),(666,1822536000,3),(666,1837652400,1),(666,1853985600,3),(666,1869102000,1),(666,1886040000,3),(666,1900551600,1),(666,1917489600,3),(666,1932001200,1),(666,1948939200,3),(666,1964055600,1),(666,1980388800,3),(666,1995505200,1),(666,2011838400,3),(666,2026954800,1),(666,2043288000,3),(666,2058404400,1),(666,2075342400,3),(666,2089854000,1),(666,2106792000,3),(666,2121303600,1),(666,2138241600,3),(667,-1632067200,0),(667,-1615136400,1),(667,-923248800,0),(667,-880214400,2),(667,-769395600,3),(667,-765392400,4),(668,-880196400,1),(668,-769395600,2),(668,-765374400,0),(668,-86878800,3),(668,-21466800,4),(668,-5745600,3),(668,9982800,4),(668,25704000,3),(668,41432400,4),(668,57758400,3),(668,73486800,4),(668,89208000,3),(668,104936400,4),(668,120657600,3),(668,126709200,4),(668,152107200,3),(668,162392400,4),(668,183556800,3),(668,199285200,4),(668,215611200,3),(668,230734800,4),(668,247060800,3),(668,262789200,4),(668,278510400,3),(668,294238800,4),(668,309960000,3),(668,325688400,4),(668,341409600,3),(668,357138000,4),(668,372859200,3),(668,388587600,4),(668,404913600,3),(668,420037200,4),(668,436363200,5),(668,439034400,7),(668,452088000,6),(668,467809200,7),(668,483537600,6),(668,499258800,7),(668,514987200,6),(668,530708400,7),(668,544622400,6),(668,562158000,7),(668,576072000,6),(668,594212400,7),(668,607521600,6),(668,625662000,7),(668,638971200,6),(668,657111600,7),(668,671025600,6),(668,688561200,7),(668,702475200,6),(668,720010800,7),(668,733924800,6),(668,752065200,7),(668,765374400,6),(668,783514800,7),(668,796824000,6),(668,814964400,7),(668,828878400,6),(668,846414000,7),(668,860328000,6),(668,877863600,7),(668,891777600,6),(668,909313200,7),(668,923227200,6),(668,941367600,7),(668,954676800,6),(668,972817200,7),(668,986126400,6),(668,1004266800,7),(668,1018180800,6),(668,1035716400,7),(668,1049630400,6),(668,1067166000,7),(668,1081080000,6),(668,1099220400,7),(668,1112529600,6),(668,1130670000,7),(668,1143979200,6),(668,1162119600,7),(668,1173614400,6),(668,1194174000,7),(668,1205064000,6),(668,1225623600,7),(668,1236513600,6),(668,1257073200,7),(668,1268568000,6),(668,1289127600,7),(668,1300017600,6),(668,1320577200,7),(668,1331467200,6),(668,1352026800,7),(668,1362916800,6),(668,1383476400,7),(668,1394366400,6),(668,1414926000,7),(668,1425816000,6),(668,1446375600,7),(668,1457870400,6),(668,1478430000,7),(668,1489320000,6),(668,1509879600,7),(668,1520769600,6),(668,1541329200,7),(668,1552219200,6),(668,1572778800,7),(668,1583668800,6),(668,1604228400,7),(668,1615723200,6),(668,1636282800,7),(668,1647172800,6),(668,1667732400,7),(668,1678622400,6),(668,1699182000,7),(668,1710072000,6),(668,1730631600,7),(668,1741521600,6),(668,1762081200,7),(668,1772971200,6),(668,1793530800,7),(668,1805025600,6),(668,1825585200,7),(668,1836475200,6),(668,1857034800,7),(668,1867924800,6),(668,1888484400,7),(668,1899374400,6),(668,1919934000,7),(668,1930824000,6),(668,1951383600,7),(668,1962878400,6),(668,1983438000,7),(668,1994328000,6),(668,2014887600,7),(668,2025777600,6),(668,2046337200,7),(668,2057227200,6),(668,2077786800,7),(668,2088676800,6),(668,2109236400,7),(668,2120126400,6),(668,2140686000,7),(669,-1767216356,2),(669,-1206957600,1),(669,-1191362400,2),(669,-1175374800,1),(669,-1159826400,2),(669,-633819600,1),(669,-622069200,2),(669,-602283600,1),(669,-591832800,2),(669,-570747600,1),(669,-560210400,2),(669,-539125200,1),(669,-531352800,2),(669,-191365200,1),(669,-184197600,2),(669,-155163600,1),(669,-150069600,2),(669,-128898000,1),(669,-121125600,2),(669,-99954000,1),(669,-89589600,2),(669,-68418000,1),(669,-57967200,2),(669,499748400,1),(669,511236000,2),(669,530593200,1),(669,540266400,2),(669,562129200,1),(669,571197600,2),(669,592974000,1),(669,602042400,2),(669,624423600,1),(669,634701600,2),(669,656478000,1),(669,666756000,2),(669,687927600,1),(669,697600800,2),(669,719982000,1),(669,728445600,2),(669,750826800,1),(669,761709600,2),(669,782276400,1),(669,793159200,2),(669,813726000,1),(669,824004000,2),(669,844570800,1),(669,856058400,2),(669,876106800,1),(669,888717600,2),(669,908074800,1),(669,919562400,2),(669,938919600,1),(669,951616800,2),(669,970974000,1),(669,982461600,2),(669,1003028400,1),(669,1013911200,2),(669,1036292400,1),(669,1045360800,2),(669,1318734000,1),(669,1330221600,2),(670,-1514739600,1),(670,-1343066400,2),(670,-1234807200,1),(670,-1220292000,2),(670,-1207159200,1),(670,-1191344400,2),(670,-873828000,1),(670,-661539600,3),(670,28800,1),(670,828867600,4),(670,846403200,1),(670,860317200,4),(670,877852800,1),(670,891766800,4),(670,909302400,1),(670,923216400,4),(670,941356800,1),(670,954666000,4),(670,972806400,1),(670,989139600,4),(670,1001836800,1),(670,1018170000,4),(670,1035705600,1),(670,1049619600,4),(670,1067155200,1),(670,1081069200,4),(670,1099209600,1),(670,1112518800,4),(670,1130659200,1),(670,1143968400,4),(670,1162108800,1),(670,1175418000,4),(670,1193558400,1),(670,1207472400,4),(670,1225008000,1),(670,1238922000,4),(670,1256457600,1),(670,1270371600,5),(670,1288508400,2),(670,1301817600,5),(670,1319958000,2),(670,1333267200,5),(670,1351407600,2),(670,1365321600,5),(670,1382857200,2),(670,1396771200,5),(670,1414306800,2),(670,1428220800,5),(670,1445756400,2),(670,1459670400,5),(670,1477810800,2),(670,1491120000,5),(670,1509260400,2),(670,1522569600,5),(670,1540710000,2),(670,1554624000,5),(670,1572159600,2),(670,1586073600,5),(670,1603609200,2),(670,1617523200,5),(670,1635663600,2),(670,1648972800,5),(670,1667113200,2),(670,1680422400,5),(670,1698562800,2),(670,1712476800,5),(670,1730012400,2),(670,1743926400,5),(670,1761462000,2),(670,1775376000,5),(670,1792911600,2),(670,1806825600,5),(670,1824966000,2),(670,1838275200,5),(670,1856415600,2),(670,1869724800,5),(670,1887865200,2),(670,1901779200,5),(670,1919314800,2),(670,1933228800,5),(670,1950764400,2),(670,1964678400,5),(670,1982818800,2),(670,1996128000,5),(670,2014268400,2),(670,2027577600,5),(670,2045718000,2),(670,2059027200,5),(670,2077167600,2),(670,2091081600,5),(670,2108617200,2),(670,2122531200,5),(670,2140066800,2),(671,-1451678491,1),(671,-1199217691,3),(671,234943200,2),(671,244616400,3),(671,261554400,2),(671,276066000,3),(671,293004000,2),(671,307515600,3),(671,325058400,2),(671,338706000,3),(672,-1767213964,2),(672,-1206957600,1),(672,-1191362400,2),(672,-1175374800,1),(672,-1159826400,2),(672,-633819600,1),(672,-622069200,2),(672,-602283600,1),(672,-591832800,2),(672,-570747600,1),(672,-560210400,2),(672,-539125200,1),(672,-531352800,2),(672,-191365200,1),(672,-184197600,2),(672,-155163600,1),(672,-150069600,2),(672,-128898000,1),(672,-121125600,2),(672,-99954000,1),(672,-89589600,2),(672,-68418000,1),(672,-57967200,2),(672,499748400,1),(672,511236000,2),(672,530593200,1),(672,540266400,2),(672,562129200,1),(672,571197600,2),(673,-1822500432,2),(673,-1616954400,1),(673,-1606069800,2),(673,-1585504800,1),(673,-1574015400,2),(673,-1554055200,1),(673,-1542565800,2),(673,-1522605600,1),(673,-1511116200,2),(673,-1490551200,1),(673,-1479666600,2),(673,-1459101600,1),(673,-1448217000,2),(673,-1427652000,1),(673,-1416162600,2),(673,-1396202400,1),(673,-1384713000,2),(673,-1364752800,1),(673,-1353263400,2),(673,-1333303200,1),(673,-1321813800,2),(673,-1301248800,1),(673,-1290364200,2),(673,-1269799200,1),(673,-1258914600,2),(673,-1238349600,1),(673,-1226860200,2),(673,-1206900000,1),(673,-1195410600,2),(673,-1175450400,1),(673,-1163961000,2),(673,-1143396000,1),(673,-1132511400,2),(673,-1111946400,1),(673,-1101061800,2),(673,-1080496800,1),(673,-1069612200,2),(673,-1049047200,1),(673,-1037557800,2),(673,-1017597600,1),(673,-1006108200,2),(673,-986148000,1),(673,-974658600,2),(673,-954093600,1),(673,-943209000,2),(673,-922644000,1),(673,-911759400,2),(673,-891194400,1),(673,-879705000,2),(673,-859744800,1),(673,-848255400,2),(673,123919200,3),(673,129618000,2),(673,409039200,3),(673,413874000,2),(674,-1632074400,0),(674,-1615143600,1),(674,-880221600,2),(674,-769395600,3),(674,-765399600,1),(675,-1767211040,2),(675,-1206954000,1),(675,-1191358800,2),(675,-1175371200,1),(675,-1159822800,2),(675,-633816000,1),(675,-622065600,2),(675,-602280000,1),(675,-591829200,2),(675,-570744000,1),(675,-560206800,2),(675,-539121600,1),(675,-531349200,2),(675,-191361600,1),(675,-184194000,2),(675,-155160000,1),(675,-150066000,2),(675,-128894400,1),(675,-121122000,2),(675,-99950400,1),(675,-89586000,2),(675,-68414400,1),(675,-57963600,2),(675,499752000,1),(675,511239600,2),(675,530596800,1),(675,540270000,2),(675,562132800,1),(675,571201200,2),(675,938923200,1),(675,951620400,2),(675,970977600,1),(675,971578800,2),(676,-1739041424,2),(676,704869200,1),(676,733896000,2),(677,-1633269600,0),(677,-1615129200,1),(677,-1601820000,0),(677,-1583679600,1),(677,-1471788000,4),(677,-880210800,2),(677,-769395600,3),(677,-765388800,4),(677,-84380400,5),(677,-68659200,4),(677,-52930800,5),(677,-37209600,4),(677,-21481200,5),(677,-5760000,4),(677,9968400,5),(677,25689600,4),(677,41418000,5),(677,57744000,4),(677,73472400,5),(677,89193600,4),(677,104922000,5),(677,120643200,4),(677,129114000,5),(677,152092800,4),(677,162378000,5),(677,183542400,4),(677,199270800,5),(677,215596800,4),(677,230720400,5),(677,247046400,4),(677,262774800,5),(677,278496000,4),(677,294224400,5),(677,309945600,4),(677,325674000,5),(677,341395200,4),(677,357123600,5),(677,372844800,4),(677,388573200,5),(677,404899200,4),(677,420022800,5),(677,436348800,4),(677,452077200,5),(677,467798400,4),(677,483526800,5),(677,499248000,4),(677,514976400,5),(677,530697600,4),(677,544611600,5),(677,562147200,4),(677,576061200,5),(677,594201600,4),(677,607510800,5),(677,625651200,4),(677,638960400,5),(677,657100800,4),(677,671014800,5),(677,688550400,4),(677,702464400,5),(677,720000000,4),(677,733914000,5),(677,752054400,4),(677,765363600,5),(677,783504000,4),(677,796813200,5),(677,814953600,4),(677,828867600,5),(677,846403200,4),(677,860317200,5),(677,877852800,4),(677,891766800,5),(677,909302400,4),(677,923216400,5),(677,941356800,4),(677,954666000,5),(677,972806400,4),(677,986115600,5),(677,1004256000,4),(677,1018170000,5),(677,1035705600,4),(677,1049619600,5),(677,1067155200,4),(677,1081069200,5),(677,1099209600,4),(677,1112518800,5),(677,1130659200,4),(677,1143968400,5),(677,1162108800,4),(677,1173603600,5),(677,1194163200,4),(677,1205053200,5),(677,1225612800,4),(677,1236502800,5),(677,1257062400,4),(677,1268557200,5),(677,1289116800,4),(677,1300006800,5),(677,1320566400,4),(677,1331456400,5),(677,1352016000,4),(677,1362906000,5),(677,1383465600,4),(677,1394355600,5),(677,1414915200,4),(677,1425805200,5),(677,1446364800,4),(677,1457859600,5),(677,1478419200,4),(677,1489309200,5),(677,1509868800,4),(677,1520758800,5),(677,1541318400,4),(677,1552208400,5),(677,1572768000,4),(677,1583658000,5),(677,1604217600,4),(677,1615712400,5),(677,1636272000,4),(677,1647162000,5),(677,1667721600,4),(677,1678611600,5),(677,1699171200,4),(677,1710061200,5),(677,1730620800,4),(677,1741510800,5),(677,1762070400,4),(677,1772960400,5),(677,1793520000,4),(677,1805014800,5),(677,1825574400,4),(677,1836464400,5),(677,1857024000,4),(677,1867914000,5),(677,1888473600,4),(677,1899363600,5),(677,1919923200,4),(677,1930813200,5),(677,1951372800,4),(677,1962867600,5),(677,1983427200,4),(677,1994317200,5),(677,2014876800,4),(677,2025766800,5),(677,2046326400,4),(677,2057216400,5),(677,2077776000,4),(677,2088666000,5),(677,2109225600,4),(677,2120115600,5),(677,2140675200,4),(678,-1567453392,1),(678,-1233432000,2),(678,-1222981200,1),(678,-1205956800,2),(678,-1194037200,1),(678,-1172865600,2),(678,-1162501200,1),(678,-1141329600,2),(678,-1130965200,1),(678,-1109793600,2),(678,-1099429200,1),(678,-1078257600,2),(678,-1067806800,1),(678,-1046635200,2),(678,-1036270800,1),(678,-1015099200,2),(678,-1004734800,1),(678,-983563200,2),(678,-973198800,1),(678,-952027200,2),(678,-941576400,1),(678,-931032000,2),(678,-900882000,1),(678,-890337600,2),(678,-833749200,1),(678,-827265600,2),(678,-752274000,1),(678,-733780800,2),(678,-197326800,1),(678,-190843200,2),(678,-184194000,1),(678,-164491200,2),(678,-152658000,1),(678,-132955200,2),(678,-121122000,1),(678,-101419200,2),(678,-86821200,1),(678,-71092800,2),(678,-54766800,1),(678,-39038400,2),(678,-23317200,1),(678,-7588800,4),(678,128142000,3),(678,136605600,4),(678,596948400,3),(678,605066400,4),(678,624423600,3),(678,636516000,4),(678,656478000,3),(678,667965600,4),(678,687927600,3),(678,699415200,4),(678,719377200,3),(678,731469600,4),(678,938919600,2),(678,952052400,4),(678,1198983600,3),(678,1205632800,4),(678,1224385200,3),(678,1237082400,4),(679,-1577923200,3),(679,-880210800,1),(679,-769395600,2),(679,-765388800,3),(679,-147891600,4),(679,-131562000,3),(679,325674000,5),(679,341395200,3),(679,357123600,5),(679,372844800,3),(679,388573200,5),(679,404899200,3),(679,420022800,5),(679,436348800,3),(679,452077200,5),(679,467798400,3),(679,483526800,5),(679,499248000,3),(679,514976400,5),(679,530697600,3),(679,544611600,5),(679,562147200,3),(679,576061200,5),(679,594201600,3),(679,607510800,5),(679,625651200,3),(679,638960400,5),(679,657100800,3),(679,671014800,5),(679,688550400,3),(679,702464400,5),(679,720000000,3),(679,733914000,5),(679,752054400,3),(679,765363600,5),(679,783504000,3),(679,796813200,5),(679,814953600,3),(679,828867600,5),(679,846403200,3),(679,860317200,5),(679,877852800,3),(679,891766800,5),(679,909302400,3),(679,923216400,5),(679,941356800,7),(679,954662400,6),(679,972802800,8),(679,973400400,7),(679,986115600,5),(679,1004256000,3),(679,1018170000,5),(679,1035705600,3),(679,1049619600,5),(679,1067155200,3),(679,1081069200,5),(679,1099209600,3),(679,1112518800,5),(679,1130659200,3),(679,1143968400,5),(679,1162108800,3),(679,1173603600,5),(679,1194163200,3),(679,1205053200,5),(679,1225612800,3),(679,1236502800,5),(679,1257062400,3),(679,1268557200,5),(679,1289116800,3),(679,1300006800,5),(679,1320566400,3),(679,1331456400,5),(679,1352016000,3),(679,1362906000,5),(679,1383465600,3),(679,1394355600,5),(679,1414915200,3),(679,1425805200,5),(679,1446364800,3),(679,1457859600,5),(679,1478419200,3),(679,1489309200,5),(679,1509868800,3),(679,1520758800,5),(679,1541318400,3),(679,1552208400,5),(679,1572768000,3),(679,1583658000,5),(679,1604217600,3),(679,1615712400,5),(679,1636272000,3),(679,1647162000,5),(679,1667721600,3),(679,1678611600,5),(679,1699171200,3),(679,1710061200,5),(679,1730620800,3),(679,1741510800,5),(679,1762070400,3),(679,1772960400,5),(679,1793520000,3),(679,1805014800,5),(679,1825574400,3),(679,1836464400,5),(679,1857024000,3),(679,1867914000,5),(679,1888473600,3),(679,1899363600,5),(679,1919923200,3),(679,1930813200,5),(679,1951372800,3),(679,1962867600,5),(679,1983427200,3),(679,1994317200,5),(679,2014876800,3),(679,2025766800,5),(679,2046326400,3),(679,2057216400,5),(679,2077776000,3),(679,2088666000,5),(679,2109225600,3),(679,2120115600,5),(679,2140675200,3),(680,-1767212492,2),(680,-1206954000,1),(680,-1191358800,2),(680,-1175371200,1),(680,-1159822800,2),(680,-633816000,1),(680,-622065600,2),(680,-602280000,1),(680,-591829200,2),(680,-570744000,1),(680,-560206800,2),(680,-539121600,1),(680,-531349200,2),(680,-191361600,1),(680,-184194000,2),(680,-155160000,1),(680,-150066000,2),(680,-128894400,1),(680,-121122000,2),(680,-99950400,1),(680,-89586000,2),(680,-68414400,1),(680,-57963600,2),(680,499752000,1),(680,511239600,2),(680,530596800,1),(680,540270000,2),(680,562132800,1),(680,571201200,2),(680,592977600,1),(680,602046000,2),(680,624427200,1),(680,634705200,2),(680,656481600,1),(680,666759600,2),(680,687931200,1),(680,697604400,2),(680,719985600,1),(680,728449200,2),(680,750830400,1),(680,761713200,2),(680,782280000,1),(680,793162800,2),(680,813729600,1),(680,824007600,2),(680,844574400,1),(680,856062000,2),(680,876110400,1),(680,888721200,2),(680,908078400,1),(680,919566000,2),(680,938923200,1),(680,951620400,2),(680,970977600,1),(680,982465200,2),(680,1003032000,1),(680,1013914800,2),(680,1036296000,1),(680,1045364400,2),(680,1066536000,1),(680,1076814000,2),(680,1099368000,1),(680,1108868400,2),(680,1129435200,1),(680,1140318000,2),(680,1162699200,1),(680,1172372400,2),(680,1192334400,1),(680,1203217200,2),(680,1224388800,1),(680,1234666800,2),(680,1255838400,1),(680,1266721200,2),(680,1287288000,1),(680,1298170800,2),(680,1318737600,1),(680,1330225200,2),(680,1350792000,1),(680,1361070000,2),(680,1382241600,1),(680,1392519600,2),(680,1413691200,1),(680,1424574000,2),(680,1445140800,1),(680,1456023600,2),(680,1476590400,1),(680,1487473200,2),(680,1508040000,1),(680,1518922800,2),(680,1541304000,1),(680,1550372400,2),(680,1572753600,1),(680,1581822000,2),(680,1604203200,1),(680,1613876400,2),(680,1636257600,1),(680,1645326000,2),(680,1667707200,1),(680,1677380400,2),(680,1699156800,1),(680,1708225200,2),(680,1730606400,1),(680,1739674800,2),(680,1762056000,1),(680,1771729200,2),(680,1793505600,1),(680,1803178800,2),(680,1825560000,1),(680,1834628400,2),(680,1857009600,1),(680,1866078000,2),(680,1888459200,1),(680,1897527600,2),(680,1919908800,1),(680,1928977200,2),(680,1951358400,1),(680,1960426800,2),(680,1983412800,1),(680,1992481200,2),(680,2014862400,1),(680,2024535600,2),(680,2046312000,1),(680,2055380400,2),(680,2077761600,1),(680,2086830000,2),(680,2109211200,1),(680,2118884400,2),(680,2140660800,1),(681,-1514743200,1),(681,377935200,3),(681,828860400,2),(681,846396000,3),(681,860310000,2),(681,877845600,3),(681,891759600,2),(681,902037600,4),(681,909298800,1),(681,923212800,4),(681,941353200,1),(681,954662400,4),(681,972802800,1),(681,989136000,4),(681,1001833200,1),(681,1018166400,4),(681,1035702000,1),(681,1049616000,4),(681,1067151600,1),(681,1081065600,4),(681,1099206000,1),(681,1112515200,4),(681,1130655600,1),(681,1143964800,4),(681,1162105200,1),(681,1175414400,4),(681,1193554800,1),(681,1207468800,4),(681,1225004400,1),(681,1238918400,4),(681,1256454000,1),(681,1270368000,4),(681,1288508400,1),(681,1301817600,4),(681,1319958000,1),(681,1333267200,4),(681,1351407600,1),(681,1365321600,4),(681,1382857200,1),(681,1396771200,4),(681,1414306800,1),(681,1422777600,3),(682,-1826739140,1),(682,-157750200,2),(682,1197183600,1),(682,1462086000,2),(683,-1567453392,1),(683,-1233432000,2),(683,-1222981200,1),(683,-1205956800,2),(683,-1194037200,1),(683,-1172865600,2),(683,-1162501200,1),(683,-1141329600,2),(683,-1130965200,1),(683,-1109793600,2),(683,-1099429200,1),(683,-1078257600,2),(683,-1067806800,1),(683,-1046635200,2),(683,-1036270800,1),(683,-1015099200,2),(683,-1004734800,1),(683,-983563200,2),(683,-973198800,1),(683,-952027200,2),(683,-941576400,1),(683,-931032000,2),(683,-900882000,1),(683,-890337600,2),(683,-833749200,1),(683,-827265600,2),(683,-752274000,1),(683,-733780800,2),(683,-197326800,1),(683,-190843200,2),(683,-184194000,1),(683,-164491200,2),(683,-152658000,1),(683,-132955200,2),(683,-121122000,1),(683,-101419200,2),(683,-86821200,1),(683,-71092800,2),(683,-54766800,1),(683,-39038400,2),(683,-23317200,1),(683,-7588800,4),(683,128142000,3),(683,136605600,4),(683,596948400,3),(683,605066400,4),(683,624423600,3),(683,636516000,4),(683,656478000,3),(683,667965600,1),(683,687931200,3),(683,699415200,4),(683,719377200,3),(683,731469600,4),(683,938919600,2),(683,952052400,4),(683,1086058800,1),(683,1087704000,4),(683,1198983600,3),(683,1205632800,4),(684,-1846269040,1),(684,-71092800,2),(685,-1946918424,1),(686,-1633276800,0),(686,-1615136400,1),(686,-1601827200,0),(686,-1583686800,1),(686,-1563724800,0),(686,-1551632400,1),(686,-1538928000,0),(686,-1520182800,1),(686,-1504454400,0),(686,-1491757200,1),(686,-1473004800,0),(686,-1459702800,1),(686,-1441555200,0),(686,-1428253200,1),(686,-1410105600,0),(686,-1396803600,1),(686,-1378656000,0),(686,-1365354000,1),(686,-1347206400,0),(686,-1333904400,1),(686,-1315152000,0),(686,-1301850000,1),(686,-1283702400,0),(686,-1270400400,1),(686,-1252252800,0),(686,-1238950800,1),(686,-1220803200,0),(686,-1207501200,1),(686,-1189353600,0),(686,-1176051600,1),(686,-1157299200,0),(686,-1144602000,1),(686,-1125849600,0),(686,-1112547600,1),(686,-1094400000,0),(686,-1081098000,1),(686,-1067788800,2),(686,-1045414800,1),(686,-1031500800,0),(686,-1018198800,1),(686,-1000051200,0),(686,-986749200,1),(686,-967996800,0),(686,-955299600,1),(686,-936547200,0),(686,-923245200,1),(686,-905097600,0),(686,-891795600,1),(686,-880214400,3),(686,-769395600,4),(686,-765392400,1),(686,-747244800,0),(686,-733942800,1),(686,-715795200,0),(686,-702493200,1),(686,-684345600,0),(686,-671043600,1),(686,-652896000,0),(686,-639594000,1),(686,-620841600,0),(686,-608144400,1),(686,-589392000,0),(686,-576090000,1),(686,-557942400,0),(686,-544640400,1),(686,-526492800,0),(686,-513190800,1),(686,-495043200,0),(686,-481741200,1),(686,-463593600,0),(686,-447267600,1),(686,-431539200,0),(686,-415818000,1),(686,-400089600,0),(686,-384368400,1),(686,-368640000,0),(686,-352918800,1),(686,-337190400,0),(686,-321469200,1),(686,-305740800,0),(686,-289414800,1),(686,-273686400,0),(686,-257965200,1),(686,-242236800,0),(686,-226515600,1),(686,-210787200,0),(686,-195066000,1),(686,-179337600,0),(686,-163616400,1),(686,-147888000,0),(686,-131562000,1),(686,-116438400,0),(686,-100112400,1),(686,-84384000,0),(686,-68662800,1),(686,-52934400,0),(686,-37213200,1),(686,-21484800,0),(686,-5763600,1),(686,9964800,0),(686,25686000,1),(686,41414400,0),(686,57740400,1),(686,73468800,0),(686,89190000,1),(686,104918400,0),(686,120639600,1),(686,126691200,0),(686,152089200,1),(686,162374400,0),(686,183538800,1),(686,199267200,0),(686,215593200,1),(686,230716800,0),(686,247042800,1),(686,262771200,0),(686,278492400,1),(686,294220800,0),(686,309942000,1),(686,325670400,0),(686,341391600,1),(686,357120000,0),(686,372841200,1),(686,388569600,0),(686,404895600,1),(686,420019200,0),(686,436345200,1),(686,452073600,0),(686,467794800,1),(686,483523200,0),(686,499244400,1),(686,514972800,0),(686,530694000,1),(686,544608000,0),(686,562143600,1),(686,576057600,0),(686,594198000,1),(686,607507200,0),(686,625647600,1),(686,638956800,0),(686,657097200,1),(686,671011200,0),(686,688546800,1),(686,702460800,0),(686,719996400,1),(686,733910400,0),(686,752050800,1),(686,765360000,0),(686,783500400,1),(686,796809600,0),(686,814950000,1),(686,828864000,0),(686,846399600,1),(686,860313600,0),(686,877849200,1),(686,891763200,0),(686,909298800,1),(686,923212800,0),(686,941353200,1),(686,954662400,0),(686,972802800,1),(686,986112000,0),(686,1004252400,1),(686,1018166400,0),(686,1035702000,1),(686,1049616000,0),(686,1067151600,1),(686,1081065600,0),(686,1099206000,1),(686,1112515200,0),(686,1130655600,1),(686,1143964800,0),(686,1162105200,1),(686,1173600000,0),(686,1194159600,1),(686,1205049600,0),(686,1225609200,1),(686,1236499200,0),(686,1257058800,1),(686,1268553600,0),(686,1289113200,1),(686,1300003200,0),(686,1320562800,1),(686,1331452800,0),(686,1352012400,1),(686,1362902400,0),(686,1383462000,1),(686,1394352000,0),(686,1414911600,1),(686,1425801600,0),(686,1446361200,1),(686,1457856000,0),(686,1478415600,1),(686,1489305600,0),(686,1509865200,1),(686,1520755200,0),(686,1541314800,1),(686,1552204800,0),(686,1572764400,1),(686,1583654400,0),(686,1604214000,1),(686,1615708800,0),(686,1636268400,1),(686,1647158400,0),(686,1667718000,1),(686,1678608000,0),(686,1699167600,1),(686,1710057600,0),(686,1730617200,1),(686,1741507200,0),(686,1762066800,1),(686,1772956800,0),(686,1793516400,1),(686,1805011200,0),(686,1825570800,1),(686,1836460800,0),(686,1857020400,1),(686,1867910400,0),(686,1888470000,1),(686,1899360000,0),(686,1919919600,1),(686,1930809600,0),(686,1951369200,1),(686,1962864000,0),(686,1983423600,1),(686,1994313600,0),(686,2014873200,1),(686,2025763200,0),(686,2046322800,1),(686,2057212800,0),(686,2077772400,1),(686,2088662400,0),(686,2109222000,1),(686,2120112000,0),(686,2140671600,1),(687,-1514739600,1),(687,-1343066400,2),(687,-1234807200,1),(687,-1220292000,2),(687,-1207159200,1),(687,-1191344400,2),(687,828864000,3),(687,846399600,2),(687,860313600,3),(687,877849200,2),(687,891766800,4),(687,909302400,1),(687,923216400,4),(687,941356800,1),(687,954666000,4),(687,972806400,1),(687,989139600,4),(687,1001836800,1),(687,1018170000,4),(687,1035705600,1),(687,1049619600,4),(687,1067155200,1),(687,1081069200,4),(687,1099209600,1),(687,1112518800,4),(687,1130659200,1),(687,1143968400,4),(687,1162108800,1),(687,1175418000,4),(687,1193558400,1),(687,1207472400,4),(687,1225008000,1),(687,1238922000,4),(687,1256457600,1),(687,1270371600,4),(687,1288512000,1),(687,1301821200,4),(687,1319961600,1),(687,1333270800,4),(687,1351411200,1),(687,1365325200,4),(687,1382860800,1),(687,1396774800,4),(687,1414310400,1),(687,1428224400,4),(687,1445760000,1),(687,1459674000,4),(687,1477814400,1),(687,1491123600,4),(687,1509264000,1),(687,1522573200,4),(687,1540713600,1),(687,1554627600,4),(687,1572163200,1),(687,1586077200,4),(687,1603612800,1),(687,1617526800,4),(687,1635667200,1),(687,1648976400,4),(687,1667116800,1),(687,1680426000,4),(687,1698566400,1),(687,1712480400,4),(687,1730016000,1),(687,1743930000,4),(687,1761465600,1),(687,1775379600,4),(687,1792915200,1),(687,1806829200,4),(687,1824969600,1),(687,1838278800,4),(687,1856419200,1),(687,1869728400,4),(687,1887868800,1),(687,1901782800,4),(687,1919318400,1),(687,1933232400,4),(687,1950768000,1),(687,1964682000,4),(687,1982822400,1),(687,1996131600,4),(687,2014272000,1),(687,2027581200,4),(687,2045721600,1),(687,2059030800,4),(687,2077171200,1),(687,2091085200,4),(687,2108620800,1),(687,2122534800,4),(687,2140070400,1),(688,-1632067200,0),(688,-1615136400,1),(688,-923248800,0),(688,-880214400,2),(688,-769395600,3),(688,-765392400,4),(689,-1567453392,1),(689,-1233432000,2),(689,-1222981200,1),(689,-1205956800,2),(689,-1194037200,1),(689,-1172865600,2),(689,-1162501200,1),(689,-1141329600,2),(689,-1130965200,1),(689,-1109793600,2),(689,-1099429200,1),(689,-1078257600,2),(689,-1067806800,1),(689,-1046635200,2),(689,-1036270800,1),(689,-1015099200,2),(689,-1004734800,1),(689,-983563200,2),(689,-973198800,1),(689,-952027200,2),(689,-941576400,1),(689,-931032000,2),(689,-900882000,1),(689,-890337600,2),(689,-833749200,1),(689,-827265600,2),(689,-752274000,1),(689,-733780800,2),(689,-197326800,1),(689,-190843200,2),(689,-184194000,1),(689,-164491200,2),(689,-152658000,1),(689,-132955200,2),(689,-121122000,1),(689,-101419200,2),(689,-86821200,1),(689,-71092800,2),(689,-54766800,1),(689,-39038400,2),(689,-23317200,1),(689,-7588800,4),(689,128142000,3),(689,136605600,4),(689,596948400,3),(689,605066400,4),(689,624423600,3),(689,636516000,4),(689,656478000,3),(689,667965600,1),(689,687931200,3),(689,699415200,4),(689,719377200,3),(689,731469600,4),(689,938919600,2),(689,952052400,4),(689,1198983600,3),(689,1205632800,4),(689,1224385200,3),(689,1237082400,4),(690,-1545071027,2),(690,288770400,1),(690,297234000,2),(690,320220000,1),(690,328683600,2),(690,664264800,1),(690,678344400,2),(690,695714400,1),(690,700635600,2),(691,-1680454800,1),(691,-1627833600,0),(692,-1767212140,2),(692,-1206954000,1),(692,-1191358800,2),(692,-1175371200,1),(692,-1159822800,2),(692,-633816000,1),(692,-622065600,2),(692,-602280000,1),(692,-591829200,2),(692,-570744000,1),(692,-560206800,2),(692,-539121600,1),(692,-531349200,2),(692,-191361600,1),(692,-184194000,2),(692,-155160000,1),(692,-150066000,2),(692,-128894400,1),(692,-121122000,2),(692,-99950400,1),(692,-89586000,2),(692,-68414400,1),(692,-57963600,2),(692,499752000,1),(692,511239600,2),(692,530596800,1),(692,540270000,2),(692,562132800,1),(692,571201200,2),(692,592977600,1),(692,602046000,2),(692,624427200,1),(692,634705200,2),(692,656481600,1),(692,666759600,2),(692,687931200,1),(692,697604400,2),(692,719985600,1),(692,728449200,2),(692,750830400,1),(692,761713200,2),(692,782280000,1),(692,793162800,2),(692,813729600,1),(692,824007600,2),(692,844574400,1),(692,856062000,2),(692,876110400,1),(692,888721200,2),(692,908078400,1),(692,919566000,2),(692,938923200,1),(692,951620400,2),(692,970977600,1),(692,982465200,2),(692,1003032000,1),(692,1013914800,2),(692,1036296000,1),(692,1045364400,2),(692,1099368000,1),(692,1108868400,2),(692,1129435200,1),(692,1140318000,2),(692,1162699200,1),(692,1172372400,2),(692,1192334400,1),(692,1203217200,2),(692,1224388800,1),(692,1234666800,2),(692,1255838400,1),(692,1266721200,2),(692,1287288000,1),(692,1298170800,2),(692,1318737600,1),(692,1330225200,2),(692,1350792000,1),(692,1361070000,2),(692,1382241600,1),(692,1392519600,2),(692,1413691200,1),(692,1424574000,2),(692,1445140800,1),(692,1456023600,2),(692,1476590400,1),(692,1487473200,2),(692,1508040000,1),(692,1518922800,2),(692,1541304000,1),(692,1550372400,2),(692,1572753600,1),(692,1581822000,2),(692,1604203200,1),(692,1613876400,2),(692,1636257600,1),(692,1645326000,2),(692,1667707200,1),(692,1677380400,2),(692,1699156800,1),(692,1708225200,2),(692,1730606400,1),(692,1739674800,2),(692,1762056000,1),(692,1771729200,2),(692,1793505600,1),(692,1803178800,2),(692,1825560000,1),(692,1834628400,2),(692,1857009600,1),(692,1866078000,2),(692,1888459200,1),(692,1897527600,2),(692,1919908800,1),(692,1928977200,2),(692,1951358400,1),(692,1960426800,2),(692,1983412800,1),(692,1992481200,2),(692,2014862400,1),(692,2024535600,2),(692,2046312000,1),(692,2055380400,2),(692,2077761600,1),(692,2086830000,2),(692,2109211200,1),(692,2118884400,2),(692,2140660800,1),(693,-1826738653,1),(693,-157750200,2),(694,-1686091520,1),(694,323845200,4),(694,338950800,2),(694,354675600,3),(694,370400400,2),(694,386125200,3),(694,401850000,2),(694,417574800,3),(694,433299600,2),(694,449024400,3),(694,465354000,2),(694,481078800,3),(694,496803600,2),(694,512528400,3),(694,528253200,2),(694,543978000,3),(694,559702800,2),(694,575427600,3),(694,591152400,2),(694,606877200,3),(694,622602000,2),(694,638326800,3),(694,654656400,2),(694,670381200,3),(694,686106000,2),(694,701830800,3),(694,717555600,2),(694,733280400,3),(694,749005200,2),(694,764730000,3),(694,780454800,2),(694,796179600,3),(694,811904400,2),(694,820465200,5),(695,-1632056400,0),(695,-1615125600,1),(695,-1596978000,0),(695,-1583164800,1),(695,-880203600,2),(695,-769395600,3),(695,-765381600,1),(695,-147884400,4),(695,-131554800,1),(695,120646800,5),(695,325677600,6),(695,341398800,5),(695,357127200,6),(695,372848400,5),(695,388576800,6),(695,404902800,5),(695,420026400,6),(695,436352400,5),(695,452080800,6),(695,467802000,5),(695,483530400,6),(695,499251600,5),(695,514980000,6),(695,530701200,5),(695,544615200,6),(695,562150800,5),(695,576064800,6),(695,594205200,5),(695,607514400,6),(695,625654800,5),(695,638964000,6),(695,657104400,5),(695,671018400,6),(695,688554000,5),(695,702468000,6),(695,720003600,5),(695,733917600,6),(695,752058000,5),(695,765367200,6),(695,783507600,5),(695,796816800,6),(695,814957200,5),(695,828871200,6),(695,846406800,5),(695,860320800,6),(695,877856400,5),(695,891770400,6),(695,909306000,5),(695,923220000,6),(695,941360400,5),(695,954669600,6),(695,972810000,5),(695,986119200,6),(695,1004259600,5),(695,1018173600,6),(695,1035709200,5),(695,1049623200,6),(695,1067158800,5),(695,1081072800,6),(695,1099213200,5),(695,1112522400,6),(695,1130662800,5),(695,1143972000,6),(695,1162112400,5),(695,1173607200,6),(695,1194166800,5),(695,1205056800,6),(695,1225616400,5),(695,1236506400,6),(695,1257066000,5),(695,1268560800,6),(695,1289120400,5),(695,1300010400,6),(695,1320570000,5),(695,1331460000,6),(695,1352019600,5),(695,1362909600,6),(695,1383469200,5),(695,1394359200,6),(695,1414918800,5),(695,1425808800,6),(695,1446368400,5),(695,1457863200,6),(695,1478422800,5),(695,1489312800,6),(695,1509872400,5),(695,1520762400,6),(695,1541322000,5),(695,1552212000,6),(695,1572771600,5),(695,1583661600,6),(695,1604221200,5),(695,1615716000,6),(695,1636275600,5),(695,1647165600,6),(695,1667725200,5),(695,1678615200,6),(695,1699174800,5),(695,1710064800,6),(695,1730624400,5),(695,1741514400,6),(695,1762074000,5),(695,1772964000,6),(695,1793523600,5),(695,1805018400,6),(695,1825578000,5),(695,1836468000,6),(695,1857027600,5),(695,1867917600,6),(695,1888477200,5),(695,1899367200,6),(695,1919926800,5),(695,1930816800,6),(695,1951376400,5),(695,1962871200,6),(695,1983430800,5),(695,1994320800,6),(695,2014880400,5),(695,2025770400,6),(695,2046330000,5),(695,2057220000,6),(695,2077779600,5),(695,2088669600,6),(695,2109229200,5),(695,2120119200,6),(695,2140678800,5),(696,-1632060000,0),(696,-1615129200,1),(696,-880207200,2),(696,-769395600,3),(696,-765385200,1),(696,-715788000,0),(696,-702486000,1),(696,-684338400,0),(696,-671036400,1),(696,-652888800,0),(696,-639586800,1),(696,-620834400,0),(696,-608137200,1),(696,-589384800,0),(696,-576082800,1),(696,-557935200,0),(696,-544633200,1),(696,-526485600,0),(696,-513183600,1),(696,-495036000,0),(696,-481734000,1),(696,-463586400,0),(696,-450284400,1),(696,-431532000,0),(696,-418230000,1),(696,-400082400,0),(696,-386780400,1),(696,-368632800,0),(696,-355330800,1),(696,-337183200,0),(696,-323881200,1),(696,-305733600,0),(696,-292431600,1),(696,-273679200,0),(696,-260982000,1),(696,-242229600,0),(696,-226508400,1),(696,-210780000,0),(696,-195058800,1),(696,-179330400,0),(696,-163609200,1),(696,-147880800,0),(696,-131554800,1),(696,-116431200,0),(696,-100105200,1),(696,-84376800,0),(696,-68655600,1),(696,-52927200,0),(696,-37206000,1),(696,-21477600,0),(696,-5756400,1),(696,9972000,0),(696,25693200,1),(696,41421600,0),(696,57747600,1),(696,73476000,0),(696,84013200,4),(697,-1633273200,0),(697,-1615132800,1),(697,-1601823600,0),(697,-1583683200,1),(697,-1570374000,0),(697,-1551628800,1),(697,-1538924400,0),(697,-1534089600,1),(697,-880210800,2),(697,-769395600,3),(697,-765388800,1),(697,-147884400,0),(697,-131558400,1),(697,-116434800,0),(697,-100108800,1),(697,-84380400,0),(697,-68659200,1),(697,-52930800,0),(697,-37209600,1),(697,-21481200,0),(697,-5760000,1),(697,9968400,0),(697,25689600,1),(697,41418000,0),(697,57744000,1),(697,73472400,0),(697,89193600,1),(697,104922000,0),(697,120643200,1),(697,126694800,0),(697,152092800,1),(697,162378000,0),(697,183542400,1),(697,199270800,0),(697,215596800,1),(697,230720400,0),(697,247046400,1),(697,262774800,0),(697,278496000,1),(697,294224400,0),(697,309945600,1),(697,325674000,0),(697,341395200,1),(697,357123600,0),(697,372844800,1),(697,388573200,0),(697,404899200,1),(697,420022800,0),(697,436348800,1),(697,452077200,0),(697,467798400,1),(697,483526800,0),(697,499248000,1),(697,514976400,0),(697,530697600,1),(697,544611600,0),(697,562147200,1),(697,576061200,0),(697,594201600,1),(697,607510800,0),(697,625651200,1),(697,638960400,0),(697,657100800,1),(697,671014800,0),(697,688550400,1),(697,702464400,0),(697,720000000,1),(697,733914000,0),(697,752054400,1),(697,765363600,0),(697,783504000,1),(697,796813200,0),(697,814953600,1),(697,828867600,0),(697,846403200,1),(697,860317200,0),(697,877852800,1),(697,891766800,0),(697,909302400,1),(697,923216400,0),(697,941356800,1),(697,954666000,0),(697,972806400,1),(697,986115600,0),(697,1004256000,1),(697,1018170000,0),(697,1035705600,1),(697,1049619600,0),(697,1067155200,1),(697,1081069200,0),(697,1099209600,1),(697,1112518800,0),(697,1130659200,1),(697,1143968400,0),(697,1162108800,1),(697,1173603600,0),(697,1194163200,1),(697,1205053200,0),(697,1225612800,1),(697,1236502800,0),(697,1257062400,1),(697,1268557200,0),(697,1289116800,1),(697,1300006800,0),(697,1320566400,1),(697,1331456400,0),(697,1352016000,1),(697,1362906000,0),(697,1383465600,1),(697,1394355600,0),(697,1414915200,1),(697,1425805200,0),(697,1446364800,1),(697,1457859600,0),(697,1478419200,1),(697,1489309200,0),(697,1509868800,1),(697,1520758800,0),(697,1541318400,1),(697,1552208400,0),(697,1572768000,1),(697,1583658000,0),(697,1604217600,1),(697,1615712400,0),(697,1636272000,1),(697,1647162000,0),(697,1667721600,1),(697,1678611600,0),(697,1699171200,1),(697,1710061200,0),(697,1730620800,1),(697,1741510800,0),(697,1762070400,1),(697,1772960400,0),(697,1793520000,1),(697,1805014800,0),(697,1825574400,1),(697,1836464400,0),(697,1857024000,1),(697,1867914000,0),(697,1888473600,1),(697,1899363600,0),(697,1919923200,1),(697,1930813200,0),(697,1951372800,1),(697,1962867600,0),(697,1983427200,1),(697,1994317200,0),(697,2014876800,1),(697,2025766800,0),(697,2046326400,1),(697,2057216400,0),(697,2077776000,1),(697,2088666000,0),(697,2109225600,1),(697,2120115600,0),(697,2140675200,1),(698,-2051202469,1),(698,-1724083200,2),(698,-880218000,3),(698,-769395600,4),(698,-765396000,2),(698,-684349200,5),(698,-671047200,2),(698,104914800,5),(698,120636000,2),(698,126687600,5),(698,152085600,2),(698,167814000,5),(698,183535200,2),(698,199263600,5),(698,215589600,2),(698,230713200,5),(698,247039200,2),(698,262767600,5),(698,278488800,2),(698,294217200,5),(698,309938400,2),(698,325666800,5),(698,341388000,2),(698,357116400,5),(698,372837600,2),(698,388566000,5),(698,404892000,2),(698,420015600,5),(698,436341600,2),(698,452070000,5),(698,467791200,2),(698,483519600,5),(698,499240800,2),(698,514969200,5),(698,530690400,2),(698,544604400,5),(698,562140000,2),(698,576054000,5),(698,594194400,2),(698,607503600,5),(698,625644000,2),(698,638953200,5),(698,657093600,2),(698,671007600,5),(698,688543200,2),(698,702457200,5),(698,719992800,2),(698,733906800,5),(698,752047200,2),(698,765356400,5),(698,783496800,2),(698,796806000,5),(698,814946400,2),(698,828860400,5),(698,846396000,2),(698,860310000,5),(698,877845600,2),(698,891759600,5),(698,909295200,2),(698,923209200,5),(698,941349600,2),(698,954658800,5),(698,972799200,2),(698,986108400,5),(698,1004248800,2),(698,1018162800,5),(698,1035698400,2),(698,1049612400,5),(698,1067148000,2),(698,1081062000,5),(698,1099202400,2),(698,1112511600,5),(698,1130652000,2),(698,1143961200,5),(698,1162101600,2),(698,1173596400,5),(698,1194156000,2),(698,1205046000,5),(698,1225605600,2),(698,1236495600,5),(698,1257055200,2),(698,1268550000,5),(698,1289109600,2),(698,1299999600,5),(698,1320559200,2),(698,1331449200,5),(698,1352008800,2),(698,1362898800,5),(698,1383458400,2),(698,1394348400,5),(698,1414908000,2),(698,1425798000,5),(698,1446357600,2),(698,1457852400,5),(698,1478412000,2),(698,1489302000,5),(698,1509861600,2),(698,1520751600,5),(698,1541311200,2),(698,1552201200,5),(698,1572760800,2),(698,1583650800,5),(698,1604210400,2),(698,1615705200,5),(698,1636264800,2),(698,1647154800,5),(698,1667714400,2),(698,1678604400,5),(698,1699164000,2),(698,1710054000,5),(698,1730613600,2),(698,1741503600,5),(698,1762063200,2),(698,1772953200,5),(698,1793512800,2),(698,1805007600,5),(698,1825567200,2),(698,1836457200,5),(698,1857016800,2),(698,1867906800,5),(698,1888466400,2),(698,1899356400,5),(698,1919916000,2),(698,1930806000,5),(698,1951365600,2),(698,1962860400,5),(698,1983420000,2),(698,1994310000,5),(698,2014869600,2),(698,2025759600,5),(698,2046319200,2),(698,2057209200,5),(698,2077768800,2),(698,2088658800,5),(698,2109218400,2),(698,2120108400,5),(698,2140668000,2),(699,-1825098836,1),(700,-1998663968,2),(700,-1632063600,1),(700,-1615132800,2),(700,-1600614000,1),(700,-1596816000,2),(700,-1567954800,1),(700,-1551628800,2),(700,-1536505200,1),(700,-1523203200,2),(700,-1504450800,1),(700,-1491753600,2),(700,-1473001200,1),(700,-1459699200,2),(700,-880210800,3),(700,-769395600,4),(700,-765388800,2),(700,-715791600,1),(700,-702489600,2),(700,-84380400,1),(700,-68659200,2),(700,-21481200,1),(700,-5760000,2),(700,73472400,1),(700,89193600,2),(700,104922000,1),(700,120643200,2),(700,136371600,1),(700,152092800,2),(700,167821200,1),(700,183542400,2),(700,199270800,1),(700,215596800,2),(700,230720400,1),(700,247046400,2),(700,262774800,1),(700,278496000,2),(700,294224400,1),(700,309945600,2),(700,325674000,1),(700,341395200,2),(700,357123600,1),(700,372844800,2),(700,388573200,1),(700,404899200,2),(700,420022800,1),(700,436348800,2),(700,452077200,1),(700,467798400,2),(700,483526800,1),(700,499248000,2),(700,514976400,1),(700,530697600,2),(700,544611600,1),(700,562147200,2),(700,576061200,1),(700,594201600,2),(700,607510800,1),(700,625651200,2),(700,638960400,1),(700,657100800,2),(700,671014800,1),(700,688550400,2),(700,702464400,1),(700,720000000,2),(700,733914000,1),(700,752054400,2),(700,765363600,1),(700,783504000,2),(700,796813200,1),(700,814953600,2),(700,828867600,1),(700,846403200,2),(700,860317200,1),(700,877852800,2),(700,891766800,1),(700,909302400,2),(700,923216400,1),(700,941356800,2),(700,954666000,1),(700,972806400,2),(700,986115600,1),(700,1004256000,2),(700,1018170000,1),(700,1035705600,2),(700,1049619600,1),(700,1067155200,2),(700,1081069200,1),(700,1099209600,2),(700,1112518800,1),(700,1130659200,2),(700,1143968400,1),(700,1162108800,2),(700,1173603600,1),(700,1194163200,2),(700,1205053200,1),(700,1225612800,2),(700,1236502800,1),(700,1257062400,2),(700,1268557200,1),(700,1289116800,2),(700,1300006800,1),(700,1320566400,2),(700,1331456400,1),(700,1352016000,2),(700,1362906000,1),(700,1383465600,2),(700,1394355600,1),(700,1414915200,2),(700,1425805200,1),(700,1446364800,2),(700,1457859600,1),(700,1478419200,2),(700,1489309200,1),(700,1509868800,2),(700,1520758800,1),(700,1541318400,2),(700,1552208400,1),(700,1572768000,2),(700,1583658000,1),(700,1604217600,2),(700,1615712400,1),(700,1636272000,2),(700,1647162000,1),(700,1667721600,2),(700,1678611600,1),(700,1699171200,2),(700,1710061200,1),(700,1730620800,2),(700,1741510800,1),(700,1762070400,2),(700,1772960400,1),(700,1793520000,2),(700,1805014800,1),(700,1825574400,2),(700,1836464400,1),(700,1857024000,2),(700,1867914000,1),(700,1888473600,2),(700,1899363600,1),(700,1919923200,2),(700,1930813200,1),(700,1951372800,2),(700,1962867600,1),(700,1983427200,2),(700,1994317200,1),(700,2014876800,2),(700,2025766800,1),(700,2046326400,2),(700,2057216400,1),(700,2077776000,2),(700,2088666000,1),(700,2109225600,2),(700,2120115600,1),(700,2140675200,2),(701,-1767208832,2),(701,-1206950400,1),(701,-1191355200,2),(701,-1175367600,1),(701,-1159819200,2),(701,-633812400,1),(701,-622062000,2),(701,-602276400,1),(701,-591825600,2),(701,-570740400,1),(701,-560203200,2),(701,-539118000,1),(701,-531345600,2),(701,-191358000,1),(701,-184190400,2),(701,-155156400,1),(701,-150062400,2),(701,-128890800,1),(701,-121118400,2),(701,-99946800,1),(701,-89582400,2),(701,-68410800,1),(701,-57960000,2),(701,499755600,1),(701,511243200,2),(701,530600400,1),(701,540273600,2),(701,562136400,1),(701,571204800,2),(701,750834000,1),(701,761716800,2),(701,1214283600,3),(701,1384056000,2),(702,-1546279392,2),(702,547020000,1),(702,559717200,2),(702,578469600,1),(702,591166800,2),(703,-1514736000,1),(703,-1451667600,2),(703,-1343062800,1),(703,-1234803600,2),(703,-1222963200,3),(703,-1207242000,2),(703,-873820800,4),(703,-769395600,5),(703,-761677200,2),(703,-686073600,3),(703,-661539600,2),(703,-495039600,3),(703,-481734000,2),(703,-463590000,3),(703,-450284400,2),(703,-431535600,3),(703,-418230000,2),(703,-400086000,3),(703,-386780400,2),(703,-368636400,3),(703,-355330800,2),(703,-337186800,3),(703,-323881200,2),(703,-305737200,3),(703,-292431600,2),(703,199274400,3),(703,215600400,2),(703,230724000,3),(703,247050000,2),(703,262778400,3),(703,278499600,2),(703,294228000,3),(703,309949200,2),(703,325677600,3),(703,341398800,2),(703,357127200,3),(703,372848400,2),(703,388576800,3),(703,404902800,2),(703,420026400,3),(703,436352400,2),(703,452080800,3),(703,467802000,2),(703,483530400,3),(703,499251600,2),(703,514980000,3),(703,530701200,2),(703,544615200,3),(703,562150800,2),(703,576064800,3),(703,594205200,2),(703,607514400,3),(703,625654800,2),(703,638964000,3),(703,657104400,2),(703,671018400,3),(703,688554000,2),(703,702468000,3),(703,720003600,2),(703,733917600,3),(703,752058000,2),(703,765367200,3),(703,783507600,2),(703,796816800,3),(703,814957200,2),(703,828871200,3),(703,846406800,2),(703,860320800,3),(703,877856400,2),(703,891770400,3),(703,909306000,2),(703,923220000,3),(703,941360400,2),(703,954669600,3),(703,972810000,2),(703,986119200,3),(703,1004259600,2),(703,1018173600,3),(703,1035709200,2),(703,1049623200,3),(703,1067158800,2),(703,1081072800,3),(703,1099213200,2),(703,1112522400,3),(703,1130662800,2),(703,1143972000,3),(703,1162112400,2),(703,1175421600,3),(703,1193562000,2),(703,1207476000,3),(703,1225011600,2),(703,1238925600,3),(703,1256461200,2),(703,1268560800,3),(703,1289120400,2),(703,1300010400,3),(703,1320570000,2),(703,1331460000,3),(703,1352019600,2),(703,1362909600,3),(703,1383469200,2),(703,1394359200,3),(703,1414918800,2),(703,1425808800,3),(703,1446368400,2),(703,1457863200,3),(703,1478422800,2),(703,1489312800,3),(703,1509872400,2),(703,1520762400,3),(703,1541322000,2),(703,1552212000,3),(703,1572771600,2),(703,1583661600,3),(703,1604221200,2),(703,1615716000,3),(703,1636275600,2),(703,1647165600,3),(703,1667725200,2),(703,1678615200,3),(703,1699174800,2),(703,1710064800,3),(703,1730624400,2),(703,1741514400,3),(703,1762074000,2),(703,1772964000,3),(703,1793523600,2),(703,1805018400,3),(703,1825578000,2),(703,1836468000,3),(703,1857027600,2),(703,1867917600,3),(703,1888477200,2),(703,1899367200,3),(703,1919926800,2),(703,1930816800,3),(703,1951376400,2),(703,1962871200,3),(703,1983430800,2),(703,1994320800,3),(703,2014880400,2),(703,2025770400,3),(703,2046330000,2),(703,2057220000,3),(703,2077779600,2),(703,2088669600,3),(703,2109229200,2),(703,2120119200,3),(703,2140678800,2),(704,-1632060000,0),(704,-1615129200,1),(704,-880207200,2),(704,-769395600,3),(704,-765385200,1),(704,-715788000,0),(704,-702486000,1),(704,-684338400,0),(704,-671036400,1),(704,-652888800,0),(704,-639586800,1),(704,-620834400,0),(704,-608137200,1),(704,-589384800,0),(704,-576082800,1),(704,-557935200,0),(704,-544633200,1),(704,-526485600,0),(704,-513183600,1),(704,-495036000,0),(704,-481734000,1),(704,-463586400,0),(704,-450284400,1),(704,-431532000,0),(704,-418230000,1),(704,-400082400,0),(704,-386780400,1),(704,-368632800,0),(704,-355330800,1),(704,-337183200,0),(704,-323881200,1),(704,-305733600,0),(704,-292431600,1),(704,-273679200,0),(704,-260982000,1),(704,-242229600,0),(704,-226508400,1),(704,-210780000,0),(704,-195058800,1),(704,-179330400,0),(704,-163609200,1),(704,-147880800,0),(704,-131554800,1),(704,-116431200,0),(704,-100105200,1),(704,-84376800,0),(704,-68655600,1),(704,-52927200,0),(704,-37206000,1),(704,-21477600,0),(704,-5756400,1),(704,9972000,0),(704,25693200,1),(704,41421600,0),(704,57747600,1),(704,73476000,0),(704,89197200,1),(704,104925600,0),(704,120646800,1),(704,136375200,0),(704,152096400,1),(704,167824800,0),(704,183546000,1),(704,199274400,0),(704,215600400,1),(704,230724000,0),(704,247050000,1),(704,262778400,0),(704,278499600,1),(704,294228000,0),(704,309949200,1),(704,325677600,0),(704,341398800,1),(704,357127200,0),(704,372848400,1),(704,388576800,0),(704,404902800,1),(704,420026400,0),(704,436352400,1),(704,452080800,0),(704,467802000,1),(704,483530400,0),(704,499251600,1),(704,514980000,0),(704,530701200,1),(704,544615200,0),(704,562150800,1),(704,576064800,0),(704,594205200,1),(704,607514400,0),(704,625654800,1),(704,638964000,0),(704,657104400,1),(704,671018400,0),(704,688554000,1),(704,702468000,0),(704,720003600,1),(704,733917600,0),(704,752058000,1),(704,765367200,0),(704,783507600,1),(704,796816800,0),(704,814957200,1),(704,828871200,0),(704,846406800,1),(704,860320800,0),(704,877856400,1),(704,891770400,0),(704,909306000,1),(704,923220000,0),(704,941360400,1),(704,954669600,0),(704,972810000,1),(704,986119200,0),(704,1004259600,1),(704,1018173600,0),(704,1035709200,1),(704,1049623200,0),(704,1067158800,1),(704,1081072800,0),(704,1099213200,1),(704,1112522400,0),(704,1130662800,1),(704,1143972000,0),(704,1162112400,1),(704,1173607200,0),(704,1194166800,1),(704,1205056800,0),(704,1225616400,1),(704,1236506400,0),(704,1257066000,1),(704,1268560800,0),(704,1289120400,1),(704,1300010400,0),(704,1320570000,1),(704,1331460000,0),(704,1352019600,1),(704,1362909600,0),(704,1383469200,1),(704,1394359200,0),(704,1414918800,1),(704,1425808800,4),(705,-1633276800,0),(705,-1615136400,1),(705,-1601827200,0),(705,-1583686800,1),(705,-900259200,0),(705,-891795600,1),(705,-880214400,2),(705,-769395600,3),(705,-765392400,1),(705,-747244800,0),(705,-733942800,1),(705,-715795200,0),(705,-702493200,1),(705,-684345600,0),(705,-671043600,1),(705,-652896000,0),(705,-639594000,1),(705,-620841600,0),(705,-608144400,1),(705,-589392000,0),(705,-576090000,1),(705,-557942400,0),(705,-544640400,1),(705,-526492800,0),(705,-513190800,1),(705,-495043200,0),(705,-481741200,1),(705,-463593600,4),(705,-386787600,1),(705,-368640000,4),(705,-21488400,5),(705,-5767200,4),(705,9961200,5),(705,25682400,4),(705,1143961200,5),(705,1162101600,4),(705,1173596400,5),(705,1194156000,4),(705,1205046000,5),(705,1225605600,4),(705,1236495600,5),(705,1257055200,4),(705,1268550000,5),(705,1289109600,4),(705,1299999600,5),(705,1320559200,4),(705,1331449200,5),(705,1352008800,4),(705,1362898800,5),(705,1383458400,4),(705,1394348400,5),(705,1414908000,4),(705,1425798000,5),(705,1446357600,4),(705,1457852400,5),(705,1478412000,4),(705,1489302000,5),(705,1509861600,4),(705,1520751600,5),(705,1541311200,4),(705,1552201200,5),(705,1572760800,4),(705,1583650800,5),(705,1604210400,4),(705,1615705200,5),(705,1636264800,4),(705,1647154800,5),(705,1667714400,4),(705,1678604400,5),(705,1699164000,4),(705,1710054000,5),(705,1730613600,4),(705,1741503600,5),(705,1762063200,4),(705,1772953200,5),(705,1793512800,4),(705,1805007600,5),(705,1825567200,4),(705,1836457200,5),(705,1857016800,4),(705,1867906800,5),(705,1888466400,4),(705,1899356400,5),(705,1919916000,4),(705,1930806000,5),(705,1951365600,4),(705,1962860400,5),(705,1983420000,4),(705,1994310000,5),(705,2014869600,4),(705,2025759600,5),(705,2046319200,4),(705,2057209200,5),(705,2077768800,4),(705,2088658800,5),(705,2109218400,4),(705,2120108400,5),(705,2140668000,4),(706,-1767216360,2),(706,-1206957600,1),(706,-1191362400,2),(706,-1175374800,1),(706,-1159826400,2),(706,-633819600,1),(706,-622069200,2),(706,-602283600,1),(706,-591832800,2),(706,-570747600,1),(706,-560210400,2),(706,-539125200,1),(706,-531352800,2),(706,-191365200,1),(706,-184197600,2),(706,-155163600,1),(706,-150069600,2),(706,-128898000,1),(706,-121125600,2),(706,-99954000,1),(706,-89589600,2),(706,-68418000,1),(706,-57967200,2),(706,499748400,1),(706,511236000,2),(706,530593200,1),(706,540266400,2),(706,562129200,1),(706,571197600,2),(706,592974000,1),(706,602042400,2),(706,624423600,1),(706,634701600,2),(706,938919600,1),(706,951616800,2),(706,970974000,1),(706,972180000,2),(706,1003028400,1),(706,1013911200,2),(707,-2131646412,2),(707,-1632074400,1),(707,-1615143600,2),(707,-880221600,3),(707,-769395600,4),(707,-765399600,2),(707,-526500000,1),(707,-513198000,2),(707,73461600,1),(707,89182800,2),(707,104911200,1),(707,120632400,2),(707,136360800,1),(707,152082000,2),(707,167810400,1),(707,183531600,2),(707,199260000,1),(707,215586000,2),(707,230709600,1),(707,247035600,2),(707,262764000,1),(707,278485200,2),(707,294213600,1),(707,309934800,2),(707,325663200,1),(707,341384400,2),(707,357112800,1),(707,372834000,2),(707,388562400,1),(707,404888400,2),(707,420012000,1),(707,436338000,2),(707,452066400,1),(707,467787600,2),(707,483516000,1),(707,499237200,2),(707,514965600,1),(707,530686800,2),(707,544600800,1),(707,562136400,2),(707,576050400,1),(707,594190800,2),(707,607500000,1),(707,625640400,2),(707,638949600,1),(707,657090000,2),(707,671004000,1),(707,688539600,2),(707,702453600,1),(707,719989200,2),(707,733903200,1),(707,752043600,2),(707,765352800,1),(707,783493200,2),(707,796802400,1),(707,814942800,2),(707,828856800,1),(707,846392400,2),(707,860306400,1),(707,877842000,2),(707,891756000,1),(707,909291600,2),(707,923205600,1),(707,941346000,2),(707,954655200,1),(707,972795600,2),(707,986104800,1),(707,1004245200,2),(707,1018159200,1),(707,1035694800,2),(707,1049608800,1),(707,1067144400,2),(707,1081058400,1),(707,1099198800,2),(707,1112508000,1),(707,1130648400,2),(707,1143957600,1),(707,1162098000,2),(707,1173592800,1),(707,1194152400,2),(707,1205042400,1),(707,1225602000,2),(707,1236492000,1),(707,1257051600,2),(707,1268546400,1),(707,1289106000,2),(707,1299996000,1),(707,1320555600,2),(707,1331445600,1),(707,1352005200,2),(707,1362895200,1),(707,1383454800,2),(707,1394344800,1),(707,1414904400,2),(707,1425794400,1),(707,1446354000,2),(707,1457848800,1),(707,1478408400,2),(707,1489298400,1),(707,1509858000,2),(707,1520748000,1),(707,1541307600,2),(707,1552197600,1),(707,1572757200,2),(707,1583647200,1),(707,1604206800,2),(707,1615701600,1),(707,1636261200,2),(707,1647151200,1),(707,1667710800,2),(707,1678600800,1),(707,1699160400,2),(707,1710050400,1),(707,1730610000,2),(707,1741500000,1),(707,1762059600,2),(707,1772949600,1),(707,1793509200,2),(707,1805004000,1),(707,1825563600,2),(707,1836453600,1),(707,1857013200,2),(707,1867903200,1),(707,1888462800,2),(707,1899352800,1),(707,1919912400,2),(707,1930802400,1),(707,1951362000,2),(707,1962856800,1),(707,1983416400,2),(707,1994306400,1),(707,2014866000,2),(707,2025756000,1),(707,2046315600,2),(707,2057205600,1),(707,2077765200,2),(707,2088655200,1),(707,2109214800,2),(707,2120104800,1),(707,2140664400,2),(708,-1686083584,1),(708,323845200,4),(708,338950800,2),(708,354675600,3),(708,370400400,2),(708,386125200,3),(708,401850000,2),(708,417574800,3),(708,433299600,2),(708,449024400,3),(708,465354000,2),(708,481078800,3),(708,496803600,2),(708,512528400,3),(708,528253200,2),(708,543978000,3),(708,559702800,2),(708,575427600,3),(708,591152400,2),(708,606877200,3),(708,622602000,2),(708,638326800,3),(708,654656400,2),(708,670381200,3),(708,686106000,2),(708,701830800,3),(708,717555600,2),(708,733280400,3),(708,749005200,2),(708,764730000,3),(708,780454800,2),(708,796179600,3),(708,811904400,2),(708,828234000,3),(708,846378000,2),(708,859683600,3),(708,877827600,2),(708,891133200,3),(708,909277200,2),(708,922582800,3),(708,941331600,2),(708,954032400,3),(708,972781200,2),(708,985482000,3),(708,1004230800,2),(708,1017536400,3),(708,1035680400,2),(708,1048986000,3),(708,1067130000,2),(708,1080435600,3),(708,1099184400,2),(708,1111885200,3),(708,1130634000,2),(708,1143334800,3),(708,1162083600,2),(708,1174784400,3),(708,1193533200,2),(708,1206838800,3),(708,1224982800,2),(708,1238288400,3),(708,1256432400,2),(708,1269738000,3),(708,1288486800,2),(708,1301187600,3),(708,1319936400,2),(708,1332637200,3),(708,1351386000,2),(708,1364691600,3),(708,1382835600,2),(708,1396141200,3),(708,1414285200,2),(708,1427590800,3),(708,1445734800,2),(708,1459040400,3),(708,1477789200,2),(708,1490490000,3),(708,1509238800,2),(708,1521939600,3),(708,1540688400,2),(708,1553994000,3),(708,1572138000,2),(708,1585443600,3),(708,1603587600,2),(708,1616893200,3),(708,1635642000,2),(708,1648342800,3),(708,1667091600,2),(708,1679792400,3),(708,1698541200,2),(708,1711846800,3),(708,1729990800,2),(708,1743296400,3),(708,1761440400,2),(708,1774746000,3),(708,1792890000,2),(708,1806195600,3),(708,1824944400,2),(708,1837645200,3),(708,1856394000,2),(708,1869094800,3),(708,1887843600,2),(708,1901149200,3),(708,1919293200,2),(708,1932598800,3),(708,1950742800,2),(708,1964048400,3),(708,1982797200,2),(708,1995498000,3),(708,2014246800,2),(708,2026947600,3),(708,2045696400,2),(708,2058397200,3),(708,2077146000,2),(708,2090451600,3),(708,2108595600,2),(708,2121901200,3),(708,2140045200,2),(709,-1632076148,1),(709,-1615145348,0),(709,-1096921748,2),(709,-1061670600,3),(709,-1048973400,2),(709,-1030221000,3),(709,-1017523800,2),(709,-998771400,3),(709,-986074200,2),(709,-966717000,3),(709,-954624600,2),(709,-935267400,3),(709,-922570200,2),(709,-903817800,3),(709,-891120600,2),(709,-872368200,5),(709,-769395600,4),(709,-765401400,2),(709,-746044200,3),(709,-733347000,2),(709,-714594600,3),(709,-701897400,2),(709,-683145000,3),(709,-670447800,2),(709,-651695400,3),(709,-638998200,2),(709,-619641000,3),(709,-606943800,2),(709,-589401000,3),(709,-576099000,2),(709,-557951400,3),(709,-544649400,2),(709,-526501800,3),(709,-513199800,2),(709,-495052200,3),(709,-481750200,2),(709,-463602600,3),(709,-450300600,2),(709,-431548200,3),(709,-418246200,2),(709,-400098600,3),(709,-386796600,2),(709,-368649000,3),(709,-355347000,2),(709,-337199400,3),(709,-323897400,2),(709,-305749800,3),(709,-289423800,2),(709,-273695400,3),(709,-257974200,2),(709,-242245800,3),(709,-226524600,2),(709,-210796200,3),(709,-195075000,2),(709,-179346600,3),(709,-163625400,2),(709,-147897000,3),(709,-131571000,2),(709,-119903400,7),(709,-116445600,6),(709,-100119600,7),(709,-84391200,6),(709,-68670000,7),(709,-52941600,6),(709,-37220400,7),(709,-21492000,6),(709,-5770800,7),(709,9957600,6),(709,25678800,7),(709,41407200,6),(709,57733200,7),(709,73461600,6),(709,89182800,7),(709,104911200,6),(709,120632400,7),(709,136360800,6),(709,152082000,7),(709,167810400,6),(709,183531600,7),(709,199260000,6),(709,215586000,7),(709,230709600,6),(709,247035600,7),(709,262764000,6),(709,278485200,7),(709,294213600,6),(709,309934800,7),(709,325663200,6),(709,341384400,7),(709,357112800,6),(709,372834000,7),(709,388562400,6),(709,404888400,7),(709,420012000,6),(709,436338000,7),(709,452066400,6),(709,467787600,7),(709,483516000,6),(709,499237200,7),(709,514965600,6),(709,530686800,7),(709,544593660,6),(709,562129260,7),(709,576043260,8),(709,594180060,7),(709,607492860,6),(709,625633260,7),(709,638942460,6),(709,657082860,7),(709,670996860,6),(709,688532460,7),(709,702446460,6),(709,719982060,7),(709,733896060,6),(709,752036460,7),(709,765345660,6),(709,783486060,7),(709,796795260,6),(709,814935660,7),(709,828849660,6),(709,846385260,7),(709,860299260,6),(709,877834860,7),(709,891748860,6),(709,909284460,7),(709,923198460,6),(709,941338860,7),(709,954648060,6),(709,972788460,7),(709,986097660,6),(709,1004238060,7),(709,1018152060,6),(709,1035687660,7),(709,1049601660,6),(709,1067137260,7),(709,1081051260,6),(709,1099191660,7),(709,1112500860,6),(709,1130641260,7),(709,1143950460,6),(709,1162090860,7),(709,1173585660,6),(709,1194145260,7),(709,1205035260,6),(709,1225594860,7),(709,1236484860,6),(709,1257044460,7),(709,1268539260,6),(709,1289098860,7),(709,1299988860,6),(709,1320555600,7),(709,1331445600,6),(709,1352005200,7),(709,1362895200,6),(709,1383454800,7),(709,1394344800,6),(709,1414904400,7),(709,1425794400,6),(709,1446354000,7),(709,1457848800,6),(709,1478408400,7),(709,1489298400,6),(709,1509858000,7),(709,1520748000,6),(709,1541307600,7),(709,1552197600,6),(709,1572757200,7),(709,1583647200,6),(709,1604206800,7),(709,1615701600,6),(709,1636261200,7),(709,1647151200,6),(709,1667710800,7),(709,1678600800,6),(709,1699160400,7),(709,1710050400,6),(709,1730610000,7),(709,1741500000,6),(709,1762059600,7),(709,1772949600,6),(709,1793509200,7),(709,1805004000,6),(709,1825563600,7),(709,1836453600,6),(709,1857013200,7),(709,1867903200,6),(709,1888462800,7),(709,1899352800,6),(709,1919912400,7),(709,1930802400,6),(709,1951362000,7),(709,1962856800,6),(709,1983416400,7),(709,1994306400,6),(709,2014866000,7),(709,2025756000,6),(709,2046315600,7),(709,2057205600,6),(709,2077765200,7),(709,2088655200,6),(709,2109214800,7),(709,2120104800,6),(709,2140664400,7),(710,-1827687170,1),(710,294217200,2),(710,309938400,1),(710,325666800,2),(710,341388000,1),(710,357116400,2),(710,372837600,1),(710,388566000,2),(710,404892000,1),(710,420015600,2),(710,436341600,1),(710,452070000,2),(710,467791200,1),(710,483519600,2),(710,499240800,1),(710,514969200,2),(710,530690400,1),(710,544604400,2),(710,562140000,1),(710,576054000,2),(710,594194400,1),(710,607503600,2),(710,625644000,1),(710,638953200,2),(710,657093600,1),(710,671007600,2),(710,688543200,1),(710,702457200,2),(710,719992800,1),(710,733906800,2),(710,752047200,1),(710,765356400,2),(710,783496800,1),(710,796806000,2),(710,814946400,1),(710,828860400,2),(710,846396000,1),(710,860310000,2),(710,877845600,1),(710,891759600,2),(710,909295200,1),(710,923209200,2),(710,941349600,1),(710,954658800,2),(710,972799200,1),(710,986108400,2),(710,1004248800,1),(710,1018162800,2),(710,1035698400,1),(710,1049612400,2),(710,1067148000,1),(710,1081062000,2),(710,1099202400,1),(710,1112511600,2),(710,1130652000,1),(710,1143961200,2),(710,1162101600,1),(710,1173596400,2),(710,1194156000,1),(710,1205046000,2),(710,1225605600,1),(710,1236495600,2),(710,1257055200,1),(710,1268550000,2),(710,1289109600,1),(710,1299999600,2),(710,1320559200,1),(710,1331449200,2),(710,1352008800,1),(710,1362898800,2),(710,1383458400,1),(710,1394348400,2),(710,1414908000,1),(710,1425798000,2),(710,1446357600,3),(710,1520751600,2),(710,1541311200,1),(710,1552201200,2),(710,1572760800,1),(710,1583650800,2),(710,1604210400,1),(710,1615705200,2),(710,1636264800,1),(710,1647154800,2),(710,1667714400,1),(710,1678604400,2),(710,1699164000,1),(710,1710054000,2),(710,1730613600,1),(710,1741503600,2),(710,1762063200,1),(710,1772953200,2),(710,1793512800,1),(710,1805007600,2),(710,1825567200,1),(710,1836457200,2),(710,1857016800,1),(710,1867906800,2),(710,1888466400,1),(710,1899356400,2),(710,1919916000,1),(710,1930806000,2),(710,1951365600,1),(710,1962860400,2),(710,1983420000,1),(710,1994310000,2),(710,2014869600,1),(710,2025759600,2),(710,2046319200,1),(710,2057209200,2),(710,2077768800,1),(710,2088658800,2),(710,2109218400,1),(710,2120108400,2),(710,2140668000,1),(711,-1825098836,1),(712,-1825098836,1),(713,-1617040676,2),(713,123055200,1),(713,130914000,2),(713,422344800,1),(713,433054800,2),(713,669708000,1),(713,684219600,2),(713,1146376800,1),(713,1159678800,2),(714,-1230749160,2),(714,722926800,1),(714,728884800,2),(715,-1730578040,1),(715,176010300,2),(715,662698800,3),(716,-2131645536,2),(716,-1696276800,1),(716,-1680469200,2),(716,-1632074400,1),(716,-1615143600,2),(716,-1566763200,1),(716,-1557090000,2),(716,-1535486400,1),(716,-1524949200,2),(716,-1504468800,1),(716,-1493413200,2),(716,-1472414400,1),(716,-1461963600,2),(716,-1440964800,1),(716,-1429390800,2),(716,-1409515200,1),(716,-1396731600,2),(716,-1376856000,1),(716,-1366491600,2),(716,-1346616000,1),(716,-1333832400,2),(716,-1313956800,1),(716,-1303678800,2),(716,-1282507200,1),(716,-1272661200,2),(716,-1251057600,1),(716,-1240088400,2),(716,-1219608000,1),(716,-1207429200,2),(716,-1188763200,1),(716,-1175979600,2),(716,-1157313600,1),(716,-1143925200,2),(716,-1124049600,1),(716,-1113771600,2),(716,-1091390400,1),(716,-1081026000,2),(716,-1059854400,1),(716,-1050786000,2),(716,-1030910400,1),(716,-1018126800,2),(716,-999460800,1),(716,-986677200,2),(716,-965592000,1),(716,-955227600,2),(716,-935956800,1),(716,-923173200,2),(716,-904507200,1),(716,-891723600,2),(716,-880221600,3),(716,-769395600,4),(716,-765399600,2),(716,-747252000,1),(716,-733950000,2),(716,-715802400,1),(716,-702500400,2),(716,-684352800,1),(716,-671050800,2),(716,-652903200,1),(716,-639601200,2),(716,-589399200,1),(716,-576097200,2),(716,-557949600,1),(716,-544647600,2),(716,-526500000,1),(716,-513198000,2),(716,-495050400,1),(716,-481748400,2),(716,-431546400,1),(716,-418244400,2),(716,-400096800,1),(716,-386794800,2),(716,-368647200,1),(716,-355345200,2),(716,-337197600,1),(716,-323895600,2),(716,-242244000,1),(716,-226522800,2),(716,-210794400,1),(716,-195073200,2),(716,-179344800,1),(716,-163623600,2),(716,-147895200,1),(716,-131569200,2),(716,-116445600,1),(716,-100119600,2),(716,-84391200,1),(716,-68670000,2),(716,-52941600,1),(716,-37220400,2),(716,-21492000,1),(716,-5770800,2),(716,9957600,1),(716,25678800,2),(716,41407200,1),(716,57733200,2),(716,73461600,1),(716,89182800,2),(716,104911200,1),(716,120632400,2),(716,136360800,1),(716,152082000,2),(716,167810400,1),(716,183531600,2),(716,199260000,1),(716,215586000,2),(716,230709600,1),(716,247035600,2),(716,262764000,1),(716,278485200,2),(716,294213600,1),(716,309934800,2),(716,325663200,1),(716,341384400,2),(716,357112800,1),(716,372834000,2),(716,388562400,1),(716,404888400,2),(716,420012000,1),(716,436338000,2),(716,452066400,1),(716,467787600,2),(716,483516000,1),(716,499237200,2),(716,514965600,1),(716,530686800,2),(716,544600800,1),(716,562136400,2),(716,576050400,1),(716,594190800,2),(716,607500000,1),(716,625640400,2),(716,638949600,1),(716,657090000,2),(716,671004000,1),(716,688539600,2),(716,702453600,1),(716,719989200,2),(716,733903200,1),(716,752043600,2),(716,765352800,1),(716,783493200,2),(716,796802400,1),(716,814942800,2),(716,828856800,1),(716,846392400,2),(716,860306400,1),(716,877842000,2),(716,891756000,1),(716,909291600,2),(716,923205600,1),(716,941346000,2),(716,954655200,1),(716,972795600,2),(716,986104800,1),(716,1004245200,2),(716,1018159200,1),(716,1035694800,2),(716,1049608800,1),(716,1067144400,2),(716,1081058400,1),(716,1099198800,2),(716,1112508000,1),(716,1130648400,2),(716,1143957600,1),(716,1162098000,2),(716,1173592800,1),(716,1194152400,2),(716,1205042400,1),(716,1225602000,2),(716,1236492000,1),(716,1257051600,2),(716,1268546400,1),(716,1289106000,2),(716,1299996000,1),(716,1320555600,2),(716,1331445600,1),(716,1352005200,2),(716,1362895200,1),(716,1383454800,2),(716,1394344800,1),(716,1414904400,2),(716,1425794400,1),(716,1446354000,2),(716,1457848800,1),(716,1478408400,2),(716,1489298400,1),(716,1509858000,2),(716,1520748000,1),(716,1541307600,2),(716,1552197600,1),(716,1572757200,2),(716,1583647200,1),(716,1604206800,2),(716,1615701600,1),(716,1636261200,2),(716,1647151200,1),(716,1667710800,2),(716,1678600800,1),(716,1699160400,2),(716,1710050400,1),(716,1730610000,2),(716,1741500000,1),(716,1762059600,2),(716,1772949600,1),(716,1793509200,2),(716,1805004000,1),(716,1825563600,2),(716,1836453600,1),(716,1857013200,2),(716,1867903200,1),(716,1888462800,2),(716,1899352800,1),(716,1919912400,2),(716,1930802400,1),(716,1951362000,2),(716,1962856800,1),(716,1983416400,2),(716,1994306400,1),(716,2014866000,2),(716,2025756000,1),(716,2046315600,2),(716,2057205600,1),(716,2077765200,2),(716,2088655200,1),(716,2109214800,2),(716,2120104800,1),(716,2140664400,2),(717,-1402813824,2),(717,-1311534000,1),(717,-1300996800,2),(717,-933534000,1),(717,-925675200,2),(717,-902084400,1),(717,-893620800,2),(717,-870030000,1),(717,-862171200,2),(717,-775681200,1),(717,-767822400,2),(717,-744231600,1),(717,-736372800,2),(717,-144702000,1),(717,-134251200,2),(717,-113425200,1),(717,-102542400,2),(717,-86295600,1),(717,-72907200,2),(717,-54154800,1),(717,-41457600,2),(717,-21495600,1),(717,-5774400,2),(717,9954000,1),(717,25675200,2),(717,41403600,1),(717,57729600,2),(717,73458000,1),(717,87364800,2),(717,104907600,1),(717,118900800,2),(717,136357200,1),(717,150436800,2),(717,167806800,1),(717,183528000,2),(717,199256400,1),(717,215582400,2),(717,230706000,1),(717,247032000,2),(717,263365200,1),(717,276667200,2),(717,290581200,1),(717,308721600,2),(717,322030800,1),(717,340171200,2),(717,358318800,1),(717,371620800,2),(717,389768400,1),(717,403070400,2),(717,421218000,1),(717,434520000,2),(717,452667600,1),(717,466574400,2),(717,484117200,1),(717,498024000,2),(717,511333200,1),(717,529473600,2),(717,542782800,1),(717,560923200,2),(717,574837200,1),(717,592372800,2),(717,606286800,1),(717,623822400,2),(717,638946000,1),(717,655876800,2),(717,671000400,1),(717,687330000,3),(717,702450000,1),(717,718779600,3),(717,733899600,1),(717,750229200,3),(717,765349200,1),(717,781678800,3),(717,796798800,1),(717,813128400,3),(717,828853200,1),(717,844578000,3),(717,860302800,1),(717,876632400,3),(717,891147600,4),(717,909291600,3),(717,922597200,4),(717,941346000,3),(717,954651600,4),(717,972795600,3),(717,986101200,4),(717,1004245200,3),(717,1018155600,4),(717,1035694800,3),(717,1049605200,4),(717,1067144400,3),(717,1080450000,4),(717,1162098000,3),(717,1173589200,4),(717,1193547600,3),(717,1205643600,4),(717,1224997200,3),(717,1236488400,4),(717,1256446800,3),(717,1268542800,4),(717,1288501200,3),(717,1300597200,4),(717,1321160400,3),(717,1333256400,4),(717,1352005200,3),(717,1362891600,4),(717,1383454800,3),(717,1394341200,4),(717,1414904400,3),(717,1425790800,4),(717,1446354000,3),(717,1457845200,4),(717,1478408400,3),(717,1489294800,4),(717,1509858000,3),(717,1520744400,4),(717,1541307600,3),(717,1552194000,4),(717,1572757200,3),(717,1583643600,4),(717,1604206800,3),(717,1615698000,4),(717,1636261200,3),(717,1647147600,4),(717,1667710800,3),(717,1678597200,4),(717,1699160400,3),(717,1710046800,4),(717,1730610000,3),(717,1741496400,4),(717,1762059600,3),(717,1772946000,4),(717,1793509200,3),(717,1805000400,4),(717,1825563600,3),(717,1836450000,4),(717,1857013200,3),(717,1867899600,4),(717,1888462800,3),(717,1899349200,4),(717,1919912400,3),(717,1930798800,4),(717,1951362000,3),(717,1962853200,4),(717,1983416400,3),(717,1994302800,4),(717,2014866000,3),(717,2025752400,4),(717,2046315600,3),(717,2057202000,4),(717,2077765200,3),(717,2088651600,4),(717,2109214800,3),(717,2120101200,4),(717,2140664400,3),(718,-1514739600,1),(718,-1343066400,2),(718,-1234807200,1),(718,-1220292000,2),(718,-1207159200,1),(718,-1191344400,2),(718,-873828000,1),(718,-661539600,3),(718,28800,1),(718,828867600,4),(718,846403200,1),(718,860317200,4),(718,877852800,1),(718,891766800,4),(718,909302400,1),(719,-1633276800,0),(719,-1615136400,1),(719,-1601827200,0),(719,-1583686800,1),(719,-900259200,0),(719,-891795600,1),(719,-880214400,2),(719,-769395600,3),(719,-765392400,1),(719,-747244800,0),(719,-733942800,1),(719,-715795200,0),(719,-702493200,1),(719,-684345600,0),(719,-671043600,1),(719,-652896000,0),(719,-639594000,1),(719,-620841600,0),(719,-608144400,1),(719,-589392000,0),(719,-576090000,1),(719,-557942400,0),(719,-544640400,1),(719,-526492800,0),(719,-513190800,1),(719,-495043200,0),(719,-481741200,1),(719,-463593600,4),(719,-386787600,1),(719,-368640000,4),(719,-21488400,5),(719,-5767200,4),(719,9961200,5),(719,25682400,4),(719,1143961200,5),(719,1162101600,4),(719,1173596400,5),(719,1194156000,4),(719,1205046000,5),(719,1225605600,4),(719,1236495600,5),(719,1257055200,4),(719,1268550000,5),(719,1289109600,4),(719,1299999600,5),(719,1320559200,4),(719,1331449200,5),(719,1352008800,4),(719,1362898800,5),(719,1383458400,4),(719,1394348400,5),(719,1414908000,4),(719,1425798000,5),(719,1446357600,4),(719,1457852400,5),(719,1478412000,4),(719,1489302000,5),(719,1509861600,4),(719,1520751600,5),(719,1541311200,4),(719,1552201200,5),(719,1572760800,4),(719,1583650800,5),(719,1604210400,4),(719,1615705200,5),(719,1636264800,4),(719,1647154800,5),(719,1667714400,4),(719,1678604400,5),(719,1699164000,4),(719,1710054000,5),(719,1730613600,4),(719,1741503600,5),(719,1762063200,4),(719,1772953200,5),(719,1793512800,4),(719,1805007600,5),(719,1825567200,4),(719,1836457200,5),(719,1857016800,4),(719,1867906800,5),(719,1888466400,4),(719,1899356400,5),(719,1919916000,4),(719,1930806000,5),(719,1951365600,4),(719,1962860400,5),(719,1983420000,4),(719,1994310000,5),(719,2014869600,4),(719,2025759600,5),(719,2046319200,4),(719,2057209200,5),(719,2077768800,4),(719,2088658800,5),(719,2109218400,4),(719,2120108400,5),(719,2140668000,4),(720,-1633276800,0),(720,-1615136400,1),(720,-1601827200,0),(720,-1583686800,1),(720,-880214400,2),(720,-769395600,3),(720,-765392400,1),(720,-715795200,0),(720,-702493200,1),(720,-684345600,0),(720,-671043600,1),(720,-652896000,0),(720,-639594000,1),(720,-620841600,0),(720,-608144400,1),(720,-589392000,0),(720,-576090000,1),(720,-557942400,0),(720,-544640400,1),(720,-526492800,0),(720,-513190800,1),(720,-495043200,0),(720,-481741200,1),(720,-463593600,0),(720,-447267600,1),(720,-431539200,0),(720,-415818000,1),(720,-400089600,0),(720,-386787600,1),(720,-368640000,0),(720,-355338000,1),(720,-337190400,0),(720,-321469200,1),(720,-305740800,0),(720,-289414800,1),(720,-273686400,0),(720,-257965200,1),(720,-242236800,4),(720,-195066000,1),(720,-84384000,0),(720,-68662800,1),(720,-52934400,0),(720,-37213200,1),(720,-21484800,0),(720,-5763600,1),(720,9964800,0),(720,25686000,1),(720,41414400,0),(720,57740400,1),(720,73468800,0),(720,89190000,1),(720,104918400,0),(720,120639600,1),(720,126691200,0),(720,152089200,1),(720,162374400,0),(720,183538800,1),(720,199267200,0),(720,215593200,1),(720,230716800,0),(720,247042800,1),(720,262771200,0),(720,278492400,1),(720,294220800,0),(720,309942000,1),(720,325670400,0),(720,341391600,1),(720,357120000,0),(720,372841200,1),(720,388569600,0),(720,404895600,1),(720,420019200,0),(720,436345200,1),(720,452073600,0),(720,467794800,1),(720,483523200,0),(720,499244400,1),(720,514972800,0),(720,530694000,1),(720,544608000,0),(720,562143600,1),(720,576057600,0),(720,594198000,1),(720,607507200,0),(720,625647600,1),(720,638956800,0),(720,657097200,1),(720,671011200,0),(720,688546800,4),(720,1143961200,0),(720,1162105200,1),(720,1173600000,0),(720,1194159600,1),(720,1205049600,0),(720,1225609200,1),(720,1236499200,0),(720,1257058800,1),(720,1268553600,0),(720,1289113200,1),(720,1300003200,0),(720,1320562800,1),(720,1331452800,0),(720,1352012400,1),(720,1362902400,0),(720,1383462000,1),(720,1394352000,0),(720,1414911600,1),(720,1425801600,0),(720,1446361200,1),(720,1457856000,0),(720,1478415600,1),(720,1489305600,0),(720,1509865200,1),(720,1520755200,0),(720,1541314800,1),(720,1552204800,0),(720,1572764400,1),(720,1583654400,0),(720,1604214000,1),(720,1615708800,0),(720,1636268400,1),(720,1647158400,0),(720,1667718000,1),(720,1678608000,0),(720,1699167600,1),(720,1710057600,0),(720,1730617200,1),(720,1741507200,0),(720,1762066800,1),(720,1772956800,0),(720,1793516400,1),(720,1805011200,0),(720,1825570800,1),(720,1836460800,0),(720,1857020400,1),(720,1867910400,0),(720,1888470000,1),(720,1899360000,0),(720,1919919600,1),(720,1930809600,0),(720,1951369200,1),(720,1962864000,0),(720,1983423600,1),(720,1994313600,0),(720,2014873200,1),(720,2025763200,0),(720,2046322800,1),(720,2057212800,0),(720,2077772400,1),(720,2088662400,0),(720,2109222000,1),(720,2120112000,0),(720,2140671600,1),(721,-1633276800,0),(721,-1615136400,1),(721,-1601827200,0),(721,-1583686800,1),(721,-880214400,2),(721,-769395600,3),(721,-765392400,1),(721,-589392000,0),(721,-576090000,1),(721,-495043200,0),(721,-481741200,1),(721,-463593600,0),(721,-450291600,1),(721,-431539200,0),(721,-418237200,1),(721,-400089600,0),(721,-386787600,1),(721,-368640000,0),(721,-355338000,1),(721,-337190400,0),(721,-323888400,1),(721,-305740800,0),(721,-292438800,1),(721,-273686400,4),(721,-21488400,5),(721,-5767200,4),(721,9961200,5),(721,25682400,4),(721,41410800,5),(721,57736800,4),(721,73465200,5),(721,89186400,4),(721,104914800,5),(721,120636000,4),(721,126687600,0),(721,152089200,4),(721,162370800,5),(721,183535200,4),(721,1143961200,5),(721,1162101600,4),(721,1173596400,5),(721,1194156000,4),(721,1205046000,5),(721,1225605600,4),(721,1236495600,5),(721,1257055200,4),(721,1268550000,5),(721,1289109600,4),(721,1299999600,5),(721,1320559200,4),(721,1331449200,5),(721,1352008800,4),(721,1362898800,5),(721,1383458400,4),(721,1394348400,5),(721,1414908000,4),(721,1425798000,5),(721,1446357600,4),(721,1457852400,5),(721,1478412000,4),(721,1489302000,5),(721,1509861600,4),(721,1520751600,5),(721,1541311200,4),(721,1552201200,5),(721,1572760800,4),(721,1583650800,5),(721,1604210400,4),(721,1615705200,5),(721,1636264800,4),(721,1647154800,5),(721,1667714400,4),(721,1678604400,5),(721,1699164000,4),(721,1710054000,5),(721,1730613600,4),(721,1741503600,5),(721,1762063200,4),(721,1772953200,5),(721,1793512800,4),(721,1805007600,5),(721,1825567200,4),(721,1836457200,5),(721,1857016800,4),(721,1867906800,5),(721,1888466400,4),(721,1899356400,5),(721,1919916000,4),(721,1930806000,5),(721,1951365600,4),(721,1962860400,5),(721,1983420000,4),(721,1994310000,5),(721,2014869600,4),(721,2025759600,5),(721,2046319200,4),(721,2057209200,5),(721,2077768800,4),(721,2088658800,5),(721,2109218400,4),(721,2120108400,5),(721,2140668000,4),(722,-1633276800,0),(722,-1615136400,1),(722,-1601827200,0),(722,-1583686800,1),(722,-880214400,2),(722,-769395600,3),(722,-765392400,1),(722,-462996000,0),(722,-450291600,1),(722,-431539200,0),(722,-418237200,1),(722,-400089600,0),(722,-386787600,1),(722,-368640000,0),(722,-355338000,1),(722,-337190400,0),(722,-323888400,1),(722,-305740800,0),(722,-292438800,1),(722,-273686400,0),(722,-257965200,1),(722,-242236800,0),(722,-226515600,1),(722,-210787200,0),(722,-195066000,1),(722,-179337600,0),(722,-163616400,1),(722,-147888000,4),(722,-100112400,1),(722,-84384000,0),(722,-68662800,1),(722,-52934400,0),(722,-37213200,1),(722,-21484800,0),(722,-5763600,1),(722,9964800,0),(722,25686000,1),(722,41414400,0),(722,57740400,1),(722,73468800,0),(722,89190000,1),(722,104918400,0),(722,120639600,1),(722,126691200,0),(722,152089200,1),(722,162374400,0),(722,183538800,1),(722,199267200,0),(722,215593200,1),(722,230716800,0),(722,247042800,4),(722,1143961200,0),(722,1162105200,1),(722,1173600000,0),(722,1194159600,4),(722,1205046000,5),(722,1225605600,4),(722,1236495600,5),(722,1257055200,4),(722,1268550000,5),(722,1289109600,4),(722,1299999600,5),(722,1320559200,4),(722,1331449200,5),(722,1352008800,4),(722,1362898800,5),(722,1383458400,4),(722,1394348400,5),(722,1414908000,4),(722,1425798000,5),(722,1446357600,4),(722,1457852400,5),(722,1478412000,4),(722,1489302000,5),(722,1509861600,4),(722,1520751600,5),(722,1541311200,4),(722,1552201200,5),(722,1572760800,4),(722,1583650800,5),(722,1604210400,4),(722,1615705200,5),(722,1636264800,4),(722,1647154800,5),(722,1667714400,4),(722,1678604400,5),(722,1699164000,4),(722,1710054000,5),(722,1730613600,4),(722,1741503600,5),(722,1762063200,4),(722,1772953200,5),(722,1793512800,4),(722,1805007600,5),(722,1825567200,4),(722,1836457200,5),(722,1857016800,4),(722,1867906800,5),(722,1888466400,4),(722,1899356400,5),(722,1919916000,4),(722,1930806000,5),(722,1951365600,4),(722,1962860400,5),(722,1983420000,4),(722,1994310000,5),(722,2014869600,4),(722,2025759600,5),(722,2046319200,4),(722,2057209200,5),(722,2077768800,4),(722,2088658800,5),(722,2109218400,4),(722,2120108400,5),(722,2140668000,4),(723,-1633276800,0),(723,-1615136400,1),(723,-1601827200,0),(723,-1583686800,1),(723,-880214400,2),(723,-769395600,3),(723,-765392400,1),(723,-747244800,0),(723,-733942800,1),(723,-526492800,0),(723,-513190800,1),(723,-495043200,0),(723,-481741200,1),(723,-462996000,0),(723,-450291600,1),(723,-431539200,0),(723,-418237200,1),(723,-400089600,0),(723,-386787600,1),(723,-368640000,0),(723,-355338000,1),(723,-337190400,0),(723,-323888400,1),(723,-305740800,0),(723,-289414800,1),(723,-273686400,0),(723,-260989200,1),(723,-242236800,0),(723,-226515600,1),(723,-210787200,0),(723,-195066000,1),(723,-179337600,4),(723,-21488400,5),(723,-5767200,4),(723,9961200,5),(723,25682400,4),(723,1143961200,0),(723,1162105200,1),(723,1173600000,0),(723,1194159600,1),(723,1205049600,0),(723,1225609200,1),(723,1236499200,0),(723,1257058800,1),(723,1268553600,0),(723,1289113200,1),(723,1300003200,0),(723,1320562800,1),(723,1331452800,0),(723,1352012400,1),(723,1362902400,0),(723,1383462000,1),(723,1394352000,0),(723,1414911600,1),(723,1425801600,0),(723,1446361200,1),(723,1457856000,0),(723,1478415600,1),(723,1489305600,0),(723,1509865200,1),(723,1520755200,0),(723,1541314800,1),(723,1552204800,0),(723,1572764400,1),(723,1583654400,0),(723,1604214000,1),(723,1615708800,0),(723,1636268400,1),(723,1647158400,0),(723,1667718000,1),(723,1678608000,0),(723,1699167600,1),(723,1710057600,0),(723,1730617200,1),(723,1741507200,0),(723,1762066800,1),(723,1772956800,0),(723,1793516400,1),(723,1805011200,0),(723,1825570800,1),(723,1836460800,0),(723,1857020400,1),(723,1867910400,0),(723,1888470000,1),(723,1899360000,0),(723,1919919600,1),(723,1930809600,0),(723,1951369200,1),(723,1962864000,0),(723,1983423600,1),(723,1994313600,0),(723,2014873200,1),(723,2025763200,0),(723,2046322800,1),(723,2057212800,0),(723,2077772400,1),(723,2088662400,0),(723,2109222000,1),(723,2120112000,0),(723,2140671600,1),(724,-1633276800,0),(724,-1615136400,1),(724,-1601827200,0),(724,-1583686800,1),(724,-880214400,2),(724,-769395600,3),(724,-765392400,1),(724,-495043200,4),(724,-21488400,5),(724,-5767200,4),(724,9961200,5),(724,25682400,4),(724,41410800,5),(724,57736800,4),(724,73465200,5),(724,89186400,4),(724,1143961200,5),(724,1162101600,4),(724,1173596400,5),(724,1194156000,4),(724,1205046000,5),(724,1225605600,4),(724,1236495600,5),(724,1257055200,4),(724,1268550000,5),(724,1289109600,4),(724,1299999600,5),(724,1320559200,4),(724,1331449200,5),(724,1352008800,4),(724,1362898800,5),(724,1383458400,4),(724,1394348400,5),(724,1414908000,4),(724,1425798000,5),(724,1446357600,4),(724,1457852400,5),(724,1478412000,4),(724,1489302000,5),(724,1509861600,4),(724,1520751600,5),(724,1541311200,4),(724,1552201200,5),(724,1572760800,4),(724,1583650800,5),(724,1604210400,4),(724,1615705200,5),(724,1636264800,4),(724,1647154800,5),(724,1667714400,4),(724,1678604400,5),(724,1699164000,4),(724,1710054000,5),(724,1730613600,4),(724,1741503600,5),(724,1762063200,4),(724,1772953200,5),(724,1793512800,4),(724,1805007600,5),(724,1825567200,4),(724,1836457200,5),(724,1857016800,4),(724,1867906800,5),(724,1888466400,4),(724,1899356400,5),(724,1919916000,4),(724,1930806000,5),(724,1951365600,4),(724,1962860400,5),(724,1983420000,4),(724,1994310000,5),(724,2014869600,4),(724,2025759600,5),(724,2046319200,4),(724,2057209200,5),(724,2077768800,4),(724,2088658800,5),(724,2109218400,4),(724,2120108400,5),(724,2140668000,4),(725,-1633276800,0),(725,-1615136400,1),(725,-1601827200,0),(725,-1583686800,1),(725,-880214400,2),(725,-769395600,3),(725,-765392400,1),(725,-747244800,0),(725,-733942800,1),(725,-526492800,0),(725,-513190800,1),(725,-495043200,0),(725,-481741200,1),(725,-462996000,0),(725,-450291600,1),(725,-431539200,0),(725,-418237200,1),(725,-400089600,0),(725,-386787600,1),(725,-368640000,0),(725,-355338000,1),(725,-337190400,0),(725,-323888400,1),(725,-305740800,0),(725,-289414800,1),(725,-273686400,0),(725,-260989200,1),(725,-242236800,0),(725,-226515600,1),(725,-210787200,0),(725,-195066000,1),(725,-179337600,4),(725,-21488400,5),(725,-5767200,4),(725,9961200,5),(725,25682400,4),(725,1143961200,0),(725,1162105200,1),(725,1173600000,0),(725,1194159600,4),(725,1205046000,5),(725,1225605600,4),(725,1236495600,5),(725,1257055200,4),(725,1268550000,5),(725,1289109600,4),(725,1299999600,5),(725,1320559200,4),(725,1331449200,5),(725,1352008800,4),(725,1362898800,5),(725,1383458400,4),(725,1394348400,5),(725,1414908000,4),(725,1425798000,5),(725,1446357600,4),(725,1457852400,5),(725,1478412000,4),(725,1489302000,5),(725,1509861600,4),(725,1520751600,5),(725,1541311200,4),(725,1552201200,5),(725,1572760800,4),(725,1583650800,5),(725,1604210400,4),(725,1615705200,5),(725,1636264800,4),(725,1647154800,5),(725,1667714400,4),(725,1678604400,5),(725,1699164000,4),(725,1710054000,5),(725,1730613600,4),(725,1741503600,5),(725,1762063200,4),(725,1772953200,5),(725,1793512800,4),(725,1805007600,5),(725,1825567200,4),(725,1836457200,5),(725,1857016800,4),(725,1867906800,5),(725,1888466400,4),(725,1899356400,5),(725,1919916000,4),(725,1930806000,5),(725,1951365600,4),(725,1962860400,5),(725,1983420000,4),(725,1994310000,5),(725,2014869600,4),(725,2025759600,5),(725,2046319200,4),(725,2057209200,5),(725,2077768800,4),(725,2088658800,5),(725,2109218400,4),(725,2120108400,5),(725,2140668000,4),(726,-1633276800,0),(726,-1615136400,1),(726,-1601827200,0),(726,-1583686800,1),(726,-880214400,2),(726,-769395600,3),(726,-765392400,1),(726,-747244800,0),(726,-733942800,1),(726,-715795200,0),(726,-702493200,1),(726,-684345600,0),(726,-671043600,1),(726,-652896000,0),(726,-639594000,1),(726,-620841600,0),(726,-608144400,1),(726,-589392000,0),(726,-576090000,1),(726,-557942400,0),(726,-544640400,1),(726,-526492800,0),(726,-513190800,1),(726,-495043200,0),(726,-481741200,1),(726,-463593600,0),(726,-447267600,1),(726,-431539200,0),(726,-415818000,1),(726,-400089600,0),(726,-386787600,1),(726,-368640000,0),(726,-355338000,1),(726,-337190400,0),(726,-323888400,1),(726,-305740800,0),(726,-292438800,1),(726,-273686400,4),(726,-21488400,5),(726,-5767200,4),(726,9961200,5),(726,25682400,4),(726,1143961200,0),(726,1162105200,1),(726,1173600000,5),(726,1194156000,4),(726,1205046000,5),(726,1225605600,4),(726,1236495600,5),(726,1257055200,4),(726,1268550000,5),(726,1289109600,4),(726,1299999600,5),(726,1320559200,4),(726,1331449200,5),(726,1352008800,4),(726,1362898800,5),(726,1383458400,4),(726,1394348400,5),(726,1414908000,4),(726,1425798000,5),(726,1446357600,4),(726,1457852400,5),(726,1478412000,4),(726,1489302000,5),(726,1509861600,4),(726,1520751600,5),(726,1541311200,4),(726,1552201200,5),(726,1572760800,4),(726,1583650800,5),(726,1604210400,4),(726,1615705200,5),(726,1636264800,4),(726,1647154800,5),(726,1667714400,4),(726,1678604400,5),(726,1699164000,4),(726,1710054000,5),(726,1730613600,4),(726,1741503600,5),(726,1762063200,4),(726,1772953200,5),(726,1793512800,4),(726,1805007600,5),(726,1825567200,4),(726,1836457200,5),(726,1857016800,4),(726,1867906800,5),(726,1888466400,4),(726,1899356400,5),(726,1919916000,4),(726,1930806000,5),(726,1951365600,4),(726,1962860400,5),(726,1983420000,4),(726,1994310000,5),(726,2014869600,4),(726,2025759600,5),(726,2046319200,4),(726,2057209200,5),(726,2077768800,4),(726,2088658800,5),(726,2109218400,4),(726,2120108400,5),(726,2140668000,4),(727,-1633276800,0),(727,-1615136400,1),(727,-1601827200,0),(727,-1583686800,1),(727,-900259200,0),(727,-891795600,1),(727,-880214400,2),(727,-769395600,3),(727,-765392400,1),(727,-747244800,0),(727,-733942800,1),(727,-715795200,0),(727,-702493200,1),(727,-684345600,0),(727,-671043600,1),(727,-652896000,0),(727,-639594000,1),(727,-620841600,0),(727,-608144400,1),(727,-589392000,0),(727,-576090000,1),(727,-557942400,0),(727,-544640400,1),(727,-526492800,0),(727,-513190800,1),(727,-495043200,0),(727,-481741200,1),(727,-463593600,4),(727,-386787600,1),(727,-368640000,4),(727,-21488400,5),(727,-5767200,4),(727,9961200,5),(727,25682400,4),(727,1143961200,5),(727,1162101600,4),(727,1173596400,5),(727,1194156000,4),(727,1205046000,5),(727,1225605600,4),(727,1236495600,5),(727,1257055200,4),(727,1268550000,5),(727,1289109600,4),(727,1299999600,5),(727,1320559200,4),(727,1331449200,5),(727,1352008800,4),(727,1362898800,5),(727,1383458400,4),(727,1394348400,5),(727,1414908000,4),(727,1425798000,5),(727,1446357600,4),(727,1457852400,5),(727,1478412000,4),(727,1489302000,5),(727,1509861600,4),(727,1520751600,5),(727,1541311200,4),(727,1552201200,5),(727,1572760800,4),(727,1583650800,5),(727,1604210400,4),(727,1615705200,5),(727,1636264800,4),(727,1647154800,5),(727,1667714400,4),(727,1678604400,5),(727,1699164000,4),(727,1710054000,5),(727,1730613600,4),(727,1741503600,5),(727,1762063200,4),(727,1772953200,5),(727,1793512800,4),(727,1805007600,5),(727,1825567200,4),(727,1836457200,5),(727,1857016800,4),(727,1867906800,5),(727,1888466400,4),(727,1899356400,5),(727,1919916000,4),(727,1930806000,5),(727,1951365600,4),(727,1962860400,5),(727,1983420000,4),(727,1994310000,5),(727,2014869600,4),(727,2025759600,5),(727,2046319200,4),(727,2057209200,5),(727,2077768800,4),(727,2088658800,5),(727,2109218400,4),(727,2120108400,5),(727,2140668000,4),(728,-536457600,2),(728,-147888000,1),(728,-131558400,2),(728,294228000,3),(728,325674000,4),(728,341395200,3),(728,357123600,4),(728,372844800,3),(728,388573200,4),(728,404899200,3),(728,420022800,4),(728,436348800,3),(728,452077200,4),(728,467798400,3),(728,483526800,4),(728,499248000,3),(728,514976400,4),(728,530697600,3),(728,544611600,4),(728,562147200,3),(728,576061200,4),(728,594201600,3),(728,607510800,4),(728,625651200,3),(728,638960400,4),(728,657100800,3),(728,671014800,4),(728,688550400,3),(728,702464400,4),(728,720000000,3),(728,733914000,4),(728,752054400,3),(728,765363600,4),(728,783504000,3),(728,796813200,4),(728,814953600,3),(728,828867600,4),(728,846403200,3),(728,860317200,4),(728,877852800,3),(728,891766800,4),(728,909302400,3),(728,923216400,4),(728,941356800,3),(728,954666000,4),(728,972806400,3),(728,986115600,4),(728,1004256000,3),(728,1018170000,4),(728,1035705600,3),(728,1049619600,4),(728,1067155200,3),(728,1081069200,4),(728,1099209600,3),(728,1112518800,4),(728,1130659200,3),(728,1143968400,4),(728,1162108800,3),(728,1173603600,4),(728,1194163200,3),(728,1205053200,4),(728,1225612800,3),(728,1236502800,4),(728,1257062400,3),(728,1268557200,4),(728,1289116800,3),(728,1300006800,4),(728,1320566400,3),(728,1331456400,4),(728,1352016000,3),(728,1362906000,4),(728,1383465600,3),(728,1394355600,4),(728,1414915200,3),(728,1425805200,4),(728,1446364800,3),(728,1457859600,4),(728,1478419200,3),(728,1489309200,4),(728,1509868800,3),(728,1520758800,4),(728,1541318400,3),(728,1552208400,4),(728,1572768000,3),(728,1583658000,4),(728,1604217600,3),(728,1615712400,4),(728,1636272000,3),(728,1647162000,4),(728,1667721600,3),(728,1678611600,4),(728,1699171200,3),(728,1710061200,4),(728,1730620800,3),(728,1741510800,4),(728,1762070400,3),(728,1772960400,4),(728,1793520000,3),(728,1805014800,4),(728,1825574400,3),(728,1836464400,4),(728,1857024000,3),(728,1867914000,4),(728,1888473600,3),(728,1899363600,4),(728,1919923200,3),(728,1930813200,4),(728,1951372800,3),(728,1962867600,4),(728,1983427200,3),(728,1994317200,4),(728,2014876800,3),(728,2025766800,4),(728,2046326400,3),(728,2057216400,4),(728,2077776000,3),(728,2088666000,4),(728,2109225600,3),(728,2120115600,4),(728,2140675200,3),(729,-865296000,5),(729,-769395600,1),(729,-765396000,2),(729,-147898800,3),(729,-131569200,2),(729,325666800,4),(729,341388000,2),(729,357116400,4),(729,372837600,2),(729,388566000,4),(729,404892000,2),(729,420015600,4),(729,436341600,2),(729,452070000,4),(729,467791200,2),(729,483519600,4),(729,499240800,2),(729,514969200,4),(729,530690400,2),(729,544604400,4),(729,562140000,2),(729,576054000,4),(729,594194400,2),(729,607503600,4),(729,625644000,2),(729,638953200,4),(729,657093600,2),(729,671007600,4),(729,688543200,2),(729,702457200,4),(729,719992800,2),(729,733906800,4),(729,752047200,2),(729,765356400,4),(729,783496800,2),(729,796806000,4),(729,814946400,2),(729,828860400,4),(729,846396000,2),(729,860310000,4),(729,877845600,2),(729,891759600,4),(729,909295200,2),(729,923209200,4),(729,941349600,6),(729,954662400,7),(729,972802800,2),(729,986108400,4),(729,1004248800,2),(729,1018162800,4),(729,1035698400,2),(729,1049612400,4),(729,1067148000,2),(729,1081062000,4),(729,1099202400,2),(729,1112511600,4),(729,1130652000,2),(729,1143961200,4),(729,1162101600,2),(729,1173596400,4),(729,1194156000,2),(729,1205046000,4),(729,1225605600,2),(729,1236495600,4),(729,1257055200,2),(729,1268550000,4),(729,1289109600,2),(729,1299999600,4),(729,1320559200,2),(729,1331449200,4),(729,1352008800,2),(729,1362898800,4),(729,1383458400,2),(729,1394348400,4),(729,1414908000,2),(729,1425798000,4),(729,1446357600,2),(729,1457852400,4),(729,1478412000,2),(729,1489302000,4),(729,1509861600,2),(729,1520751600,4),(729,1541311200,2),(729,1552201200,4),(729,1572760800,2),(729,1583650800,4),(729,1604210400,2),(729,1615705200,4),(729,1636264800,2),(729,1647154800,4),(729,1667714400,2),(729,1678604400,4),(729,1699164000,2),(729,1710054000,4),(729,1730613600,2),(729,1741503600,4),(729,1762063200,2),(729,1772953200,4),(729,1793512800,2),(729,1805007600,4),(729,1825567200,2),(729,1836457200,4),(729,1857016800,2),(729,1867906800,4),(729,1888466400,2),(729,1899356400,4),(729,1919916000,2),(729,1930806000,4),(729,1951365600,2),(729,1962860400,4),(729,1983420000,2),(729,1994310000,4),(729,2014869600,2),(729,2025759600,4),(729,2046319200,2),(729,2057209200,4),(729,2077768800,2),(729,2088658800,4),(729,2109218400,2),(729,2120108400,4),(729,2140668000,2),(730,-1827687170,1),(730,126687600,2),(730,152085600,1),(730,162370800,2),(730,183535200,1),(730,199263600,2),(730,215589600,1),(730,230713200,2),(730,247039200,1),(730,262767600,2),(730,278488800,1),(730,294217200,2),(730,309938400,1),(730,325666800,2),(730,341388000,1),(730,357116400,2),(730,372837600,1),(730,388566000,2),(730,404892000,1),(730,420015600,2),(730,436341600,1),(731,-1567453392,1),(731,-1233432000,2),(731,-1222981200,1),(731,-1205956800,2),(731,-1194037200,1),(731,-1172865600,2),(731,-1162501200,1),(731,-1141329600,2),(731,-1130965200,1),(731,-1109793600,2),(731,-1099429200,1),(731,-1078257600,2),(731,-1067806800,1),(731,-1046635200,2),(731,-1036270800,1),(731,-1015099200,2),(731,-1004734800,1),(731,-983563200,2),(731,-973198800,1),(731,-952027200,2),(731,-941576400,1),(731,-931032000,2),(731,-900882000,1),(731,-890337600,2),(731,-833749200,1),(731,-827265600,2),(731,-752274000,1),(731,-733780800,2),(731,-197326800,1),(731,-190843200,2),(731,-184194000,1),(731,-164491200,2),(731,-152658000,1),(731,-132955200,2),(731,-121122000,1),(731,-101419200,2),(731,-86821200,1),(731,-71092800,2),(731,-54766800,1),(731,-39038400,2),(731,-23317200,1),(731,-7588800,4),(731,128142000,3),(731,136605600,4),(731,596948400,3),(731,605066400,4),(731,624423600,3),(731,636516000,1),(731,657086400,2),(731,669178800,1),(731,686721600,3),(731,699415200,4),(731,719377200,3),(731,731469600,4),(731,938919600,2),(731,952052400,4),(731,1198983600,3),(731,1205632800,4),(732,-880207200,1),(732,-769395600,2),(732,-765385200,0),(732,-21477600,3),(732,-5756400,0),(732,9972000,3),(732,25693200,0),(732,41421600,3),(732,57747600,0),(732,73476000,3),(732,89197200,0),(732,104925600,3),(732,120646800,0),(732,126698400,3),(732,152096400,0),(732,162381600,3),(732,183546000,0),(732,199274400,3),(732,215600400,0),(732,230724000,3),(732,247050000,0),(732,262778400,3),(732,278499600,0),(732,294228000,3),(732,309949200,0),(732,325677600,4),(732,341402400,0),(732,357127200,3),(732,372848400,0),(732,388576800,3),(732,404902800,0),(732,420026400,3),(732,436352400,5),(732,439030800,7),(732,452084400,6),(732,467805600,7),(732,483534000,6),(732,499255200,7),(732,514983600,6),(732,530704800,7),(732,544618800,6),(732,562154400,7),(732,576068400,6),(732,594208800,7),(732,607518000,6),(732,625658400,7),(732,638967600,6),(732,657108000,7),(732,671022000,6),(732,688557600,7),(732,702471600,6),(732,720007200,7),(732,733921200,6),(732,752061600,7),(732,765370800,6),(732,783511200,7),(732,796820400,6),(732,814960800,7),(732,828874800,6),(732,846410400,7),(732,860324400,6),(732,877860000,7),(732,891774000,6),(732,909309600,7),(732,923223600,6),(732,941364000,7),(732,954673200,6),(732,972813600,7),(732,986122800,6),(732,1004263200,7),(732,1018177200,6),(732,1035712800,7),(732,1049626800,6),(732,1067162400,7),(732,1081076400,6),(732,1099216800,7),(732,1112526000,6),(732,1130666400,7),(732,1143975600,6),(732,1162116000,7),(732,1173610800,6),(732,1194170400,7),(732,1205060400,6),(732,1225620000,7),(732,1236510000,6),(732,1257069600,7),(732,1268564400,6),(732,1289124000,7),(732,1300014000,6),(732,1320573600,7),(732,1331463600,6),(732,1352023200,7),(732,1362913200,6),(732,1383472800,7),(732,1394362800,6),(732,1414922400,7),(732,1425812400,6),(732,1446372000,7),(732,1457866800,6),(732,1478426400,7),(732,1489316400,6),(732,1509876000,7),(732,1520766000,6),(732,1541325600,7),(732,1552215600,6),(732,1572775200,7),(732,1583665200,6),(732,1604224800,7),(732,1615719600,6),(732,1636279200,7),(732,1647169200,6),(732,1667728800,7),(732,1678618800,6),(732,1699178400,7),(732,1710068400,6),(732,1730628000,7),(732,1741518000,6),(732,1762077600,7),(732,1772967600,6),(732,1793527200,7),(732,1805022000,6),(732,1825581600,7),(732,1836471600,6),(732,1857031200,7),(732,1867921200,6),(732,1888480800,7),(732,1899370800,6),(732,1919930400,7),(732,1930820400,6),(732,1951380000,7),(732,1962874800,6),(732,1983434400,7),(732,1994324400,6),(732,2014884000,7),(732,2025774000,6),(732,2046333600,7),(732,2057223600,6),(732,2077783200,7),(732,2088673200,6),(732,2109232800,7),(732,2120122800,6),(732,2140682400,7),(733,-1633276800,0),(733,-1615136400,1),(733,-1601827200,0),(733,-1583686800,1),(733,-1535904000,0),(733,-1525280400,1),(733,-905097600,0),(733,-891795600,1),(733,-880214400,2),(733,-769395600,3),(733,-765392400,1),(733,-757360800,0),(733,-744224400,1),(733,-715795200,0),(733,-608144400,1),(733,-589392000,0),(733,-576090000,1),(733,-557942400,0),(733,-544640400,1),(733,-526492800,0),(733,-513190800,1),(733,-495043200,0),(733,-481741200,1),(733,-463593600,0),(733,-450291600,1),(733,-431539200,0),(733,-415818000,1),(733,-400089600,0),(733,-384368400,1),(733,-368640000,0),(733,-352918800,1),(733,-337190400,0),(733,-321469200,1),(733,-305740800,0),(733,-289414800,1),(733,-273686400,0),(733,-266432400,4),(733,-52938000,5),(733,-37216800,4),(733,-21488400,5),(733,-5767200,4),(733,9961200,5),(733,25682400,4),(733,41410800,5),(733,57736800,4),(733,73465200,5),(733,89186400,4),(733,104914800,5),(733,120636000,4),(733,126687600,0),(733,152089200,4),(733,162370800,5),(733,183535200,4),(733,199263600,5),(733,215589600,4),(733,230713200,5),(733,247039200,4),(733,262767600,5),(733,278488800,4),(733,294217200,5),(733,309938400,4),(733,325666800,5),(733,341388000,4),(733,357116400,5),(733,372837600,4),(733,388566000,5),(733,404892000,4),(733,420015600,5),(733,436341600,4),(733,452070000,5),(733,467791200,4),(733,483519600,5),(733,499240800,4),(733,514969200,5),(733,530690400,4),(733,544604400,5),(733,562140000,4),(733,576054000,5),(733,594194400,4),(733,607503600,5),(733,625644000,4),(733,638953200,5),(733,657093600,4),(733,671007600,5),(733,688543200,4),(733,702457200,5),(733,719992800,4),(733,733906800,5),(733,752047200,4),(733,765356400,5),(733,783496800,4),(733,796806000,5),(733,814946400,4),(733,828860400,5),(733,846396000,4),(733,860310000,5),(733,877845600,4),(733,891759600,5),(733,909295200,4),(733,923209200,5),(733,941349600,4),(733,954658800,5),(733,972799200,4),(733,986108400,5),(733,1004248800,4),(733,1018162800,5),(733,1035698400,4),(733,1049612400,5),(733,1067148000,4),(733,1081062000,5),(733,1099202400,4),(733,1112511600,5),(733,1130652000,4),(733,1143961200,5),(733,1162101600,4),(733,1173596400,5),(733,1194156000,4),(733,1205046000,5),(733,1225605600,4),(733,1236495600,5),(733,1257055200,4),(733,1268550000,5),(733,1289109600,4),(733,1299999600,5),(733,1320559200,4),(733,1331449200,5),(733,1352008800,4),(733,1362898800,5),(733,1383458400,4),(733,1394348400,5),(733,1414908000,4),(733,1425798000,5),(733,1446357600,4),(733,1457852400,5),(733,1478412000,4),(733,1489302000,5),(733,1509861600,4),(733,1520751600,5),(733,1541311200,4),(733,1552201200,5),(733,1572760800,4),(733,1583650800,5),(733,1604210400,4),(733,1615705200,5),(733,1636264800,4),(733,1647154800,5),(733,1667714400,4),(733,1678604400,5),(733,1699164000,4),(733,1710054000,5),(733,1730613600,4),(733,1741503600,5),(733,1762063200,4),(733,1772953200,5),(733,1793512800,4),(733,1805007600,5),(733,1825567200,4),(733,1836457200,5),(733,1857016800,4),(733,1867906800,5),(733,1888466400,4),(733,1899356400,5),(733,1919916000,4),(733,1930806000,5),(733,1951365600,4),(733,1962860400,5),(733,1983420000,4),(733,1994310000,5),(733,2014869600,4),(733,2025759600,5),(733,2046319200,4),(733,2057209200,5),(733,2077768800,4),(733,2088658800,5),(733,2109218400,4),(733,2120108400,5),(733,2140668000,4),(734,-1633276800,0),(734,-1615136400,1),(734,-1601827200,0),(734,-1583686800,1),(734,-880214400,2),(734,-769395600,3),(734,-765392400,1),(734,-52934400,0),(734,-37213200,1),(734,-21484800,0),(734,-5763600,1),(734,9964800,0),(734,25686000,1),(734,41414400,0),(734,57740400,1),(734,73468800,0),(734,89190000,1),(734,104918400,0),(734,120639600,1),(734,126691200,0),(734,152089200,1),(734,162374400,0),(734,183538800,1),(734,199267200,0),(734,215593200,1),(734,230716800,0),(734,247042800,1),(734,262771200,0),(734,278492400,1),(734,294220800,0),(734,309942000,1),(734,325670400,0),(734,341391600,1),(734,357120000,0),(734,372841200,1),(734,388569600,0),(734,404895600,1),(734,420019200,0),(734,436345200,1),(734,452073600,0),(734,467794800,1),(734,483523200,0),(734,499244400,1),(734,514972800,0),(734,530694000,1),(734,544608000,0),(734,562143600,1),(734,576057600,0),(734,594198000,1),(734,607507200,0),(734,625647600,1),(734,638956800,0),(734,657097200,1),(734,671011200,0),(734,688546800,1),(734,702460800,0),(734,719996400,1),(734,733910400,0),(734,752050800,1),(734,765360000,0),(734,783500400,1),(734,796809600,0),(734,814950000,1),(734,828864000,0),(734,846399600,1),(734,860313600,0),(734,877849200,1),(734,891763200,0),(734,909298800,1),(734,923212800,0),(734,941353200,1),(734,954662400,0),(734,972802800,5),(734,986108400,4),(734,1004248800,5),(734,1018162800,4),(734,1035698400,5),(734,1049612400,4),(734,1067148000,5),(734,1081062000,4),(734,1099202400,5),(734,1112511600,4),(734,1130652000,5),(734,1143961200,4),(734,1162101600,5),(734,1173596400,4),(734,1194156000,5),(734,1205046000,4),(734,1225605600,5),(734,1236495600,4),(734,1257055200,5),(734,1268550000,4),(734,1289109600,5),(734,1299999600,4),(734,1320559200,5),(734,1331449200,4),(734,1352008800,5),(734,1362898800,4),(734,1383458400,5),(734,1394348400,4),(734,1414908000,5),(734,1425798000,4),(734,1446357600,5),(734,1457852400,4),(734,1478412000,5),(734,1489302000,4),(734,1509861600,5),(734,1520751600,4),(734,1541311200,5),(734,1552201200,4),(734,1572760800,5),(734,1583650800,4),(734,1604210400,5),(734,1615705200,4),(734,1636264800,5),(734,1647154800,4),(734,1667714400,5),(734,1678604400,4),(734,1699164000,5),(734,1710054000,4),(734,1730613600,5),(734,1741503600,4),(734,1762063200,5),(734,1772953200,4),(734,1793512800,5),(734,1805007600,4),(734,1825567200,5),(734,1836457200,4),(734,1857016800,5),(734,1867906800,4),(734,1888466400,5),(734,1899356400,4),(734,1919916000,5),(734,1930806000,4),(734,1951365600,5),(734,1962860400,4),(734,1983420000,5),(734,1994310000,4),(734,2014869600,5),(734,2025759600,4),(734,2046319200,5),(734,2057209200,4),(734,2077768800,5),(734,2088658800,4),(734,2109218400,5),(734,2120108400,4),(734,2140668000,5),(735,-1633276800,0),(735,-1615136400,1),(735,-1601827200,0),(735,-1583686800,1),(735,-880214400,2),(735,-769395600,3),(735,-765392400,1),(735,-715795200,0),(735,-702493200,1),(735,-684345600,0),(735,-671043600,1),(735,-652896000,0),(735,-639594000,1),(735,-620841600,0),(735,-608144400,1),(735,-589392000,0),(735,-576090000,1),(735,-557942400,0),(735,-544640400,1),(735,-526492800,0),(735,-513190800,1),(735,-495043200,0),(735,-481741200,1),(735,-463593600,0),(735,-447267600,1),(735,-431539200,0),(735,-415818000,1),(735,-400089600,0),(735,-386787600,1),(735,-368640000,0),(735,-355338000,1),(735,-337190400,0),(735,-321469200,1),(735,-305740800,0),(735,-289414800,1),(735,-273686400,0),(735,-257965200,1),(735,-242236800,4),(735,-195066000,1),(735,-84384000,0),(735,-68662800,1),(735,-52934400,0),(735,-37213200,1),(735,-21484800,0),(735,-5763600,1),(735,9964800,0),(735,25686000,1),(735,41414400,0),(735,57740400,1),(735,73468800,0),(735,89190000,1),(735,104918400,0),(735,120639600,1),(735,126691200,0),(735,152089200,1),(735,162374400,0),(735,183538800,1),(735,199267200,0),(735,215593200,1),(735,230716800,0),(735,247042800,1),(735,262771200,0),(735,278492400,1),(735,294220800,0),(735,309942000,1),(735,325670400,0),(735,341391600,1),(735,357120000,0),(735,372841200,1),(735,388569600,0),(735,404895600,1),(735,420019200,0),(735,436345200,1),(735,452073600,0),(735,467794800,1),(735,483523200,0),(735,499244400,1),(735,514972800,0),(735,530694000,1),(735,544608000,0),(735,562143600,1),(735,576057600,0),(735,594198000,1),(735,607507200,0),(735,625647600,1),(735,638956800,0),(735,657097200,1),(735,671011200,0),(735,688546800,4),(735,1143961200,0),(735,1162105200,1),(735,1173600000,0),(735,1194159600,1),(735,1205049600,0),(735,1225609200,1),(735,1236499200,0),(735,1257058800,1),(735,1268553600,0),(735,1289113200,1),(735,1300003200,0),(735,1320562800,1),(735,1331452800,0),(735,1352012400,1),(735,1362902400,0),(735,1383462000,1),(735,1394352000,0),(735,1414911600,1),(735,1425801600,0),(735,1446361200,1),(735,1457856000,0),(735,1478415600,1),(735,1489305600,0),(735,1509865200,1),(735,1520755200,0),(735,1541314800,1),(735,1552204800,0),(735,1572764400,1),(735,1583654400,0),(735,1604214000,1),(735,1615708800,0),(735,1636268400,1),(735,1647158400,0),(735,1667718000,1),(735,1678608000,0),(735,1699167600,1),(735,1710057600,0),(735,1730617200,1),(735,1741507200,0),(735,1762066800,1),(735,1772956800,0),(735,1793516400,1),(735,1805011200,0),(735,1825570800,1),(735,1836460800,0),(735,1857020400,1),(735,1867910400,0),(735,1888470000,1),(735,1899360000,0),(735,1919919600,1),(735,1930809600,0),(735,1951369200,1),(735,1962864000,0),(735,1983423600,1),(735,1994313600,0),(735,2014873200,1),(735,2025763200,0),(735,2046322800,1),(735,2057212800,0),(735,2077772400,1),(735,2088662400,0),(735,2109222000,1),(735,2120112000,0),(735,2140671600,1),(736,-1826738653,1),(736,-157750200,2),(737,-1205954844,1),(737,-1192307244,2),(738,-1938538284,2),(738,-1009825200,1),(738,-1002052800,2),(738,-986756400,1),(738,-971035200,2),(738,-955306800,1),(738,-939585600,2),(738,504939600,1),(738,512712000,2),(738,536475600,1),(738,544248000,2),(738,631170000,1),(738,638942400,2),(738,757400400,1),(738,765172800,2),(739,-1633269600,0),(739,-1615129200,1),(739,-1601820000,0),(739,-1583679600,1),(739,-880207200,2),(739,-769395600,3),(739,-765385200,1),(739,-687967140,0),(739,-662655600,1),(739,-620838000,0),(739,-608137200,1),(739,-589388400,0),(739,-576082800,1),(739,-557938800,0),(739,-544633200,1),(739,-526489200,0),(739,-513183600,1),(739,-495039600,0),(739,-481734000,1),(739,-463590000,0),(739,-450284400,1),(739,-431535600,0),(739,-418230000,1),(739,-400086000,0),(739,-386780400,1),(739,-368636400,0),(739,-355330800,1),(739,-337186800,0),(739,-323881200,1),(739,-305737200,0),(739,-292431600,1),(739,-273682800,0),(739,-260982000,1),(739,-242233200,0),(739,-226508400,1),(739,-210783600,0),(739,-195058800,1),(739,-179334000,0),(739,-163609200,1),(739,-147884400,0),(739,-131554800,1),(739,-116434800,0),(739,-100105200,1),(739,-84376800,0),(739,-68655600,1),(739,-52927200,0),(739,-37206000,1),(739,-21477600,0),(739,-5756400,1),(739,9972000,0),(739,25693200,1),(739,41421600,0),(739,57747600,1),(739,73476000,0),(739,89197200,1),(739,104925600,0),(739,120646800,1),(739,126698400,0),(739,152096400,1),(739,162381600,0),(739,183546000,1),(739,199274400,0),(739,215600400,1),(739,230724000,0),(739,247050000,1),(739,262778400,0),(739,278499600,1),(739,294228000,0),(739,309949200,1),(739,325677600,0),(739,341398800,1),(739,357127200,0),(739,372848400,1),(739,388576800,0),(739,404902800,1),(739,420026400,0),(739,436352400,1),(739,452080800,0),(739,467802000,1),(739,483530400,0),(739,499251600,1),(739,514980000,0),(739,530701200,1),(739,544615200,0),(739,562150800,1),(739,576064800,0),(739,594205200,1),(739,607514400,0),(739,625654800,1),(739,638964000,0),(739,657104400,1),(739,671018400,0),(739,688554000,1),(739,702468000,0),(739,720003600,1),(739,733917600,0),(739,752058000,1),(739,765367200,0),(739,783507600,1),(739,796816800,0),(739,814957200,1),(739,828871200,0),(739,846406800,1),(739,860320800,0),(739,877856400,1),(739,891770400,0),(739,909306000,1),(739,923220000,0),(739,941360400,1),(739,954669600,0),(739,972810000,1),(739,986119200,0),(739,1004259600,1),(739,1018173600,0),(739,1035709200,1),(739,1049623200,0),(739,1067158800,1),(739,1081072800,0),(739,1099213200,1),(739,1112522400,0),(739,1130662800,1),(739,1143972000,0),(739,1162112400,1),(739,1173607200,0),(739,1194166800,1),(739,1205056800,0),(739,1225616400,1),(739,1236506400,0),(739,1257066000,1),(739,1268560800,0),(739,1289120400,1),(739,1300010400,0),(739,1320570000,1),(739,1331460000,0),(739,1352019600,1),(739,1362909600,0),(739,1383469200,1),(739,1394359200,0),(739,1414918800,1),(739,1425808800,0),(739,1446368400,1),(739,1457863200,0),(739,1478422800,1),(739,1489312800,0),(739,1509872400,1),(739,1520762400,0),(739,1541322000,1),(739,1552212000,0),(739,1572771600,1),(739,1583661600,0),(739,1604221200,1),(739,1615716000,0),(739,1636275600,1),(739,1647165600,0),(739,1667725200,1),(739,1678615200,0),(739,1699174800,1),(739,1710064800,0),(739,1730624400,1),(739,1741514400,0),(739,1762074000,1),(739,1772964000,0),(739,1793523600,1),(739,1805018400,0),(739,1825578000,1),(739,1836468000,0),(739,1857027600,1),(739,1867917600,0),(739,1888477200,1),(739,1899367200,0),(739,1919926800,1),(739,1930816800,0),(739,1951376400,1),(739,1962871200,0),(739,1983430800,1),(739,1994320800,0),(739,2014880400,1),(739,2025770400,0),(739,2046330000,1),(739,2057220000,0),(739,2077779600,1),(739,2088669600,0),(739,2109229200,1),(739,2120119200,0),(739,2140678800,1),(740,-1633276800,0),(740,-1615136400,1),(740,-1601827200,0),(740,-1583686800,1),(740,-1535904000,0),(740,-1525280400,1),(740,-905097600,0),(740,-891795600,1),(740,-880214400,2),(740,-769395600,3),(740,-765392400,1),(740,-757360800,0),(740,-744224400,1),(740,-715795200,0),(740,-608144400,1),(740,-589392000,0),(740,-576090000,1),(740,-557942400,0),(740,-544640400,1),(740,-526492800,0),(740,-513190800,1),(740,-495043200,0),(740,-481741200,1),(740,-463593600,0),(740,-450291600,1),(740,-431539200,0),(740,-415818000,1),(740,-400089600,0),(740,-384368400,1),(740,-368640000,0),(740,-352918800,1),(740,-337190400,0),(740,-321469200,1),(740,-305740800,0),(740,-289414800,1),(740,-273686400,0),(740,-266432400,4),(740,-52938000,5),(740,-37216800,4),(740,-21488400,5),(740,-5767200,4),(740,9961200,5),(740,25682400,4),(740,41410800,5),(740,57736800,4),(740,73465200,5),(740,89186400,4),(740,104914800,5),(740,120636000,4),(740,126687600,0),(740,152089200,4),(740,162370800,5),(740,183535200,4),(740,199263600,5),(740,215589600,4),(740,230713200,5),(740,247039200,4),(740,262767600,5),(740,278488800,4),(740,294217200,5),(740,309938400,4),(740,325666800,5),(740,341388000,4),(740,357116400,5),(740,372837600,4),(740,388566000,5),(740,404892000,4),(740,420015600,5),(740,436341600,4),(740,452070000,5),(740,467791200,4),(740,483519600,5),(740,499240800,4),(740,514969200,5),(740,530690400,4),(740,544604400,5),(740,562140000,4),(740,576054000,5),(740,594194400,4),(740,607503600,5),(740,625644000,4),(740,638953200,5),(740,657093600,4),(740,671007600,5),(740,688543200,4),(740,702457200,5),(740,719992800,4),(740,733906800,5),(740,752047200,4),(740,765356400,5),(740,783496800,4),(740,796806000,5),(740,814946400,4),(740,828860400,5),(740,846396000,4),(740,860310000,5),(740,877845600,4),(740,891759600,5),(740,909295200,4),(740,923209200,5),(740,941349600,4),(740,954658800,5),(740,972799200,4),(740,986108400,5),(740,1004248800,4),(740,1018162800,5),(740,1035698400,4),(740,1049612400,5),(740,1067148000,4),(740,1081062000,5),(740,1099202400,4),(740,1112511600,5),(740,1130652000,4),(740,1143961200,5),(740,1162101600,4),(740,1173596400,5),(740,1194156000,4),(740,1205046000,5),(740,1225605600,4),(740,1236495600,5),(740,1257055200,4),(740,1268550000,5),(740,1289109600,4),(740,1299999600,5),(740,1320559200,4),(740,1331449200,5),(740,1352008800,4),(740,1362898800,5),(740,1383458400,4),(740,1394348400,5),(740,1414908000,4),(740,1425798000,5),(740,1446357600,4),(740,1457852400,5),(740,1478412000,4),(740,1489302000,5),(740,1509861600,4),(740,1520751600,5),(740,1541311200,4),(740,1552201200,5),(740,1572760800,4),(740,1583650800,5),(740,1604210400,4),(740,1615705200,5),(740,1636264800,4),(740,1647154800,5),(740,1667714400,4),(740,1678604400,5),(740,1699164000,4),(740,1710054000,5),(740,1730613600,4),(740,1741503600,5),(740,1762063200,4),(740,1772953200,5),(740,1793512800,4),(740,1805007600,5),(740,1825567200,4),(740,1836457200,5),(740,1857016800,4),(740,1867906800,5),(740,1888466400,4),(740,1899356400,5),(740,1919916000,4),(740,1930806000,5),(740,1951365600,4),(740,1962860400,5),(740,1983420000,4),(740,1994310000,5),(740,2014869600,4),(740,2025759600,5),(740,2046319200,4),(740,2057209200,5),(740,2077768800,4),(740,2088658800,5),(740,2109218400,4),(740,2120108400,5),(740,2140668000,4),(741,-1826738653,1),(741,-157750200,2),(742,-1767217028,2),(742,-1206957600,1),(742,-1191362400,2),(742,-1175374800,1),(742,-1159826400,2),(742,-633819600,1),(742,-622069200,2),(742,-602283600,1),(742,-591832800,2),(742,-570747600,1),(742,-560210400,2),(742,-539125200,1),(742,-531352800,2),(742,-191365200,1),(742,-184197600,2),(742,-155163600,1),(742,-150069600,2),(742,-128898000,1),(742,-121125600,2),(742,-99954000,1),(742,-89589600,2),(742,-68418000,1),(742,-57967200,2),(742,499748400,1),(742,511236000,2),(742,530593200,1),(742,540266400,2),(742,562129200,1),(742,571197600,2),(742,592974000,1),(742,602042400,2),(742,624423600,1),(742,634701600,2),(742,813726000,1),(742,824004000,2),(742,938919600,1),(742,951616800,2),(742,970974000,1),(742,972180000,2),(742,1003028400,1),(742,1013911200,2),(743,-1121105688,1),(743,105084000,2),(743,161758800,1),(743,290584800,3),(743,299134800,1),(743,322034400,3),(743,330584400,1),(743,694260000,2),(743,717310800,1),(743,725868000,2),(743,852094800,1),(743,1113112800,3),(743,1128229200,1),(743,1146384000,3),(743,1159682400,1),(744,-1767211196,2),(744,-1206954000,1),(744,-1191358800,2),(744,-1175371200,1),(744,-1159822800,2),(744,-633816000,1),(744,-622065600,2),(744,-602280000,1),(744,-591829200,2),(744,-570744000,1),(744,-560206800,2),(744,-539121600,1),(744,-531349200,2),(744,-191361600,1),(744,-184194000,2),(744,-155160000,1),(744,-150066000,2),(744,-128894400,1),(744,-121122000,2),(744,-99950400,1),(744,-89586000,2),(744,-68414400,1),(744,-57963600,2),(744,499752000,1),(744,511239600,2),(744,530596800,1),(744,540270000,2),(744,562132800,1),(744,571201200,2),(744,750830400,1),(744,761713200,2),(745,-1825098836,1),(746,-1851537340,1),(746,323841600,2),(746,338958000,1),(747,-1514743200,1),(747,576057600,2),(747,594198000,1),(747,828864000,2),(747,846399600,1),(747,860313600,2),(747,877849200,1),(747,891763200,2),(747,909298800,1),(747,923212800,2),(747,941353200,1),(747,954662400,2),(747,972802800,1),(747,989136000,2),(747,1001833200,1),(747,1018166400,2),(747,1035702000,1),(747,1049616000,2),(747,1067151600,1),(747,1081065600,2),(747,1099206000,1),(747,1112515200,2),(747,1130655600,1),(747,1143964800,2),(747,1162105200,1),(747,1175414400,2),(747,1193554800,1),(747,1207468800,2),(747,1225004400,1),(747,1238918400,2),(747,1256454000,1),(747,1268553600,2),(747,1289113200,1),(747,1300003200,2),(747,1320562800,1),(747,1331452800,2),(747,1352012400,1),(747,1362902400,2),(747,1383462000,1),(747,1394352000,2),(747,1414911600,1),(747,1425801600,2),(747,1446361200,1),(747,1457856000,2),(747,1478415600,1),(747,1489305600,2),(747,1509865200,1),(747,1520755200,2),(747,1541314800,1),(747,1552204800,2),(747,1572764400,1),(747,1583654400,2),(747,1604214000,1),(747,1615708800,2),(747,1636268400,1),(747,1647158400,2),(747,1667718000,1),(747,1678608000,2),(747,1699167600,1),(747,1710057600,2),(747,1730617200,1),(747,1741507200,2),(747,1762066800,1),(747,1772956800,2),(747,1793516400,1),(747,1805011200,2),(747,1825570800,1),(747,1836460800,2),(747,1857020400,1),(747,1867910400,2),(747,1888470000,1),(747,1899360000,2),(747,1919919600,1),(747,1930809600,2),(747,1951369200,1),(747,1962864000,2),(747,1983423600,1),(747,1994313600,2),(747,2014873200,1),(747,2025763200,2),(747,2046322800,1),(747,2057212800,2),(747,2077772400,1),(747,2088662400,2),(747,2109222000,1),(747,2120112000,2),(747,2140671600,1),(748,-1514739600,1),(748,-1343066400,2),(748,-1234807200,1),(748,-1220292000,2),(748,-1207159200,1),(748,-1191344400,2),(748,-873828000,1),(748,-661539600,3),(748,28800,1),(748,828867600,4),(748,846403200,1),(748,860317200,4),(748,877852800,1),(748,891766800,4),(748,909302400,1),(748,923216400,4),(748,941356800,1),(748,954666000,4),(748,972806400,1),(748,989139600,4),(748,1001836800,1),(748,1018170000,4),(748,1035705600,1),(748,1049619600,4),(748,1067155200,1),(748,1081069200,4),(748,1099209600,1),(748,1112518800,4),(748,1130659200,1),(748,1143968400,4),(748,1162108800,1),(748,1175418000,4),(748,1193558400,1),(748,1207472400,4),(748,1225008000,1),(748,1238922000,4),(748,1256457600,1),(748,1270371600,4),(748,1288512000,1),(748,1301821200,4),(748,1319961600,1),(748,1333270800,4),(748,1351411200,1),(748,1365325200,4),(748,1382860800,1),(748,1396774800,4),(748,1414310400,1),(748,1428224400,4),(748,1445760000,1),(748,1459674000,4),(748,1477814400,1),(748,1491123600,4),(748,1509264000,1),(748,1522573200,4),(748,1540713600,1),(748,1554627600,4),(748,1572163200,1),(748,1586077200,4),(748,1603612800,1),(748,1617526800,4),(748,1635667200,1),(748,1648976400,4),(748,1667116800,1),(748,1680426000,4),(748,1698566400,1),(748,1712480400,4),(748,1730016000,1),(748,1743930000,4),(748,1761465600,1),(748,1775379600,4),(748,1792915200,1),(748,1806829200,4),(748,1824969600,1),(748,1838278800,4),(748,1856419200,1),(748,1869728400,4),(748,1887868800,1),(748,1901782800,4),(748,1919318400,1),(748,1933232400,4),(748,1950768000,1),(748,1964682000,4),(748,1982822400,1),(748,1996131600,4),(748,2014272000,1),(748,2027581200,4),(748,2045721600,1),(748,2059030800,4),(748,2077171200,1),(748,2091085200,4),(748,2108620800,1),(748,2122534800,4),(748,2140070400,1),(749,-1567453392,1),(749,-1233432000,2),(749,-1222981200,1),(749,-1205956800,2),(749,-1194037200,1),(749,-1172865600,2),(749,-1162501200,1),(749,-1141329600,2),(749,-1130965200,1),(749,-1109793600,2),(749,-1099429200,1),(749,-1078257600,2),(749,-1067806800,1),(749,-1046635200,2),(749,-1036270800,1),(749,-1015099200,2),(749,-1004734800,1),(749,-983563200,2),(749,-973198800,1),(749,-952027200,2),(749,-941576400,1),(749,-931032000,2),(749,-900882000,1),(749,-890337600,2),(749,-833749200,1),(749,-827265600,2),(749,-752274000,1),(749,-733780800,2),(749,-197326800,1),(749,-190843200,2),(749,-184194000,1),(749,-164491200,2),(749,-152658000,1),(749,-132955200,2),(749,-121122000,1),(749,-101419200,2),(749,-86821200,1),(749,-71092800,2),(749,-54766800,1),(749,-39038400,2),(749,-23317200,1),(749,-7588800,4),(749,128142000,3),(749,136605600,4),(749,596948400,3),(749,605066400,4),(749,624423600,3),(749,636516000,1),(749,655963200,2),(749,667796400,1),(749,687499200,2),(749,699418800,1),(749,719380800,3),(749,731469600,4),(749,938919600,2),(749,952052400,4),(749,1085281200,1),(749,1096171200,4),(749,1198983600,3),(749,1205632800,4),(750,-1633276800,0),(750,-1615136400,1),(750,-1601827200,0),(750,-1583686800,1),(750,-880214400,2),(750,-769395600,3),(750,-765392400,1),(750,-747244800,0),(750,-733942800,1),(750,-116438400,0),(750,-100112400,1),(750,-21484800,4),(750,104914800,0),(750,120639600,1),(750,126691200,0),(750,152089200,1),(750,162374400,0),(750,183538800,1),(750,199267200,0),(750,215593200,1),(750,230716800,0),(750,247042800,1),(750,262771200,0),(750,278492400,1),(750,294220800,0),(750,309942000,1),(750,325670400,0),(750,341391600,1),(750,357120000,0),(750,372841200,1),(750,388569600,0),(750,404895600,1),(750,420019200,0),(750,436345200,1),(750,452073600,0),(750,467794800,1),(750,483523200,0),(750,499244400,1),(750,514972800,0),(750,530694000,1),(750,544608000,0),(750,562143600,1),(750,576057600,0),(750,594198000,1),(750,607507200,0),(750,625647600,1),(750,638956800,0),(750,657097200,1),(750,671011200,0),(750,688546800,1),(750,702460800,0),(750,719996400,1),(750,733910400,0),(750,752050800,1),(750,765360000,0),(750,783500400,1),(750,796809600,0),(750,814950000,1),(750,828864000,0),(750,846399600,1),(750,860313600,0),(750,877849200,1),(750,891763200,0),(750,909298800,1),(750,923212800,0),(750,941353200,1),(750,954662400,0),(750,972802800,1),(750,986112000,0),(750,1004252400,1),(750,1018166400,0),(750,1035702000,1),(750,1049616000,0),(750,1067151600,1),(750,1081065600,0),(750,1099206000,1),(750,1112515200,0),(750,1130655600,1),(750,1143964800,0),(750,1162105200,1),(750,1173600000,0),(750,1194159600,1),(750,1205049600,0),(750,1225609200,1),(750,1236499200,0),(750,1257058800,1),(750,1268553600,0),(750,1289113200,1),(750,1300003200,0),(750,1320562800,1),(750,1331452800,0),(750,1352012400,1),(750,1362902400,0),(750,1383462000,1),(750,1394352000,0),(750,1414911600,1),(750,1425801600,0),(750,1446361200,1),(750,1457856000,0),(750,1478415600,1),(750,1489305600,0),(750,1509865200,1),(750,1520755200,0),(750,1541314800,1),(750,1552204800,0),(750,1572764400,1),(750,1583654400,0),(750,1604214000,1),(750,1615708800,0),(750,1636268400,1),(750,1647158400,0),(750,1667718000,1),(750,1678608000,0),(750,1699167600,1),(750,1710057600,0),(750,1730617200,1),(750,1741507200,0),(750,1762066800,1),(750,1772956800,0),(750,1793516400,1),(750,1805011200,0),(750,1825570800,1),(750,1836460800,0),(750,1857020400,1),(750,1867910400,0),(750,1888470000,1),(750,1899360000,0),(750,1919919600,1),(750,1930809600,0),(750,1951369200,1),(750,1962864000,0),(750,1983423600,1),(750,1994313600,0),(750,2014873200,1),(750,2025763200,0),(750,2046322800,1),(750,2057212800,0),(750,2077772400,1),(750,2088662400,0),(750,2109222000,1),(750,2120112000,0),(750,2140671600,1),(751,-1514743200,1),(751,377935200,2),(751,407653200,1),(751,828864000,3),(751,846399600,1),(751,860313600,3),(751,877849200,1),(751,891763200,3),(751,909298800,1),(751,923212800,3),(751,941353200,1),(751,954662400,3),(751,972802800,1),(751,989136000,3),(751,1001833200,1),(751,1018166400,3),(751,1035702000,1),(751,1049616000,3),(751,1067151600,1),(751,1081065600,3),(751,1099206000,1),(751,1112515200,3),(751,1130655600,1),(751,1143964800,3),(751,1162105200,1),(751,1175414400,3),(751,1193554800,1),(751,1207468800,3),(751,1225004400,1),(751,1238918400,3),(751,1256454000,1),(751,1270368000,3),(751,1288508400,1),(751,1301817600,3),(751,1319958000,1),(751,1333267200,3),(751,1351407600,1),(751,1365321600,3),(751,1382857200,1),(751,1396771200,3),(751,1414306800,1),(751,1428220800,3),(751,1445756400,1),(751,1459670400,3),(751,1477810800,1),(751,1491120000,3),(751,1509260400,1),(751,1522569600,3),(751,1540710000,1),(751,1554624000,3),(751,1572159600,1),(751,1586073600,3),(751,1603609200,1),(751,1617523200,3),(751,1635663600,1),(751,1648972800,3),(751,1667113200,1),(751,1680422400,3),(751,1698562800,1),(751,1712476800,3),(751,1730012400,1),(751,1743926400,3),(751,1761462000,1),(751,1775376000,3),(751,1792911600,1),(751,1806825600,3),(751,1824966000,1),(751,1838275200,3),(751,1856415600,1),(751,1869724800,3),(751,1887865200,1),(751,1901779200,3),(751,1919314800,1),(751,1933228800,3),(751,1950764400,1),(751,1964678400,3),(751,1982818800,1),(751,1996128000,3),(751,2014268400,1),(751,2027577600,3),(751,2045718000,1),(751,2059027200,3),(751,2077167600,1),(751,2091081600,3),(751,2108617200,1),(751,2122531200,3),(751,2140066800,1),(752,-880207200,1),(752,-769395600,2),(752,-765385200,0),(752,-21477600,3),(752,-5756400,0),(752,9972000,3),(752,25693200,0),(752,41421600,3),(752,57747600,0),(752,73476000,3),(752,89197200,0),(752,104925600,3),(752,120646800,0),(752,126698400,3),(752,152096400,0),(752,162381600,3),(752,183546000,0),(752,199274400,3),(752,215600400,0),(752,230724000,3),(752,247050000,0),(752,262778400,3),(752,278499600,0),(752,294228000,3),(752,309949200,0),(752,325677600,3),(752,341398800,0),(752,357127200,3),(752,372848400,0),(752,388576800,3),(752,404902800,0),(752,420026400,3),(752,436352400,0),(752,1446372000,4),(752,1457866800,5),(752,1478426400,4),(752,1489316400,5),(752,1509876000,4),(752,1520766000,5),(752,1541325600,4),(752,1552215600,5),(752,1572775200,4),(752,1583665200,5),(752,1604224800,4),(752,1615719600,5),(752,1636279200,4),(752,1647169200,5),(752,1667728800,4),(752,1678618800,5),(752,1699178400,4),(752,1710068400,5),(752,1730628000,4),(752,1741518000,5),(752,1762077600,4),(752,1772967600,5),(752,1793527200,4),(752,1805022000,5),(752,1825581600,4),(752,1836471600,5),(752,1857031200,4),(752,1867921200,5),(752,1888480800,4),(752,1899370800,5),(752,1919930400,4),(752,1930820400,5),(752,1951380000,4),(752,1962874800,5),(752,1983434400,4),(752,1994324400,5),(752,2014884000,4),(752,2025774000,5),(752,2046333600,4),(752,2057223600,5),(752,2077783200,4),(752,2088673200,5),(752,2109232800,4),(752,2120122800,5),(752,2140682400,4),(753,-1514739600,1),(753,-1343066400,2),(753,-1234807200,1),(753,-1220292000,2),(753,-1207159200,1),(753,-1191344400,2),(753,-975261600,3),(753,-963169200,2),(753,-917114400,3),(753,-907354800,2),(753,-821901600,4),(753,-810068400,2),(753,-627501600,3),(753,-612990000,2),(753,828864000,3),(753,846399600,2),(753,860313600,3),(753,877849200,2),(753,891763200,3),(753,909298800,2),(753,923212800,3),(753,941353200,2),(753,954662400,3),(753,972802800,2),(753,989136000,3),(753,1001833200,2),(753,1018166400,3),(753,1035702000,2),(753,1049616000,3),(753,1067151600,2),(753,1081065600,3),(753,1099206000,2),(753,1112515200,3),(753,1130655600,2),(753,1143964800,3),(753,1162105200,2),(753,1175414400,3),(753,1193554800,2),(753,1207468800,3),(753,1225004400,2),(753,1238918400,3),(753,1256454000,2),(753,1270368000,3),(753,1288508400,2),(753,1301817600,3),(753,1319958000,2),(753,1333267200,3),(753,1351407600,2),(753,1365321600,3),(753,1382857200,2),(753,1396771200,3),(753,1414306800,2),(753,1428220800,3),(753,1445756400,2),(753,1459670400,3),(753,1477810800,2),(753,1491120000,3),(753,1509260400,2),(753,1522569600,3),(753,1540710000,2),(753,1554624000,3),(753,1572159600,2),(753,1586073600,3),(753,1603609200,2),(753,1617523200,3),(753,1635663600,2),(753,1648972800,3),(753,1667113200,2),(753,1680422400,3),(753,1698562800,2),(753,1712476800,3),(753,1730012400,2),(753,1743926400,3),(753,1761462000,2),(753,1775376000,3),(753,1792911600,2),(753,1806825600,3),(753,1824966000,2),(753,1838275200,3),(753,1856415600,2),(753,1869724800,3),(753,1887865200,2),(753,1901779200,3),(753,1919314800,2),(753,1933228800,3),(753,1950764400,2),(753,1964678400,3),(753,1982818800,2),(753,1996128000,3),(753,2014268400,2),(753,2027577600,3),(753,2045718000,2),(753,2059027200,3),(753,2077167600,2),(753,2091081600,3),(753,2108617200,2),(753,2122531200,3),(753,2140066800,2),(754,-1850328920,1),(754,326001600,2),(754,544597200,3),(754,562132800,2),(754,576046800,3),(754,594187200,2),(754,607496400,3),(754,625636800,2),(754,638946000,3),(754,657086400,2),(754,671000400,3),(754,688536000,2),(754,702450000,3),(754,719985600,2),(754,733899600,3),(754,752040000,2),(754,765349200,3),(754,783489600,2),(754,796798800,3),(754,814939200,2),(754,828853200,3),(754,846388800,2),(754,860302800,3),(754,877838400,2),(754,891752400,3),(754,909288000,2),(754,923202000,3),(754,941342400,2),(754,954651600,3),(754,972792000,2),(754,986101200,3),(754,1004241600,2),(754,1018155600,3),(754,1035691200,2),(754,1049605200,3),(754,1067140800,2),(754,1081054800,3),(754,1099195200,2),(754,1112504400,3),(754,1130644800,2),(754,1143954000,3),(754,1162094400,2),(754,1173589200,3),(754,1194148800,2),(754,1205038800,3),(754,1225598400,2),(754,1236488400,3),(754,1257048000,2),(754,1268542800,3),(754,1289102400,2),(754,1299992400,3),(754,1320552000,2),(754,1331442000,3),(754,1352001600,2),(754,1362891600,3),(754,1383451200,2),(754,1394341200,3),(754,1414900800,2),(754,1425790800,3),(754,1446350400,2),(754,1457845200,3),(754,1478404800,2),(754,1489294800,3),(754,1509854400,2),(754,1520744400,3),(754,1541304000,2),(754,1552194000,3),(754,1572753600,2),(754,1583643600,3),(754,1604203200,2),(754,1615698000,3),(754,1636257600,2),(754,1647147600,3),(754,1667707200,2),(754,1678597200,3),(754,1699156800,2),(754,1710046800,3),(754,1730606400,2),(754,1741496400,3),(754,1762056000,2),(754,1772946000,3),(754,1793505600,2),(754,1805000400,3),(754,1825560000,2),(754,1836450000,3),(754,1857009600,2),(754,1867899600,3),(754,1888459200,2),(754,1899349200,3),(754,1919908800,2),(754,1930798800,3),(754,1951358400,2),(754,1962853200,3),(754,1983412800,2),(754,1994302800,3),(754,2014862400,2),(754,2025752400,3),(754,2046312000,2),(754,2057202000,3),(754,2077761600,2),(754,2088651600,3),(754,2109211200,2),(754,2120101200,3),(754,2140660800,2),(755,-2131642800,2),(755,-1632074400,1),(755,-1615143600,2),(755,-1153681200,1),(755,-1145822400,2),(755,-1122231600,1),(755,-1114372800,2),(755,-1090782000,1),(755,-1082923200,2),(755,-1059332400,1),(755,-1051473600,2),(755,-1027882800,1),(755,-1020024000,2),(755,-996433200,1),(755,-988574400,2),(755,-965674800,1),(755,-955396800,2),(755,-934743600,1),(755,-923947200,2),(755,-904503600,1),(755,-891892800,2),(755,-880221600,3),(755,-769395600,4),(755,-765399600,2),(755,-747252000,1),(755,-733950000,2),(755,-715802400,1),(755,-702500400,2),(755,-684352800,1),(755,-671050800,2),(755,-652903200,1),(755,-639601200,2),(755,-620848800,1),(755,-608151600,2),(755,-589399200,1),(755,-576097200,2),(755,-557949600,1),(755,-544647600,2),(755,-526500000,1),(755,-513198000,2),(755,-495050400,1),(755,-481748400,2),(755,-463600800,1),(755,-450298800,2),(755,-431546400,1),(755,-418244400,2),(755,-400096800,1),(755,-384375600,2),(755,-368647200,1),(755,-352926000,2),(755,-337197600,1),(755,-321476400,2),(755,-305748000,1),(755,-289422000,2),(755,-273693600,1),(755,-257972400,2),(755,-242244000,1),(755,-226522800,2),(755,-210794400,1),(755,-195073200,2),(755,-179344800,1),(755,-163623600,2),(755,-147895200,1),(755,-131569200,2),(755,-116445600,1),(755,-100119600,2),(755,-84391200,1),(755,-68670000,2),(755,-52941600,1),(755,-37220400,2),(755,-21492000,1),(755,-5770800,2),(755,9957600,1),(755,25678800,2),(755,41407200,1),(755,57733200,2),(755,73461600,1),(755,89182800,2),(755,136360800,1),(755,152082000,2),(755,167810400,1),(755,183531600,2),(755,199260000,1),(755,215586000,2),(755,230709600,1),(755,247035600,2),(755,262764000,1),(755,278485200,2),(755,294213600,1),(755,309934800,2),(755,325663200,1),(755,341384400,2),(755,357112800,1),(755,372834000,2),(755,388562400,1),(755,404888400,2),(755,420012000,1),(755,436338000,2),(755,452066400,1),(755,467787600,2),(755,483516000,1),(755,499237200,2),(755,514965600,1),(755,530686800,2),(755,544600800,1),(755,562136400,2),(755,576050400,1),(755,594190800,2),(755,607500000,1),(755,625640400,2),(755,638949600,1),(755,657090000,2),(755,671004000,1),(755,688539600,2),(755,702453600,1),(755,719989200,2),(755,733896060,1),(755,752036460,2),(755,765345660,1),(755,783486060,2),(755,796795260,1),(755,814935660,2),(755,828849660,1),(755,846385260,2),(755,860299260,1),(755,877834860,2),(755,891748860,1),(755,909284460,2),(755,923198460,1),(755,941338860,2),(755,954648060,1),(755,972788460,2),(755,986097660,1),(755,1004238060,2),(755,1018152060,1),(755,1035687660,2),(755,1049601660,1),(755,1067137260,2),(755,1081051260,1),(755,1099191660,2),(755,1112500860,1),(755,1130641260,2),(755,1143950460,1),(755,1162090860,2),(755,1173592800,1),(755,1194152400,2),(755,1205042400,1),(755,1225602000,2),(755,1236492000,1),(755,1257051600,2),(755,1268546400,1),(755,1289106000,2),(755,1299996000,1),(755,1320555600,2),(755,1331445600,1),(755,1352005200,2),(755,1362895200,1),(755,1383454800,2),(755,1394344800,1),(755,1414904400,2),(755,1425794400,1),(755,1446354000,2),(755,1457848800,1),(755,1478408400,2),(755,1489298400,1),(755,1509858000,2),(755,1520748000,1),(755,1541307600,2),(755,1552197600,1),(755,1572757200,2),(755,1583647200,1),(755,1604206800,2),(755,1615701600,1),(755,1636261200,2),(755,1647151200,1),(755,1667710800,2),(755,1678600800,1),(755,1699160400,2),(755,1710050400,1),(755,1730610000,2),(755,1741500000,1),(755,1762059600,2),(755,1772949600,1),(755,1793509200,2),(755,1805004000,1),(755,1825563600,2),(755,1836453600,1),(755,1857013200,2),(755,1867903200,1),(755,1888462800,2),(755,1899352800,1),(755,1919912400,2),(755,1930802400,1),(755,1951362000,2),(755,1962856800,1),(755,1983416400,2),(755,1994306400,1),(755,2014866000,2),(755,2025756000,1),(755,2046315600,2),(755,2057205600,1),(755,2077765200,2),(755,2088655200,1),(755,2109214800,2),(755,2120104800,1),(755,2140664400,2),(756,-1514743200,1),(756,576057600,2),(756,594198000,1),(756,828864000,2),(756,846399600,1),(756,860313600,2),(756,877849200,1),(756,891763200,2),(756,909298800,1),(756,923212800,2),(756,941353200,1),(756,954662400,2),(756,972802800,1),(756,989136000,2),(756,1001833200,1),(756,1018166400,2),(756,1035702000,1),(756,1049616000,2),(756,1067151600,1),(756,1081065600,2),(756,1099206000,1),(756,1112515200,2),(756,1130655600,1),(756,1143964800,2),(756,1162105200,1),(756,1175414400,2),(756,1193554800,1),(756,1207468800,2),(756,1225004400,1),(756,1238918400,2),(756,1256454000,1),(756,1270368000,2),(756,1288508400,1),(756,1301817600,2),(756,1319958000,1),(756,1333267200,2),(756,1351407600,1),(756,1365321600,2),(756,1382857200,1),(756,1396771200,2),(756,1414306800,1),(756,1428220800,2),(756,1445756400,1),(756,1459670400,2),(756,1477810800,1),(756,1491120000,2),(756,1509260400,1),(756,1522569600,2),(756,1540710000,1),(756,1554624000,2),(756,1572159600,1),(756,1586073600,2),(756,1603609200,1),(756,1617523200,2),(756,1635663600,1),(756,1648972800,2),(756,1667113200,1),(756,1680422400,2),(756,1698562800,1),(756,1712476800,2),(756,1730012400,1),(756,1743926400,2),(756,1761462000,1),(756,1775376000,2),(756,1792911600,1),(756,1806825600,2),(756,1824966000,1),(756,1838275200,2),(756,1856415600,1),(756,1869724800,2),(756,1887865200,1),(756,1901779200,2),(756,1919314800,1),(756,1933228800,2),(756,1950764400,1),(756,1964678400,2),(756,1982818800,1),(756,1996128000,2),(756,2014268400,1),(756,2027577600,2),(756,2045718000,1),(756,2059027200,2),(756,2077167600,1),(756,2091081600,2),(756,2108617200,1),(756,2122531200,2),(756,2140066800,1),(757,-1942690509,1),(757,-1567455309,2),(757,-1459627200,4),(757,-1443819600,3),(757,-1428006600,4),(757,-1412283600,3),(757,-1396470600,4),(757,-1380747600,3),(757,-1141590600,4),(757,-1128286800,3),(757,-1110141000,4),(757,-1096837200,3),(757,-1078691400,4),(757,-1065387600,3),(757,-1047241800,4),(757,-1033938000,3),(757,-1015187400,4),(757,-1002488400,3),(757,-983737800,4),(757,-971038800,3),(757,-954707400,4),(757,-938984400,3),(757,-920838600,4),(757,-907534800,3),(757,-896819400,4),(757,-853621200,6),(757,-845847000,5),(757,-334789200,6),(757,-319671000,5),(757,-314226000,7),(757,-309996000,5),(757,-149720400,7),(757,-134604000,5),(757,-50446800,6),(757,-34205400,5),(757,9860400,7),(757,14176800,5),(757,72846000,7),(757,80100000,5),(757,127278000,8),(757,132111000,6),(757,147234600,5),(757,156913200,7),(757,165376800,5),(757,219812400,7),(757,226461600,5),(757,250052400,7),(757,257911200,5),(757,282711600,7),(757,289360800,5),(757,294202800,7),(757,322020000,5),(757,566449200,7),(757,573012000,5),(757,597812400,7),(757,605066400,5),(757,625633200,7),(757,635911200,5),(757,656478000,7),(757,667965600,5),(757,688532400,7),(757,699415200,5),(757,719377200,7),(757,730864800,5),(757,1095562800,7),(757,1111896000,5),(757,1128834000,7),(757,1142136000,5),(757,1159678800,7),(757,1173585600,5),(757,1191733200,7),(757,1205035200,5),(757,1223182800,7),(757,1236484800,5),(757,1254632400,7),(757,1268539200,5),(757,1286082000,7),(757,1299988800,5),(757,1317531600,7),(757,1331438400,5),(757,1349586000,7),(757,1362888000,5),(757,1381035600,7),(757,1394337600,5),(757,1412485200,7),(757,1425787200,5),(758,-1632070800,0),(758,-1615140000,1),(758,-1601753400,0),(758,-1583697600,1),(758,-1567357200,0),(758,-1554667200,1),(758,-1534698000,0),(758,-1524074400,1),(758,-1503248400,0),(758,-1492365600,1),(758,-1471798800,0),(758,-1460916000,1),(758,-1440954000,0),(758,-1428861600,1),(758,-1409504400,0),(758,-1397412000,1),(758,-1378054800,0),(758,-1365962400,1),(758,-1346605200,0),(758,-1333908000,1),(758,-1315155600,0),(758,-1301853600,1),(758,-1283706000,0),(758,-1270404000,1),(758,-1252256400,0),(758,-1238954400,1),(758,-1220806800,0),(758,-1207504800,1),(758,-1188752400,0),(758,-1176055200,1),(758,-1157302800,0),(758,-1144000800,1),(758,-1125853200,0),(758,-1112551200,1),(758,-1094403600,0),(758,-1081101600,1),(758,-1062954000,0),(758,-1049652000,1),(758,-1031504400,0),(758,-1018202400,1),(758,-1000054800,0),(758,-986752800,1),(758,-968000400,0),(758,-955303200,1),(758,-936550800,0),(758,-880218000,2),(758,-769395600,3),(758,-765396000,1),(758,-747248400,0),(758,-733946400,1),(758,-715806000,0),(758,-702504000,1),(758,-684356400,0),(758,-671054400,1),(758,-652906800,0),(758,-634161600,1),(758,-620845200,0),(758,-602704800,1),(758,-589395600,0),(758,-576093600,1),(758,-557946000,0),(758,-544644000,1),(758,-526496400,0),(758,-513194400,1),(758,-495046800,0),(758,-481744800,1),(758,-463597200,0),(758,-450295200,1),(758,-431542800,0),(758,-418240800,1),(758,-400093200,0),(758,-384372000,1),(758,-368643600,0),(758,-352922400,1),(758,-337194000,0),(758,-321472800,1),(758,-305744400,0),(758,-289418400,1),(758,-273690000,0),(758,-257968800,1),(758,-242240400,0),(758,-226519200,1),(758,-210790800,0),(758,-195069600,1),(758,-179341200,0),(758,-163620000,1),(758,-147891600,0),(758,-131565600,1),(758,-116442000,0),(758,-100116000,1),(758,-84387600,0),(758,-68666400,1),(758,-52938000,0),(758,-37216800,1),(758,-21488400,0),(758,-5767200,1),(758,9961200,0),(758,25682400,1),(758,41410800,0),(758,57736800,1),(758,73465200,0),(758,89186400,1),(758,104914800,0),(758,120636000,1),(758,136364400,0),(758,152085600,1),(758,167814000,0),(758,183535200,1),(758,199263600,0),(758,215589600,1),(758,230713200,0),(758,247039200,1),(758,262767600,0),(758,278488800,1),(758,294217200,0),(758,309938400,1),(758,325666800,0),(758,341388000,1),(758,357116400,0),(758,372837600,1),(758,388566000,0),(758,404892000,1),(758,420015600,0),(758,436341600,1),(758,452070000,0),(758,467791200,1),(758,483519600,0),(758,499240800,1),(758,514969200,0),(758,530690400,1),(758,544604400,0),(758,562140000,1),(758,576054000,0),(758,594194400,1),(758,607503600,0),(758,625644000,1),(758,638953200,0),(758,657093600,1),(758,671007600,0),(758,688543200,1),(758,702457200,0),(758,719992800,1),(758,733906800,0),(758,752047200,1),(758,765356400,0),(758,783496800,1),(758,796806000,0),(758,814946400,1),(758,828860400,0),(758,846396000,1),(758,860310000,0),(758,877845600,1),(758,891759600,0),(758,909295200,1),(758,923209200,0),(758,941349600,1),(758,954658800,0),(758,972799200,1),(758,986108400,0),(758,1004248800,1),(758,1018162800,0),(758,1035698400,1),(758,1049612400,0),(758,1067148000,1),(758,1081062000,0),(758,1099202400,1),(758,1112511600,0),(758,1130652000,1),(758,1143961200,0),(758,1162101600,1),(758,1173596400,0),(758,1194156000,1),(758,1205046000,0),(758,1225605600,1),(758,1236495600,0),(758,1257055200,1),(758,1268550000,0),(758,1289109600,1),(758,1299999600,0),(758,1320559200,1),(758,1331449200,0),(758,1352008800,1),(758,1362898800,0),(758,1383458400,1),(758,1394348400,0),(758,1414908000,1),(758,1425798000,0),(758,1446357600,1),(758,1457852400,0),(758,1478412000,1),(758,1489302000,0),(758,1509861600,1),(758,1520751600,0),(758,1541311200,1),(758,1552201200,0),(758,1572760800,1),(758,1583650800,0),(758,1604210400,1),(758,1615705200,0),(758,1636264800,1),(758,1647154800,0),(758,1667714400,1),(758,1678604400,0),(758,1699164000,1),(758,1710054000,0),(758,1730613600,1),(758,1741503600,0),(758,1762063200,1),(758,1772953200,0),(758,1793512800,1),(758,1805007600,0),(758,1825567200,1),(758,1836457200,0),(758,1857016800,1),(758,1867906800,0),(758,1888466400,1),(758,1899356400,0),(758,1919916000,1),(758,1930806000,0),(758,1951365600,1),(758,1962860400,0),(758,1983420000,1),(758,1994310000,0),(758,2014869600,1),(758,2025759600,0),(758,2046319200,1),(758,2057209200,0),(758,2077768800,1),(758,2088658800,0),(758,2109218400,1),(758,2120108400,0),(758,2140668000,1),(759,-1825098836,1),(760,-1825095030,2),(760,-179341200,1),(760,-163620000,2),(760,-147891600,1),(760,-131565600,2),(760,-116442000,1),(760,-100116000,2),(760,-84387600,1),(760,-68666400,2),(760,-52938000,1),(760,-37216800,2),(760,-21488400,1),(760,-5767200,2),(760,9961200,1),(760,25682400,2),(760,41410800,1),(760,57736800,2),(760,73465200,1),(760,89186400,2),(760,104914800,1),(760,120636000,2),(760,136364400,1),(760,152085600,2),(760,167814000,1),(760,183535200,2),(760,199263600,1),(760,215589600,2),(760,230713200,1),(760,247039200,2),(760,262767600,1),(760,278488800,2),(760,294217200,1),(760,309938400,2),(760,325666800,1),(760,341388000,2),(760,357116400,1),(760,372837600,2),(760,388566000,1),(760,404892000,2),(760,420015600,1),(760,436341600,2),(760,452070000,1),(760,467791200,2),(760,483519600,1),(760,499240800,2),(760,514969200,1),(760,530690400,2),(760,544604400,1),(760,562140000,2),(760,576054000,1),(760,594194400,2),(760,607503600,1),(760,625644000,2),(760,638953200,1),(760,657093600,2),(760,671007600,1),(760,688543200,2),(760,702457200,1),(760,719992800,2),(760,733906800,1),(760,752047200,2),(760,765356400,1),(760,783496800,2),(760,796806000,1),(760,814946400,2),(760,828860400,1),(760,846396000,2),(760,860310000,1),(760,877845600,2),(760,891759600,1),(760,909295200,2),(760,923209200,1),(760,941349600,2),(760,954658800,1),(760,972799200,2),(760,986108400,1),(760,1004248800,2),(760,1018162800,1),(760,1035698400,2),(760,1049612400,1),(760,1067148000,2),(760,1081062000,1),(760,1099202400,2),(760,1112511600,1),(760,1130652000,2),(760,1143961200,1),(760,1162101600,2),(760,1173596400,1),(760,1194156000,2),(760,1205046000,1),(760,1225605600,2),(760,1236495600,1),(760,1257055200,2),(760,1268550000,1),(760,1289109600,2),(760,1299999600,1),(760,1320559200,2),(760,1331449200,1),(760,1352008800,2),(760,1362898800,1),(760,1383458400,2),(760,1394348400,1),(760,1414908000,2),(760,1425798000,1),(760,1446357600,2),(760,1457852400,1),(760,1478412000,2),(760,1489302000,1),(760,1509861600,2),(760,1520751600,1),(760,1541311200,2),(760,1552201200,1),(760,1572760800,2),(760,1583650800,1),(760,1604210400,2),(760,1615705200,1),(760,1636264800,2),(760,1647154800,1),(760,1667714400,2),(760,1678604400,1),(760,1699164000,2),(760,1710054000,1),(760,1730613600,2),(760,1741503600,1),(760,1762063200,2),(760,1772953200,1),(760,1793512800,2),(760,1805007600,1),(760,1825567200,2),(760,1836457200,1),(760,1857016800,2),(760,1867906800,1),(760,1888466400,2),(760,1899356400,1),(760,1919916000,2),(760,1930806000,1),(760,1951365600,2),(760,1962860400,1),(760,1983420000,2),(760,1994310000,1),(760,2014869600,2),(760,2025759600,1),(760,2046319200,2),(760,2057209200,1),(760,2077768800,2),(760,2088658800,1),(760,2109218400,2),(760,2120108400,1),(760,2140668000,2),(761,-1633280400,0),(761,-1615140000,1),(761,-1601830800,0),(761,-1583690400,1),(761,-1570381200,0),(761,-1551636000,1),(761,-1536512400,0),(761,-1523210400,1),(761,-1504458000,0),(761,-1491760800,1),(761,-1473008400,0),(761,-1459706400,1),(761,-1441558800,0),(761,-1428256800,1),(761,-1410109200,0),(761,-1396807200,1),(761,-1378659600,0),(761,-1365357600,1),(761,-1347210000,0),(761,-1333908000,1),(761,-1315155600,0),(761,-1301853600,1),(761,-1283706000,0),(761,-1270404000,1),(761,-1252256400,0),(761,-1238954400,1),(761,-1220806800,0),(761,-1207504800,1),(761,-1189357200,0),(761,-1176055200,1),(761,-1157302800,0),(761,-1144605600,1),(761,-1125853200,0),(761,-1112551200,1),(761,-1094403600,0),(761,-1081101600,1),(761,-1062954000,0),(761,-1049652000,1),(761,-1031504400,0),(761,-1018202400,1),(761,-1000054800,0),(761,-986752800,1),(761,-968000400,0),(761,-955303200,1),(761,-936550800,0),(761,-923248800,1),(761,-905101200,0),(761,-891799200,1),(761,-880218000,2),(761,-769395600,3),(761,-765396000,1),(761,-747248400,0),(761,-733946400,1),(761,-715798800,0),(761,-702496800,1),(761,-684349200,0),(761,-671047200,1),(761,-652899600,0),(761,-639597600,1),(761,-620845200,0),(761,-608148000,1),(761,-589395600,0),(761,-576093600,1),(761,-557946000,0),(761,-544644000,1),(761,-526496400,0),(761,-513194400,1),(761,-495046800,0),(761,-481744800,1),(761,-463597200,0),(761,-447271200,1),(761,-431542800,0),(761,-415821600,1),(761,-400093200,0),(761,-384372000,1),(761,-368643600,0),(761,-352922400,1),(761,-337194000,0),(761,-321472800,1),(761,-305744400,0),(761,-289418400,1),(761,-273690000,0),(761,-257968800,1),(761,-242240400,0),(761,-226519200,1),(761,-210790800,0),(761,-195069600,1),(761,-179341200,0),(761,-163620000,1),(761,-147891600,0),(761,-131565600,1),(761,-116442000,0),(761,-100116000,1),(761,-84387600,0),(761,-68666400,1),(761,-52938000,0),(761,-37216800,1),(761,-21488400,0),(761,-5767200,1),(761,9961200,0),(761,25682400,1),(761,41410800,0),(761,57736800,1),(761,73465200,0),(761,89186400,1),(761,104914800,0),(761,120636000,1),(761,126687600,0),(761,152085600,1),(761,162370800,0),(761,183535200,1),(761,199263600,0),(761,215589600,1),(761,230713200,0),(761,247039200,1),(761,262767600,0),(761,278488800,1),(761,294217200,0),(761,309938400,1),(761,325666800,0),(761,341388000,1),(761,357116400,0),(761,372837600,1),(761,388566000,0),(761,404892000,1),(761,420015600,0),(761,436341600,1),(761,452070000,0),(761,467791200,1),(761,483519600,0),(761,499240800,1),(761,514969200,0),(761,530690400,1),(761,544604400,0),(761,562140000,1),(761,576054000,0),(761,594194400,1),(761,607503600,0),(761,625644000,1),(761,638953200,0),(761,657093600,1),(761,671007600,0),(761,688543200,1),(761,702457200,0),(761,719992800,1),(761,733906800,0),(761,752047200,1),(761,765356400,0),(761,783496800,1),(761,796806000,0),(761,814946400,1),(761,828860400,0),(761,846396000,1),(761,860310000,0),(761,877845600,1),(761,891759600,0),(761,909295200,1),(761,923209200,0),(761,941349600,1),(761,954658800,0),(761,972799200,1),(761,986108400,0),(761,1004248800,1),(761,1018162800,0),(761,1035698400,1),(761,1049612400,0),(761,1067148000,1),(761,1081062000,0),(761,1099202400,1),(761,1112511600,0),(761,1130652000,1),(761,1143961200,0),(761,1162101600,1),(761,1173596400,0),(761,1194156000,1),(761,1205046000,0),(761,1225605600,1),(761,1236495600,0),(761,1257055200,1),(761,1268550000,0),(761,1289109600,1),(761,1299999600,0),(761,1320559200,1),(761,1331449200,0),(761,1352008800,1),(761,1362898800,0),(761,1383458400,1),(761,1394348400,0),(761,1414908000,1),(761,1425798000,0),(761,1446357600,1),(761,1457852400,0),(761,1478412000,1),(761,1489302000,0),(761,1509861600,1),(761,1520751600,0),(761,1541311200,1),(761,1552201200,0),(761,1572760800,1),(761,1583650800,0),(761,1604210400,1),(761,1615705200,0),(761,1636264800,1),(761,1647154800,0),(761,1667714400,1),(761,1678604400,0),(761,1699164000,1),(761,1710054000,0),(761,1730613600,1),(761,1741503600,0),(761,1762063200,1),(761,1772953200,0),(761,1793512800,1),(761,1805007600,0),(761,1825567200,1),(761,1836457200,0),(761,1857016800,1),(761,1867906800,0),(761,1888466400,1),(761,1899356400,0),(761,1919916000,1),(761,1930806000,0),(761,1951365600,1),(761,1962860400,0),(761,1983420000,1),(761,1994310000,0),(761,2014869600,1),(761,2025759600,0),(761,2046319200,1),(761,2057209200,0),(761,2077768800,1),(761,2088658800,0),(761,2109218400,1),(761,2120108400,0),(761,2140668000,1),(762,-1632070800,0),(762,-1615140000,1),(762,-923252400,0),(762,-880218000,2),(762,-769395600,3),(762,-765396000,1),(762,136364400,0),(762,152085600,1),(762,167814000,0),(762,183535200,1),(762,199263600,0),(762,215589600,1),(762,230713200,0),(762,247039200,1),(762,262767600,0),(762,278488800,1),(762,294217200,0),(762,309938400,1),(762,325666800,0),(762,341388000,1),(762,357116400,0),(762,372837600,1),(762,388566000,0),(762,404892000,1),(762,420015600,0),(762,436341600,1),(762,452070000,0),(762,467791200,1),(762,483519600,0),(762,499240800,1),(762,514969200,0),(762,530690400,1),(762,544604400,0),(762,562140000,1),(762,576054000,0),(762,594194400,1),(762,607503600,0),(762,625644000,1),(762,638953200,0),(762,657093600,1),(762,671007600,0),(762,688543200,1),(762,702457200,0),(762,719992800,1),(762,733906800,0),(762,752047200,1),(762,765356400,0),(762,783496800,1),(762,796806000,0),(762,814946400,1),(762,828860400,0),(762,846396000,1),(762,860310000,0),(762,877845600,1),(762,891759600,0),(762,909295200,1),(762,923209200,0),(762,941349600,1),(762,954658800,0),(762,972799200,1),(762,986108400,0),(762,1004248800,1),(762,1018162800,0),(762,1035698400,1),(762,1049612400,0),(762,1067148000,1),(762,1081062000,0),(762,1099202400,1),(762,1112511600,0),(762,1130652000,1),(762,1143961200,0),(762,1162101600,1),(762,1173596400,0),(762,1194156000,1),(762,1205046000,0),(762,1225605600,1),(762,1236495600,0),(762,1257055200,1),(762,1268550000,0),(762,1289109600,1),(762,1299999600,0),(762,1320559200,1),(762,1331449200,0),(762,1352008800,1),(762,1362898800,0),(762,1383458400,1),(762,1394348400,0),(762,1414908000,1),(762,1425798000,0),(762,1446357600,1),(762,1457852400,0),(762,1478412000,1),(762,1489302000,0),(762,1509861600,1),(762,1520751600,0),(762,1541311200,1),(762,1552201200,0),(762,1572760800,1),(762,1583650800,0),(762,1604210400,1),(762,1615705200,0),(762,1636264800,1),(762,1647154800,0),(762,1667714400,1),(762,1678604400,0),(762,1699164000,1),(762,1710054000,0),(762,1730613600,1),(762,1741503600,0),(762,1762063200,1),(762,1772953200,0),(762,1793512800,1),(762,1805007600,0),(762,1825567200,1),(762,1836457200,0),(762,1857016800,1),(762,1867906800,0),(762,1888466400,1),(762,1899356400,0),(762,1919916000,1),(762,1930806000,0),(762,1951365600,1),(762,1962860400,0),(762,1983420000,1),(762,1994310000,0),(762,2014869600,1),(762,2025759600,0),(762,2046319200,1),(762,2057209200,0),(762,2077768800,1),(762,2088658800,0),(762,2109218400,1),(762,2120108400,0),(762,2140668000,1),(763,-880196400,1),(763,-769395600,2),(763,-765374400,0),(763,-86878800,3),(763,-21466800,4),(763,-5745600,3),(763,9982800,4),(763,25704000,3),(763,41432400,4),(763,57758400,3),(763,73486800,4),(763,89208000,3),(763,104936400,4),(763,120657600,3),(763,126709200,4),(763,152107200,3),(763,162392400,4),(763,183556800,3),(763,199285200,4),(763,215611200,3),(763,230734800,4),(763,247060800,3),(763,262789200,4),(763,278510400,3),(763,294238800,4),(763,309960000,3),(763,325688400,4),(763,341409600,3),(763,357138000,4),(763,372859200,3),(763,388587600,4),(763,404913600,3),(763,420037200,4),(763,436363200,5),(763,439030800,7),(763,452084400,6),(763,467805600,7),(763,483534000,6),(763,499255200,7),(763,514983600,6),(763,530704800,7),(763,544618800,6),(763,562154400,7),(763,576068400,6),(763,594208800,7),(763,607518000,6),(763,625658400,7),(763,638967600,6),(763,657108000,7),(763,671022000,6),(763,688557600,7),(763,702471600,6),(763,720007200,7),(763,733921200,6),(763,752061600,7),(763,765370800,6),(763,783511200,7),(763,796820400,6),(763,814960800,7),(763,828874800,6),(763,846410400,7),(763,860324400,6),(763,877860000,7),(763,891774000,6),(763,909309600,7),(763,923223600,6),(763,941364000,7),(763,954673200,6),(763,972813600,7),(763,986122800,6),(763,1004263200,7),(763,1018177200,6),(763,1035712800,7),(763,1049626800,6),(763,1067162400,7),(763,1081076400,6),(763,1099216800,7),(763,1112526000,6),(763,1130666400,7),(763,1143975600,6),(763,1162116000,7),(763,1173610800,6),(763,1194170400,7),(763,1205060400,6),(763,1225620000,7),(763,1236510000,6),(763,1257069600,7),(763,1268564400,6),(763,1289124000,7),(763,1300014000,6),(763,1320573600,7),(763,1331463600,6),(763,1352023200,7),(763,1362913200,6),(763,1383472800,7),(763,1394362800,6),(763,1414922400,7),(763,1425812400,6),(763,1446372000,7),(763,1457866800,6),(763,1478426400,7),(763,1489316400,6),(763,1509876000,7),(763,1520766000,6),(763,1541325600,7),(763,1552215600,6),(763,1572775200,7),(763,1583665200,6),(763,1604224800,7),(763,1615719600,6),(763,1636279200,7),(763,1647169200,6),(763,1667728800,7),(763,1678618800,6),(763,1699178400,7),(763,1710068400,6),(763,1730628000,7),(763,1741518000,6),(763,1762077600,7),(763,1772967600,6),(763,1793527200,7),(763,1805022000,6),(763,1825581600,7),(763,1836471600,6),(763,1857031200,7),(763,1867921200,6),(763,1888480800,7),(763,1899370800,6),(763,1919930400,7),(763,1930820400,6),(763,1951380000,7),(763,1962874800,6),(763,1983434400,7),(763,1994324400,6),(763,2014884000,7),(763,2025774000,6),(763,2046333600,7),(763,2057223600,6),(763,2077783200,7),(763,2088673200,6),(763,2109232800,7),(763,2120122800,6),(763,2140682400,7),(764,-1767217820,2),(764,-1206961200,1),(764,-1191366000,2),(764,-1175378400,1),(764,-1159830000,2),(764,-633823200,1),(764,-622072800,2),(764,-602287200,1),(764,-591836400,2),(764,-570751200,1),(764,-560214000,2),(764,-539128800,1),(764,-531356400,2),(764,-191368800,1),(764,-184201200,2),(764,-155167200,1),(764,-150073200,2),(764,-128901600,1),(764,-121129200,2),(764,-99957600,1),(764,-89593200,2),(764,-68421600,1),(764,-57970800,2),(764,499744800,1),(764,511232400,2),(764,530589600,1),(764,540262800,2),(764,562125600,1),(764,571194000,2),(764,592970400,1),(764,602038800,2),(764,624420000,1),(764,634698000,2),(764,938916000,1),(764,951613200,2),(764,970970400,1),(764,971571600,2),(764,1003024800,1),(764,1013907600,2),(765,-1633273200,0),(765,-1615132800,1),(765,-1601823600,0),(765,-1583683200,1),(765,-880210800,2),(765,-769395600,3),(765,-765388800,1),(765,-84380400,0),(765,-68659200,1),(765,-52930800,0),(765,-37209600,1),(765,-21481200,0),(765,-5760000,1),(765,9968400,0),(765,25689600,1),(765,41418000,0),(765,57744000,1),(765,73472400,0),(765,89193600,1),(765,104922000,0),(765,120643200,1),(765,126694800,0),(765,152092800,1),(765,162378000,0),(765,183542400,1),(765,199270800,0),(765,215596800,1),(765,230720400,0),(765,247046400,1),(765,262774800,0),(765,278496000,1),(765,294224400,0),(765,309945600,1),(765,325674000,0),(765,341395200,1),(765,357123600,0),(765,372844800,1),(765,388573200,0),(765,404899200,1),(765,420022800,0),(765,436348800,1),(765,452077200,0),(765,467798400,1),(765,483526800,0),(765,499248000,1),(765,514976400,0),(765,530697600,1),(765,544611600,0),(765,562147200,1),(765,576061200,0),(765,594201600,1),(765,607510800,0),(765,625651200,1),(765,638960400,0),(765,657100800,1),(765,671014800,0),(765,688550400,1),(765,702464400,0),(765,720000000,1),(765,733914000,0),(765,752054400,1),(765,765363600,0),(765,783504000,1),(765,796813200,0),(765,814953600,1),(765,828867600,0),(765,846403200,1),(765,860317200,0),(765,877852800,1),(765,891766800,0),(765,909302400,1),(765,923216400,0),(765,941356800,1),(765,954666000,0),(765,972806400,1),(765,986115600,0),(765,1004256000,1),(765,1018170000,0),(765,1035705600,1),(765,1049619600,0),(765,1067155200,1),(765,1081069200,0),(765,1099209600,1),(765,1112518800,0),(765,1130659200,1),(765,1143968400,0),(765,1162108800,1),(765,1173603600,0),(765,1194163200,1),(765,1205053200,0),(765,1225612800,1),(765,1236502800,0),(765,1257062400,1),(765,1268557200,0),(765,1289116800,5),(765,1300003200,4),(765,1320562800,5),(765,1331452800,4),(765,1352012400,5),(765,1362902400,4),(765,1383462000,5),(765,1394352000,4),(765,1414911600,5),(765,1425801600,4),(765,1446361200,5),(765,1457856000,4),(765,1478415600,5),(765,1489305600,4),(765,1509865200,5),(765,1520755200,4),(765,1541314800,5),(765,1552204800,4),(765,1572764400,5),(765,1583654400,4),(765,1604214000,5),(765,1615708800,4),(765,1636268400,5),(765,1647158400,4),(765,1667718000,5),(765,1678608000,4),(765,1699167600,5),(765,1710057600,4),(765,1730617200,5),(765,1741507200,4),(765,1762066800,5),(765,1772956800,4),(765,1793516400,5),(765,1805011200,4),(765,1825570800,5),(765,1836460800,4),(765,1857020400,5),(765,1867910400,4),(765,1888470000,5),(765,1899360000,4),(765,1919919600,5),(765,1930809600,4),(765,1951369200,5),(765,1962864000,4),(765,1983423600,5),(765,1994313600,4),(765,2014873200,5),(765,2025763200,4),(765,2046322800,5),(765,2057212800,4),(765,2077772400,5),(765,2088662400,4),(765,2109222000,5),(765,2120112000,4),(765,2140671600,5),(766,-1633273200,0),(766,-1615132800,1),(766,-1601823600,0),(766,-1583683200,1),(766,-880210800,2),(766,-769395600,3),(766,-765388800,1),(766,-84380400,0),(766,-68659200,1),(766,-52930800,0),(766,-37209600,1),(766,-21481200,0),(766,-5760000,1),(766,9968400,0),(766,25689600,1),(766,41418000,0),(766,57744000,1),(766,73472400,0),(766,89193600,1),(766,104922000,0),(766,120643200,1),(766,126694800,0),(766,152092800,1),(766,162378000,0),(766,183542400,1),(766,199270800,0),(766,215596800,1),(766,230720400,0),(766,247046400,1),(766,262774800,0),(766,278496000,1),(766,294224400,0),(766,309945600,1),(766,325674000,0),(766,341395200,1),(766,357123600,0),(766,372844800,1),(766,388573200,0),(766,404899200,1),(766,420022800,0),(766,436348800,1),(766,452077200,0),(766,467798400,1),(766,483526800,0),(766,499248000,1),(766,514976400,0),(766,530697600,1),(766,544611600,0),(766,562147200,1),(766,576061200,0),(766,594201600,1),(766,607510800,0),(766,625651200,1),(766,638960400,0),(766,657100800,1),(766,671014800,0),(766,688550400,1),(766,702464400,0),(766,720000000,5),(766,733910400,4),(766,752050800,5),(766,765360000,4),(766,783500400,5),(766,796809600,4),(766,814950000,5),(766,828864000,4),(766,846399600,5),(766,860313600,4),(766,877849200,5),(766,891763200,4),(766,909298800,5),(766,923212800,4),(766,941353200,5),(766,954662400,4),(766,972802800,5),(766,986112000,4),(766,1004252400,5),(766,1018166400,4),(766,1035702000,5),(766,1049616000,4),(766,1067151600,5),(766,1081065600,4),(766,1099206000,5),(766,1112515200,4),(766,1130655600,5),(766,1143964800,4),(766,1162105200,5),(766,1173600000,4),(766,1194159600,5),(766,1205049600,4),(766,1225609200,5),(766,1236499200,4),(766,1257058800,5),(766,1268553600,4),(766,1289113200,5),(766,1300003200,4),(766,1320562800,5),(766,1331452800,4),(766,1352012400,5),(766,1362902400,4),(766,1383462000,5),(766,1394352000,4),(766,1414911600,5),(766,1425801600,4),(766,1446361200,5),(766,1457856000,4),(766,1478415600,5),(766,1489305600,4),(766,1509865200,5),(766,1520755200,4),(766,1541314800,5),(766,1552204800,4),(766,1572764400,5),(766,1583654400,4),(766,1604214000,5),(766,1615708800,4),(766,1636268400,5),(766,1647158400,4),(766,1667718000,5),(766,1678608000,4),(766,1699167600,5),(766,1710057600,4),(766,1730617200,5),(766,1741507200,4),(766,1762066800,5),(766,1772956800,4),(766,1793516400,5),(766,1805011200,4),(766,1825570800,5),(766,1836460800,4),(766,1857020400,5),(766,1867910400,4),(766,1888470000,5),(766,1899360000,4),(766,1919919600,5),(766,1930809600,4),(766,1951369200,5),(766,1962864000,4),(766,1983423600,5),(766,1994313600,4),(766,2014873200,5),(766,2025763200,4),(766,2046322800,5),(766,2057212800,4),(766,2077772400,5),(766,2088662400,4),(766,2109222000,5),(766,2120112000,4),(766,2140671600,5),(767,-1633273200,0),(767,-1615132800,1),(767,-1601823600,0),(767,-1583683200,1),(767,-880210800,2),(767,-769395600,3),(767,-765388800,1),(767,-84380400,0),(767,-68659200,1),(767,-52930800,0),(767,-37209600,1),(767,-21481200,0),(767,-5760000,1),(767,9968400,0),(767,25689600,1),(767,41418000,0),(767,57744000,1),(767,73472400,0),(767,89193600,1),(767,104922000,0),(767,120643200,1),(767,126694800,0),(767,152092800,1),(767,162378000,0),(767,183542400,1),(767,199270800,0),(767,215596800,1),(767,230720400,0),(767,247046400,1),(767,262774800,0),(767,278496000,1),(767,294224400,0),(767,309945600,1),(767,325674000,0),(767,341395200,1),(767,357123600,0),(767,372844800,1),(767,388573200,0),(767,404899200,1),(767,420022800,0),(767,436348800,1),(767,452077200,0),(767,467798400,1),(767,483526800,0),(767,499248000,1),(767,514976400,0),(767,530697600,1),(767,544611600,0),(767,562147200,1),(767,576061200,0),(767,594201600,1),(767,607510800,0),(767,625651200,1),(767,638960400,0),(767,657100800,1),(767,671014800,0),(767,688550400,1),(767,702464400,0),(767,720000000,1),(767,733914000,0),(767,752054400,1),(767,765363600,0),(767,783504000,1),(767,796813200,0),(767,814953600,1),(767,828867600,0),(767,846403200,1),(767,860317200,0),(767,877852800,1),(767,891766800,0),(767,909302400,1),(767,923216400,0),(767,941356800,1),(767,954666000,0),(767,972806400,1),(767,986115600,0),(767,1004256000,1),(767,1018170000,0),(767,1035705600,1),(767,1049619600,0),(767,1067155200,5),(767,1081065600,4),(767,1099206000,5),(767,1112515200,4),(767,1130655600,5),(767,1143964800,4),(767,1162105200,5),(767,1173600000,4),(767,1194159600,5),(767,1205049600,4),(767,1225609200,5),(767,1236499200,4),(767,1257058800,5),(767,1268553600,4),(767,1289113200,5),(767,1300003200,4),(767,1320562800,5),(767,1331452800,4),(767,1352012400,5),(767,1362902400,4),(767,1383462000,5),(767,1394352000,4),(767,1414911600,5),(767,1425801600,4),(767,1446361200,5),(767,1457856000,4),(767,1478415600,5),(767,1489305600,4),(767,1509865200,5),(767,1520755200,4),(767,1541314800,5),(767,1552204800,4),(767,1572764400,5),(767,1583654400,4),(767,1604214000,5),(767,1615708800,4),(767,1636268400,5),(767,1647158400,4),(767,1667718000,5),(767,1678608000,4),(767,1699167600,5),(767,1710057600,4),(767,1730617200,5),(767,1741507200,4),(767,1762066800,5),(767,1772956800,4),(767,1793516400,5),(767,1805011200,4),(767,1825570800,5),(767,1836460800,4),(767,1857020400,5),(767,1867910400,4),(767,1888470000,5),(767,1899360000,4),(767,1919919600,5),(767,1930809600,4),(767,1951369200,5),(767,1962864000,4),(767,1983423600,5),(767,1994313600,4),(767,2014873200,5),(767,2025763200,4),(767,2046322800,5),(767,2057212800,4),(767,2077772400,5),(767,2088662400,4),(767,2109222000,5),(767,2120112000,4),(767,2140671600,5),(768,-1514739600,1),(768,-1343066400,2),(768,-1234807200,1),(768,-1220292000,2),(768,-1207159200,1),(768,-1191344400,2),(768,828864000,3),(768,846399600,2),(768,860313600,3),(768,877849200,2),(768,891766800,4),(768,909302400,1),(768,923216400,4),(768,941356800,1),(768,954666000,4),(768,972806400,1),(768,989139600,4),(768,1001836800,1),(768,1018170000,4),(768,1035705600,1),(768,1049619600,4),(768,1067155200,1),(768,1081069200,4),(768,1099209600,1),(768,1112518800,4),(768,1130659200,1),(768,1143968400,4),(768,1162108800,1),(768,1175418000,4),(768,1193558400,1),(768,1207472400,4),(768,1225008000,1),(768,1238922000,4),(768,1256457600,1),(768,1268557200,4),(768,1289116800,1),(768,1300006800,4),(768,1320566400,1),(768,1331456400,4),(768,1352016000,1),(768,1362906000,4),(768,1383465600,1),(768,1394355600,4),(768,1414915200,1),(768,1425805200,4),(768,1446364800,1),(768,1457859600,4),(768,1478419200,1),(768,1489309200,4),(768,1509868800,1),(768,1520758800,4),(768,1541318400,1),(768,1552208400,4),(768,1572768000,1),(768,1583658000,4),(768,1604217600,1),(768,1615712400,4),(768,1636272000,1),(768,1647162000,4),(768,1667721600,1),(768,1678611600,4),(768,1699171200,1),(768,1710061200,4),(768,1730620800,1),(768,1741510800,4),(768,1762070400,1),(768,1772960400,4),(768,1793520000,1),(768,1805014800,4),(768,1825574400,1),(768,1836464400,4),(768,1857024000,1),(768,1867914000,4),(768,1888473600,1),(768,1899363600,4),(768,1919923200,1),(768,1930813200,4),(768,1951372800,1),(768,1962867600,4),(768,1983427200,1),(768,1994317200,4),(768,2014876800,1),(768,2025766800,4),(768,2046326400,1),(768,2057216400,4),(768,2077776000,1),(768,2088666000,4),(768,2109225600,1),(768,2120115600,4),(768,2140675200,1),(769,-1946918424,1),(770,-1546300800,3),(770,-880221600,1),(770,-769395600,2),(770,-765399600,3),(770,-147902400,4),(770,-131572800,3),(770,325663200,5),(770,341384400,3),(770,357112800,5),(770,372834000,3),(770,388562400,5),(770,404888400,3),(770,420012000,5),(770,436338000,3),(770,452066400,5),(770,467787600,3),(770,483516000,5),(770,499237200,3),(770,514965600,5),(770,530686800,3),(770,544600800,5),(770,562136400,3),(770,576050400,5),(770,594190800,3),(770,607500000,5),(770,625640400,3),(770,638949600,5),(770,657090000,3),(770,671004000,5),(770,688539600,3),(770,702453600,5),(770,719989200,3),(770,733903200,5),(770,752043600,3),(770,765352800,5),(770,783493200,3),(770,796802400,6),(770,814946400,7),(770,828860400,6),(770,846396000,7),(770,860310000,6),(770,877845600,7),(770,891759600,6),(770,909295200,7),(770,923209200,6),(770,941349600,8),(770,954662400,9),(770,972802800,7),(770,986108400,6),(770,1004248800,7),(770,1018162800,6),(770,1035698400,7),(770,1049612400,6),(770,1067148000,7),(770,1081062000,6),(770,1099202400,7),(770,1112511600,6),(770,1130652000,7),(770,1143961200,6),(770,1162101600,7),(770,1173596400,6),(770,1194156000,7),(770,1205046000,6),(770,1225605600,7),(770,1236495600,6),(770,1257055200,7),(770,1268550000,6),(770,1289109600,7),(770,1299999600,6),(770,1320559200,7),(770,1331449200,6),(770,1352008800,7),(770,1362898800,6),(770,1383458400,7),(770,1394348400,6),(770,1414908000,7),(770,1425798000,6),(770,1446357600,7),(770,1457852400,6),(770,1478412000,7),(770,1489302000,6),(770,1509861600,7),(770,1520751600,6),(770,1541311200,7),(770,1552201200,6),(770,1572760800,7),(770,1583650800,6),(770,1604210400,7),(770,1615705200,6),(770,1636264800,7),(770,1647154800,6),(770,1667714400,7),(770,1678604400,6),(770,1699164000,7),(770,1710054000,6),(770,1730613600,7),(770,1741503600,6),(770,1762063200,7),(770,1772953200,6),(770,1793512800,7),(770,1805007600,6),(770,1825567200,7),(770,1836457200,6),(770,1857016800,7),(770,1867906800,6),(770,1888466400,7),(770,1899356400,6),(770,1919916000,7),(770,1930806000,6),(770,1951365600,7),(770,1962860400,6),(770,1983420000,7),(770,1994310000,6),(770,2014869600,7),(770,2025759600,6),(770,2046319200,7),(770,2057209200,6),(770,2077768800,7),(770,2088658800,6),(770,2109218400,7),(770,2120108400,6),(770,2140668000,7),(771,-1861906760,1),(771,-1104524348,2),(771,-765317964,3),(771,465449400,4),(772,-1633273200,0),(772,-1615132800,1),(772,-1601823600,0),(772,-1583683200,1),(772,-880210800,2),(772,-820519140,1),(772,-812653140,2),(772,-796845540,1),(772,-84380400,0),(772,-68659200,1),(773,-1670483460,2),(773,421218000,1),(773,436334400,2),(773,452062800,1),(773,467784000,2),(773,483512400,1),(773,499233600,2),(773,514962000,1),(773,530683200,2),(773,546411600,1),(773,562132800,2),(773,576050400,3),(773,594194400,4),(773,607500000,3),(773,625644000,4),(773,638949600,3),(773,657093600,4),(773,671004000,3),(773,688543200,4),(773,702453600,3),(773,719992800,4),(773,733903200,3),(773,752047200,4),(773,765352800,3),(773,783496800,4),(773,796802400,3),(773,814946400,4),(773,828856800,3),(773,846396000,4),(773,860306400,3),(773,877845600,4),(773,1112504400,1),(773,1130644800,2),(773,1143954000,1),(773,1162094400,2),(773,1331449200,1),(773,1352008800,2),(773,1362898800,1),(773,1383458400,2),(773,1394348400,1),(773,1414908000,2),(773,1425798000,1),(773,1446357600,2),(773,1489302000,1),(773,1509861600,2),(773,1520751600,1),(773,1541311200,2),(773,1552201200,1),(773,1572760800,2),(773,1583650800,1),(773,1604210400,2),(773,1615705200,1),(773,1636264800,2),(773,1647154800,1),(773,1667714400,2),(773,1678604400,1),(773,1699164000,2),(773,1710054000,1),(773,1730613600,2),(773,1741503600,1),(773,1762063200,2),(773,1772953200,1),(773,1793512800,2),(773,1805007600,1),(773,1825567200,2),(773,1836457200,1),(773,1857016800,2),(773,1867906800,1),(773,1888466400,2),(773,1899356400,1),(773,1919916000,2),(773,1930806000,1),(773,1951365600,2),(773,1962860400,1),(773,1983420000,2),(773,1994310000,1),(773,2014869600,2),(773,2025759600,1),(773,2046319200,2),(773,2057209200,1),(773,2077768800,2),(773,2088658800,1),(773,2109218400,2),(773,2120108400,1),(773,2140668000,2),(774,-1825098836,1),(775,-1767209328,2),(775,-1206950400,1),(775,-1191355200,2),(775,-1175367600,1),(775,-1159819200,2),(775,-633812400,1),(775,-622062000,2),(775,-602276400,1),(775,-591825600,2),(775,-570740400,1),(775,-560203200,2),(775,-539118000,1),(775,-531345600,2),(775,-191358000,1),(775,-184190400,2),(775,-155156400,1),(775,-150062400,2),(775,-128890800,1),(775,-121118400,2),(775,-99946800,1),(775,-89582400,2),(775,-68410800,1),(775,-57960000,2),(775,499755600,1),(775,511243200,2),(775,530600400,1),(775,540273600,2),(775,562136400,1),(775,571204800,2),(775,1214283600,3),(775,1384056000,2),(776,-1767210264,2),(776,-1206954000,1),(776,-1191358800,2),(776,-1175371200,1),(776,-1159822800,2),(776,-633816000,1),(776,-622065600,2),(776,-602280000,1),(776,-591829200,2),(776,-570744000,1),(776,-560206800,2),(776,-539121600,1),(776,-531349200,2),(776,-191361600,1),(776,-184194000,2),(776,-155160000,1),(776,-150066000,2),(776,-128894400,1),(776,-121122000,2),(776,-99950400,1),(776,-89586000,2),(776,-68414400,1),(776,-57963600,2),(776,499752000,1),(776,511239600,2),(776,530596800,1),(776,540270000,2),(776,562132800,1),(776,571201200,2),(777,-873057600,2),(777,-769395600,1),(777,-765399600,0),(778,-1892661434,1),(778,-1688410800,0),(778,-1619205434,2),(778,-1593806400,0),(778,-1335986234,3),(778,-1317585600,1),(778,-1304362800,3),(778,-1286049600,1),(778,-1272826800,3),(778,-1254513600,1),(778,-1241290800,3),(778,-1222977600,1),(778,-1209754800,3),(778,-1191355200,1),(778,-1178132400,2),(778,-870552000,1),(778,-865278000,2),(778,-718056000,1),(778,-713649600,2),(778,-36619200,4),(778,-23922000,5),(778,-3355200,4),(778,7527600,5),(778,24465600,4),(778,37767600,5),(778,55915200,4),(778,69217200,5),(778,87969600,4),(778,100666800,5),(778,118209600,4),(778,132116400,5),(778,150868800,4),(778,163566000,5),(778,182318400,4),(778,195620400,5),(778,213768000,4),(778,227070000,5),(778,245217600,4),(778,258519600,5),(778,277272000,4),(778,289969200,5),(778,308721600,4),(778,321418800,5),(778,340171200,4),(778,353473200,5),(778,371620800,4),(778,384922800,5),(778,403070400,4),(778,416372400,5),(778,434520000,4),(778,447822000,5),(778,466574400,4),(778,479271600,5),(778,498024000,4),(778,510721200,5),(778,529473600,4),(778,545194800,5),(778,560923200,4),(778,574225200,5),(778,592372800,4),(778,605674800,5),(778,624427200,4),(778,637124400,5),(778,653457600,4),(778,668574000,5),(778,687326400,4),(778,700628400,5),(778,718776000,4),(778,732078000,5),(778,750225600,4),(778,763527600,5),(778,781675200,4),(778,794977200,5),(778,813729600,4),(778,826426800,5),(778,845179200,4),(778,859690800,5),(778,876628800,4),(778,889930800,5),(778,906868800,4),(778,923194800,5),(778,939528000,4),(778,952830000,5),(778,971582400,4),(778,984279600,5),(778,1003032000,4),(778,1015729200,5),(778,1034481600,4),(778,1047178800,5),(778,1065931200,4),(778,1079233200,5),(778,1097380800,4),(778,1110682800,5),(778,1128830400,4),(778,1142132400,5),(778,1160884800,4),(778,1173582000,5),(778,1192334400,4),(778,1206846000,5),(778,1223784000,4),(778,1237086000,5),(778,1255233600,4),(778,1270350000,5),(778,1286683200,4),(778,1304823600,5),(778,1313899200,4),(778,1335668400,5),(778,1346558400,4),(778,1367118000,5),(778,1378612800,4),(778,1398567600,5),(778,1410062400,4),(778,1463281200,5),(778,1471147200,4),(778,1480820400,6),(779,-1632067200,0),(779,-1615136400,1),(779,-923248800,0),(779,-880214400,2),(779,-769395600,3),(779,-765392400,1),(779,136368000,0),(779,152089200,1),(779,167817600,0),(779,183538800,1),(779,199267200,0),(779,215593200,1),(779,230716800,0),(779,247042800,1),(779,262771200,0),(779,278492400,1),(779,294220800,0),(779,309942000,1),(779,325670400,0),(779,341391600,1),(779,357120000,0),(779,372841200,1),(779,388569600,0),(779,404895600,1),(779,420019200,0),(779,436345200,1),(779,452073600,0),(779,467794800,1),(779,483523200,0),(779,499244400,1),(779,514972800,0),(779,530694000,1),(779,544608000,0),(779,562143600,1),(779,576057600,0),(779,594198000,1),(779,607507200,0),(779,625647600,1),(779,638956800,0),(779,657097200,1),(779,671011200,0),(779,688546800,1),(779,702460800,0),(779,719996400,1),(779,733910400,0),(779,752050800,1),(779,765360000,0),(779,783500400,1),(779,796809600,0),(779,814950000,1),(779,828864000,0),(779,846399600,1),(779,860313600,0),(779,877849200,1),(779,891763200,0),(779,909298800,1),(779,923212800,0),(779,941353200,1),(779,954662400,0),(779,972802800,1),(779,986112000,0),(779,1004252400,1),(779,1018166400,0),(779,1035702000,1),(779,1049616000,0),(779,1067151600,1),(779,1081065600,0),(779,1099206000,1),(779,1112515200,0),(779,1130655600,1),(779,1143964800,0),(779,1162105200,1),(779,1173600000,0),(779,1194159600,1),(779,1205049600,0),(779,1225609200,1),(779,1236499200,0),(779,1257058800,1),(779,1268553600,0),(779,1289113200,1),(779,1300003200,0),(779,1320562800,1),(779,1331452800,0),(779,1352012400,1),(779,1362902400,0),(779,1383462000,1),(779,1394352000,0),(779,1414911600,1),(779,1425801600,0),(779,1446361200,1),(779,1457856000,0),(779,1478415600,1),(779,1489305600,0),(779,1509865200,1),(779,1520755200,0),(779,1541314800,1),(779,1552204800,0),(779,1572764400,1),(779,1583654400,0),(779,1604214000,1),(779,1615708800,0),(779,1636268400,1),(779,1647158400,0),(779,1667718000,1),(779,1678608000,0),(779,1699167600,1),(779,1710057600,0),(779,1730617200,1),(779,1741507200,0),(779,1762066800,1),(779,1772956800,0),(779,1793516400,1),(779,1805011200,0),(779,1825570800,1),(779,1836460800,0),(779,1857020400,1),(779,1867910400,0),(779,1888470000,1),(779,1899360000,0),(779,1919919600,1),(779,1930809600,0),(779,1951369200,1),(779,1962864000,0),(779,1983423600,1),(779,1994313600,0),(779,2014873200,1),(779,2025763200,0),(779,2046322800,1),(779,2057212800,0),(779,2077772400,1),(779,2088662400,0),(779,2109222000,1),(779,2120112000,0),(779,2140671600,1),(780,-410227200,2),(780,-147895200,1),(780,-131565600,2),(780,325670400,3),(780,341391600,2),(780,357120000,3),(780,372841200,2),(780,388569600,3),(780,404895600,2),(780,420019200,3),(780,436345200,2),(780,452073600,3),(780,467794800,2),(780,483523200,3),(780,499244400,2),(780,514972800,3),(780,530694000,2),(780,544608000,3),(780,562143600,2),(780,576057600,3),(780,594198000,2),(780,607507200,3),(780,625647600,2),(780,638956800,3),(780,657097200,2),(780,671011200,3),(780,688546800,2),(780,702460800,3),(780,719996400,2),(780,733910400,3),(780,752050800,2),(780,765360000,3),(780,783500400,2),(780,796809600,3),(780,814950000,2),(780,828864000,3),(780,846399600,2),(780,860313600,3),(780,877849200,2),(780,891763200,3),(780,909298800,2),(780,923212800,3),(780,941353200,2),(780,954662400,3),(780,972802800,4),(780,986112000,3),(780,1004252400,2),(780,1018166400,3),(780,1035702000,2),(780,1049616000,3),(780,1067151600,2),(780,1081065600,3),(780,1099206000,2),(780,1112515200,3),(780,1130655600,2),(780,1143964800,3),(780,1162105200,2),(780,1173600000,3),(780,1194159600,2),(780,1205049600,3),(780,1225609200,2),(780,1236499200,3),(780,1257058800,2),(780,1268553600,3),(780,1289113200,2),(780,1300003200,3),(780,1320562800,2),(780,1331452800,3),(780,1352012400,2),(780,1362902400,3),(780,1383462000,2),(780,1394352000,3),(780,1414911600,2),(780,1425801600,3),(780,1446361200,2),(780,1457856000,3),(780,1478415600,2),(780,1489305600,3),(780,1509865200,2),(780,1520755200,3),(780,1541314800,2),(780,1552204800,3),(780,1572764400,2),(780,1583654400,3),(780,1604214000,2),(780,1615708800,3),(780,1636268400,2),(780,1647158400,3),(780,1667718000,2),(780,1678608000,3),(780,1699167600,2),(780,1710057600,3),(780,1730617200,2),(780,1741507200,3),(780,1762066800,2),(780,1772956800,3),(780,1793516400,2),(780,1805011200,3),(780,1825570800,2),(780,1836460800,3),(780,1857020400,2),(780,1867910400,3),(780,1888470000,2),(780,1899360000,3),(780,1919919600,2),(780,1930809600,3),(780,1951369200,2),(780,1962864000,3),(780,1983423600,2),(780,1994313600,3),(780,2014873200,2),(780,2025763200,3),(780,2046322800,2),(780,2057212800,3),(780,2077772400,2),(780,2088662400,3),(780,2109222000,2),(780,2120112000,3),(780,2140671600,2),(781,-1767217224,2),(781,-1206957600,1),(781,-1191362400,2),(781,-1175374800,1),(781,-1159826400,2),(781,-633819600,1),(781,-622069200,2),(781,-602283600,1),(781,-591832800,2),(781,-570747600,1),(781,-560210400,2),(781,-539125200,1),(781,-531352800,2),(781,-191365200,1),(781,-184197600,2),(781,-155163600,1),(781,-150069600,2),(781,-128898000,1),(781,-121125600,2),(781,-99954000,1),(781,-89589600,2),(781,-68418000,1),(781,-57967200,2),(781,499748400,1),(781,511236000,2),(781,530593200,1),(781,540266400,2),(781,562129200,1),(781,571197600,2),(781,592974000,1),(781,602042400,2),(781,624423600,1),(781,634701600,2),(781,938919600,1),(781,951616800,2),(781,970974000,1),(781,971575200,2),(781,1003028400,1),(781,1013911200,2),(782,-2030202084,2),(782,-1632063600,1),(782,-1615132800,2),(782,-1251651600,1),(782,-1238349600,2),(782,-1220202000,1),(782,-1206900000,2),(782,-1188752400,1),(782,-1175450400,2),(782,-1156698000,1),(782,-1144000800,2),(782,-1125248400,1),(782,-1111946400,2),(782,-1032714000,1),(782,-1016992800,2),(782,-1001264400,1),(782,-986148000,2),(782,-969814800,1),(782,-954093600,2),(782,-937760400,1),(782,-922039200,2),(782,-906310800,1),(782,-890589600,2),(782,-880210800,3),(782,-769395600,4),(782,-765388800,2),(782,-748450800,1),(782,-732729600,2),(782,-715791600,1),(782,-702489600,2),(782,-684342000,1),(782,-671040000,2),(782,-652892400,1),(782,-639590400,2),(782,-620838000,1),(782,-608140800,2),(782,-589388400,1),(782,-576086400,2),(782,-557938800,1),(782,-544636800,2),(782,-526489200,1),(782,-513187200,2),(782,-495039600,1),(782,-481737600,2),(782,-463590000,1),(782,-450288000,2),(782,-431535600,1),(782,-418233600,2),(782,-400086000,1),(782,-386784000,2),(782,-337186800,1),(782,-321465600,2),(782,-305737200,5),(783,-704937600,2),(783,-147895200,1),(783,-131565600,2),(783,325670400,3),(783,341391600,2),(783,357120000,3),(783,372841200,2),(783,388569600,3),(783,404895600,2),(783,420019200,3),(783,436345200,2),(783,452073600,3),(783,467794800,2),(783,483523200,3),(783,499244400,2),(783,514972800,3),(783,530694000,2),(783,544608000,3),(783,562143600,2),(783,576057600,3),(783,594198000,2),(783,607507200,3),(783,625647600,2),(783,638956800,3),(783,657097200,2),(783,671011200,3),(783,688546800,2),(783,702460800,3),(783,719996400,2),(783,733910400,3),(783,752050800,2),(783,765360000,3),(783,783500400,2),(783,796809600,3),(783,814950000,2),(783,828864000,3),(783,846399600,2),(783,860313600,3),(783,877849200,2),(783,891763200,3),(783,909298800,2),(783,923212800,3),(783,941353200,2),(783,954662400,3),(783,972802800,4),(783,986112000,3),(783,1004252400,2),(783,1018166400,3),(783,1035702000,2),(783,1049616000,3),(783,1067151600,2),(783,1081065600,3),(783,1099206000,2),(783,1112515200,3),(783,1130655600,2),(783,1143964800,3),(783,1162105200,4),(783,1173600000,3),(783,1194159600,2),(783,1205049600,3),(783,1225609200,2),(783,1236499200,3),(783,1257058800,2),(783,1268553600,3),(783,1289113200,2),(783,1300003200,3),(783,1320562800,2),(783,1331452800,3),(783,1352012400,2),(783,1362902400,3),(783,1383462000,2),(783,1394352000,3),(783,1414911600,2),(783,1425801600,3),(783,1446361200,2),(783,1457856000,3),(783,1478415600,2),(783,1489305600,3),(783,1509865200,2),(783,1520755200,3),(783,1541314800,2),(783,1552204800,3),(783,1572764400,2),(783,1583654400,3),(783,1604214000,2),(783,1615708800,3),(783,1636268400,2),(783,1647158400,3),(783,1667718000,2),(783,1678608000,3),(783,1699167600,2),(783,1710057600,3),(783,1730617200,2),(783,1741507200,3),(783,1762066800,2),(783,1772956800,3),(783,1793516400,2),(783,1805011200,3),(783,1825570800,2),(783,1836460800,3),(783,1857020400,2),(783,1867910400,3),(783,1888470000,2),(783,1899360000,3),(783,1919919600,2),(783,1930809600,3),(783,1951369200,2),(783,1962864000,3),(783,1983423600,2),(783,1994313600,3),(783,2014873200,2),(783,2025763200,3),(783,2046322800,2),(783,2057212800,3),(783,2077772400,2),(783,2088662400,3),(783,2109222000,2),(783,2120112000,3),(783,2140671600,2),(784,-1767209328,2),(784,-1206950400,1),(784,-1191355200,2),(784,-1175367600,1),(784,-1159819200,2),(784,-633812400,1),(784,-622062000,2),(784,-602276400,1),(784,-591825600,2),(784,-570740400,1),(784,-560203200,2),(784,-539118000,1),(784,-531345600,2),(784,-191358000,1),(784,-184190400,2),(784,-155156400,1),(784,-150062400,2),(784,-128890800,1),(784,-121118400,2),(784,-99946800,1),(784,-89582400,2),(784,-68410800,1),(784,-57960000,2),(784,499755600,1),(784,511243200,2),(784,530600400,1),(784,540273600,2),(784,562136400,1),(784,571204800,2),(784,1214283600,3),(784,1384056000,2),(785,-1567453392,1),(785,-1233432000,2),(785,-1222981200,1),(785,-1205956800,2),(785,-1194037200,1),(785,-1172865600,2),(785,-1162501200,1),(785,-1141329600,2),(785,-1130965200,1),(785,-1109793600,2),(785,-1099429200,1),(785,-1078257600,2),(785,-1067806800,1),(785,-1046635200,2),(785,-1036270800,1),(785,-1015099200,2),(785,-1004734800,1),(785,-983563200,2),(785,-973198800,1),(785,-952027200,2),(785,-941576400,1),(785,-931032000,2),(785,-900882000,1),(785,-890337600,2),(785,-833749200,1),(785,-827265600,2),(785,-752274000,1),(785,-733780800,2),(785,-197326800,1),(785,-190843200,2),(785,-184194000,1),(785,-164491200,2),(785,-152658000,1),(785,-132955200,2),(785,-121122000,1),(785,-101419200,2),(785,-86821200,1),(785,-71092800,2),(785,-54766800,1),(785,-39038400,2),(785,-23317200,1),(785,-7588800,4),(785,128142000,3),(785,136605600,4),(785,596948400,3),(785,605066400,4),(785,624423600,3),(785,636516000,4),(785,656478000,3),(785,667965600,1),(785,687931200,3),(785,699415200,4),(785,719377200,3),(785,731469600,4),(785,938919600,2),(785,952052400,4),(785,1198983600,3),(785,1205632800,4),(785,1224385200,3),(785,1237082400,4),(786,-1514736000,1),(786,-1451667600,2),(786,-1343062800,1),(786,-1234803600,2),(786,-1222963200,3),(786,-1207242000,2),(786,-873820800,4),(786,-769395600,5),(786,-761677200,2),(786,-686073600,3),(786,-661539600,2),(786,-495039600,3),(786,-481734000,2),(786,-463590000,3),(786,-450284400,2),(786,-431535600,3),(786,-418230000,2),(786,-400086000,3),(786,-386780400,2),(786,-368636400,3),(786,-355330800,2),(786,-337186800,3),(786,-323881200,2),(786,-305737200,3),(786,-292431600,2),(786,199274400,3),(786,215600400,2),(786,230724000,3),(786,247050000,2),(786,262778400,3),(786,278499600,2),(786,294228000,3),(786,309949200,2),(786,325677600,3),(786,341398800,2),(786,357127200,3),(786,372848400,2),(786,388576800,3),(786,404902800,2),(786,420026400,3),(786,436352400,2),(786,452080800,3),(786,467802000,2),(786,483530400,3),(786,499251600,2),(786,514980000,3),(786,530701200,2),(786,544615200,3),(786,562150800,2),(786,576064800,3),(786,594205200,2),(786,607514400,3),(786,625654800,2),(786,638964000,3),(786,657104400,2),(786,671018400,3),(786,688554000,2),(786,702468000,3),(786,720003600,2),(786,733917600,3),(786,752058000,2),(786,765367200,3),(786,783507600,2),(786,796816800,3),(786,814957200,2),(786,828871200,3),(786,846406800,2),(786,860320800,3),(786,877856400,2),(786,891770400,3),(786,909306000,2),(786,923220000,3),(786,941360400,2),(786,954669600,3),(786,972810000,2),(786,986119200,3),(786,1004259600,2),(786,1018173600,3),(786,1035709200,2),(786,1049623200,3),(786,1067158800,2),(786,1081072800,3),(786,1099213200,2),(786,1112522400,3),(786,1130662800,2),(786,1143972000,3),(786,1162112400,2),(786,1175421600,3),(786,1193562000,2),(786,1207476000,3),(786,1225011600,2),(786,1238925600,3),(786,1256461200,2),(786,1268560800,3),(786,1289120400,2),(786,1300010400,3),(786,1320570000,2),(786,1331460000,3),(786,1352019600,2),(786,1362909600,3),(786,1383469200,2),(786,1394359200,3),(786,1414918800,2),(786,1425808800,3),(786,1446368400,2),(786,1457863200,3),(786,1478422800,2),(786,1489312800,3),(786,1509872400,2),(786,1520762400,3),(786,1541322000,2),(786,1552212000,3),(786,1572771600,2),(786,1583661600,3),(786,1604221200,2),(786,1615716000,3),(786,1636275600,2),(786,1647165600,3),(786,1667725200,2),(786,1678615200,3),(786,1699174800,2),(786,1710064800,3),(786,1730624400,2),(786,1741514400,3),(786,1762074000,2),(786,1772964000,3),(786,1793523600,2),(786,1805018400,3),(786,1825578000,2),(786,1836468000,3),(786,1857027600,2),(786,1867917600,3),(786,1888477200,2),(786,1899367200,3),(786,1919926800,2),(786,1930816800,3),(786,1951376400,2),(786,1962871200,3),(786,1983430800,2),(786,1994320800,3),(786,2014880400,2),(786,2025770400,3),(786,2046330000,2),(786,2057220000,3),(786,2077779600,2),(786,2088669600,3),(786,2109229200,2),(786,2120119200,3),(786,2140678800,2),(787,-1767212472,2),(787,-1206954000,1),(787,-1191358800,2),(787,-1175371200,1),(787,-1159822800,2),(787,-633816000,1),(787,-622065600,2),(787,-602280000,1),(787,-591829200,2),(787,-570744000,1),(787,-560206800,2),(787,-539121600,1),(787,-531349200,2),(787,-191361600,1),(787,-184194000,2),(787,-155160000,1),(787,-150066000,2),(787,-128894400,1),(787,-121122000,2),(787,-99950400,1),(787,-89586000,2),(787,-68414400,1),(787,-57963600,2),(787,499752000,1),(787,511239600,2),(787,530596800,1),(787,540270000,2),(787,562132800,1),(787,571201200,2),(787,1214280000,3),(788,-1892661434,1),(788,-1688410800,0),(788,-1619205434,2),(788,-1593806400,0),(788,-1335986234,3),(788,-1317585600,1),(788,-1304362800,3),(788,-1286049600,1),(788,-1272826800,3),(788,-1254513600,1),(788,-1241290800,3),(788,-1222977600,1),(788,-1209754800,3),(788,-1191355200,1),(788,-1178132400,2),(788,-870552000,1),(788,-865278000,2),(788,-740520000,4),(788,-736376400,2),(788,-718056000,1),(788,-713649600,2),(788,-36619200,5),(788,-23922000,6),(788,-3355200,5),(788,7527600,6),(788,24465600,5),(788,37767600,6),(788,55915200,5),(788,69217200,6),(788,87969600,5),(788,100666800,6),(788,118209600,5),(788,132116400,6),(788,150868800,5),(788,163566000,6),(788,182318400,5),(788,195620400,6),(788,213768000,5),(788,227070000,6),(788,245217600,5),(788,258519600,6),(788,277272000,5),(788,289969200,6),(788,308721600,5),(788,321418800,6),(788,340171200,5),(788,353473200,6),(788,371620800,5),(788,384922800,6),(788,403070400,5),(788,416372400,6),(788,434520000,5),(788,447822000,6),(788,466574400,5),(788,479271600,6),(788,498024000,5),(788,510721200,6),(788,529473600,5),(788,545194800,6),(788,560923200,5),(788,574225200,6),(788,592372800,5),(788,605674800,6),(788,624427200,5),(788,637124400,6),(788,653457600,5),(788,668574000,6),(788,687326400,5),(788,700628400,6),(788,718776000,5),(788,732078000,6),(788,750225600,5),(788,763527600,6),(788,781675200,5),(788,794977200,6),(788,813729600,5),(788,826426800,6),(788,845179200,5),(788,859690800,6),(788,876628800,5),(788,889930800,6),(788,906868800,5),(788,923194800,6),(788,939528000,5),(788,952830000,6),(788,971582400,5),(788,984279600,6),(788,1003032000,5),(788,1015729200,6),(788,1034481600,5),(788,1047178800,6),(788,1065931200,5),(788,1079233200,6),(788,1097380800,5),(788,1110682800,6),(788,1128830400,5),(788,1142132400,6),(788,1160884800,5),(788,1173582000,6),(788,1192334400,5),(788,1206846000,6),(788,1223784000,5),(788,1237086000,6),(788,1255233600,5),(788,1270350000,6),(788,1286683200,5),(788,1304823600,6),(788,1313899200,5),(788,1335668400,6),(788,1346558400,5),(788,1367118000,6),(788,1378612800,5),(788,1398567600,6),(788,1410062400,5),(788,1463281200,6),(788,1471147200,5),(788,1494730800,6),(788,1502596800,5),(788,1526180400,6),(788,1534046400,5),(788,1557630000,6),(788,1565496000,5),(788,1589079600,6),(788,1596945600,5),(788,1620529200,6),(788,1629000000,5),(788,1652583600,6),(788,1660449600,5),(788,1684033200,6),(788,1691899200,5),(788,1715482800,6),(788,1723348800,5),(788,1746932400,6),(788,1754798400,5),(788,1778382000,6),(788,1786248000,5),(788,1809831600,6),(788,1818302400,5),(788,1841886000,6),(788,1849752000,5),(788,1873335600,6),(788,1881201600,5),(788,1904785200,6),(788,1912651200,5),(788,1936234800,6),(788,1944100800,5),(788,1967684400,6),(788,1976155200,5),(788,1999738800,6),(788,2007604800,5),(788,2031188400,6),(788,2039054400,5),(788,2062638000,6),(788,2070504000,5),(788,2094087600,6),(788,2101953600,5),(788,2125537200,6),(788,2133403200,5),(789,-1159773600,2),(789,-100119600,1),(789,-89668800,2),(789,-5770800,3),(789,4422600,2),(789,25678800,3),(789,33193800,2),(789,57733200,3),(789,64816200,2),(789,89182800,3),(789,96438600,2),(789,120632400,3),(789,127974600,2),(789,152082000,4),(789,972799200,2),(789,975823200,4),(790,-1767214412,2),(790,-1206957600,1),(790,-1191362400,2),(790,-1175374800,1),(790,-1159826400,2),(790,-633819600,1),(790,-622069200,2),(790,-602283600,1),(790,-591832800,2),(790,-570747600,1),(790,-560210400,2),(790,-539125200,1),(790,-531352800,2),(790,-195426000,1),(790,-184197600,2),(790,-155163600,1),(790,-150069600,2),(790,-128898000,1),(790,-121125600,2),(790,-99954000,1),(790,-89589600,2),(790,-68418000,1),(790,-57967200,2),(790,499748400,1),(790,511236000,2),(790,530593200,1),(790,540266400,2),(790,562129200,1),(790,571197600,2),(790,592974000,1),(790,602042400,2),(790,624423600,1),(790,634701600,2),(790,656478000,1),(790,666756000,2),(790,687927600,1),(790,697600800,2),(790,719982000,1),(790,728445600,2),(790,750826800,1),(790,761709600,2),(790,782276400,1),(790,793159200,2),(790,813726000,1),(790,824004000,2),(790,844570800,1),(790,856058400,2),(790,876106800,1),(790,888717600,2),(790,908074800,1),(790,919562400,2),(790,938919600,1),(790,951616800,2),(790,970974000,1),(790,982461600,2),(790,1003028400,1),(790,1013911200,2),(790,1036292400,1),(790,1045360800,2),(790,1066532400,1),(790,1076810400,2),(790,1099364400,1),(790,1108864800,2),(790,1129431600,1),(790,1140314400,2),(790,1162695600,1),(790,1172368800,2),(790,1192330800,1),(790,1203213600,2),(790,1224385200,1),(790,1234663200,2),(790,1255834800,1),(790,1266717600,2),(790,1287284400,1),(790,1298167200,2),(790,1318734000,1),(790,1330221600,2),(790,1350788400,1),(790,1361066400,2),(790,1382238000,1),(790,1392516000,2),(790,1413687600,1),(790,1424570400,2),(790,1445137200,1),(790,1456020000,2),(790,1476586800,1),(790,1487469600,2),(790,1508036400,1),(790,1518919200,2),(790,1541300400,1),(790,1550368800,2),(790,1572750000,1),(790,1581818400,2),(790,1604199600,1),(790,1613872800,2),(790,1636254000,1),(790,1645322400,2),(790,1667703600,1),(790,1677376800,2),(790,1699153200,1),(790,1708221600,2),(790,1730602800,1),(790,1739671200,2),(790,1762052400,1),(790,1771725600,2),(790,1793502000,1),(790,1803175200,2),(790,1825556400,1),(790,1834624800,2),(790,1857006000,1),(790,1866074400,2),(790,1888455600,1),(790,1897524000,2),(790,1919905200,1),(790,1928973600,2),(790,1951354800,1),(790,1960423200,2),(790,1983409200,1),(790,1992477600,2),(790,2014858800,1),(790,2024532000,2),(790,2046308400,1),(790,2055376800,2),(790,2077758000,1),(790,2086826400,2),(790,2109207600,1),(790,2118880800,2),(790,2140657200,1),(791,-1686090728,1),(791,323841600,2),(791,338961600,3),(791,354679200,6),(791,370400400,4),(791,386125200,5),(791,401850000,4),(791,417574800,5),(791,433299600,4),(791,449024400,5),(791,465354000,4),(791,481078800,5),(791,496803600,4),(791,512528400,5),(791,528253200,4),(791,543978000,5),(791,559702800,4),(791,575427600,5),(791,591152400,4),(791,606877200,5),(791,622602000,4),(791,638326800,5),(791,654656400,4),(791,670381200,5),(791,686106000,4),(791,701830800,5),(791,717555600,4),(791,733280400,5),(791,749005200,4),(791,764730000,5),(791,780454800,4),(791,796179600,5),(791,811904400,4),(791,828234000,5),(791,846378000,4),(791,859683600,5),(791,877827600,4),(791,891133200,5),(791,909277200,4),(791,922582800,5),(791,941331600,4),(791,954032400,5),(791,972781200,4),(791,985482000,5),(791,1004230800,4),(791,1017536400,5),(791,1035680400,4),(791,1048986000,5),(791,1067130000,4),(791,1080435600,5),(791,1099184400,4),(791,1111885200,5),(791,1130634000,4),(791,1143334800,5),(791,1162083600,4),(791,1174784400,5),(791,1193533200,4),(791,1206838800,5),(791,1224982800,4),(791,1238288400,5),(791,1256432400,4),(791,1269738000,5),(791,1288486800,4),(791,1301187600,5),(791,1319936400,4),(791,1332637200,5),(791,1351386000,4),(791,1364691600,5),(791,1382835600,4),(791,1396141200,5),(791,1414285200,4),(791,1427590800,5),(791,1445734800,4),(791,1459040400,5),(791,1477789200,4),(791,1490490000,5),(791,1509238800,4),(791,1521939600,5),(791,1540688400,4),(791,1553994000,5),(791,1572138000,4),(791,1585443600,5),(791,1603587600,4),(791,1616893200,5),(791,1635642000,4),(791,1648342800,5),(791,1667091600,4),(791,1679792400,5),(791,1698541200,4),(791,1711846800,5),(791,1729990800,4),(791,1743296400,5),(791,1761440400,4),(791,1774746000,5),(791,1792890000,4),(791,1806195600,5),(791,1824944400,4),(791,1837645200,5),(791,1856394000,4),(791,1869094800,5),(791,1887843600,4),(791,1901149200,5),(791,1919293200,4),(791,1932598800,5),(791,1950742800,4),(791,1964048400,5),(791,1982797200,4),(791,1995498000,5),(791,2014246800,4),(791,2026947600,5),(791,2045696400,4),(791,2058397200,5),(791,2077146000,4),(791,2090451600,5),(791,2108595600,4),(791,2121901200,5),(791,2140045200,4),(792,-1633273200,0),(792,-1615132800,1),(792,-1601823600,0),(792,-1583683200,1),(792,-1570374000,0),(792,-1551628800,1),(792,-1538924400,0),(792,-1534089600,1),(792,-880210800,2),(792,-769395600,3),(792,-765388800,1),(792,-147884400,0),(792,-131558400,1),(792,-116434800,0),(792,-100108800,1),(792,-84380400,0),(792,-68659200,1),(792,-52930800,0),(792,-37209600,1),(792,-21481200,0),(792,-5760000,1),(792,9968400,0),(792,25689600,1),(792,41418000,0),(792,57744000,1),(792,73472400,0),(792,89193600,1),(792,104922000,0),(792,120643200,1),(792,126694800,0),(792,152092800,1),(792,162378000,0),(792,183542400,1),(792,199270800,0),(792,215596800,1),(792,230720400,0),(792,247046400,1),(792,262774800,0),(792,278496000,1),(792,294224400,0),(792,309945600,1),(792,325674000,0),(792,341395200,1),(792,357123600,0),(792,372844800,1),(792,388573200,0),(792,404899200,1),(792,420022800,0),(792,436348800,1),(792,452077200,0),(792,467798400,1),(792,483526800,0),(792,499248000,1),(792,514976400,0),(792,530697600,1),(792,544611600,0),(792,562147200,1),(792,576061200,0),(792,594201600,1),(792,607510800,0),(792,625651200,1),(792,638960400,0),(792,657100800,1),(792,671014800,0),(792,688550400,1),(792,702464400,0),(792,720000000,1),(792,733914000,0),(792,752054400,1),(792,765363600,0),(792,783504000,1),(792,796813200,0),(792,814953600,1),(792,828867600,0),(792,846403200,1),(792,860317200,0),(792,877852800,1),(792,891766800,0),(792,909302400,1),(792,923216400,0),(792,941356800,1),(792,954666000,0),(792,972806400,1),(792,986115600,0),(792,1004256000,1),(792,1018170000,0),(792,1035705600,1),(792,1049619600,0),(792,1067155200,1),(792,1081069200,0),(792,1099209600,1),(792,1112518800,0),(792,1130659200,1),(792,1143968400,0),(792,1162108800,1),(792,1173603600,0),(792,1194163200,1),(792,1205053200,0),(792,1225612800,1),(792,1236502800,0),(792,1257062400,1),(792,1268557200,0),(792,1289116800,1),(792,1300006800,0),(792,1320566400,1),(792,1331456400,0),(792,1352016000,1),(792,1362906000,0),(792,1383465600,1),(792,1394355600,0),(792,1414915200,1),(792,1425805200,0),(792,1446364800,1),(792,1457859600,0),(792,1478419200,1),(792,1489309200,0),(792,1509868800,1),(792,1520758800,0),(792,1541318400,1),(792,1552208400,0),(792,1572768000,1),(792,1583658000,0),(792,1604217600,1),(792,1615712400,0),(792,1636272000,1),(792,1647162000,0),(792,1667721600,1),(792,1678611600,0),(792,1699171200,1),(792,1710061200,0),(792,1730620800,1),(792,1741510800,0),(792,1762070400,1),(792,1772960400,0),(792,1793520000,1),(792,1805014800,0),(792,1825574400,1),(792,1836464400,0),(792,1857024000,1),(792,1867914000,0),(792,1888473600,1),(792,1899363600,0),(792,1919923200,1),(792,1930813200,0),(792,1951372800,1),(792,1962867600,0),(792,1983427200,1),(792,1994317200,0),(792,2014876800,1),(792,2025766800,0),(792,2046326400,1),(792,2057216400,0),(792,2077776000,1),(792,2088666000,0),(792,2109225600,1),(792,2120115600,0),(792,2140675200,1),(793,-880207200,1),(793,-769395600,2),(793,-765385200,0),(793,-21477600,3),(793,-5756400,0),(793,9972000,3),(793,25693200,0),(793,41421600,3),(793,57747600,0),(793,73476000,3),(793,89197200,0),(793,104925600,3),(793,120646800,0),(793,126698400,3),(793,152096400,0),(793,162381600,3),(793,183546000,0),(793,199274400,3),(793,215600400,0),(793,230724000,3),(793,247050000,0),(793,262778400,3),(793,278499600,0),(793,294228000,3),(793,309949200,0),(793,325677600,3),(793,341398800,0),(793,357127200,3),(793,372848400,0),(793,388576800,3),(793,404902800,0),(793,420026400,3),(793,436352400,4),(793,439030800,6),(793,452084400,5),(793,467805600,6),(793,483534000,5),(793,499255200,6),(793,514983600,5),(793,530704800,6),(793,544618800,5),(793,562154400,6),(793,576068400,5),(793,594208800,6),(793,607518000,5),(793,625658400,6),(793,638967600,5),(793,657108000,6),(793,671022000,5),(793,688557600,6),(793,702471600,5),(793,720007200,6),(793,733921200,5),(793,752061600,6),(793,765370800,5),(793,783511200,6),(793,796820400,5),(793,814960800,6),(793,828874800,5),(793,846410400,6),(793,860324400,5),(793,877860000,6),(793,891774000,5),(793,909309600,6),(793,923223600,5),(793,941364000,6),(793,954673200,5),(793,972813600,6),(793,986122800,5),(793,1004263200,6),(793,1018177200,5),(793,1035712800,6),(793,1049626800,5),(793,1067162400,6),(793,1081076400,5),(793,1099216800,6),(793,1112526000,5),(793,1130666400,6),(793,1143975600,5),(793,1162116000,6),(793,1173610800,5),(793,1194170400,6),(793,1205060400,5),(793,1225620000,6),(793,1236510000,5),(793,1257069600,6),(793,1268564400,5),(793,1289124000,6),(793,1300014000,5),(793,1320573600,6),(793,1331463600,5),(793,1352023200,6),(793,1362913200,5),(793,1383472800,6),(793,1394362800,5),(793,1414922400,6),(793,1425812400,5),(793,1446372000,6),(793,1457866800,5),(793,1478426400,6),(793,1489316400,5),(793,1509876000,6),(793,1520766000,5),(793,1541325600,6),(793,1552215600,5),(793,1572775200,6),(793,1583665200,5),(793,1604224800,6),(793,1615719600,5),(793,1636279200,6),(793,1647169200,5),(793,1667728800,6),(793,1678618800,5),(793,1699178400,6),(793,1710068400,5),(793,1730628000,6),(793,1741518000,5),(793,1762077600,6),(793,1772967600,5),(793,1793527200,6),(793,1805022000,5),(793,1825581600,6),(793,1836471600,5),(793,1857031200,6),(793,1867921200,5),(793,1888480800,6),(793,1899370800,5),(793,1919930400,6),(793,1930820400,5),(793,1951380000,6),(793,1962874800,5),(793,1983434400,6),(793,1994324400,5),(793,2014884000,6),(793,2025774000,5),(793,2046333600,6),(793,2057223600,5),(793,2077783200,6),(793,2088673200,5),(793,2109232800,6),(793,2120122800,5),(793,2140682400,6),(794,-1825098836,1),(795,-1664130548,0),(795,-1650137348,1),(795,-1632076148,0),(795,-1615145348,1),(795,-1598650148,0),(795,-1590100148,1),(795,-1567286948,0),(795,-1551565748,1),(795,-1535837348,0),(795,-1520116148,1),(795,-1503782948,0),(795,-1488666548,1),(795,-1472333348,0),(795,-1457216948,1),(795,-1440883748,0),(795,-1425767348,1),(795,-1409434148,0),(795,-1394317748,1),(795,-1377984548,0),(795,-1362263348,1),(795,-1346534948,0),(795,-1330813748,1),(795,-1314480548,0),(795,-1299364148,1),(795,-1283030948,0),(795,-1267914548,1),(795,-1251581348,0),(795,-1236464948,1),(795,-1220131748,0),(795,-1205015348,1),(795,-1188682148,0),(795,-1172960948,1),(795,-1156627748,0),(795,-1141511348,1),(795,-1125178148,0),(795,-1110061748,1),(795,-1096921748,3),(795,-1093728600,2),(795,-1078612200,3),(795,-1061670600,2),(795,-1048973400,3),(795,-1030221000,2),(795,-1017523800,3),(795,-998771400,2),(795,-986074200,3),(795,-966717000,2),(795,-954624600,3),(795,-935267400,2),(795,-922570200,3),(795,-903817800,2),(795,-891120600,3),(795,-872368200,5),(795,-769395600,4),(795,-765401400,3),(795,-746044200,2),(795,-733347000,3),(795,-714594600,2),(795,-701897400,3),(795,-683145000,2),(795,-670447800,3),(795,-651695400,2),(795,-638998200,3),(795,-619641000,2),(795,-606943800,3),(795,-589401000,2),(795,-576099000,3),(795,-557951400,2),(795,-544649400,3),(795,-526501800,2),(795,-513199800,3),(795,-495052200,2),(795,-481750200,3),(795,-463602600,2),(795,-450300600,3),(795,-431548200,2),(795,-418246200,3),(795,-400098600,2),(795,-386796600,3),(795,-368649000,2),(795,-355347000,3),(795,-337199400,2),(795,-323897400,3),(795,-305749800,2),(795,-289423800,3),(795,-273695400,2),(795,-257974200,3),(795,-242245800,2),(795,-226524600,3),(795,-210796200,2),(795,-195075000,3),(795,-179346600,2),(795,-163625400,3),(795,-147897000,2),(795,-131571000,3),(795,-116447400,2),(795,-100121400,3),(795,-84393000,2),(795,-68671800,3),(795,-52943400,2),(795,-37222200,3),(795,-21493800,2),(795,-5772600,3),(795,9955800,2),(795,25677000,3),(795,41405400,2),(795,57731400,3),(795,73459800,2),(795,89181000,3),(795,104909400,2),(795,120630600,3),(795,136359000,2),(795,152080200,3),(795,167808600,2),(795,183529800,3),(795,199258200,2),(795,215584200,3),(795,230707800,2),(795,247033800,3),(795,262762200,2),(795,278483400,3),(795,294211800,2),(795,309933000,3),(795,325661400,2),(795,341382600,3),(795,357111000,2),(795,372832200,3),(795,388560600,2),(795,404886600,3),(795,420010200,2),(795,436336200,3),(795,452064600,2),(795,467785800,3),(795,483514200,2),(795,499235400,3),(795,514963800,2),(795,530685000,3),(795,544591860,2),(795,562127460,3),(795,576041460,6),(795,594178260,3),(795,607491060,2),(795,625631460,3),(795,638940660,2),(795,657081060,3),(795,670995060,2),(795,688530660,3),(795,702444660,2),(795,719980260,3),(795,733894260,2),(795,752034660,3),(795,765343860,2),(795,783484260,3),(795,796793460,2),(795,814933860,3),(795,828847860,2),(795,846383460,3),(795,860297460,2),(795,877833060,3),(795,891747060,2),(795,909282660,3),(795,923196660,2),(795,941337060,3),(795,954646260,2),(795,972786660,3),(795,986095860,2),(795,1004236260,3),(795,1018150260,2),(795,1035685860,3),(795,1049599860,2),(795,1067135460,3),(795,1081049460,2),(795,1099189860,3),(795,1112499060,2),(795,1130639460,3),(795,1143948660,2),(795,1162089060,3),(795,1173583860,2),(795,1194143460,3),(795,1205033460,2),(795,1225593060,3),(795,1236483060,2),(795,1257042660,3),(795,1268537460,2),(795,1289097060,3),(795,1299987060,2),(795,1320553800,3),(795,1331443800,2),(795,1352003400,3),(795,1362893400,2),(795,1383453000,3),(795,1394343000,2),(795,1414902600,3),(795,1425792600,2),(795,1446352200,3),(795,1457847000,2),(795,1478406600,3),(795,1489296600,2),(795,1509856200,3),(795,1520746200,2),(795,1541305800,3),(795,1552195800,2),(795,1572755400,3),(795,1583645400,2),(795,1604205000,3),(795,1615699800,2),(795,1636259400,3),(795,1647149400,2),(795,1667709000,3),(795,1678599000,2),(795,1699158600,3),(795,1710048600,2),(795,1730608200,3),(795,1741498200,2),(795,1762057800,3),(795,1772947800,2),(795,1793507400,3),(795,1805002200,2),(795,1825561800,3),(795,1836451800,2),(795,1857011400,3),(795,1867901400,2),(795,1888461000,3),(795,1899351000,2),(795,1919910600,3),(795,1930800600,2),(795,1951360200,3),(795,1962855000,2),(795,1983414600,3),(795,1994304600,2),(795,2014864200,3),(795,2025754200,2),(795,2046313800,3),(795,2057203800,2),(795,2077763400,3),(795,2088653400,2),(795,2109213000,3),(795,2120103000,2),(795,2140662600,3),(796,-1825098836,1),(797,-1825098836,1),(798,-1825098836,1),(799,-1825098836,1),(800,-2030201320,2),(800,-1632063600,1),(800,-1615132800,2),(800,-880210800,3),(800,-769395600,4),(800,-765388800,2),(800,-747241200,1),(800,-732729600,2),(800,-715791600,1),(800,-702489600,2),(800,-684342000,1),(800,-671040000,2),(800,-652892400,1),(800,-639590400,2),(800,-400086000,1),(800,-384364800,2),(800,-337186800,1),(800,-321465600,2),(800,-305737200,1),(800,-292435200,2),(800,-273682800,1),(800,-260985600,2),(800,73472400,5),(801,-1538503868,2),(801,547020000,1),(801,559717200,2),(801,578469600,1),(801,591166800,2),(801,1146981600,1),(801,1154926800,2),(802,-1686079492,2),(802,670399200,1),(802,686120400,2),(802,701848800,1),(802,717570000,2),(802,733903200,1),(802,752043600,2),(802,765352800,1),(802,783493200,2),(802,796802400,1),(802,814942800,2),(802,828856800,1),(802,846392400,2),(802,860306400,1),(802,877842000,2),(802,891756000,1),(802,909291600,2),(802,923205600,1),(802,941346000,2),(802,954655200,1),(802,972795600,2),(802,986104800,1),(802,1004245200,2),(802,1018159200,1),(802,1035694800,2),(802,1049608800,1),(802,1067144400,2),(802,1081058400,1),(802,1099198800,2),(802,1112508000,1),(802,1130648400,2),(802,1143957600,1),(802,1162098000,2),(802,1173592800,1),(802,1194152400,2),(802,1205042400,1),(802,1225602000,2),(802,1236492000,1),(802,1257051600,2),(802,1268546400,1),(802,1289106000,2),(802,1299996000,1),(802,1320555600,2),(802,1331445600,1),(802,1352005200,2),(802,1362895200,1),(802,1383454800,2),(802,1394344800,1),(802,1414904400,2),(802,1425794400,1),(802,1446354000,2),(802,1457848800,1),(802,1478408400,2),(802,1489298400,1),(802,1509858000,2),(802,1520748000,1),(802,1541307600,2),(802,1552197600,1),(802,1572757200,2),(802,1583647200,1),(802,1604206800,2),(802,1615701600,1),(802,1636261200,2),(802,1647151200,1),(802,1667710800,2),(802,1678600800,1),(802,1699160400,2),(802,1710050400,1),(802,1730610000,2),(802,1741500000,1),(802,1762059600,2),(802,1772949600,1),(802,1793509200,2),(802,1805004000,1),(802,1825563600,2),(802,1836453600,1),(802,1857013200,2),(802,1867903200,1),(802,1888462800,2),(802,1899352800,1),(802,1919912400,2),(802,1930802400,1),(802,1951362000,2),(802,1962856800,1),(802,1983416400,2),(802,1994306400,1),(802,2014866000,2),(802,2025756000,1),(802,2046315600,2),(802,2057205600,1),(802,2077765200,2),(802,2088655200,1),(802,2109214800,2),(802,2120104800,1),(802,2140664400,2),(803,-1893434400,1),(803,-880218000,2),(803,-769395600,3),(803,-765396000,1),(803,9961200,4),(803,25682400,1),(803,41410800,4),(803,57736800,1),(803,73465200,4),(803,89186400,1),(803,136364400,4),(803,152085600,1),(803,167814000,4),(803,183535200,1),(803,199263600,4),(803,215589600,1),(803,230713200,4),(803,247039200,1),(803,262767600,4),(803,278488800,1),(803,294217200,4),(803,309938400,1),(803,325666800,4),(803,341388000,1),(803,357116400,4),(803,372837600,1),(803,388566000,4),(803,404892000,1),(803,420015600,4),(803,436341600,1),(803,452070000,4),(803,467791200,1),(803,483519600,4),(803,499240800,1),(803,514969200,4),(803,530690400,1),(803,544604400,4),(803,562140000,1),(803,576054000,4),(803,594194400,1),(803,607503600,4),(803,625644000,1),(803,638953200,4),(803,657093600,1),(803,671007600,4),(803,688543200,1),(803,702457200,4),(803,719992800,1),(803,733906800,4),(803,752047200,1),(803,765356400,4),(803,783496800,1),(803,796806000,4),(803,814946400,1),(803,828860400,4),(803,846396000,1),(803,860310000,4),(803,877845600,1),(803,891759600,4),(803,909295200,1),(803,923209200,4),(803,941349600,1),(803,954658800,4),(803,972799200,1),(803,986108400,4),(803,1004248800,1),(803,1018162800,4),(803,1035698400,1),(803,1049612400,4),(803,1067148000,1),(803,1081062000,4),(803,1099202400,1),(803,1112511600,4),(803,1130652000,1),(803,1143961200,4),(803,1162101600,1),(803,1173596400,4),(803,1194156000,1),(803,1205046000,4),(803,1225605600,1),(803,1236495600,4),(803,1257055200,1),(803,1268550000,4),(803,1289109600,1),(803,1299999600,4),(803,1320559200,1),(803,1331449200,4),(803,1352008800,1),(803,1362898800,4),(803,1383458400,1),(803,1394348400,4),(803,1414908000,1),(803,1425798000,4),(803,1446357600,1),(803,1457852400,4),(803,1478412000,1),(803,1489302000,4),(803,1509861600,1),(803,1520751600,4),(803,1541311200,1),(803,1552201200,4),(803,1572760800,1),(803,1583650800,4),(803,1604210400,1),(803,1615705200,4),(803,1636264800,1),(803,1647154800,4),(803,1667714400,1),(803,1678604400,4),(803,1699164000,1),(803,1710054000,4),(803,1730613600,1),(803,1741503600,4),(803,1762063200,1),(803,1772953200,4),(803,1793512800,1),(803,1805007600,4),(803,1825567200,1),(803,1836457200,4),(803,1857016800,1),(803,1867906800,4),(803,1888466400,1),(803,1899356400,4),(803,1919916000,1),(803,1930806000,4),(803,1951365600,1),(803,1962860400,4),(803,1983420000,1),(803,1994310000,4),(803,2014869600,1),(803,2025759600,4),(803,2046319200,1),(803,2057209200,4),(803,2077768800,1),(803,2088658800,4),(803,2109218400,1),(803,2120108400,4),(803,2140668000,1),(804,-1514736000,1),(804,-1451667600,2),(804,-1343062800,1),(804,-1234803600,2),(804,-1222963200,3),(804,-1207242000,2),(804,-873820800,4),(804,-769395600,5),(804,-761677200,2),(804,-686073600,3),(804,-661539600,2),(804,-495039600,3),(804,-481734000,2),(804,-463590000,3),(804,-450284400,2),(804,-431535600,3),(804,-418230000,2),(804,-400086000,3),(804,-386780400,2),(804,-368636400,3),(804,-355330800,2),(804,-337186800,3),(804,-323881200,2),(804,-305737200,3),(804,-292431600,2),(804,199274400,3),(804,215600400,2),(804,230724000,3),(804,247050000,2),(804,262778400,3),(804,278499600,2),(804,294228000,3),(804,309949200,2),(804,325677600,3),(804,341398800,2),(804,357127200,3),(804,372848400,2),(804,388576800,3),(804,404902800,2),(804,420026400,3),(804,436352400,2),(804,452080800,3),(804,467802000,2),(804,483530400,3),(804,499251600,2),(804,514980000,3),(804,530701200,2),(804,544615200,3),(804,562150800,2),(804,576064800,3),(804,594205200,2),(804,607514400,3),(804,625654800,2),(804,638964000,3),(804,657104400,2),(804,671018400,3),(804,688554000,2),(804,702468000,3),(804,720003600,2),(804,733917600,3),(804,752058000,2),(804,765367200,3),(804,783507600,2),(804,796816800,3),(804,814957200,2),(804,828871200,3),(804,846406800,2),(804,860320800,3),(804,877856400,2),(804,891770400,3),(804,909306000,2),(804,923220000,3),(804,941360400,2),(804,954669600,3),(804,972810000,2),(804,986119200,3),(804,1004259600,2),(804,1018173600,3),(804,1035709200,2),(804,1049623200,3),(804,1067158800,2),(804,1081072800,3),(804,1099213200,2),(804,1112522400,3),(804,1130662800,2),(804,1143972000,3),(804,1162112400,2),(804,1175421600,3),(804,1193562000,2),(804,1207476000,3),(804,1225011600,2),(804,1238925600,3),(804,1256461200,2),(804,1268560800,3),(804,1289120400,2),(804,1300010400,3),(804,1320570000,2),(804,1331460000,3),(804,1352019600,2),(804,1362909600,3),(804,1383469200,2),(804,1394359200,3),(804,1414918800,2),(804,1425808800,3),(804,1446368400,2),(804,1457863200,3),(804,1478422800,2),(804,1489312800,3),(804,1509872400,2),(804,1520762400,3),(804,1541322000,2),(804,1552212000,3),(804,1572771600,2),(804,1583661600,3),(804,1604221200,2),(804,1615716000,3),(804,1636275600,2),(804,1647165600,3),(804,1667725200,2),(804,1678615200,3),(804,1699174800,2),(804,1710064800,3),(804,1730624400,2),(804,1741514400,3),(804,1762074000,2),(804,1772964000,3),(804,1793523600,2),(804,1805018400,3),(804,1825578000,2),(804,1836468000,3),(804,1857027600,2),(804,1867917600,3),(804,1888477200,2),(804,1899367200,3),(804,1919926800,2),(804,1930816800,3),(804,1951376400,2),(804,1962871200,3),(804,1983430800,2),(804,1994320800,3),(804,2014880400,2),(804,2025770400,3),(804,2046330000,2),(804,2057220000,3),(804,2077779600,2),(804,2088669600,3),(804,2109229200,2),(804,2120119200,3),(804,2140678800,2),(805,-1632070800,0),(805,-1615140000,1),(805,-1601753400,0),(805,-1583697600,1),(805,-1567357200,0),(805,-1554667200,1),(805,-1534698000,0),(805,-1524074400,1),(805,-1503248400,0),(805,-1492365600,1),(805,-1471798800,0),(805,-1460916000,1),(805,-1440954000,0),(805,-1428861600,1),(805,-1409504400,0),(805,-1397412000,1),(805,-1378054800,0),(805,-1365962400,1),(805,-1346605200,0),(805,-1333908000,1),(805,-1315155600,0),(805,-1301853600,1),(805,-1283706000,0),(805,-1270404000,1),(805,-1252256400,0),(805,-1238954400,1),(805,-1220806800,0),(805,-1207504800,1),(805,-1188752400,0),(805,-1176055200,1),(805,-1157302800,0),(805,-1144000800,1),(805,-1125853200,0),(805,-1112551200,1),(805,-1094403600,0),(805,-1081101600,1),(805,-1062954000,0),(805,-1049652000,1),(805,-1031504400,0),(805,-1018202400,1),(805,-1000054800,0),(805,-986752800,1),(805,-968000400,0),(805,-955303200,1),(805,-936550800,0),(805,-880218000,2),(805,-769395600,3),(805,-765396000,1),(805,-747248400,0),(805,-733946400,1),(805,-715806000,0),(805,-702504000,1),(805,-684356400,0),(805,-671054400,1),(805,-652906800,0),(805,-634161600,1),(805,-620845200,0),(805,-602704800,1),(805,-589395600,0),(805,-576093600,1),(805,-557946000,0),(805,-544644000,1),(805,-526496400,0),(805,-513194400,1),(805,-495046800,0),(805,-481744800,1),(805,-463597200,0),(805,-450295200,1),(805,-431542800,0),(805,-418240800,1),(805,-400093200,0),(805,-384372000,1),(805,-368643600,0),(805,-352922400,1),(805,-337194000,0),(805,-321472800,1),(805,-305744400,0),(805,-289418400,1),(805,-273690000,0),(805,-257968800,1),(805,-242240400,0),(805,-226519200,1),(805,-210790800,0),(805,-195069600,1),(805,-179341200,0),(805,-163620000,1),(805,-147891600,0),(805,-131565600,1),(805,-116442000,0),(805,-100116000,1),(805,-84387600,0),(805,-68666400,1),(805,-52938000,0),(805,-37216800,1),(805,-21488400,0),(805,-5767200,1),(805,9961200,0),(805,25682400,1),(805,41410800,0),(805,57736800,1),(805,73465200,0),(805,89186400,1),(805,104914800,0),(805,120636000,1),(805,136364400,0),(805,152085600,1),(805,167814000,0),(805,183535200,1),(805,199263600,0),(805,215589600,1),(805,230713200,0),(805,247039200,1),(805,262767600,0),(805,278488800,1),(805,294217200,0),(805,309938400,1),(805,325666800,0),(805,341388000,1),(805,357116400,0),(805,372837600,1),(805,388566000,0),(805,404892000,1),(805,420015600,0),(805,436341600,1),(805,452070000,0),(805,467791200,1),(805,483519600,0),(805,499240800,1),(805,514969200,0),(805,530690400,1),(805,544604400,0),(805,562140000,1),(805,576054000,0),(805,594194400,1),(805,607503600,0),(805,625644000,1),(805,638953200,0),(805,657093600,1),(805,671007600,0),(805,688543200,1),(805,702457200,0),(805,719992800,1),(805,733906800,0),(805,752047200,1),(805,765356400,0),(805,783496800,1),(805,796806000,0),(805,814946400,1),(805,828860400,0),(805,846396000,1),(805,860310000,0),(805,877845600,1),(805,891759600,0),(805,909295200,1),(805,923209200,0),(805,941349600,1),(805,954658800,0),(805,972799200,1),(805,986108400,0),(805,1004248800,1),(805,1018162800,0),(805,1035698400,1),(805,1049612400,0),(805,1067148000,1),(805,1081062000,0),(805,1099202400,1),(805,1112511600,0),(805,1130652000,1),(805,1143961200,0),(805,1162101600,1),(805,1173596400,0),(805,1194156000,1),(805,1205046000,0),(805,1225605600,1),(805,1236495600,0),(805,1257055200,1),(805,1268550000,0),(805,1289109600,1),(805,1299999600,0),(805,1320559200,1),(805,1331449200,0),(805,1352008800,1),(805,1362898800,0),(805,1383458400,1),(805,1394348400,0),(805,1414908000,1),(805,1425798000,0),(805,1446357600,1),(805,1457852400,0),(805,1478412000,1),(805,1489302000,0),(805,1509861600,1),(805,1520751600,0),(805,1541311200,1),(805,1552201200,0),(805,1572760800,1),(805,1583650800,0),(805,1604210400,1),(805,1615705200,0),(805,1636264800,1),(805,1647154800,0),(805,1667714400,1),(805,1678604400,0),(805,1699164000,1),(805,1710054000,0),(805,1730613600,1),(805,1741503600,0),(805,1762063200,1),(805,1772953200,0),(805,1793512800,1),(805,1805007600,0),(805,1825567200,1),(805,1836457200,0),(805,1857016800,1),(805,1867906800,0),(805,1888466400,1),(805,1899356400,0),(805,1919916000,1),(805,1930806000,0),(805,1951365600,1),(805,1962860400,0),(805,1983420000,1),(805,1994310000,0),(805,2014869600,1),(805,2025759600,0),(805,2046319200,1),(805,2057209200,0),(805,2077768800,1),(805,2088658800,0),(805,2109218400,1),(805,2120108400,0),(805,2140668000,1),(806,-1825098836,1),(807,-1632060000,0),(807,-1615129200,1),(807,-880207200,2),(807,-769395600,3),(807,-765385200,1),(807,-747237600,0),(807,-732726000,1),(807,-715788000,0),(807,-702486000,1),(807,-684338400,0),(807,-671036400,1),(807,-652888800,0),(807,-639586800,1),(807,-620834400,0),(807,-608137200,1),(807,-589384800,0),(807,-576082800,1),(807,-557935200,0),(807,-544633200,1),(807,-526485600,0),(807,-513183600,1),(807,-495036000,0),(807,-481734000,1),(807,-463586400,0),(807,-450284400,1),(807,-431532000,0),(807,-418230000,1),(807,-400082400,0),(807,-386780400,1),(807,-368632800,0),(807,-355330800,1),(807,-337183200,0),(807,-323881200,1),(807,-305733600,0),(807,-292431600,1),(807,-273679200,0),(807,-260982000,1),(807,-242229600,0),(807,-226508400,1),(807,-210780000,0),(807,-195058800,1),(807,-179330400,0),(807,-163609200,1),(807,-147880800,0),(807,-131554800,1),(807,-116431200,0),(807,-100105200,1),(807,-84376800,0),(807,-68655600,1),(807,-52927200,0),(807,-37206000,1),(807,-21477600,0),(807,-5756400,1),(807,9972000,0),(807,25693200,1),(807,41421600,0),(807,57747600,1),(807,73476000,0),(807,89197200,1),(807,104925600,0),(807,120646800,1),(807,136375200,0),(807,152096400,1),(807,167824800,0),(807,183546000,1),(807,199274400,0),(807,215600400,1),(807,230724000,0),(807,247050000,1),(807,262778400,0),(807,278499600,1),(807,294228000,0),(807,309949200,1),(807,325677600,0),(807,341398800,1),(807,357127200,0),(807,372848400,1),(807,388576800,0),(807,404902800,1),(807,420026400,0),(807,436352400,1),(807,452080800,0),(807,467802000,1),(807,483530400,0),(807,499251600,1),(807,514980000,0),(807,530701200,1),(807,544615200,0),(807,562150800,1),(807,576064800,0),(807,594205200,1),(807,607514400,0),(807,625654800,1),(807,638964000,0),(807,657104400,1),(807,671018400,0),(807,688554000,1),(807,702468000,0),(807,720003600,1),(807,733917600,0),(807,752058000,1),(807,765367200,0),(807,783507600,1),(807,796816800,0),(807,814957200,1),(807,828871200,0),(807,846406800,1),(807,860320800,0),(807,877856400,1),(807,891770400,0),(807,909306000,1),(807,923220000,0),(807,941360400,1),(807,954669600,0),(807,972810000,1),(807,986119200,0),(807,1004259600,1),(807,1018173600,0),(807,1035709200,1),(807,1049623200,0),(807,1067158800,1),(807,1081072800,0),(807,1099213200,1),(807,1112522400,0),(807,1130662800,1),(807,1143972000,0),(807,1162112400,1),(807,1173607200,0),(807,1194166800,1),(807,1205056800,0),(807,1225616400,1),(807,1236506400,0),(807,1257066000,1),(807,1268560800,0),(807,1289120400,1),(807,1300010400,0),(807,1320570000,1),(807,1331460000,0),(807,1352019600,1),(807,1362909600,0),(807,1383469200,1),(807,1394359200,0),(807,1414918800,1),(807,1425808800,0),(807,1446368400,1),(807,1457863200,0),(807,1478422800,1),(807,1489312800,0),(807,1509872400,1),(807,1520762400,0),(807,1541322000,1),(807,1552212000,0),(807,1572771600,1),(807,1583661600,0),(807,1604221200,1),(807,1615716000,0),(807,1636275600,1),(807,1647165600,0),(807,1667725200,1),(807,1678615200,0),(807,1699174800,1),(807,1710064800,0),(807,1730624400,1),(807,1741514400,0),(807,1762074000,1),(807,1772964000,0),(807,1793523600,1),(807,1805018400,0),(807,1825578000,1),(807,1836468000,0),(807,1857027600,1),(807,1867917600,0),(807,1888477200,1),(807,1899367200,0),(807,1919926800,1),(807,1930816800,0),(807,1951376400,1),(807,1962871200,0),(807,1983430800,1),(807,1994320800,0),(807,2014880400,1),(807,2025770400,0),(807,2046330000,1),(807,2057220000,0),(807,2077779600,1),(807,2088669600,0),(807,2109229200,1),(807,2120119200,0),(807,2140678800,1),(808,-1825098836,1),(809,-1632056400,0),(809,-1615125600,1),(809,-1596978000,0),(809,-1583164800,1),(809,-880203600,2),(809,-769395600,3),(809,-765381600,1),(809,-147884400,4),(809,-131554800,1),(809,-81961200,5),(809,325677600,6),(809,341398800,5),(809,357127200,6),(809,372848400,5),(809,388576800,6),(809,404902800,5),(809,420026400,6),(809,436352400,5),(809,452080800,6),(809,467802000,5),(809,483530400,6),(809,499251600,5),(809,514980000,6),(809,530701200,5),(809,544615200,6),(809,562150800,5),(809,576064800,6),(809,594205200,5),(809,607514400,6),(809,625654800,5),(809,638964000,6),(809,657104400,5),(809,671018400,6),(809,688554000,5),(809,702468000,6),(809,720003600,5),(809,733917600,6),(809,752058000,5),(809,765367200,6),(809,783507600,5),(809,796816800,6),(809,814957200,5),(809,828871200,6),(809,846406800,5),(809,860320800,6),(809,877856400,5),(809,891770400,6),(809,909306000,5),(809,923220000,6),(809,941360400,5),(809,954669600,6),(809,972810000,5),(809,986119200,6),(809,1004259600,5),(809,1018173600,6),(809,1035709200,5),(809,1049623200,6),(809,1067158800,5),(809,1081072800,6),(809,1099213200,5),(809,1112522400,6),(809,1130662800,5),(809,1143972000,6),(809,1162112400,5),(809,1173607200,6),(809,1194166800,5),(809,1205056800,6),(809,1225616400,5),(809,1236506400,6),(809,1257066000,5),(809,1268560800,6),(809,1289120400,5),(809,1300010400,6),(809,1320570000,5),(809,1331460000,6),(809,1352019600,5),(809,1362909600,6),(809,1383469200,5),(809,1394359200,6),(809,1414918800,5),(809,1425808800,6),(809,1446368400,5),(809,1457863200,6),(809,1478422800,5),(809,1489312800,6),(809,1509872400,5),(809,1520762400,6),(809,1541322000,5),(809,1552212000,6),(809,1572771600,5),(809,1583661600,6),(809,1604221200,5),(809,1615716000,6),(809,1636275600,5),(809,1647165600,6),(809,1667725200,5),(809,1678615200,6),(809,1699174800,5),(809,1710064800,6),(809,1730624400,5),(809,1741514400,6),(809,1762074000,5),(809,1772964000,6),(809,1793523600,5),(809,1805018400,6),(809,1825578000,5),(809,1836468000,6),(809,1857027600,5),(809,1867917600,6),(809,1888477200,5),(809,1899367200,6),(809,1919926800,5),(809,1930816800,6),(809,1951376400,5),(809,1962871200,6),(809,1983430800,5),(809,1994320800,6),(809,2014880400,5),(809,2025770400,6),(809,2046330000,5),(809,2057220000,6),(809,2077779600,5),(809,2088669600,6),(809,2109229200,5),(809,2120119200,6),(809,2140678800,5),(810,-1694368800,0),(810,-1681671600,1),(810,-1632067200,0),(810,-1615136400,1),(810,-1029686400,0),(810,-1018198800,1),(810,-880214400,2),(810,-769395600,3),(810,-765392400,1),(810,-746035200,0),(810,-732733200,1),(810,-715795200,0),(810,-702493200,1),(810,-684345600,0),(810,-671043600,1),(810,-652896000,0),(810,-639594000,1),(810,-620755200,0),(810,-607626000,1),(810,-589392000,0),(810,-576090000,1),(810,-557942400,0),(810,-544640400,1),(810,-526492800,0),(810,-513190800,1),(810,-495043200,0),(810,-481741200,1),(810,-463593600,0),(810,-450291600,1),(810,-431539200,0),(810,-418237200,1),(810,-400089600,0),(810,-386787600,1),(810,-368640000,0),(810,-355338000,1),(810,-337190400,0),(810,-321469200,1),(810,-305740800,0),(810,-292438800,1),(810,-210787200,0),(810,-198090000,1),(810,-116438400,4),(810,-100108800,5),(810,-84384000,4),(810,-68659200,5),(810,-52934400,4),(810,-37209600,5),(810,-21484800,4),(810,-5760000,5),(810,9964800,4),(810,25689600,5),(810,41414400,4),(810,57744000,5),(810,73468800,4),(810,89193600,5),(810,104918400,4),(810,120643200,5),(810,136368000,4),(810,152092800,5),(810,167817600,4),(810,183542400,5),(810,199267200,4),(810,215596800,5),(810,230716800,4),(810,247046400,5),(810,262771200,4),(810,278496000,5),(810,294220800,4),(810,309945600,5),(810,325670400,4),(810,341395200,5),(810,357120000,4),(810,372844800,5),(810,388569600,4),(810,404899200,5),(810,420019200,4),(810,436348800,5),(810,452073600,4),(810,467798400,5),(810,483523200,4),(810,499248000,5),(810,514972800,4),(810,530697600,5),(810,544608000,4),(810,562147200,5),(810,576057600,4),(810,594201600,5),(810,607507200,4),(810,625651200,5),(810,638956800,4),(810,657100800,5),(810,671011200,4),(810,688550400,5),(810,702460800,4),(810,720000000,5),(810,733910400,4),(810,752054400,5),(810,765360000,4),(810,783504000,5),(810,796809600,4),(810,814953600,5),(810,828864000,4),(810,846403200,5),(810,860313600,4),(810,877852800,5),(810,891763200,4),(810,909302400,5),(810,923212800,4),(810,941356800,5),(810,954662400,4),(810,972806400,5),(810,986112000,4),(810,1004256000,5),(810,1018166400,4),(810,1035705600,5),(810,1049616000,4),(810,1067155200,5),(810,1081065600,4),(810,1099209600,5),(810,1112515200,4),(810,1130659200,5),(810,1136095200,1),(810,1143964800,0),(810,1162105200,1),(810,1173600000,0),(810,1194159600,1),(810,1205049600,0),(810,1225609200,1);
INSERT INTO `time_zone_transition` VALUES (810,1236499200,0),(810,1257058800,1),(810,1268553600,0),(810,1289113200,1),(810,1300003200,0),(810,1320562800,1),(810,1331452800,0),(810,1352012400,1),(810,1362902400,0),(810,1383462000,1),(810,1394352000,0),(810,1414911600,1),(810,1425801600,0),(810,1446361200,1),(810,1457856000,0),(810,1478415600,1),(810,1489305600,0),(810,1509865200,1),(810,1520755200,0),(810,1541314800,1),(810,1552204800,0),(810,1572764400,1),(810,1583654400,0),(810,1604214000,1),(810,1615708800,0),(810,1636268400,1),(810,1647158400,0),(810,1667718000,1),(810,1678608000,0),(810,1699167600,1),(810,1710057600,0),(810,1730617200,1),(810,1741507200,0),(810,1762066800,1),(810,1772956800,0),(810,1793516400,1),(810,1805011200,0),(810,1825570800,1),(810,1836460800,0),(810,1857020400,1),(810,1867910400,0),(810,1888470000,1),(810,1899360000,0),(810,1919919600,1),(810,1930809600,0),(810,1951369200,1),(810,1962864000,0),(810,1983423600,1),(810,1994313600,0),(810,2014873200,1),(810,2025763200,0),(810,2046322800,1),(810,2057212800,0),(810,2077772400,1),(810,2088662400,0),(810,2109222000,1),(810,2120112000,0),(810,2140671600,1),(811,-880203600,1),(811,-769395600,2),(811,-765381600,0),(811,-21474000,3),(811,-5752800,0),(811,9975600,3),(811,25696800,0),(811,41425200,3),(811,57751200,0),(811,73479600,3),(811,89200800,0),(811,104929200,3),(811,120650400,0),(811,126702000,3),(811,152100000,0),(811,162385200,3),(811,183549600,0),(811,199278000,3),(811,215604000,0),(811,230727600,3),(811,247053600,0),(811,262782000,3),(811,278503200,0),(811,294231600,3),(811,309952800,0),(811,325681200,3),(811,341402400,0),(811,357130800,3),(811,372852000,0),(811,388580400,3),(811,404906400,0),(811,420030000,3),(811,436356000,0),(811,439030800,5),(811,452084400,4),(811,467805600,5),(811,483534000,4),(811,499255200,5),(811,514983600,4),(811,530704800,5),(811,544618800,4),(811,562154400,5),(811,576068400,4),(811,594208800,5),(811,607518000,4),(811,625658400,5),(811,638967600,4),(811,657108000,5),(811,671022000,4),(811,688557600,5),(811,702471600,4),(811,720007200,5),(811,733921200,4),(811,752061600,5),(811,765370800,4),(811,783511200,5),(811,796820400,4),(811,814960800,5),(811,828874800,4),(811,846410400,5),(811,860324400,4),(811,877860000,5),(811,891774000,4),(811,909309600,5),(811,923223600,4),(811,941364000,5),(811,954673200,4),(811,972813600,5),(811,986122800,4),(811,1004263200,5),(811,1018177200,4),(811,1035712800,5),(811,1049626800,4),(811,1067162400,5),(811,1081076400,4),(811,1099216800,5),(811,1112526000,4),(811,1130666400,5),(811,1143975600,4),(811,1162116000,5),(811,1173610800,4),(811,1194170400,5),(811,1205060400,4),(811,1225620000,5),(811,1236510000,4),(811,1257069600,5),(811,1268564400,4),(811,1289124000,5),(811,1300014000,4),(811,1320573600,5),(811,1331463600,4),(811,1352023200,5),(811,1362913200,4),(811,1383472800,5),(811,1394362800,4),(811,1414922400,5),(811,1425812400,4),(811,1446372000,5),(811,1457866800,4),(811,1478426400,5),(811,1489316400,4),(811,1509876000,5),(811,1520766000,4),(811,1541325600,5),(811,1552215600,4),(811,1572775200,5),(811,1583665200,4),(811,1604224800,5),(811,1615719600,4),(811,1636279200,5),(811,1647169200,4),(811,1667728800,5),(811,1678618800,4),(811,1699178400,5),(811,1710068400,4),(811,1730628000,5),(811,1741518000,4),(811,1762077600,5),(811,1772967600,4),(811,1793527200,5),(811,1805022000,4),(811,1825581600,5),(811,1836471600,4),(811,1857031200,5),(811,1867921200,4),(811,1888480800,5),(811,1899370800,4),(811,1919930400,5),(811,1930820400,4),(811,1951380000,5),(811,1962874800,4),(811,1983434400,5),(811,1994324400,4),(811,2014884000,5),(811,2025774000,4),(811,2046333600,5),(811,2057223600,4),(811,2077783200,5),(811,2088673200,4),(811,2109232800,5),(811,2120122800,4),(811,2140682400,5),(812,-1104537600,3),(812,-880210800,1),(812,-769395600,2),(812,-765388800,3),(812,-147891600,4),(812,-131562000,3),(812,325674000,5),(812,341395200,3),(812,357123600,5),(812,372844800,3),(812,388573200,5),(812,404899200,3),(812,420022800,5),(812,436348800,3),(812,452077200,5),(812,467798400,3),(812,483526800,5),(812,499248000,3),(812,514976400,5),(812,530697600,3),(812,544611600,5),(812,562147200,3),(812,576061200,5),(812,594201600,3),(812,607510800,5),(812,625651200,3),(812,638960400,5),(812,657100800,3),(812,671014800,5),(812,688550400,3),(812,702464400,5),(812,720000000,3),(812,733914000,5),(812,752054400,3),(812,765363600,5),(812,783504000,3),(812,796813200,5),(812,814953600,3),(812,828867600,5),(812,846403200,3),(812,860317200,5),(812,877852800,3),(812,891766800,5),(812,909302400,3),(812,923216400,5),(812,941356800,3),(812,954666000,5),(812,972806400,3),(812,986115600,5),(812,1004256000,3),(812,1018170000,5),(812,1035705600,3),(812,1049619600,5),(812,1067155200,3),(812,1081069200,5),(812,1099209600,3),(812,1112518800,5),(812,1130659200,3),(812,1143968400,5),(812,1162108800,3),(812,1173603600,5),(812,1194163200,3),(812,1205053200,5),(812,1225612800,3),(812,1236502800,5),(812,1257062400,3),(812,1268557200,5),(812,1289116800,3),(812,1300006800,5),(812,1320566400,3),(812,1331456400,5),(812,1352016000,3),(812,1362906000,5),(812,1383465600,3),(812,1394355600,5),(812,1414915200,3),(812,1425805200,5),(812,1446364800,3),(812,1457859600,5),(812,1478419200,3),(812,1489309200,5),(812,1509868800,3),(812,1520758800,5),(812,1541318400,3),(812,1552208400,5),(812,1572768000,3),(812,1583658000,5),(812,1604217600,3),(812,1615712400,5),(812,1636272000,3),(812,1647162000,5),(812,1667721600,3),(812,1678611600,5),(812,1699171200,3),(812,1710061200,5),(812,1730620800,3),(812,1741510800,5),(812,1762070400,3),(812,1772960400,5),(812,1793520000,3),(812,1805014800,5),(812,1825574400,3),(812,1836464400,5),(812,1857024000,3),(812,1867914000,5),(812,1888473600,3),(812,1899363600,5),(812,1919923200,3),(812,1930813200,5),(812,1951372800,3),(812,1962867600,5),(812,1983427200,3),(812,1994317200,5),(812,2014876800,3),(812,2025766800,5),(812,2046326400,3),(812,2057216400,5),(812,2077776000,3),(812,2088666000,5),(812,2109225600,3),(812,2120115600,5),(812,2140675200,3),(813,-31536000,1),(813,1255802400,2),(813,1267714800,1),(813,1319738400,2),(813,1329843600,3),(813,1477065600,2),(813,1520701200,1),(814,-409190400,1),(814,-163062000,0),(814,-28857600,1),(814,1255806000,2),(814,1268251200,3),(814,1319742000,2),(814,1329854400,3),(815,-725846400,1),(815,-566992800,0),(815,-415497600,1),(816,-1680508800,1),(816,-1665392400,0),(816,-1601719200,2),(816,-687052800,0),(816,-71136000,3),(816,-55411200,4),(816,-37267200,3),(816,-25776000,4),(816,-5817600,3),(816,5673600,4),(816,25632000,3),(816,37728000,4),(816,57686400,3),(816,67968000,4),(816,89136000,3),(816,100022400,4),(816,120585600,3),(816,131472000,4),(816,152035200,3),(816,162921600,4),(816,183484800,3),(816,194976000,4),(816,215539200,3),(816,226425600,4),(816,246988800,3),(816,257875200,4),(816,278438400,3),(816,289324800,4),(816,309888000,3),(816,320774400,4),(816,341337600,3),(816,352224000,4),(816,372787200,3),(816,386092800,4),(816,404841600,3),(816,417542400,4),(816,436291200,3),(816,447177600,4),(816,467740800,3),(816,478627200,4),(816,499190400,3),(816,510076800,4),(816,530035200,3),(816,542736000,4),(816,562089600,3),(816,574790400,4),(816,594144000,3),(816,606240000,4),(816,625593600,3),(816,637689600,4),(816,657043200,3),(816,670348800,4),(816,686678400,3),(816,701798400,4),(816,718128000,3),(816,733248000,4),(816,749577600,3),(816,764697600,4),(816,781027200,3),(816,796147200,4),(816,812476800,3),(816,828201600,4),(816,844531200,3),(816,859651200,4),(816,875980800,3),(816,891100800,4),(816,907430400,3),(816,922550400,4),(816,938880000,3),(816,954000000,4),(816,967305600,3),(816,985449600,4),(816,1002384000,3),(816,1017504000,4),(816,1033833600,3),(816,1048953600,4),(816,1065283200,3),(816,1080403200,4),(816,1096732800,3),(816,1111852800,4),(816,1128182400,3),(816,1143907200,4),(816,1159632000,3),(816,1174752000,4),(816,1191686400,3),(816,1207411200,4),(816,1223136000,3),(816,1238860800,4),(816,1254585600,3),(816,1270310400,5),(817,-501206400,1),(817,1255809600,2),(818,-1330335000,0),(818,-1320057000,1),(818,-1300699800,2),(818,-1287396000,1),(818,-1269250200,2),(818,-1255946400,1),(818,-1237800600,2),(818,-1224496800,1),(818,-1206351000,2),(818,-1192442400,1),(818,-1174901400,2),(818,-1160992800,1),(818,-1143451800,2),(818,-1125914400,1),(818,-1112607000,2),(818,-1094464800,1),(818,-1081157400,2),(818,-1063015200,1),(818,-1049707800,2),(818,-1031565600,1),(818,-1018258200,2),(818,-1000116000,1),(818,-986808600,2),(818,-968061600,1),(818,-955359000,2),(818,-936612000,1),(818,-923304600,2),(818,-757425600,5),(818,152632800,3),(818,162309600,4),(818,183477600,3),(818,194968800,4),(818,215532000,3),(818,226418400,4),(818,246981600,3),(818,257868000,4),(818,278431200,3),(818,289317600,4),(818,309880800,3),(818,320767200,4),(818,341330400,3),(818,352216800,4),(818,372780000,3),(818,384271200,4),(818,404834400,3),(818,415720800,4),(818,436284000,3),(818,447170400,4),(818,467733600,3),(818,478620000,4),(818,499183200,3),(818,510069600,4),(818,530632800,3),(818,541519200,4),(818,562082400,3),(818,573573600,4),(818,594136800,3),(818,605023200,4),(818,623772000,3),(818,637682400,4),(818,655221600,3),(818,669132000,4),(818,686671200,3),(818,700581600,4),(818,718120800,3),(818,732636000,4),(818,749570400,3),(818,764085600,4),(818,781020000,3),(818,795535200,4),(818,812469600,3),(818,826984800,4),(818,844524000,3),(818,858434400,4),(818,875973600,3),(818,889884000,4),(818,907423200,3),(818,921938400,4),(818,938872800,3),(818,953388000,4),(818,970322400,3),(818,984837600,4),(818,1002376800,3),(818,1016287200,4),(818,1033826400,3),(818,1047736800,4),(818,1065276000,3),(818,1079791200,4),(818,1096725600,3),(818,1111240800,4),(818,1128175200,3),(818,1142690400,4),(818,1159624800,3),(818,1174140000,4),(818,1191074400,3),(818,1207404000,4),(818,1222524000,3),(818,1238853600,4),(818,1253973600,3),(818,1270303200,4),(818,1285423200,3),(818,1301752800,4),(818,1316872800,3),(818,1333202400,4),(818,1348927200,3),(818,1365256800,4),(818,1380376800,3),(818,1396706400,4),(818,1411826400,3),(818,1428156000,4),(818,1443276000,3),(818,1459605600,4),(818,1474725600,3),(818,1491055200,4),(818,1506175200,3),(818,1522504800,4),(818,1538229600,3),(818,1554559200,4),(818,1569679200,3),(818,1586008800,4),(818,1601128800,3),(818,1617458400,4),(818,1632578400,3),(818,1648908000,4),(818,1664028000,3),(818,1680357600,4),(818,1695477600,3),(818,1712412000,4),(818,1727532000,3),(818,1743861600,4),(818,1758981600,3),(818,1775311200,4),(818,1790431200,3),(818,1806760800,4),(818,1821880800,3),(818,1838210400,4),(818,1853330400,3),(818,1869660000,4),(818,1885384800,3),(818,1901714400,4),(818,1916834400,3),(818,1933164000,4),(818,1948284000,3),(818,1964613600,4),(818,1979733600,3),(818,1996063200,4),(818,2011183200,3),(818,2027512800,4),(818,2042632800,3),(818,2058962400,4),(818,2074687200,3),(818,2091016800,4),(818,2106136800,3),(818,2122466400,4),(818,2137586400,3),(819,-157766400,2),(819,-152658000,1),(819,-132955200,2),(819,-121122000,1),(819,-101419200,2),(819,-86821200,1),(819,-71092800,2),(819,-54766800,1),(819,-39038400,2),(819,-23317200,1),(819,-7588800,4),(819,128142000,3),(819,136605600,4),(819,389070000,1),(819,403070400,5),(819,416372400,6),(819,434520000,5),(819,447822000,6),(819,466574400,5),(819,479271600,6),(819,498024000,5),(819,510721200,6),(819,529473600,5),(819,545194800,6),(819,560923200,5),(819,574225200,6),(819,592372800,5),(819,605674800,6),(819,624427200,5),(819,637124400,6),(819,653457600,5),(819,668574000,6),(819,687326400,5),(819,700628400,6),(819,718776000,5),(819,732078000,6),(819,750225600,5),(819,763527600,6),(819,781675200,5),(819,794977200,6),(819,813729600,5),(819,826426800,6),(819,845179200,5),(819,859690800,6),(819,876628800,5),(819,889930800,6),(819,906868800,5),(819,923194800,6),(819,939528000,5),(819,952830000,6),(819,971582400,5),(819,984279600,6),(819,1003032000,5),(819,1015729200,6),(819,1034481600,5),(819,1047178800,6),(819,1065931200,5),(819,1079233200,6),(819,1097380800,5),(819,1110682800,6),(819,1128830400,5),(819,1142132400,6),(819,1160884800,5),(819,1173582000,6),(819,1192334400,5),(819,1206846000,6),(819,1223784000,5),(819,1237086000,6),(819,1255233600,5),(819,1270350000,6),(819,1286683200,5),(819,1304823600,6),(819,1313899200,5),(819,1335668400,6),(819,1346558400,5),(819,1367118000,6),(819,1378612800,5),(819,1398567600,6),(819,1410062400,5),(819,1463281200,6),(819,1471147200,5),(819,1480820400,4),(820,218246400,1),(821,-1330335000,0),(821,-1320057000,1),(821,-1300699800,2),(821,-1287396000,1),(821,-1269250200,2),(821,-1255946400,1),(821,-1237800600,2),(821,-1224496800,1),(821,-1206351000,2),(821,-1192442400,1),(821,-1174901400,2),(821,-1160992800,1),(821,-1143451800,2),(821,-1125914400,1),(821,-1112607000,2),(821,-1094464800,1),(821,-1081157400,2),(821,-1063015200,1),(821,-1049707800,2),(821,-1031565600,1),(821,-1018258200,2),(821,-1000116000,1),(821,-986808600,2),(821,-968061600,1),(821,-955359000,2),(821,-936612000,1),(821,-923304600,2),(821,-757425600,5),(821,152632800,3),(821,162309600,4),(821,183477600,3),(821,194968800,4),(821,215532000,3),(821,226418400,4),(821,246981600,3),(821,257868000,4),(821,278431200,3),(821,289317600,4),(821,309880800,3),(821,320767200,4),(821,341330400,3),(821,352216800,4),(821,372780000,3),(821,384271200,4),(821,404834400,3),(821,415720800,4),(821,436284000,3),(821,447170400,4),(821,467733600,3),(821,478620000,4),(821,499183200,3),(821,510069600,4),(821,530632800,3),(821,541519200,4),(821,562082400,3),(821,573573600,4),(821,594136800,3),(821,605023200,4),(821,623772000,3),(821,637682400,4),(821,655221600,3),(821,669132000,4),(821,686671200,3),(821,700581600,4),(821,718120800,3),(821,732636000,4),(821,749570400,3),(821,764085600,4),(821,781020000,3),(821,795535200,4),(821,812469600,3),(821,826984800,4),(821,844524000,3),(821,858434400,4),(821,875973600,3),(821,889884000,4),(821,907423200,3),(821,921938400,4),(821,938872800,3),(821,953388000,4),(821,970322400,3),(821,984837600,4),(821,1002376800,3),(821,1016287200,4),(821,1033826400,3),(821,1047736800,4),(821,1065276000,3),(821,1079791200,4),(821,1096725600,3),(821,1111240800,4),(821,1128175200,3),(821,1142690400,4),(821,1159624800,3),(821,1174140000,4),(821,1191074400,3),(821,1207404000,4),(821,1222524000,3),(821,1238853600,4),(821,1253973600,3),(821,1270303200,4),(821,1285423200,3),(821,1301752800,4),(821,1316872800,3),(821,1333202400,4),(821,1348927200,3),(821,1365256800,4),(821,1380376800,3),(821,1396706400,4),(821,1411826400,3),(821,1428156000,4),(821,1443276000,3),(821,1459605600,4),(821,1474725600,3),(821,1491055200,4),(821,1506175200,3),(821,1522504800,4),(821,1538229600,3),(821,1554559200,4),(821,1569679200,3),(821,1586008800,4),(821,1601128800,3),(821,1617458400,4),(821,1632578400,3),(821,1648908000,4),(821,1664028000,3),(821,1680357600,4),(821,1695477600,3),(821,1712412000,4),(821,1727532000,3),(821,1743861600,4),(821,1758981600,3),(821,1775311200,4),(821,1790431200,3),(821,1806760800,4),(821,1821880800,3),(821,1838210400,4),(821,1853330400,3),(821,1869660000,4),(821,1885384800,3),(821,1901714400,4),(821,1916834400,3),(821,1933164000,4),(821,1948284000,3),(821,1964613600,4),(821,1979733600,3),(821,1996063200,4),(821,2011183200,3),(821,2027512800,4),(821,2042632800,3),(821,2058962400,4),(821,2074687200,3),(821,2091016800,4),(821,2106136800,3),(821,2122466400,4),(821,2137586400,3),(822,-407808000,1),(823,1108166400,3),(823,1111885200,1),(823,1130634000,2),(823,1143334800,1),(823,1162083600,2),(823,1174784400,1),(823,1193533200,2),(823,1206838800,1),(823,1224982800,2),(823,1238288400,1),(823,1256432400,2),(823,1269738000,1),(823,1288486800,2),(823,1301187600,1),(823,1319936400,2),(823,1332637200,1),(823,1351386000,2),(823,1364691600,1),(823,1382835600,2),(823,1396141200,1),(823,1414285200,2),(823,1427590800,1),(823,1445734800,2),(823,1459040400,1),(823,1477789200,2),(823,1490490000,1),(823,1509238800,2),(823,1521939600,1),(823,1540688400,2),(823,1553994000,1),(823,1572138000,2),(823,1585443600,1),(823,1603587600,2),(823,1616893200,1),(823,1635642000,2),(823,1648342800,1),(823,1667091600,2),(823,1679792400,1),(823,1698541200,2),(823,1711846800,1),(823,1729990800,2),(823,1743296400,1),(823,1761440400,2),(823,1774746000,1),(823,1792890000,2),(823,1806195600,1),(823,1824944400,2),(823,1837645200,1),(823,1856394000,2),(823,1869094800,1),(823,1887843600,2),(823,1901149200,1),(823,1919293200,2),(823,1932598800,1),(823,1950742800,2),(823,1964048400,1),(823,1982797200,2),(823,1995498000,1),(823,2014246800,2),(823,2026947600,1),(823,2045696400,2),(823,2058397200,1),(823,2077146000,2),(823,2090451600,1),(823,2108595600,2),(823,2121901200,1),(823,2140045200,2),(824,-380073600,1),(825,-1691884800,0),(825,-1680573600,1),(825,-927511200,0),(825,-857257200,2),(825,-844556400,3),(825,-828226800,2),(825,-812502000,3),(825,-796777200,2),(825,-781052400,3),(825,-765327600,2),(825,-340844400,3),(825,-324514800,2),(825,-308790000,3),(825,-293065200,2),(825,-277340400,3),(825,-261615600,2),(825,-245890800,3),(825,-230166000,2),(825,-214441200,3),(825,-198716400,2),(825,-182991600,3),(825,-166662000,2),(825,-147913200,3),(825,-135212400,2),(825,315529200,1),(825,323830800,4),(825,338950800,5),(825,354675600,4),(825,370400400,5),(825,386125200,4),(825,401850000,5),(825,417574800,4),(825,433299600,5),(825,449024400,4),(825,465354000,5),(825,481078800,4),(825,496803600,5),(825,512528400,4),(825,528253200,5),(825,543978000,4),(825,559702800,5),(825,575427600,4),(825,591152400,5),(825,606877200,4),(825,622602000,5),(825,638326800,4),(825,654656400,5),(825,670381200,4),(825,686106000,5),(825,701830800,4),(825,717555600,5),(825,733280400,4),(825,749005200,5),(825,764730000,4),(825,780454800,5),(825,796179600,4),(825,811904400,5),(825,828234000,4),(825,846378000,5),(825,859683600,4),(825,877827600,5),(825,891133200,4),(825,909277200,5),(825,922582800,4),(825,941331600,5),(825,954032400,4),(825,972781200,5),(825,985482000,4),(825,1004230800,5),(825,1017536400,4),(825,1035680400,5),(825,1048986000,4),(825,1067130000,5),(825,1080435600,4),(825,1099184400,5),(825,1111885200,4),(825,1130634000,5),(825,1143334800,4),(825,1162083600,5),(825,1174784400,4),(825,1193533200,5),(825,1206838800,4),(825,1224982800,5),(825,1238288400,4),(825,1256432400,5),(825,1269738000,4),(825,1288486800,5),(825,1301187600,4),(825,1319936400,5),(825,1332637200,4),(825,1351386000,5),(825,1364691600,4),(825,1382835600,5),(825,1396141200,4),(825,1414285200,5),(825,1427590800,4),(825,1445734800,5),(825,1459040400,4),(825,1477789200,5),(825,1490490000,4),(825,1509238800,5),(825,1521939600,4),(825,1540688400,5),(825,1553994000,4),(825,1572138000,5),(825,1585443600,4),(825,1603587600,5),(825,1616893200,4),(825,1635642000,5),(825,1648342800,4),(825,1667091600,5),(825,1679792400,4),(825,1698541200,5),(825,1711846800,4),(825,1729990800,5),(825,1743296400,4),(825,1761440400,5),(825,1774746000,4),(825,1792890000,5),(825,1806195600,4),(825,1824944400,5),(825,1837645200,4),(825,1856394000,5),(825,1869094800,4),(825,1887843600,5),(825,1901149200,4),(825,1919293200,5),(825,1932598800,4),(825,1950742800,5),(825,1964048400,4),(825,1982797200,5),(825,1995498000,4),(825,2014246800,5),(825,2026947600,4),(825,2045696400,5),(825,2058397200,4),(825,2077146000,5),(825,2090451600,4),(825,2108595600,5),(825,2121901200,4),(825,2140045200,5),(826,-719636812,1),(827,-1441170468,1),(827,-1247547600,3),(827,354909600,2),(827,370717200,3),(827,386445600,2),(827,402253200,3),(827,417981600,2),(827,433789200,3),(827,449604000,2),(827,465336000,4),(827,481060800,5),(827,496785600,4),(827,512510400,5),(827,528235200,4),(827,543960000,5),(827,559684800,4),(827,575409600,5),(827,591134400,4),(827,606859200,5),(827,622584000,4),(827,638308800,5),(827,654638400,4),(827,670363200,6),(827,686091600,7),(827,695768400,4),(827,701812800,5),(827,717537600,4),(827,733262400,5),(827,748987200,4),(827,764712000,5),(827,780436800,4),(827,796161600,5),(827,811886400,4),(827,828216000,5),(827,846360000,4),(827,859665600,5),(827,877809600,4),(827,891115200,5),(827,909259200,4),(827,922564800,5),(827,941313600,4),(827,954014400,5),(827,972763200,4),(827,985464000,5),(827,1004212800,4),(827,1017518400,5),(827,1035662400,4),(827,1048968000,5),(827,1067112000,4),(827,1080417600,5),(827,1099166400,4),(828,-1230776624,2),(828,108165600,1),(828,118270800,2),(828,136591200,1),(828,149806800,2),(828,168127200,1),(828,181342800,2),(828,199749600,1),(828,215643600,2),(828,231285600,1),(828,244501200,2),(828,262735200,1),(828,275950800,2),(828,481154400,1),(828,496962000,2),(828,512949600,1),(828,528670800,2),(828,544399200,1),(828,560120400,2),(828,575848800,1),(828,592174800,2),(828,610581600,1),(828,623624400,2),(828,641167200,1),(828,655074000,2),(828,671839200,1),(828,685918800,2),(828,702856800,1),(828,717973200,2),(828,733701600,1),(828,749422800,2),(828,765151200,1),(828,779662800,2),(828,797205600,1),(828,811116000,3),(828,828655200,1),(828,843170400,3),(828,860104800,1),(828,874620000,3),(828,891554400,1),(828,906069600,3),(828,930780000,4),(828,938124000,3),(828,954367200,4),(828,970178400,3),(828,985816800,4),(828,1001628000,3),(828,1017352800,1),(828,1033077600,3),(828,1048802400,1),(828,1066946400,3),(828,1080252000,1),(828,1097791200,3),(828,1112306400,1),(828,1128031200,3),(828,1143756000,1),(828,1161900000,3),(828,1175205600,1),(828,1193349600,3),(828,1206655200,1),(828,1225404000,3),(828,1238104800,1),(828,1256853600,3),(828,1269554400,1),(828,1288303200,3),(828,1301608800,1),(828,1319752800,3),(828,1333058400,1),(828,1387486800,2),(828,1395957600,1),(828,1414706400,3),(828,1427407200,1),(828,1446156000,3),(828,1459461600,1),(828,1477605600,3),(828,1490911200,1),(828,1509055200,3),(828,1522360800,1),(828,1540504800,3),(828,1553810400,1),(828,1571954400,3),(828,1585260000,1),(828,1604008800,3),(828,1616709600,1),(828,1635458400,3),(828,1648764000,1),(828,1666908000,3),(828,1680213600,1),(828,1698357600,3),(828,1711663200,1),(828,1729807200,3),(828,1743112800,1),(828,1761861600,3),(828,1774562400,1),(828,1793311200,3),(828,1806012000,1),(828,1824760800,3),(828,1838066400,1),(828,1856210400,3),(828,1869516000,1),(828,1887660000,3),(828,1900965600,1),(828,1919109600,3),(828,1932415200,1),(828,1951164000,3),(828,1963864800,1),(828,1982613600,3),(828,1995919200,1),(828,2014063200,3),(828,2027368800,1),(828,2045512800,3),(828,2058818400,1),(828,2076962400,3),(828,2090268000,1),(828,2109016800,3),(828,2121717600,1),(828,2140466400,3),(829,-1441194596,1),(829,-1247572800,3),(829,354884400,2),(829,370692000,3),(829,386420400,4),(829,402231600,1),(829,417960000,4),(829,433767600,1),(829,449582400,4),(829,465314400,5),(829,481039200,6),(829,496764000,5),(829,512488800,6),(829,528213600,5),(829,543938400,6),(829,559663200,5),(829,575388000,6),(829,591112800,5),(829,606837600,6),(829,622562400,5),(829,638287200,6),(829,654616800,5),(829,670341600,7),(829,686070000,8),(829,695746800,5),(829,701791200,6),(829,717516000,5),(829,733240800,6),(829,748965600,5),(829,764690400,6),(829,780415200,5),(829,796140000,6),(829,811864800,5),(829,828194400,6),(829,846338400,5),(829,859644000,6),(829,877788000,5),(829,891093600,6),(829,909237600,5),(829,922543200,6),(829,941292000,5),(829,953992800,6),(829,972741600,5),(829,985442400,6),(829,1004191200,5),(829,1017496800,6),(829,1035640800,5),(829,1048946400,6),(829,1067090400,5),(829,1080396000,6),(829,1099144800,5),(829,1111845600,6),(829,1130594400,5),(829,1143295200,6),(829,1162044000,5),(829,1174744800,6),(829,1193493600,5),(829,1206799200,6),(829,1224943200,5),(829,1238248800,6),(829,1256392800,5),(829,1269698400,7),(829,1288450800,8),(829,1301151600,5),(830,-1441164064,1),(830,-1247544000,2),(830,370724400,3),(830,386445600,4),(830,402256800,2),(830,417985200,4),(830,433792800,2),(830,449607600,4),(830,465339600,5),(830,481064400,6),(830,496789200,5),(830,512514000,6),(830,528238800,5),(830,543963600,6),(830,559688400,5),(830,575413200,6),(830,591138000,5),(830,606862800,6),(830,622587600,5),(830,638312400,6),(830,654642000,5),(830,670366800,7),(830,686095200,8),(830,695772000,5),(830,701816400,6),(830,717541200,5),(830,733266000,6),(830,748990800,5),(830,764715600,6),(830,780440400,8),(830,796168800,7),(830,811893600,8),(830,828223200,7),(830,846367200,8),(830,859672800,7),(830,877816800,8),(830,891122400,7),(830,909266400,8),(830,922572000,7),(830,941320800,8),(830,954021600,7),(830,972770400,8),(830,985471200,7),(830,1004220000,8),(830,1017525600,7),(830,1035669600,8),(830,1048975200,7),(830,1067119200,8),(830,1080424800,7),(830,1099173600,5),(831,-1441165720,1),(831,-1247544000,2),(831,354913200,3),(831,370720800,4),(831,386445600,3),(831,402256800,2),(831,417985200,3),(831,433792800,2),(831,449607600,3),(831,465339600,5),(831,481064400,6),(831,496789200,5),(831,512514000,6),(831,528238800,5),(831,543963600,6),(831,559688400,5),(831,575413200,6),(831,591138000,5),(831,606862800,6),(831,622587600,5),(831,638312400,6),(831,654642000,5),(831,670366800,7),(831,686095200,8),(831,695772000,5),(831,701816400,6),(831,717541200,5),(831,733266000,6),(831,748990800,5),(831,764715600,6),(831,780440400,5),(831,796165200,6),(831,811890000,5),(831,828219600,6),(831,846363600,5),(831,859669200,6),(831,877813200,5),(831,891118800,6),(831,909262800,5),(831,922568400,6),(831,941317200,5),(831,954018000,6),(831,972766800,5),(831,985467600,6),(831,1004216400,5),(831,1017522000,6),(831,1035666000,5),(831,1048971600,6),(831,1067115600,5),(831,1080421200,6),(831,1099170000,5),(832,-1441166012,1),(832,-1247544000,3),(832,354913200,2),(832,370720800,3),(832,386449200,2),(832,402256800,3),(832,417985200,2),(832,433792800,3),(832,449607600,2),(832,465339600,4),(832,481064400,5),(832,496789200,4),(832,512514000,5),(832,528238800,4),(832,543963600,5),(832,559688400,4),(832,575413200,5),(832,591138000,4),(832,606862800,5),(832,622587600,4),(832,638312400,5),(832,654642000,4),(832,670366800,6),(832,686095200,7),(832,695772000,3),(833,-1441166012,1),(833,-1247544000,3),(833,354913200,2),(833,370720800,3),(833,386449200,2),(833,402256800,3),(833,417985200,2),(833,433792800,3),(833,449607600,2),(833,465339600,4),(833,481064400,5),(833,496789200,4),(833,512514000,5),(833,528238800,4),(833,543963600,5),(833,559688400,4),(833,575413200,5),(833,591138000,4),(833,606862800,5),(833,622587600,4),(833,638312400,5),(833,654642000,4),(833,670366800,6),(833,686095200,7),(833,695772000,3),(834,-1441164464,1),(834,-1247540400,2),(834,370724400,3),(834,386445600,4),(834,402256800,2),(834,417985200,4),(834,433792800,2),(834,449607600,4),(834,465339600,5),(834,481064400,6),(834,496789200,5),(834,512514000,6),(834,528238800,5),(834,543963600,6),(834,559688400,5),(834,575413200,6),(834,591138000,5),(834,606862800,6),(834,622587600,5),(834,638312400,6),(834,654642000,5),(834,670366800,7),(834,686095200,8),(834,695772000,5),(834,701816400,6),(834,717541200,5),(834,733266000,6),(834,748990800,5),(834,764715600,6),(834,780440400,5),(834,796165200,6),(834,811890000,5),(834,828219600,6),(834,846363600,5),(834,859669200,6),(834,877813200,5),(834,891118800,6),(834,909262800,5),(834,922568400,7),(834,941320800,8),(834,954021600,7),(834,972770400,8),(834,985471200,7),(834,1004220000,8),(834,1017525600,7),(834,1035669600,8),(834,1048975200,7),(834,1067119200,8),(834,1080424800,7),(834,1099173600,5),(835,-1641005856,1),(835,389048400,2),(835,402264000,1),(835,417906000,2),(835,433800000,1),(835,449614800,2),(835,465422400,1),(835,481150800,2),(835,496792800,3),(835,512517600,4),(835,528242400,3),(835,543967200,4),(835,559692000,3),(835,575416800,4),(835,591141600,3),(835,606866400,4),(835,622591200,3),(835,638316000,4),(835,654645600,3),(835,670464000,4),(835,686275200,3),(835,702086400,4),(835,717897600,3),(835,733622400,4),(835,749433600,3),(835,765158400,4),(835,780969600,3),(835,796694400,4),(835,812505600,3),(835,828316800,4),(835,844128000,3),(835,859852800,4),(835,875664000,3),(835,891388800,4),(835,907200000,3),(835,922924800,4),(835,938736000,3),(835,954547200,4),(835,970358400,3),(835,986083200,4),(835,1001894400,3),(835,1017619200,4),(835,1033430400,3),(835,1049155200,4),(835,1064966400,3),(835,1080777600,4),(835,1096588800,3),(835,1112313600,4),(835,1128124800,3),(835,1143849600,4),(835,1159660800,3),(835,1175385600,4),(835,1191196800,3),(836,-1577935568,1),(836,76190400,2),(837,-1441163964,1),(837,-405140400,3),(837,354916800,2),(837,370724400,3),(837,386452800,2),(837,402260400,3),(837,417988800,2),(837,433796400,3),(837,449611200,2),(837,465343200,4),(837,481068000,5),(837,496792800,4),(837,512517600,5),(837,528242400,4),(837,543967200,5),(837,559692000,4),(837,575416800,5),(837,591141600,4),(837,606866400,5),(837,622591200,4),(837,638316000,5),(837,654645600,4),(837,670370400,6),(837,686098800,7),(837,701823600,6),(837,717548400,4),(837,820440000,3),(837,828234000,8),(837,846378000,9),(837,852062400,3),(837,859680000,2),(837,877824000,3),(837,891129600,2),(837,909273600,3),(837,922579200,2),(837,941328000,3),(837,954028800,2),(837,972777600,3),(837,985478400,2),(837,1004227200,3),(837,1017532800,2),(837,1035676800,3),(837,1048982400,2),(837,1067126400,3),(837,1080432000,2),(837,1099180800,3),(837,1111881600,2),(837,1130630400,3),(837,1143331200,2),(837,1162080000,3),(837,1174780800,2),(837,1193529600,3),(837,1206835200,2),(837,1224979200,3),(837,1238284800,2),(837,1256428800,3),(837,1269734400,2),(837,1288483200,3),(837,1301184000,2),(837,1319932800,3),(837,1332633600,2),(837,1351382400,3),(837,1364688000,2),(837,1382832000,3),(837,1396137600,2),(837,1414281600,3),(837,1427587200,2),(837,1445731200,3),(838,-1570084924,1),(839,-1579844100,1),(839,-1247551200,3),(839,354906000,2),(839,370713600,3),(839,386442000,2),(839,402249600,3),(839,417978000,2),(839,433785600,3),(839,449600400,2),(839,465332400,4),(839,481057200,5),(839,496782000,4),(839,512506800,5),(839,528231600,4),(839,543956400,5),(839,559681200,4),(839,575406000,5),(839,591130800,4),(839,606855600,5),(839,622580400,4),(839,638305200,5),(839,654634800,4),(839,670359600,6),(839,686088000,7),(839,695764800,4),(839,701809200,5),(839,717534000,4),(839,733258800,5),(839,748983600,4),(839,764708400,5),(839,780433200,4),(839,796158000,5),(839,801590400,8),(839,811886400,7),(839,828216000,6),(839,846360000,7),(839,859665600,6),(839,877809600,7),(839,891115200,6),(839,909259200,7),(839,922564800,6),(839,941313600,7),(839,954014400,6),(839,972763200,7),(839,985464000,6),(839,1004212800,7),(839,1017518400,6),(839,1035662400,7),(839,1048968000,6),(839,1067112000,7),(839,1080417600,6),(839,1099166400,7),(839,1111867200,6),(839,1130616000,7),(839,1143316800,6),(839,1162065600,7),(839,1174766400,6),(839,1193515200,7),(839,1206820800,6),(839,1224964800,7),(839,1238270400,6),(839,1256414400,7),(839,1269720000,6),(839,1288468800,7),(839,1301169600,4),(839,1414263600,7),(839,1459022400,4),(840,-1570413600,0),(840,-1552186800,1),(840,-1538359200,0),(840,-1522551600,1),(840,-1507514400,0),(840,-1490583600,1),(840,-1473645600,0),(840,-1460948400,1),(840,-399866400,0),(840,-386650800,1),(840,-368330400,0),(840,-355114800,1),(840,-336794400,0),(840,-323578800,1),(840,-305172000,0),(840,-291956400,1),(840,-273636000,0),(840,-260420400,1),(840,78012000,0),(840,86734800,1),(840,105055200,0),(840,118270800,1),(840,136591200,0),(840,149806800,1),(840,168127200,0),(840,181342800,1),(840,199749600,0),(840,212965200,1),(840,231285600,0),(840,244501200,1),(840,262735200,0),(840,275950800,1),(840,452210400,0),(840,466722000,1),(840,483746400,0),(840,498258000,1),(840,515282400,0),(840,529794000,1),(840,546818400,0),(840,561330000,1),(840,581119200,0),(840,592952400,1),(840,610754400,0),(840,624488400,1),(840,641512800,0),(840,656024400,1),(840,673048800,0),(840,687560400,1),(840,704671200,0),(840,718146000,1),(840,733269600,0),(840,748990800,1),(840,764719200,0),(840,780440400,1),(840,796168800,0),(840,811890000,1),(840,828223200,0),(840,843944400,1),(840,859672800,0),(840,875394000,1),(840,891122400,0),(840,906843600,1),(840,922572000,0),(840,941317200,1),(840,954021600,0),(840,972766800,1),(840,985471200,0),(840,1004216400,1),(840,1017525600,0),(840,1035666000,1),(840,1048975200,0),(840,1067115600,1),(840,1080424800,0),(840,1099170000,1),(840,1111874400,0),(840,1130619600,1),(840,1143324000,0),(840,1162069200,1),(840,1174773600,0),(840,1193518800,1),(840,1206828000,0),(840,1224968400,1),(840,1238277600,0),(840,1256418000,1),(840,1269727200,0),(840,1288472400,1),(840,1301176800,0),(840,1319922000,1),(840,1332626400,0),(840,1351371600,1),(840,1364680800,0),(840,1382821200,1),(840,1396130400,0),(840,1414270800,1),(840,1427580000,0),(840,1445720400,1),(840,1459029600,0),(840,1477774800,1),(840,1490479200,0),(840,1509224400,1),(840,1521928800,0),(840,1540674000,1),(840,1553983200,0),(840,1572123600,1),(840,1585432800,0),(840,1603573200,1),(840,1616882400,0),(840,1635627600,1),(840,1648332000,0),(840,1667077200,1),(840,1679781600,0),(840,1698526800,1),(840,1711836000,0),(840,1729976400,1),(840,1743285600,0),(840,1761426000,1),(840,1774735200,0),(840,1792875600,1),(840,1806184800,0),(840,1824930000,1),(840,1837634400,0),(840,1856379600,1),(840,1869084000,0),(840,1887829200,1),(840,1901138400,0),(840,1919278800,1),(840,1932588000,0),(840,1950728400,1),(840,1964037600,0),(840,1982782800,1),(840,1995487200,0),(840,2014232400,1),(840,2026936800,0),(840,2045682000,1),(840,2058386400,0),(840,2077131600,1),(840,2090440800,0),(840,2108581200,1),(840,2121890400,0),(840,2140030800,1),(841,-1441169904,1),(841,-1247547600,3),(841,354909600,2),(841,370717200,3),(841,386445600,2),(841,402253200,3),(841,417981600,2),(841,433789200,3),(841,449604000,2),(841,465336000,4),(841,481060800,5),(841,496785600,4),(841,512510400,5),(841,528235200,4),(841,543960000,5),(841,559684800,4),(841,575409600,5),(841,591134400,4),(841,606859200,5),(841,622584000,4),(841,638308800,5),(841,654638400,4),(841,670363200,6),(841,683582400,1),(841,703018800,6),(841,717530400,1),(841,734468400,6),(841,748980000,1),(841,765918000,6),(841,780429600,1),(841,797367600,6),(841,811879200,1),(841,828817200,6),(841,843933600,1),(841,859671000,8),(841,877811400,1),(841,891120600,8),(841,909261000,1),(841,922570200,8),(841,941315400,1),(841,954019800,8),(841,972765000,1),(841,985469400,8),(841,1004214600,1),(841,1017523800,8),(841,1035664200,1),(841,1048973400,8),(841,1067113800,1),(841,1080423000,8),(841,1099168200,1),(841,1111872600,8),(841,1123783200,3),(842,-1383464380,1),(842,-1167636600,2),(843,-2019705670,1),(843,-891581400,2),(843,-872058600,1),(843,-862637400,2),(843,-764145000,1),(844,-1579419232,1),(844,-1247558400,3),(844,354898800,2),(844,370706400,3),(844,386434800,2),(844,402242400,3),(844,417970800,2),(844,433778400,3),(844,449593200,2),(844,465325200,4),(844,481050000,5),(844,496774800,4),(844,512499600,5),(844,528224400,4),(844,543949200,5),(844,559674000,4),(844,575398800,5),(844,591123600,4),(844,606848400,5),(844,622573200,4),(844,638298000,5),(844,654627600,4),(844,670352400,6),(844,686080800,7),(844,695757600,4),(844,701802000,5),(844,717526800,4),(844,733251600,5),(844,748976400,4),(844,764701200,5),(844,780426000,4),(844,796150800,5),(844,811875600,4),(844,828205200,5),(844,846349200,4),(844,859654800,5),(844,877798800,4),(844,891104400,5),(844,909248400,4),(844,922554000,5),(844,941302800,4),(844,954003600,5),(844,972752400,4),(844,985453200,5),(844,1004202000,4),(844,1017507600,5),(844,1035651600,4),(844,1048957200,5),(844,1067101200,4),(844,1080406800,5),(844,1099155600,4),(844,1111856400,5),(844,1130605200,4),(844,1143306000,5),(844,1162054800,4),(844,1174755600,5),(844,1193504400,4),(844,1206810000,5),(844,1224954000,4),(844,1238259600,5),(844,1256403600,4),(844,1269709200,5),(844,1288458000,4),(844,1301158800,8),(844,1414252800,7),(844,1459015200,3),(845,-2032933080,1),(845,252435600,2),(845,417974400,4),(845,433778400,3),(845,449593200,4),(845,465314400,3),(845,481042800,4),(845,496764000,3),(845,512492400,4),(845,528213600,3),(845,543942000,4),(845,559663200,3),(845,575391600,4),(845,591112800,3),(845,606841200,4),(845,622562400,3),(845,638290800,4),(845,654616800,3),(845,670345200,4),(845,686066400,3),(845,701794800,4),(845,717516000,3),(845,733244400,4),(845,748965600,3),(845,764694000,4),(845,780415200,3),(845,796143600,4),(845,811864800,3),(845,828198000,4),(845,843919200,3),(845,859647600,4),(845,875368800,3),(845,891097200,4),(845,906818400,3),(845,988390800,4),(845,1001692800,3),(845,1017421200,4),(845,1033142400,3),(845,1048870800,4),(845,1064592000,3),(845,1080320400,4),(845,1096041600,3),(845,1111770000,4),(845,1127491200,3),(845,1143219600,4),(845,1159545600,3),(845,1206889200,2),(845,1427479200,5),(845,1443193200,2),(845,1458928800,5),(845,1474642800,2),(846,-933494400,0),(846,-923130000,1),(846,-908784000,0),(846,-891594000,1),(846,515520000,0),(846,527007600,1),(846,545155200,0),(846,558457200,1),(846,576604800,0),(846,589906800,1),(846,608659200,0),(846,621961200,1),(846,640108800,0),(846,653410800,1),(846,671558400,0),(846,684860400,1),(847,-933494400,0),(847,-923130000,1),(847,-908784000,0),(847,-891594000,1),(847,515520000,0),(847,527007600,1),(847,545155200,0),(847,558457200,1),(847,576604800,0),(847,589906800,1),(847,608659200,0),(847,621961200,1),(847,640108800,0),(847,653410800,1),(847,671558400,0),(847,684860400,1),(848,-2019705572,1),(848,-883287000,2),(848,-862639200,3),(848,-764051400,1),(848,832962600,4),(848,846266400,5),(848,1145039400,1),(849,-891582800,1),(849,-872058600,2),(849,-862637400,1),(849,-576138600,3),(849,1245430800,4),(849,1262278800,3),(850,-1577931912,2),(850,-1568592000,1),(850,-1554080400,2),(850,-1537142400,1),(850,-1522630800,2),(850,-1505692800,1),(850,-1491181200,2),(850,-1474243200,1),(850,-1459126800,2),(850,-242265600,1),(850,-228877200,2),(850,-210556800,1),(850,-197427600,2),(850,-178934400,1),(850,-165718800,2),(850,-147398400,1),(850,-134269200,2),(850,-116467200,1),(850,-102646800,2),(850,-84326400,1),(850,-71110800,2),(850,-52704000,1),(850,-39488400,2),(850,-21168000,1),(850,-7952400,2),(850,10368000,1),(850,23583600,2),(850,41904000,1),(850,55119600,2),(850,73526400,1),(850,86742000,2),(850,105062400,1),(850,118278000,2),(850,136598400,1),(850,149814000,2),(850,168134400,1),(850,181350000,2),(850,199756800,1),(850,212972400,2),(850,231292800,1),(850,241916400,2),(850,262828800,1),(850,273452400,2),(850,418694400,1),(850,433810800,2),(850,450316800,1),(850,465433200,2),(850,508896000,1),(850,529196400,2),(850,541555200,1),(850,562633200,2),(850,574387200,1),(850,594255600,2),(850,607305600,1),(850,623199600,2),(850,638928000,1),(850,654649200,2),(850,670456800,1),(850,686264400,2),(850,702684000,1),(850,717886800,2),(850,733096800,1),(850,748904400,2),(850,765151200,1),(850,780958800,2),(850,796687200,1),(850,812494800,2),(850,828309600,1),(850,844117200,2),(850,859759200,1),(850,875653200,2),(850,891208800,1),(850,907189200,2),(850,922917600,1),(850,938725200,2),(850,954540000,1),(850,970347600,2),(850,986076000,1),(850,1001883600,2),(850,1017612000,1),(850,1033419600,2),(850,1049148000,1),(850,1064955600,2),(850,1080770400,1),(850,1096578000,2),(850,1112306400,1),(850,1128114000,2),(850,1143842400,1),(850,1158872400,2),(850,1175205600,1),(850,1193950800,2),(850,1207260000,1),(850,1225486800,2),(850,1238104800,1),(850,1256850000,2),(850,1270159200,1),(850,1288299600,2),(850,1301608800,1),(850,1319749200,2),(850,1333058400,1),(850,1351198800,2),(850,1364508000,1),(850,1382648400,2),(850,1395957600,1),(850,1414702800,2),(850,1427407200,1),(850,1446152400,2),(850,1458856800,1),(850,1477602000,2),(850,1490911200,1),(850,1509051600,2),(850,1522360800,1),(850,1540501200,2),(850,1553810400,1),(850,1571950800,2),(850,1585260000,1),(850,1604005200,2),(850,1616709600,1),(850,1635454800,2),(850,1648159200,1),(850,1666904400,2),(850,1680213600,1),(850,1698354000,2),(850,1711663200,1),(850,1729803600,2),(850,1743112800,1),(850,1761858000,2),(850,1774562400,1),(850,1793307600,2),(850,1806012000,1),(850,1824757200,2),(850,1838066400,1),(850,1856206800,2),(850,1869516000,1),(850,1887656400,2),(850,1900965600,1),(850,1919106000,2),(850,1932415200,1),(850,1951160400,2),(850,1963864800,1),(850,1982610000,2),(850,1995314400,1),(850,2014059600,2),(850,2027368800,1),(850,2045509200,2),(850,2058818400,1),(850,2076958800,2),(850,2090268000,1),(850,2109013200,2),(850,2121717600,1),(850,2140462800,2),(851,-891582800,1),(851,-872058600,2),(851,-862637400,1),(851,-576138600,3),(851,1245430800,4),(851,1262278800,3),(852,-1830414140,1),(852,-879152400,2),(852,199897200,1),(852,969120000,2),(853,-1577936472,1),(854,-1441168512,1),(854,-1247547600,3),(854,354909600,2),(854,370717200,3),(854,386445600,2),(854,402253200,3),(854,417981600,2),(854,433789200,3),(854,449604000,2),(854,465336000,4),(854,481060800,5),(854,496785600,4),(854,512510400,5),(854,528235200,4),(854,543960000,5),(854,559684800,4),(854,575409600,5),(854,591134400,4),(854,606859200,5),(854,622584000,4),(854,638308800,5),(854,654638400,4),(854,670363200,6),(854,684363600,7),(855,-1518920148,2),(855,166572000,1),(855,182293200,2),(855,200959200,1),(855,213829200,2),(855,228866400,1),(855,243982800,2),(855,260316000,1),(855,276123600,2),(855,291765600,1),(855,307486800,2),(855,323820000,1),(855,338936400,2),(855,354664800,1),(855,370386000,2),(855,386114400,1),(855,401835600,2),(855,417564000,1),(855,433285200,2),(855,449013600,1),(855,465339600,2),(855,481068000,1),(855,496789200,2),(855,512517600,1),(855,528238800,2),(855,543967200,1),(855,559688400,2),(855,575416800,1),(855,591138000,2),(855,606866400,1),(855,622587600,2),(855,638316000,1),(855,654642000,2),(855,670370400,1),(855,686091600,2),(855,701820000,1),(855,717541200,2),(855,733269600,1),(855,748990800,2),(855,764719200,1),(855,780440400,2),(855,796168800,1),(855,811890000,2),(855,828223200,1),(855,843944400,2),(855,859672800,1),(855,875394000,2),(855,891122400,1),(855,909277200,3),(855,922582800,4),(855,941331600,3),(855,954032400,4),(855,972781200,3),(855,985482000,4),(855,1004230800,3),(855,1017536400,4),(855,1035680400,3),(855,1048986000,4),(855,1067130000,3),(855,1080435600,4),(855,1099184400,3),(855,1111885200,4),(855,1130634000,3),(855,1143334800,4),(855,1162083600,3),(855,1174784400,4),(855,1193533200,3),(855,1206838800,4),(855,1224982800,3),(855,1238288400,4),(855,1256432400,3),(855,1269738000,4),(855,1288486800,3),(855,1301187600,4),(855,1319936400,3),(855,1332637200,4),(855,1351386000,3),(855,1364691600,4),(855,1382835600,3),(855,1396141200,4),(855,1414285200,3),(855,1427590800,4),(855,1445734800,3),(855,1459040400,4),(855,1473282000,5),(855,1509238800,3),(855,1521939600,4),(855,1540688400,3),(855,1553994000,4),(855,1572138000,3),(855,1585443600,4),(855,1603587600,3),(855,1616893200,4),(855,1635642000,3),(855,1648342800,4),(855,1667091600,3),(855,1679792400,4),(855,1698541200,3),(855,1711846800,4),(855,1729990800,3),(855,1743296400,4),(855,1761440400,3),(855,1774746000,4),(855,1792890000,3),(855,1806195600,4),(855,1824944400,3),(855,1837645200,4),(855,1856394000,3),(855,1869094800,4),(855,1887843600,3),(855,1901149200,4),(855,1919293200,3),(855,1932598800,4),(855,1950742800,3),(855,1964048400,4),(855,1982797200,3),(855,1995498000,4),(855,2014246800,3),(855,2026947600,4),(855,2045696400,3),(855,2058397200,4),(855,2077146000,3),(855,2090451600,4),(855,2108595600,3),(855,2121901200,4),(855,2140045200,3),(856,-933645600,0),(856,-857358000,1),(856,-844300800,0),(856,-825822000,1),(856,-812685600,0),(856,-794199600,1),(856,-779853600,0),(856,-762656400,1),(856,-748310400,0),(856,-731127600,1),(856,-399088800,0),(856,-386650800,1),(856,-368330400,0),(856,-355114800,1),(856,-336790800,0),(856,-323654400,1),(856,-305168400,0),(856,-292032000,1),(856,-273632400,0),(856,-260496000,1),(856,-242096400,0),(856,-228960000,1),(856,-210560400,0),(856,-197424000,1),(856,-178938000,0),(856,-165801600,1),(856,-147402000,0),(856,-134265600,1),(856,-115866000,0),(856,-102643200,1),(856,-84330000,0),(856,-81313200,3),(856,142380000,2),(856,150843600,3),(856,167176800,2),(856,178664400,3),(856,482277600,2),(856,495579600,3),(856,516751200,2),(856,526424400,3),(856,545436000,2),(856,558478800,3),(856,576626400,2),(856,589323600,3),(856,609890400,2),(856,620773200,3),(856,638316000,2),(856,651618000,3),(856,669765600,2),(856,683672400,3),(856,701820000,2),(856,715726800,3),(856,733701600,2),(856,747176400,3),(856,765151200,2),(856,778021200,3),(856,796600800,2),(856,810075600,3),(856,820447200,1),(856,828655200,0),(856,843170400,4),(856,860104800,0),(856,874620000,4),(856,891554400,0),(856,906069600,4),(856,915141600,1),(856,924213600,0),(856,939934800,1),(856,956268000,0),(856,971989200,1),(856,987717600,0),(856,1003438800,1),(856,1019167200,0),(856,1034888400,1),(856,1050616800,0),(856,1066338000,1),(856,1082066400,0),(856,1096581600,1),(856,1113516000,0),(856,1128380400,1),(856,1143842400,0),(856,1158872400,1),(856,1175378400,0),(856,1189638000,1),(856,1206655200,0),(856,1219957200,1),(856,1238104800,0),(856,1252015200,1),(856,1269640860,0),(856,1281474000,1),(856,1301608860,0),(856,1312146000,1),(856,1333058400,0),(856,1348178400,1),(856,1364508000,0),(856,1380229200,1),(856,1395957600,0),(856,1414098000,1),(856,1427493600,0),(856,1445547600,1),(856,1458946800,0),(856,1477692000,1),(856,1490396400,0),(856,1509141600,1),(856,1521846000,0),(856,1540591200,1),(856,1553295600,0),(856,1572040800,1),(856,1585350000,0),(856,1604095200,1),(856,1616799600,0),(856,1635544800,1),(856,1648249200,0),(856,1666994400,1),(856,1679698800,0),(856,1698444000,1),(856,1711148400,0),(856,1729893600,1),(856,1742598000,0),(856,1761343200,1),(856,1774652400,0),(856,1793397600,1),(856,1806102000,0),(856,1824847200,1),(856,1837551600,0),(856,1856296800,1),(856,1869001200,0),(856,1887746400,1),(856,1900450800,0),(856,1919196000,1),(856,1931900400,0),(856,1950645600,1),(856,1963954800,0),(856,1982700000,1),(856,1995404400,0),(856,2014149600,1),(856,2026854000,0),(856,2045599200,1),(856,2058303600,0),(856,2077048800,1),(856,2089753200,0),(856,2108498400,1),(856,2121807600,0),(856,2140552800,1),(857,-933494400,0),(857,-923130000,1),(857,-908784000,0),(857,-891594000,1),(857,515520000,0),(857,527007600,1),(857,545155200,0),(857,558457200,1),(857,576604800,0),(857,589906800,1),(857,608659200,0),(857,621961200,1),(857,640108800,0),(857,653410800,1),(857,671558400,0),(857,684860400,1),(858,-933645600,0),(858,-857358000,1),(858,-844300800,0),(858,-825822000,1),(858,-812685600,0),(858,-794199600,1),(858,-779853600,0),(858,-762656400,1),(858,-748310400,0),(858,-731127600,1),(858,-399088800,0),(858,-386650800,1),(858,-368330400,0),(858,-355114800,1),(858,-336790800,0),(858,-323654400,1),(858,-305168400,0),(858,-292032000,1),(858,-273632400,0),(858,-260496000,1),(858,-242096400,0),(858,-228960000,1),(858,-210560400,0),(858,-197424000,1),(858,-178938000,0),(858,-165801600,1),(858,-147402000,0),(858,-134265600,1),(858,-115866000,0),(858,-102643200,1),(858,-84330000,0),(858,-81313200,3),(858,142380000,2),(858,150843600,3),(858,167176800,2),(858,178664400,3),(858,482277600,2),(858,495579600,3),(858,516751200,2),(858,526424400,3),(858,545436000,2),(858,558478800,3),(858,576626400,2),(858,589323600,3),(858,609890400,2),(858,620773200,3),(858,638316000,2),(858,651618000,3),(858,669765600,2),(858,683672400,3),(858,701820000,2),(858,715726800,3),(858,733701600,2),(858,747176400,3),(858,765151200,2),(858,778021200,3),(858,796600800,2),(858,810075600,3),(858,820447200,1),(858,828655200,0),(858,843170400,4),(858,860104800,0),(858,874620000,4),(858,891554400,0),(858,906069600,4),(858,915141600,1),(858,924213600,0),(858,939934800,1),(858,956268000,0),(858,971989200,1),(858,987717600,0),(858,1003438800,1),(858,1019167200,0),(858,1034888400,1),(858,1050616800,0),(858,1066338000,1),(858,1082066400,0),(858,1096581600,1),(858,1113516000,0),(858,1128380400,1),(858,1143842400,0),(858,1158872400,1),(858,1175378400,0),(858,1189638000,1),(858,1206655200,0),(858,1220216400,1),(858,1238104800,0),(858,1252015200,1),(858,1269554400,0),(858,1281474000,1),(858,1301608860,0),(858,1312146000,1),(858,1314655200,0),(858,1317330000,1),(858,1333058400,0),(858,1348178400,1),(858,1364508000,0),(858,1380229200,1),(858,1395957600,0),(858,1414098000,1),(858,1427493600,0),(858,1445547600,1),(858,1458946800,0),(858,1477692000,1),(858,1490396400,0),(858,1509141600,1),(858,1521846000,0),(858,1540591200,1),(858,1553295600,0),(858,1572040800,1),(858,1585350000,0),(858,1604095200,1),(858,1616799600,0),(858,1635544800,1),(858,1648249200,0),(858,1666994400,1),(858,1679698800,0),(858,1698444000,1),(858,1711148400,0),(858,1729893600,1),(858,1742598000,0),(858,1761343200,1),(858,1774652400,0),(858,1793397600,1),(858,1806102000,0),(858,1824847200,1),(858,1837551600,0),(858,1856296800,1),(858,1869001200,0),(858,1887746400,1),(858,1900450800,0),(858,1919196000,1),(858,1931900400,0),(858,1950645600,1),(858,1963954800,0),(858,1982700000,1),(858,1995404400,0),(858,2014149600,1),(858,2026854000,0),(858,2045599200,1),(858,2058303600,0),(858,2077048800,1),(858,2089753200,0),(858,2108498400,1),(858,2121807600,0),(858,2140552800,1),(859,-2004073600,1),(859,-1851577590,2),(859,-852105600,3),(859,-782643600,4),(859,-767869200,2),(859,-718095600,3),(859,-457776000,2),(859,-315648000,3),(859,171820800,2),(860,-2056693002,2),(860,-907389000,1),(860,-891667800,2),(860,-884246400,3),(860,-766746000,2),(860,-747981000,1),(860,-728544600,2),(860,-717049800,1),(860,-694503000,2),(860,-683785800,1),(860,-668064600,2),(860,-654755400,1),(860,-636615000,2),(860,-623305800,1),(860,-605165400,2),(860,-591856200,1),(860,-573715800,2),(860,-559801800,1),(860,-542352600,2),(860,-528352200,1),(860,-510211800,2),(860,-498112200,1),(860,-478762200,2),(860,-466662600,1),(860,-446707800,2),(860,-435213000,1),(860,-415258200,2),(860,-403158600,1),(860,-383808600,2),(860,-371709000,1),(860,-352359000,2),(860,-340259400,1),(860,-320909400,2),(860,-308809800,1),(860,-288855000,2),(860,-277360200,1),(860,-257405400,2),(860,-245910600,1),(860,-225955800,2),(860,-213856200,1),(860,-194506200,2),(860,-182406600,1),(860,-163056600,2),(860,-148537800,1),(860,-132816600,2),(860,-117088200,1),(860,-101367000,2),(860,-85638600,1),(860,-69312600,2),(860,-53584200,1),(860,-37863000,2),(860,-22134600,1),(860,-6413400,2),(860,9315000,1),(860,25036200,2),(860,40764600,1),(860,56485800,2),(860,72214200,1),(860,88540200,2),(860,104268600,1),(860,119989800,2),(860,126041400,1),(860,151439400,2),(860,167167800,1),(860,182889000,2),(860,198617400,1),(860,214338600,2),(860,295385400,1),(860,309292200,2),(861,-2032927596,1),(861,252439200,3),(861,417978000,2),(861,433785600,3),(861,449600400,2),(861,465321600,3),(861,481050000,2),(861,496771200,3),(861,512499600,2),(861,528220800,3),(861,543949200,2),(861,559670400,3),(861,575398800,2),(861,591120000,3),(861,606848400,2),(861,622569600,3),(861,638298000,2),(861,654624000,3),(861,670352400,2),(861,686073600,3),(861,701802000,2),(861,717523200,3),(861,733251600,2),(861,748972800,3),(861,764701200,2),(861,780422400,3),(861,796150800,2),(861,811872000,3),(861,828205200,2),(861,843926400,3),(861,859654800,2),(861,875376000,3),(861,891104400,2),(861,906825600,3),(861,988398000,2),(861,1001700000,3),(861,1017428400,2),(861,1033149600,3),(861,1048878000,2),(861,1064599200,3),(861,1080327600,2),(861,1096048800,3),(861,1111777200,2),(861,1127498400,3),(861,1143226800,2),(861,1159552800,3),(861,1427482800,2),(861,1443196800,3),(861,1458932400,2),(861,1474646400,3),(862,-1575874625,1),(862,-1247554800,3),(862,354902400,2),(862,370710000,3),(862,386438400,2),(862,402246000,3),(862,417974400,2),(862,433782000,3),(862,449596800,2),(862,465328800,4),(862,481053600,5),(862,496778400,4),(862,512503200,5),(862,528228000,4),(862,543952800,5),(862,559677600,4),(862,575402400,5),(862,591127200,4),(862,606852000,5),(862,622576800,4),(862,638301600,5),(862,654631200,4),(862,670356000,6),(862,686084400,7),(862,695761200,4),(862,701805600,5),(862,717530400,4),(862,733255200,5),(862,748980000,4),(862,764704800,5),(862,780429600,4),(862,796154400,5),(862,811879200,4),(862,828208800,5),(862,846352800,4),(862,859658400,5),(862,877802400,4),(862,891108000,5),(862,909252000,4),(862,922557600,5),(862,941306400,4),(862,954007200,5),(862,972756000,4),(862,985456800,5),(862,1004205600,4),(862,1017511200,5),(862,1035655200,4),(862,1048960800,5),(862,1067104800,4),(862,1080410400,5),(862,1099159200,4),(862,1111860000,5),(862,1130608800,4),(862,1143309600,5),(862,1162058400,4),(862,1174759200,5),(862,1193508000,4),(862,1206813600,5),(862,1224957600,4),(862,1238263200,5),(862,1256407200,4),(862,1269712800,5),(862,1288461600,4),(862,1301162400,8),(862,1414256400,4),(863,-1869875816,2),(863,-1693706400,1),(863,-1680490800,2),(863,-1570413600,1),(863,-1552186800,2),(863,-1538359200,1),(863,-1522551600,2),(863,-1507514400,1),(863,-1490583600,2),(863,-1440208800,1),(863,-1428030000,2),(863,-1409709600,1),(863,-1396494000,2),(863,-931140000,1),(863,-922762800,2),(863,-917834400,1),(863,-892436400,2),(863,-875844000,1),(863,-857358000,2),(863,-781063200,1),(863,-764737200,2),(863,-744343200,1),(863,-733806000,2),(863,-716436000,1),(863,-701924400,2),(863,-684986400,1),(863,-670474800,2),(863,-654141600,1),(863,-639025200,2),(863,-621828000,1),(863,-606970800,2),(863,-590032800,1),(863,-575434800,2),(863,-235620000,1),(863,-228279600,2),(863,-177732000,1),(863,-165726000,2),(863,10533600,1),(863,23835600,2),(863,41983200,1),(863,55285200,2),(863,74037600,1),(863,87339600,2),(863,107910000,1),(863,121219200,2),(863,133920000,1),(863,152676000,2),(863,165362400,1),(863,183502800,2),(863,202428000,1),(863,215557200,2),(863,228866400,1),(863,245797200,2),(863,260316000,1),(863,277246800,3),(863,308779200,4),(863,323827200,3),(863,340228800,4),(863,354672000,3),(863,371678400,4),(863,386121600,3),(863,403128000,4),(863,428446800,3),(863,433886400,4),(863,482792400,1),(863,496702800,2),(863,512521200,5),(863,528246000,6),(863,543970800,5),(863,559695600,6),(863,575420400,5),(863,591145200,6),(863,606870000,5),(863,622594800,6),(863,638319600,5),(863,654649200,6),(863,670374000,5),(863,686098800,6),(863,701823600,5),(863,717548400,6),(863,733273200,5),(863,748998000,6),(863,764118000,5),(863,780447600,6),(863,796172400,5),(863,811897200,6),(863,828226800,5),(863,846370800,6),(863,859676400,5),(863,877820400,6),(863,891126000,5),(863,909270000,6),(863,922575600,5),(863,941324400,6),(863,954025200,5),(863,972774000,6),(863,985474800,5),(863,1004223600,6),(863,1017529200,5),(863,1035673200,6),(863,1048978800,5),(863,1067122800,6),(863,1080428400,5),(863,1099177200,6),(863,1111878000,5),(863,1130626800,6),(863,1143327600,5),(863,1162076400,6),(863,1167602400,2),(863,1174784400,7),(863,1193533200,8),(863,1206838800,7),(863,1224982800,8),(863,1238288400,7),(863,1256432400,8),(863,1269738000,7),(863,1288486800,8),(863,1301274000,7),(863,1319936400,8),(863,1332637200,7),(863,1351386000,8),(863,1364691600,7),(863,1382835600,8),(863,1396227600,7),(863,1414285200,8),(863,1427590800,7),(863,1446944400,8),(863,1459040400,7),(863,1473195600,4),(864,-1451719200,1),(864,-1172906400,2),(864,-876641400,3),(864,-766054800,2),(864,-683883000,4),(864,-620812800,2),(864,-189415800,5),(865,-1172913768,1),(865,-799491600,2),(865,-189423000,3),(866,-1641003640,2),(866,-933645600,1),(866,-857358000,2),(866,-844300800,1),(866,-825822000,2),(866,-812685600,1),(866,-794199600,2),(866,-779853600,1),(866,-762656400,2),(866,-748310400,1),(866,-731127600,2),(866,-681962400,3),(866,-673243200,1),(866,-667962000,2),(866,-652327200,1),(866,-636426000,2),(866,-622087200,1),(866,-608947200,2),(866,-591847200,1),(866,-572486400,2),(866,-558576000,1),(866,-542851200,2),(866,-527731200,1),(866,-514425600,2),(866,-490845600,1),(866,-482986800,2),(866,-459475200,1),(866,-451537200,2),(866,-428551200,1),(866,-418262400,2),(866,-400032000,1),(866,-387428400,2),(866,142380000,1),(866,150843600,2),(866,167176800,1),(866,178664400,2),(866,482277600,1),(866,495579600,2),(866,516751200,1),(866,526424400,2),(866,545436000,1),(866,558478800,2),(866,576626400,1),(866,589323600,2),(866,609890400,1),(866,620773200,2),(866,638316000,1),(866,651618000,2),(866,669765600,1),(866,683672400,2),(866,701820000,1),(866,715726800,2),(866,733701600,1),(866,747176400,2),(866,765151200,1),(866,778021200,2),(866,796600800,1),(866,810075600,2),(866,826840800,1),(866,842821200,2),(866,858895200,1),(866,874184400,2),(866,890344800,1),(866,905029200,2),(866,923011200,1),(866,936313200,2),(866,955670400,1),(866,970783200,2),(866,986770800,1),(866,1001282400,2),(866,1017356400,1),(866,1033941600,2),(866,1048806000,1),(866,1065132000,2),(866,1081292400,1),(866,1095804000,2),(866,1112313600,1),(866,1128812400,2),(866,1143763200,1),(866,1159657200,2),(866,1175212800,1),(866,1189897200,2),(866,1206662400,1),(866,1223161200,2),(866,1238112000,1),(866,1254006000,2),(866,1269561600,1),(866,1284246000,2),(866,1301616000,1),(866,1317510000,2),(866,1333065600,1),(866,1348354800,2),(866,1364515200,1),(866,1382828400,2),(866,1395964800,1),(866,1414278000,2),(866,1427414400,1),(866,1445727600,2),(866,1458864000,1),(866,1477782000,2),(866,1490313600,1),(866,1509231600,2),(866,1521763200,1),(866,1540681200,2),(866,1553817600,1),(866,1572130800,2),(866,1585267200,1),(866,1603580400,2),(866,1616716800,1),(866,1635634800,2),(866,1648166400,1),(866,1667084400,2),(866,1679616000,1),(866,1698534000,2),(866,1711670400,1),(866,1729983600,2),(866,1743120000,1),(866,1761433200,2),(866,1774569600,1),(866,1792882800,2),(866,1806019200,1),(866,1824937200,2),(866,1837468800,1),(866,1856386800,2),(866,1868918400,1),(866,1887836400,2),(866,1900972800,1),(866,1919286000,2),(866,1932422400,1),(866,1950735600,2),(866,1963872000,1),(866,1982790000,2),(866,1995321600,1),(866,2014239600,2),(866,2026771200,1),(866,2045689200,2),(866,2058220800,1),(866,2077138800,2),(866,2090275200,1),(866,2108588400,2),(866,2121724800,1),(866,2140038000,2),(867,-788932800,1),(868,-1487759676,1),(868,-1247569200,3),(868,354888000,2),(868,370695600,3),(868,386424000,2),(868,402231600,3),(868,417960000,2),(868,433767600,3),(868,449582400,2),(868,465314400,4),(868,481039200,5),(868,496764000,4),(868,512488800,5),(868,528213600,4),(868,543938400,5),(868,559663200,4),(868,575388000,5),(868,591112800,4),(868,606837600,5),(868,622562400,4),(868,638287200,5),(868,654616800,4),(868,670341600,6),(868,686070000,7),(868,695746800,4),(868,701791200,5),(868,717516000,4),(868,733240800,5),(868,748965600,4),(868,764690400,5),(868,780415200,4),(868,796140000,5),(868,811864800,4),(868,828194400,5),(868,846338400,4),(868,859644000,5),(868,877788000,4),(868,891093600,5),(868,909237600,4),(868,922543200,5),(868,941292000,4),(868,953992800,5),(868,972741600,4),(868,985442400,5),(868,1004191200,4),(868,1017496800,5),(868,1035640800,4),(868,1048946400,5),(868,1067090400,4),(868,1080396000,5),(868,1099144800,4),(868,1111845600,5),(868,1130594400,4),(868,1143295200,5),(868,1162044000,4),(868,1174744800,5),(868,1193493600,4),(868,1206799200,5),(868,1224943200,4),(868,1238248800,5),(868,1256392800,4),(868,1269698400,6),(868,1288450800,7),(868,1301151600,4),(869,-1988166492,1),(869,-862637400,2),(869,-764145000,1),(869,-576135000,3),(869,38775600,5),(869,1018119600,4),(869,1033840800,5),(869,1212260400,4),(869,1225476000,5),(869,1239735600,4),(869,1257012000,5),(870,-1325483420,1),(871,-1577943676,1),(871,504901800,2),(872,-1577943676,1),(872,504901800,2),(873,-1579424533,1),(873,-1247558400,3),(873,354898800,2),(873,370706400,3),(873,386434800,2),(873,402242400,3),(873,417970800,2),(873,433778400,3),(873,449593200,2),(873,465325200,4),(873,481050000,5),(873,496774800,4),(873,512499600,5),(873,528224400,4),(873,543949200,5),(873,559674000,4),(873,575398800,5),(873,591123600,4),(873,606848400,5),(873,622573200,4),(873,638298000,5),(873,654627600,4),(873,670352400,6),(873,686080800,7),(873,695757600,4),(873,701802000,5),(873,717526800,4),(873,733251600,5),(873,748976400,4),(873,764701200,5),(873,780426000,4),(873,796150800,5),(873,811875600,4),(873,828205200,5),(873,846349200,4),(873,859654800,5),(873,877798800,4),(873,891104400,5),(873,909248400,4),(873,922554000,5),(873,941302800,4),(873,954003600,5),(873,972752400,4),(873,985453200,5),(873,1004202000,4),(873,1017507600,5),(873,1035651600,4),(873,1048957200,5),(873,1067101200,4),(873,1072882800,10),(873,1080403200,8),(873,1099152000,9),(873,1111852800,8),(873,1130601600,9),(873,1143302400,8),(873,1162051200,9),(873,1174752000,8),(873,1193500800,9),(873,1206806400,8),(873,1224950400,9),(873,1238256000,8),(873,1256400000,9),(873,1269705600,8),(873,1288454400,9),(873,1301155200,11),(873,1315832400,9),(873,1414252800,4),(874,-2019705670,1),(874,-891581400,2),(874,-872058600,1),(874,-862637400,2),(874,-764145000,1),(875,-1577513486,1),(875,-1247551200,3),(875,354906000,2),(875,370713600,3),(875,386442000,2),(875,402249600,3),(875,417978000,2),(875,433785600,3),(875,449600400,2),(875,465332400,4),(875,481057200,5),(875,496782000,4),(875,512506800,5),(875,528231600,4),(875,543956400,5),(875,559681200,4),(875,575406000,5),(875,591130800,4),(875,606855600,5),(875,622580400,4),(875,638305200,5),(875,654634800,4),(875,670359600,6),(875,686088000,7),(875,695764800,4),(875,701809200,5),(875,717534000,4),(875,733258800,5),(875,748983600,4),(875,764708400,5),(875,780433200,4),(875,796158000,5),(875,811882800,4),(875,828212400,5),(875,846356400,4),(875,859662000,5),(875,877806000,4),(875,891111600,5),(875,909255600,4),(875,922561200,5),(875,941310000,4),(875,954010800,5),(875,972759600,4),(875,985460400,5),(875,1004209200,4),(875,1017514800,5),(875,1035658800,4),(875,1048964400,5),(875,1067108400,4),(875,1080414000,5),(875,1099162800,4),(875,1111863600,5),(875,1130612400,4),(875,1143313200,5),(875,1162062000,4),(875,1174762800,5),(875,1193511600,4),(875,1206817200,5),(875,1224961200,4),(875,1238266800,5),(875,1256410800,4),(875,1269716400,5),(875,1288465200,4),(875,1301166000,8),(875,1414260000,4),(876,-2038200925,1),(876,-1167634800,2),(876,-1073028000,3),(876,-894180000,4),(876,-879665400,5),(876,-767005200,4),(876,378664200,6),(877,-1383463280,1),(877,-1167636600,3),(877,-1082448000,2),(877,-1074586800,3),(877,-1050825600,2),(877,-1042964400,3),(877,-1019289600,2),(877,-1011428400,3),(877,-987753600,2),(877,-979892400,3),(877,-956217600,2),(877,-948356400,3),(877,-924595200,2),(877,-916734000,3),(877,-893059200,2),(877,-885198000,3),(877,-879667200,4),(877,-767005200,3),(878,-719636812,1),(879,-1830412800,3),(879,-277360200,1),(879,-257405400,2),(879,-245910600,1),(879,-225955800,2),(879,-214473600,1),(879,-194506200,2),(879,-182406600,1),(879,-163056600,2),(879,-150969600,1),(879,-131619600,2),(879,-117088200,1),(879,-101367000,2),(879,-85638600,1),(879,-69312600,2),(879,-53584200,1),(879,-37863000,2),(879,-22134600,1),(879,-6413400,2),(879,9315000,1),(879,25036200,2),(879,40764600,1),(879,56485800,2),(879,72201600,1),(879,87922800,2),(879,103651200,1),(879,119977200,2),(879,135705600,1),(879,151439400,2),(879,167167800,1),(879,182889000,2),(879,198617400,1),(879,214338600,2),(879,230067000,1),(879,245788200,2),(879,261504000,1),(879,277225200,2),(879,292953600,1),(879,309279600,2),(879,325008000,1),(879,340729200,2),(880,-1830412800,3),(880,-277360200,1),(880,-257405400,2),(880,-245910600,1),(880,-225955800,2),(880,-214473600,1),(880,-194506200,2),(880,-182406600,1),(880,-163056600,2),(880,-150969600,1),(880,-131619600,2),(880,-117088200,1),(880,-101367000,2),(880,-85638600,1),(880,-69312600,2),(880,-53584200,1),(880,-37863000,2),(880,-22134600,1),(880,-6413400,2),(880,9315000,1),(880,25036200,2),(880,40764600,1),(880,56485800,2),(880,72201600,1),(880,87922800,2),(880,103651200,1),(880,119977200,2),(880,135705600,1),(880,151439400,2),(880,167167800,1),(880,182889000,2),(880,198617400,1),(880,214338600,2),(880,230067000,1),(880,245788200,2),(880,261504000,1),(880,277225200,2),(880,292953600,1),(880,309279600,2),(880,325008000,1),(880,340729200,2),(881,-1441188192,1),(881,-1247565600,3),(881,354891600,2),(881,370699200,3),(881,386427600,2),(881,402235200,3),(881,417963600,2),(881,433771200,3),(881,449586000,2),(881,465318000,4),(881,481042800,5),(881,496767600,4),(881,512492400,5),(881,528217200,4),(881,543942000,5),(881,559666800,4),(881,575391600,5),(881,591116400,4),(881,606841200,5),(881,622566000,4),(881,638290800,5),(881,654620400,4),(881,670345200,6),(881,686073600,7),(881,695750400,4),(881,701794800,5),(881,717519600,4),(881,733244400,5),(881,748969200,4),(881,764694000,5),(881,780418800,4),(881,796143600,5),(881,811868400,4),(881,828198000,5),(881,846342000,4),(881,859647600,5),(881,877791600,4),(881,891097200,5),(881,909241200,4),(881,922546800,5),(881,941295600,4),(881,953996400,5),(881,972745200,4),(881,985446000,5),(881,1004194800,4),(881,1017500400,5),(881,1035644400,4),(881,1048950000,5),(881,1067094000,4),(881,1080399600,5),(881,1099148400,4),(881,1111849200,5),(881,1130598000,4),(881,1143298800,5),(881,1162047600,4),(881,1174748400,5),(881,1193497200,4),(881,1206802800,5),(881,1224946800,4),(881,1238252400,5),(881,1256396400,4),(881,1269702000,5),(881,1288450800,4),(881,1301151600,8),(881,1414245600,7),(881,1461427200,4),(882,-1577951856,1),(882,-1172908656,2),(882,-880272000,3),(882,-766054800,4),(883,-1046678400,0),(883,-1038733200,1),(883,-873273600,2),(883,-794221200,1),(883,-496224000,0),(883,-489315600,1),(883,259344000,0),(883,275151600,1),(884,-1577936472,1),(885,-1518920008,2),(885,166572000,1),(885,182293200,2),(885,200959200,1),(885,213829200,2),(885,228866400,1),(885,243982800,2),(885,260316000,1),(885,276123600,2),(885,291765600,1),(885,307486800,2),(885,323820000,1),(885,338936400,2),(885,354664800,1),(885,370386000,2),(885,386114400,1),(885,401835600,2),(885,417564000,1),(885,433285200,2),(885,449013600,1),(885,465339600,2),(885,481068000,1),(885,496789200,2),(885,512517600,1),(885,528238800,2),(885,543967200,1),(885,559688400,2),(885,575416800,1),(885,591138000,2),(885,606866400,1),(885,622587600,2),(885,638316000,1),(885,654642000,2),(885,670370400,1),(885,686091600,2),(885,701820000,1),(885,717541200,2),(885,733269600,1),(885,748990800,2),(885,764719200,1),(885,780440400,2),(885,796168800,1),(885,811890000,2),(885,828223200,1),(885,843944400,2),(885,859672800,1),(885,875394000,2),(885,891122400,1),(885,909277200,3),(885,922582800,4),(885,941331600,3),(885,954032400,4),(885,972781200,3),(885,985482000,4),(885,1004230800,3),(885,1017536400,4),(885,1035680400,3),(885,1048986000,4),(885,1067130000,3),(885,1080435600,4),(885,1099184400,3),(885,1111885200,4),(885,1130634000,3),(885,1143334800,4),(885,1162083600,3),(885,1174784400,4),(885,1193533200,3),(885,1206838800,4),(885,1224982800,3),(885,1238288400,4),(885,1256432400,3),(885,1269738000,4),(885,1288486800,3),(885,1301187600,4),(885,1319936400,3),(885,1332637200,4),(885,1351386000,3),(885,1364691600,4),(885,1382835600,3),(885,1396141200,4),(885,1414285200,3),(885,1427590800,4),(885,1445734800,3),(885,1459040400,4),(885,1477789200,3),(885,1490490000,4),(885,1509238800,3),(885,1521939600,4),(885,1540688400,3),(885,1553994000,4),(885,1572138000,3),(885,1585443600,4),(885,1603587600,3),(885,1616893200,4),(885,1635642000,3),(885,1648342800,4),(885,1667091600,3),(885,1679792400,4),(885,1698541200,3),(885,1711846800,4),(885,1729990800,3),(885,1743296400,4),(885,1761440400,3),(885,1774746000,4),(885,1792890000,3),(885,1806195600,4),(885,1824944400,3),(885,1837645200,4),(885,1856394000,3),(885,1869094800,4),(885,1887843600,3),(885,1901149200,4),(885,1919293200,3),(885,1932598800,4),(885,1950742800,3),(885,1964048400,4),(885,1982797200,3),(885,1995498000,4),(885,2014246800,3),(885,2026947600,4),(885,2045696400,3),(885,2058397200,4),(885,2077146000,3),(885,2090451600,4),(885,2108595600,3),(885,2121901200,4),(885,2140045200,3),(886,-1441259328,1),(886,-1247551200,3),(886,354906000,2),(886,370713600,3),(886,386442000,2),(886,402249600,3),(886,417978000,2),(886,433785600,3),(886,449600400,2),(886,465332400,4),(886,481057200,5),(886,496782000,4),(886,512506800,5),(886,528231600,4),(886,543956400,5),(886,559681200,4),(886,575406000,5),(886,591130800,4),(886,606855600,5),(886,622580400,4),(886,638305200,5),(886,654634800,4),(886,670359600,6),(886,686088000,7),(886,695764800,4),(886,701809200,5),(886,717534000,4),(886,733258800,5),(886,748983600,4),(886,764708400,5),(886,780433200,4),(886,796158000,5),(886,811882800,4),(886,828212400,5),(886,846356400,4),(886,859662000,5),(886,877806000,4),(886,891111600,5),(886,909255600,4),(886,922561200,5),(886,941310000,4),(886,954010800,5),(886,972759600,4),(886,985460400,5),(886,1004209200,4),(886,1017514800,5),(886,1035658800,4),(886,1048964400,5),(886,1067108400,4),(886,1080414000,5),(886,1099162800,4),(886,1111863600,5),(886,1130612400,4),(886,1143313200,5),(886,1162062000,4),(886,1174762800,5),(886,1193511600,4),(886,1206817200,5),(886,1224961200,4),(886,1238266800,5),(886,1256410800,4),(886,1269716400,6),(886,1288468800,7),(886,1301169600,4),(887,-1579476700,1),(887,-1247551200,3),(887,354906000,2),(887,370713600,3),(887,386442000,2),(887,402249600,3),(887,417978000,2),(887,433785600,3),(887,449600400,2),(887,465332400,4),(887,481057200,5),(887,496782000,4),(887,512506800,5),(887,528231600,4),(887,543956400,5),(887,559681200,4),(887,575406000,5),(887,591130800,4),(887,606855600,5),(887,622580400,4),(887,638305200,5),(887,654634800,4),(887,670359600,6),(887,686088000,7),(887,695764800,4),(887,701809200,5),(887,717534000,4),(887,733258800,5),(887,738086400,8),(887,748987200,7),(887,764712000,6),(887,780436800,7),(887,796161600,6),(887,811886400,7),(887,828216000,6),(887,846360000,7),(887,859665600,6),(887,877809600,7),(887,891115200,6),(887,909259200,7),(887,922564800,6),(887,941313600,7),(887,954014400,6),(887,972763200,7),(887,985464000,6),(887,1004212800,7),(887,1017518400,6),(887,1035662400,7),(887,1048968000,6),(887,1067112000,7),(887,1080417600,6),(887,1099166400,7),(887,1111867200,6),(887,1130616000,7),(887,1143316800,6),(887,1162065600,7),(887,1174766400,6),(887,1193515200,7),(887,1206820800,6),(887,1224964800,7),(887,1238270400,6),(887,1256414400,7),(887,1269720000,6),(887,1288468800,7),(887,1301169600,4),(887,1414263600,7),(887,1469304000,4),(888,-1582088010,1),(888,-1247547600,3),(888,354909600,2),(888,370717200,3),(888,386445600,2),(888,402253200,3),(888,417981600,2),(888,433789200,3),(888,449604000,2),(888,465336000,4),(888,481060800,5),(888,496785600,4),(888,512510400,5),(888,528235200,4),(888,543960000,5),(888,559684800,4),(888,575409600,5),(888,591134400,4),(888,606859200,5),(888,622584000,4),(888,638308800,5),(888,654638400,4),(888,670363200,6),(888,686091600,7),(888,695768400,4),(888,701812800,5),(888,717537600,4),(888,733262400,5),(888,748987200,4),(888,764712000,5),(888,780436800,4),(888,796161600,5),(888,811886400,4),(888,828216000,5),(888,846360000,4),(888,859665600,5),(888,877809600,4),(888,891115200,5),(888,909259200,4),(888,922564800,5),(888,941313600,4),(888,954014400,5),(888,972763200,4),(888,985464000,5),(888,1004212800,4),(888,1017518400,5),(888,1035662400,4),(888,1048968000,5),(888,1067112000,4),(888,1080417600,5),(888,1099166400,4),(888,1111867200,5),(888,1130616000,4),(888,1143316800,5),(888,1162065600,4),(888,1174766400,5),(888,1193515200,4),(888,1206820800,5),(888,1224964800,4),(888,1238270400,5),(888,1256414400,4),(888,1269720000,5),(888,1288468800,4),(888,1301169600,8),(888,1414263600,4),(889,-1441164324,1),(889,-1247540400,2),(889,354913200,3),(889,370720800,4),(889,386445600,3),(889,402256800,2),(889,417985200,3),(889,433792800,2),(889,449607600,3),(889,465339600,5),(889,481064400,6),(889,496789200,5),(889,512514000,6),(889,528238800,5),(889,543963600,6),(889,559688400,5),(889,575413200,6),(889,591138000,5),(889,606862800,7),(889,622591200,8),(889,638316000,7),(889,654645600,8),(889,670370400,7),(889,686095200,8),(889,695772000,5),(889,701816400,7),(889,717544800,8),(889,733269600,7),(889,748994400,8),(889,764719200,7),(889,780444000,8),(889,796168800,7),(889,811893600,8),(889,828223200,7),(889,846367200,8),(889,859672800,7),(889,877816800,8),(889,891122400,7),(889,909266400,8),(889,922572000,7),(889,941320800,8),(889,954021600,7),(889,972770400,8),(889,985471200,7),(889,1004220000,8),(889,1017525600,7),(889,1035669600,8),(889,1048975200,7),(889,1067119200,8),(889,1080424800,7),(889,1099173600,5),(890,-1570084924,1),(891,-1946186240,1),(891,-1172906240,2),(891,-881220600,3),(891,-766054800,2),(891,-683883000,4),(891,-620812800,2),(891,-189415800,5),(891,567964800,6),(892,-1948782180,1),(892,-1830414600,2),(892,-768646800,3),(892,1439564400,1),(892,1525447800,3),(893,-1577935568,1),(893,76190400,2),(894,-1441167712,1),(894,-1247544000,2),(894,354913200,3),(894,370720800,4),(894,386445600,3),(894,402256800,2),(894,417985200,3),(894,433792800,2),(894,449607600,3),(894,465339600,5),(894,481064400,6),(894,496789200,5),(894,512514000,6),(894,528238800,5),(894,543963600,6),(894,559688400,5),(894,575413200,6),(894,591138000,5),(894,606862800,6),(894,622587600,5),(894,638312400,6),(894,654642000,5),(894,670366800,7),(894,686095200,5),(894,695768400,9),(894,701812800,6),(894,717541200,5),(894,733266000,6),(894,748990800,5),(894,764715600,6),(894,780440400,5),(894,796165200,6),(894,811890000,5),(894,828219600,6),(894,846363600,5),(894,859669200,6),(894,877813200,5),(894,891118800,6),(894,909262800,5),(894,922568400,6),(894,941317200,5),(894,954018000,6),(894,972766800,5),(894,985467600,6),(894,1004216400,5),(894,1017522000,6),(894,1035666000,5),(894,1048971600,6),(894,1067115600,5),(894,1080421200,6),(894,1099170000,9),(895,-1577946287,1),(895,-873268200,2),(895,-778410000,1),(896,-719636812,1),(897,-2004073600,1),(897,-1851577590,2),(897,-852105600,3),(897,-782643600,4),(897,-767869200,2),(897,-718095600,3),(897,-457776000,2),(897,-315648000,3),(897,171820800,2),(898,-2031039048,1),(898,-768560400,3),(898,354891600,2),(898,370699200,3),(898,386427600,2),(898,402235200,3),(898,417963600,2),(898,433771200,3),(898,449586000,2),(898,465318000,4),(898,481042800,5),(898,496767600,4),(898,512492400,5),(898,528217200,4),(898,543942000,5),(898,559666800,4),(898,575391600,5),(898,591116400,4),(898,606841200,5),(898,622566000,4),(898,638290800,5),(898,654620400,4),(898,670345200,6),(898,686073600,7),(898,695750400,4),(898,701794800,5),(898,717519600,4),(898,733244400,5),(898,748969200,4),(898,764694000,5),(898,780418800,4),(898,796143600,5),(898,811868400,4),(898,828198000,5),(898,846342000,4),(898,859647600,6),(898,877795200,7),(898,891100800,6),(898,909244800,7),(898,922550400,6),(898,941299200,7),(898,954000000,6),(898,972748800,7),(898,985449600,6),(898,1004198400,7),(898,1017504000,6),(898,1035648000,7),(898,1048953600,6),(898,1067097600,7),(898,1080403200,6),(898,1099152000,7),(898,1111852800,6),(898,1130601600,7),(898,1143302400,6),(898,1162051200,7),(898,1174752000,6),(898,1193500800,7),(898,1206806400,6),(898,1224950400,7),(898,1238256000,6),(898,1256400000,7),(898,1269705600,6),(898,1288454400,7),(898,1301155200,4),(898,1414249200,7),(898,1459008000,4),(899,-1441168073,1),(899,-1247544000,2),(899,354913200,3),(899,370720800,4),(899,386445600,3),(899,402256800,2),(899,417985200,3),(899,433792800,2),(899,449607600,3),(899,465339600,5),(899,481064400,6),(899,496789200,5),(899,512514000,6),(899,528238800,5),(899,543963600,6),(899,559688400,5),(899,575413200,6),(899,591138000,5),(899,606862800,6),(899,622587600,5),(899,638312400,6),(899,654642000,5),(899,670366800,6),(899,686091600,5),(899,694206000,2),(900,-1948782472,1),(900,-1830414600,2),(900,-767350800,3),(900,-498128400,1),(900,-462702600,4),(900,-451733400,1),(900,-429784200,4),(900,-418296600,1),(900,-399544200,4),(900,-387451800,1),(900,-368094600,4),(900,-356002200,1),(900,-336645000,4),(900,-324552600,1),(900,-305195400,4),(900,-293103000,1),(900,-264933000,3),(900,547578000,5),(900,560883600,3),(900,579027600,5),(900,592333200,3),(901,-933494400,0),(901,-923130000,1),(901,-908784000,0),(901,-891594000,1),(901,515520000,0),(901,527007600,1),(901,545155200,0),(901,558457200,1),(901,576604800,0),(901,589906800,1),(901,608659200,0),(901,621961200,1),(901,640108800,0),(901,653410800,1),(901,671558400,0),(901,684860400,1),(902,-2038200925,1),(902,-1167634800,2),(902,-1073028000,3),(902,-894180000,4),(902,-879665400,5),(902,-767005200,4),(902,378664200,6),(903,-1441188892,1),(903,-1247565600,3),(903,354891600,2),(903,370699200,3),(903,386427600,2),(903,402235200,3),(903,417963600,2),(903,433771200,3),(903,449586000,2),(903,465318000,4),(903,481042800,5),(903,496767600,4),(903,512492400,5),(903,528217200,4),(903,543942000,5),(903,559666800,4),(903,575391600,5),(903,591116400,4),(903,606841200,5),(903,622566000,4),(903,638290800,5),(903,654620400,4),(903,670345200,6),(903,686073600,7),(903,695750400,4),(903,701794800,5),(903,717519600,4),(903,733244400,5),(903,748969200,4),(903,764694000,5),(903,780418800,4),(903,796143600,5),(903,811868400,4),(903,828198000,5),(903,846342000,4),(903,859647600,5),(903,877791600,4),(903,891097200,5),(903,909241200,4),(903,922546800,5),(903,941295600,4),(903,953996400,5),(903,972745200,4),(903,985446000,5),(903,1004194800,4),(903,1017500400,5),(903,1035644400,4),(903,1048950000,5),(903,1067094000,4),(903,1080399600,5),(903,1099148400,4),(903,1111849200,5),(903,1130598000,4),(903,1143298800,5),(903,1162047600,4),(903,1174748400,5),(903,1193497200,4),(903,1206802800,5),(903,1224946800,4),(903,1238252400,5),(903,1256396400,4),(903,1269702000,5),(903,1288450800,4),(903,1301151600,8),(903,1414245600,4),(904,-1017820800,1),(904,-766224000,0),(904,-745833600,2),(904,-733827600,0),(904,-716889600,2),(904,-699613200,0),(904,-683884800,2),(904,-670669200,0),(904,-652348800,2),(904,-639133200,0),(904,-620812800,2),(904,-607597200,0),(904,-589276800,2),(904,-576061200,0),(904,-562924800,2),(904,-541760400,0),(904,-528710400,2),(904,-510224400,0),(904,-497174400,2),(904,-478688400,0),(904,-465638400,2),(904,-449830800,0),(904,-434016000,2),(904,-418208400,0),(904,-402480000,2),(904,-386672400,0),(904,-370944000,2),(904,-355136400,0),(904,-339408000,2),(904,-323600400,0),(904,-302515200,2),(904,-291978000,0),(904,-270979200,2),(904,-260442000,0),(904,133977600,2),(904,149785200,0),(904,165513600,2),(904,181321200,0),(904,299606400,2),(904,307551600,0),(905,-1441168631,1),(905,-1247547600,3),(905,354909600,2),(905,370717200,3),(905,386445600,2),(905,402253200,3),(905,417981600,2),(905,433789200,3),(905,449604000,2),(905,465336000,4),(905,481060800,5),(905,496785600,4),(905,512510400,5),(905,528235200,4),(905,543960000,5),(905,559684800,4),(905,575409600,5),(905,591134400,4),(905,606859200,5),(905,622584000,4),(905,638308800,5),(905,654638400,4),(905,670363200,6),(905,686091600,7),(905,694206000,1),(906,-1441162751,1),(906,-405140400,3),(906,354916800,2),(906,370724400,3),(906,386452800,2),(906,402260400,3),(906,417988800,2),(906,433796400,3),(906,449611200,2),(906,465343200,4),(906,481068000,5),(906,496792800,4),(906,512517600,5),(906,528242400,4),(906,543967200,5),(906,559692000,4),(906,575416800,5),(906,591141600,4),(906,606866400,5),(906,622591200,4),(906,638316000,5),(906,654645600,4),(906,670370400,6),(906,686098800,7),(906,694213200,1),(906,701816400,8),(906,717537600,1),(906,733266000,8),(906,748987200,1),(906,764715600,8),(906,780436800,3),(906,796161600,2),(906,811882800,3),(906,828216000,2),(906,859662000,2),(906,877806000,3),(906,891115200,2),(906,909255600,3),(906,922564800,2),(906,941310000,3),(906,954014400,2),(906,972759600,3),(906,985464000,2),(906,1004209200,3),(906,1017518400,2),(906,1035658800,3),(906,1048968000,2),(906,1067108400,3),(906,1080417600,2),(906,1088276400,8),(906,1099177200,7),(906,1111878000,3),(907,-1704165944,1),(907,-757394744,2),(907,247177800,4),(907,259272000,3),(907,277758000,4),(907,283982400,2),(907,290809800,5),(907,306531000,2),(907,322432200,5),(907,338499000,2),(907,673216200,5),(907,685481400,2),(907,701209800,5),(907,717103800,2),(907,732745800,5),(907,748639800,2),(907,764281800,5),(907,780175800,2),(907,795817800,5),(907,811711800,2),(907,827353800,5),(907,843247800,2),(907,858976200,5),(907,874870200,2),(907,890512200,5),(907,906406200,2),(907,922048200,5),(907,937942200,2),(907,953584200,5),(907,969478200,2),(907,985206600,5),(907,1001100600,2),(907,1016742600,5),(907,1032636600,2),(907,1048278600,5),(907,1064172600,2),(907,1079814600,5),(907,1095708600,2),(907,1111437000,5),(907,1127331000,2),(907,1206045000,5),(907,1221939000,2),(907,1237667400,5),(907,1253561400,2),(907,1269203400,5),(907,1285097400,2),(907,1300739400,5),(907,1316633400,2),(907,1332275400,5),(907,1348169400,2),(907,1363897800,5),(907,1379791800,2),(907,1395433800,5),(907,1411327800,2),(907,1426969800,5),(907,1442863800,2),(907,1458505800,5),(907,1474399800,2),(907,1490128200,5),(907,1506022200,2),(907,1521664200,5),(907,1537558200,2),(907,1553200200,5),(907,1569094200,2),(907,1584736200,5),(907,1600630200,2),(907,1616358600,5),(907,1632252600,2),(907,1647894600,5),(907,1663788600,2),(907,1679430600,5),(907,1695324600,2),(907,1710966600,5),(907,1726860600,2),(907,1742589000,5),(907,1758483000,2),(907,1774125000,5),(907,1790019000,2),(907,1805661000,5),(907,1821555000,2),(907,1837197000,5),(907,1853091000,2),(907,1868733000,5),(907,1884627000,2),(907,1900355400,5),(907,1916249400,2),(907,1931891400,5),(907,1947785400,2),(907,1963427400,5),(907,1979321400,2),(907,1994963400,5),(907,2010857400,2),(907,2026585800,5),(907,2042479800,2),(907,2058121800,5),(907,2074015800,2),(907,2089657800,5),(907,2105551800,2),(907,2121193800,5),(907,2137087800,2),(908,-1641003640,2),(908,-933645600,1),(908,-857358000,2),(908,-844300800,1),(908,-825822000,2),(908,-812685600,1),(908,-794199600,2),(908,-779853600,1),(908,-762656400,2),(908,-748310400,1),(908,-731127600,2),(908,-681962400,3),(908,-673243200,1),(908,-667962000,2),(908,-652327200,1),(908,-636426000,2),(908,-622087200,1),(908,-608947200,2),(908,-591847200,1),(908,-572486400,2),(908,-558576000,1),(908,-542851200,2),(908,-527731200,1),(908,-514425600,2),(908,-490845600,1),(908,-482986800,2),(908,-459475200,1),(908,-451537200,2),(908,-428551200,1),(908,-418262400,2),(908,-400032000,1),(908,-387428400,2),(908,142380000,1),(908,150843600,2),(908,167176800,1),(908,178664400,2),(908,482277600,1),(908,495579600,2),(908,516751200,1),(908,526424400,2),(908,545436000,1),(908,558478800,2),(908,576626400,1),(908,589323600,2),(908,609890400,1),(908,620773200,2),(908,638316000,1),(908,651618000,2),(908,669765600,1),(908,683672400,2),(908,701820000,1),(908,715726800,2),(908,733701600,1),(908,747176400,2),(908,765151200,1),(908,778021200,2),(908,796600800,1),(908,810075600,2),(908,826840800,1),(908,842821200,2),(908,858895200,1),(908,874184400,2),(908,890344800,1),(908,905029200,2),(908,923011200,1),(908,936313200,2),(908,955670400,1),(908,970783200,2),(908,986770800,1),(908,1001282400,2),(908,1017356400,1),(908,1033941600,2),(908,1048806000,1),(908,1065132000,2),(908,1081292400,1),(908,1095804000,2),(908,1112313600,1),(908,1128812400,2),(908,1143763200,1),(908,1159657200,2),(908,1175212800,1),(908,1189897200,2),(908,1206662400,1),(908,1223161200,2),(908,1238112000,1),(908,1254006000,2),(908,1269561600,1),(908,1284246000,2),(908,1301616000,1),(908,1317510000,2),(908,1333065600,1),(908,1348354800,2),(908,1364515200,1),(908,1382828400,2),(908,1395964800,1),(908,1414278000,2),(908,1427414400,1),(908,1445727600,2),(908,1458864000,1),(908,1477782000,2),(908,1490313600,1),(908,1509231600,2),(908,1521763200,1),(908,1540681200,2),(908,1553817600,1),(908,1572130800,2),(908,1585267200,1),(908,1603580400,2),(908,1616716800,1),(908,1635634800,2),(908,1648166400,1),(908,1667084400,2),(908,1679616000,1),(908,1698534000,2),(908,1711670400,1),(908,1729983600,2),(908,1743120000,1),(908,1761433200,2),(908,1774569600,1),(908,1792882800,2),(908,1806019200,1),(908,1824937200,2),(908,1837468800,1),(908,1856386800,2),(908,1868918400,1),(908,1887836400,2),(908,1900972800,1),(908,1919286000,2),(908,1932422400,1),(908,1950735600,2),(908,1963872000,1),(908,1982790000,2),(908,1995321600,1),(908,2014239600,2),(908,2026771200,1),(908,2045689200,2),(908,2058220800,1),(908,2077138800,2),(908,2090275200,1),(908,2108588400,2),(908,2121724800,1),(908,2140038000,2),(909,-706341516,1),(909,560025000,2),(910,-706341516,1),(910,560025000,2),(911,-683802000,0),(911,-672314400,1),(911,-654771600,0),(911,-640864800,1),(911,-620298000,0),(911,-609415200,1),(911,-588848400,0),(911,-577965600,1),(912,-1578807591,1),(912,-1247551200,3),(912,354906000,2),(912,370713600,3),(912,386442000,2),(912,402249600,3),(912,417978000,2),(912,433785600,3),(912,449600400,2),(912,465332400,4),(912,481057200,5),(912,496782000,4),(912,512506800,5),(912,528231600,4),(912,543956400,5),(912,559681200,4),(912,575406000,5),(912,591130800,4),(912,606855600,5),(912,622580400,4),(912,638305200,5),(912,654634800,4),(912,670359600,6),(912,686088000,7),(912,695764800,4),(912,701809200,5),(912,717534000,4),(912,733258800,5),(912,748983600,4),(912,764708400,5),(912,780433200,4),(912,796158000,5),(912,811882800,4),(912,828212400,5),(912,846356400,4),(912,859662000,5),(912,877806000,4),(912,891111600,5),(912,909255600,4),(912,922561200,5),(912,941310000,4),(912,954010800,5),(912,972759600,4),(912,985460400,5),(912,1004209200,4),(912,1017514800,5),(912,1020193200,8),(912,1035662400,7),(912,1048968000,6),(912,1067112000,7),(912,1080417600,6),(912,1099166400,7),(912,1111867200,6),(912,1130616000,7),(912,1143316800,6),(912,1162065600,7),(912,1174766400,6),(912,1193515200,7),(912,1206820800,6),(912,1224964800,7),(912,1238270400,6),(912,1256414400,7),(912,1269720000,6),(912,1288468800,7),(912,1301169600,4),(912,1414263600,7),(912,1464465600,4),(913,-1577951856,1),(913,-1172908656,2),(913,-880272000,3),(913,-766054800,4),(914,-2032931252,1),(914,252435600,3),(914,417974400,2),(914,433782000,3),(914,449596800,2),(914,465318000,3),(914,481046400,2),(914,496767600,3),(914,512496000,2),(914,528217200,3),(914,543945600,2),(914,559666800,3),(914,575395200,2),(914,591116400,3),(914,606844800,2),(914,622566000,3),(914,638294400,2),(914,654620400,3),(914,670348800,2),(914,686070000,3),(914,701798400,2),(914,717519600,3),(914,733248000,2),(914,748969200,3),(914,764697600,2),(914,780418800,3),(914,796147200,2),(914,811868400,3),(914,828201600,2),(914,843922800,3),(914,859651200,2),(914,875372400,3),(914,891100800,2),(914,906822000,3),(914,988394400,2),(914,1001696400,3),(914,1017424800,2),(914,1033146000,3),(914,1048874400,2),(914,1064595600,3),(914,1080324000,2),(914,1096045200,3),(914,1111773600,2),(914,1127494800,3),(914,1143223200,2),(914,1159549200,3),(914,1427479200,2),(914,1443193200,3),(914,1458928800,2),(914,1474642800,3),(915,-2032931252,1),(915,252435600,3),(915,417974400,2),(915,433782000,3),(915,449596800,2),(915,465318000,3),(915,481046400,2),(915,496767600,3),(915,512496000,2),(915,528217200,3),(915,543945600,2),(915,559666800,3),(915,575395200,2),(915,591116400,3),(915,606844800,2),(915,622566000,3),(915,638294400,2),(915,654620400,3),(915,670348800,2),(915,686070000,3),(915,701798400,2),(915,717519600,3),(915,733248000,2),(915,748969200,3),(915,764697600,2),(915,780418800,3),(915,796147200,2),(915,811868400,3),(915,828201600,2),(915,843922800,3),(915,859651200,2),(915,875372400,3),(915,891100800,2),(915,906822000,3),(915,988394400,2),(915,1001696400,3),(915,1017424800,2),(915,1033146000,3),(915,1048874400,2),(915,1064595600,3),(915,1080324000,2),(915,1096045200,3),(915,1111773600,2),(915,1127494800,3),(915,1143223200,2),(915,1159549200,3),(915,1427479200,2),(915,1443193200,3),(915,1458928800,2),(915,1474642800,3),(916,-1325483420,1),(917,-1579426374,1),(917,-1247558400,2),(917,354898800,4),(917,370699200,3),(917,386427600,4),(917,402235200,3),(917,417963600,4),(917,433771200,3),(917,449586000,4),(917,465318000,5),(917,481042800,6),(917,496767600,5),(917,512492400,6),(917,528217200,5),(917,543942000,6),(917,559666800,5),(917,575391600,6),(917,591116400,5),(917,606841200,6),(917,622566000,5),(917,638290800,6),(917,654620400,5),(917,670345200,7),(917,686073600,8),(917,695750400,5),(917,701794800,6),(917,717519600,5),(917,733244400,6),(917,748969200,5),(917,764694000,6),(917,780418800,5),(917,796143600,6),(917,811868400,5),(917,828198000,6),(917,846342000,5),(917,859647600,6),(917,877791600,5),(917,891097200,6),(917,909241200,5),(917,922546800,6),(917,941295600,5),(917,953996400,6),(917,972745200,5),(917,985446000,6),(917,1004194800,5),(917,1017500400,6),(917,1035644400,5),(917,1048950000,6),(917,1067094000,5),(917,1080399600,6),(917,1099148400,5),(917,1111849200,6),(917,1130598000,5),(917,1143298800,6),(917,1162047600,5),(917,1174748400,6),(917,1193497200,5),(917,1206802800,6),(917,1224946800,5),(917,1238252400,6),(917,1256396400,5),(917,1269702000,6),(917,1288450800,5),(917,1301151600,9),(917,1315828800,5),(917,1414249200,8),(918,-1570084924,1),(919,-1487321251,1),(919,-1247562000,3),(919,354895200,2),(919,370702800,3),(919,386431200,2),(919,402238800,3),(919,417967200,2),(919,433774800,3),(919,449589600,2),(919,465321600,4),(919,481046400,5),(919,496771200,4),(919,512496000,5),(919,528220800,4),(919,543945600,5),(919,559670400,4),(919,575395200,5),(919,591120000,4),(919,606844800,5),(919,622569600,4),(919,638294400,5),(919,654624000,4),(919,670348800,6),(919,686077200,7),(919,695754000,4),(919,701798400,5),(919,717523200,4),(919,733248000,5),(919,748972800,4),(919,764697600,5),(919,780422400,4),(919,796147200,5),(919,811872000,4),(919,828201600,5),(919,846345600,4),(919,859651200,5),(919,877795200,4),(919,891100800,5),(919,909244800,4),(919,922550400,5),(919,941299200,4),(919,954000000,5),(919,972748800,4),(919,985449600,5),(919,1004198400,4),(919,1017504000,5),(919,1035648000,4),(919,1048953600,5),(919,1067097600,4),(919,1080403200,5),(919,1099152000,4),(919,1111852800,5),(919,1130601600,4),(919,1143302400,5),(919,1162051200,4),(919,1174752000,5),(919,1193500800,4),(919,1206806400,5),(919,1224950400,4),(919,1238256000,5),(919,1256400000,4),(919,1269705600,5),(919,1288454400,4),(919,1301155200,8),(919,1414249200,4),(920,-1579423138,1),(920,-1247558400,3),(920,354898800,2),(920,370706400,3),(920,386434800,2),(920,402242400,3),(920,417970800,2),(920,433778400,3),(920,449593200,2),(920,465325200,4),(920,481050000,5),(920,496774800,4),(920,512499600,5),(920,528224400,4),(920,543949200,5),(920,559674000,4),(920,575398800,5),(920,591123600,4),(920,606848400,5),(920,622573200,4),(920,638298000,5),(920,654627600,4),(920,670352400,6),(920,686080800,7),(920,695757600,4),(920,701802000,5),(920,717526800,4),(920,733251600,5),(920,748976400,4),(920,764701200,5),(920,780426000,4),(920,796150800,5),(920,811875600,4),(920,828205200,5),(920,846349200,4),(920,859654800,5),(920,877798800,4),(920,891104400,5),(920,909248400,4),(920,922554000,5),(920,941302800,4),(920,954003600,5),(920,972752400,4),(920,985453200,5),(920,1004202000,4),(920,1017507600,5),(920,1035651600,4),(920,1048957200,5),(920,1067101200,4),(920,1080406800,5),(920,1099155600,4),(920,1111856400,5),(920,1130605200,4),(920,1143306000,5),(920,1162054800,4),(920,1174755600,5),(920,1193504400,4),(920,1206810000,5),(920,1224954000,4),(920,1238259600,5),(920,1256403600,4),(920,1269709200,5),(920,1288458000,4),(920,1301158800,8),(920,1414252800,4),(921,-1577946287,1),(921,-873268200,2),(921,-778410000,1),(922,-1688270553,1),(922,-1592610305,2),(922,-1247544000,4),(922,354913200,3),(922,370720800,4),(922,386449200,3),(922,402256800,4),(922,417985200,3),(922,433792800,4),(922,449607600,3),(922,465339600,5),(922,481064400,6),(922,496789200,5),(922,512514000,6),(922,528238800,5),(922,543963600,6),(922,559688400,5),(922,575413200,6),(922,591138000,5),(922,606862800,6),(922,622587600,5),(922,638312400,6),(922,654642000,5),(922,670366800,7),(922,686095200,8),(922,695772000,5),(922,701816400,6),(922,717541200,5),(922,733266000,6),(922,748990800,5),(922,764715600,6),(922,780440400,5),(922,796165200,6),(922,811890000,5),(922,828219600,6),(922,846363600,5),(922,859669200,6),(922,877813200,5),(922,891118800,6),(922,909262800,5),(922,922568400,6),(922,941317200,5),(922,954018000,6),(922,972766800,5),(922,985467600,6),(922,1004216400,5),(922,1017522000,6),(922,1035666000,5),(922,1048971600,6),(922,1067115600,5),(922,1080421200,6),(922,1099170000,5),(922,1111870800,6),(922,1130619600,5),(922,1143320400,6),(922,1162069200,5),(922,1174770000,6),(922,1193518800,5),(922,1206824400,6),(922,1224968400,5),(922,1238274000,6),(922,1256418000,5),(922,1269723600,6),(922,1288472400,5),(922,1301173200,9),(922,1414267200,5),(923,-1441162680,1),(923,-405140400,3),(923,354916800,2),(923,370724400,3),(923,386452800,2),(923,402260400,3),(923,417988800,2),(923,433796400,3),(923,449611200,2),(923,465343200,4),(923,481068000,5),(923,496792800,4),(923,512517600,5),(923,528242400,4),(923,543967200,5),(923,559692000,4),(923,575416800,5),(923,591141600,4),(923,606866400,5),(923,622591200,4),(923,638316000,5),(923,654645600,4),(923,670370400,6),(923,686098800,7),(923,701823600,6),(923,717548400,7),(923,733273200,6),(923,748998000,7),(923,764722800,6),(923,780447600,7),(923,796172400,6),(923,811897200,4),(923,852062400,3),(923,859672800,5),(923,877816800,4),(923,891122400,5),(923,909266400,4),(923,922572000,5),(923,941320800,4),(923,954021600,5),(923,972770400,4),(923,985471200,5),(923,1004220000,4),(923,1017525600,5),(923,1035669600,4),(923,1048975200,5),(923,1067119200,4),(923,1080424800,5),(923,1099173600,4),(923,1111874400,5),(923,1130623200,4),(923,1143324000,5),(923,1162072800,4),(923,1174773600,5),(923,1193522400,4),(923,1206828000,5),(923,1224972000,4),(923,1238277600,5),(923,1256421600,4),(923,1269727200,5),(923,1288476000,4),(923,1293825600,3),(923,1301176800,5),(923,1319925600,4),(924,-1830376800,5),(924,-1689548400,1),(924,-1677794400,2),(924,-1667430000,3),(924,-1647730800,4),(924,-1635807600,3),(924,-1616194800,4),(924,-1604358000,3),(924,-1584658800,4),(924,-1572735600,3),(924,-1553036400,4),(924,-1541199600,3),(924,-1521500400,4),(924,-1442444400,3),(924,-1426806000,4),(924,-1379286000,3),(924,-1364770800,4),(924,-1348441200,3),(924,-1333321200,4),(924,-1316386800,3),(924,-1301266800,4),(924,-1284332400,3),(924,-1269817200,4),(924,-1221433200,3),(924,-1206918000,4),(924,-1191193200,3),(924,-1175468400,4),(924,-1127689200,3),(924,-1111964400,4),(924,-1096844400,3),(924,-1080514800,4),(924,-1063580400,3),(924,-1049065200,4),(924,-1033340400,3),(924,-1017615600,4),(924,-1002495600,3),(924,-986166000,4),(924,-969231600,3),(924,-950482800,4),(924,-942015600,3),(924,-922662000,4),(924,-906937200,3),(924,-891126000,4),(924,-877302000,3),(924,-873676800,6),(924,-864000000,3),(924,-857948400,4),(924,-845852400,3),(924,-842832000,6),(924,-831340800,3),(924,-825894000,4),(924,-814402800,3),(924,-810777600,6),(924,-799891200,3),(924,-794444400,4),(924,-782953200,3),(924,-779328000,6),(924,-768441600,3),(924,-762994800,4),(924,-749084400,3),(924,-733359600,4),(924,-717624000,3),(924,-701899200,4),(924,-686174400,3),(924,-670449600,4),(924,-654724800,3),(924,-639000000,4),(924,-591825600,3),(924,-575496000,4),(924,-559771200,3),(924,-544046400,4),(924,-528321600,3),(924,-512596800,4),(924,-496872000,3),(924,-481147200,4),(924,-465422400,3),(924,-449697600,4),(924,-433972800,3),(924,-417643200,4),(924,-401918400,3),(924,-386193600,4),(924,-370468800,3),(924,-354744000,4),(924,-339019200,3),(924,-323294400,4),(924,-307569600,3),(924,-291844800,4),(924,-276120000,3),(924,-260395200,4),(924,-244670400,3),(924,-228340800,4),(924,-212616000,3),(924,-196891200,4),(924,-181166400,3),(924,-165441600,4),(924,-149716800,3),(924,-133992000,4),(924,-118267200,8),(924,228272400,6),(924,243997200,7),(924,260326800,6),(924,276051600,7),(924,291776400,6),(924,307504800,7),(924,323226000,6),(924,338954400,7),(924,354679200,6),(924,370404000,7),(924,386128800,6),(924,401853600,7),(924,417582000,6),(924,433303200,7),(924,449028000,6),(924,465357600,7),(924,481082400,6),(924,496807200,7),(924,512532000,6),(924,528256800,7),(924,543981600,6),(924,559706400,7),(924,575431200,6),(924,591156000,7),(924,606880800,6),(924,622605600,7),(924,638330400,6),(924,654660000,7),(924,670384800,6),(924,686109600,7),(924,701834400,6),(924,717559200,9),(924,733280400,10),(924,749005200,11),(924,764730000,10),(924,780454800,11),(924,796179600,10),(924,811904400,11),(924,828234000,10),(924,846378000,11),(924,859683600,10),(924,877827600,11),(924,891133200,10),(924,909277200,11),(924,922582800,10),(924,941331600,11),(924,954032400,10),(924,972781200,11),(924,985482000,10),(924,1004230800,11),(924,1017536400,10),(924,1035680400,11),(924,1048986000,10),(924,1067130000,11),(924,1080435600,10),(924,1099184400,11),(924,1111885200,10),(924,1130634000,11),(924,1143334800,10),(924,1162083600,11),(924,1174784400,10),(924,1193533200,11),(924,1206838800,10),(924,1224982800,11),(924,1238288400,10),(924,1256432400,11),(924,1269738000,10),(924,1288486800,11),(924,1301187600,10),(924,1319936400,11),(924,1332637200,10),(924,1351386000,11),(924,1364691600,10),(924,1382835600,11),(924,1396141200,10),(924,1414285200,11),(924,1427590800,10),(924,1445734800,11),(924,1459040400,10),(924,1477789200,11),(924,1490490000,10),(924,1509238800,11),(924,1521939600,10),(924,1540688400,11),(924,1553994000,10),(924,1572138000,11),(924,1585443600,10),(924,1603587600,11),(924,1616893200,10),(924,1635642000,11),(924,1648342800,10),(924,1667091600,11),(924,1679792400,10),(924,1698541200,11),(924,1711846800,10),(924,1729990800,11),(924,1743296400,10),(924,1761440400,11),(924,1774746000,10),(924,1792890000,11),(924,1806195600,10),(924,1824944400,11),(924,1837645200,10),(924,1856394000,11),(924,1869094800,10),(924,1887843600,11),(924,1901149200,10),(924,1919293200,11),(924,1932598800,10),(924,1950742800,11),(924,1964048400,10),(924,1982797200,11),(924,1995498000,10),(924,2014246800,11),(924,2026947600,10),(924,2045696400,11),(924,2058397200,10),(924,2077146000,11),(924,2090451600,10),(924,2108595600,11),(924,2121901200,10),(924,2140045200,11),(925,-1262281242,1),(925,136360800,2),(925,152082000,1),(925,167810400,2),(925,183531600,1),(925,199260000,2),(925,215586000,1),(925,230709600,2),(925,247035600,1),(925,262764000,2),(925,278485200,1),(925,294213600,2),(925,309934800,1),(925,325663200,2),(925,341384400,1),(925,357112800,2),(925,372834000,1),(925,388562400,2),(925,404888400,1),(925,420012000,2),(925,436338000,1),(925,452066400,2),(925,467787600,1),(925,483516000,2),(925,499237200,1),(925,514965600,2),(925,530686800,1),(925,544600800,2),(925,562136400,1),(925,576050400,2),(925,594190800,1),(925,607500000,2),(925,625640400,1),(925,638949600,2),(925,657090000,1),(925,671004000,2),(925,688539600,1),(925,702453600,2),(925,719989200,1),(925,733903200,2),(925,752043600,1),(925,765352800,2),(925,783493200,1),(925,796802400,2),(925,814942800,1),(925,828856800,2),(925,846392400,1),(925,860306400,2),(925,877842000,1),(925,891756000,2),(925,909291600,1),(925,923205600,2),(925,941346000,1),(925,954655200,2),(925,972795600,1),(925,986104800,2),(925,1004245200,1),(925,1018159200,2),(925,1035694800,1),(925,1049608800,2),(925,1067144400,1),(925,1081058400,2),(925,1099198800,1),(925,1112508000,2),(925,1130648400,1),(925,1143957600,2),(925,1162098000,1),(925,1173592800,2),(925,1194152400,1),(925,1205042400,2),(925,1225602000,1),(925,1236492000,2),(925,1257051600,1),(925,1268546400,2),(925,1289106000,1),(925,1299996000,2),(925,1320555600,1),(925,1331445600,2),(925,1352005200,1),(925,1362895200,2),(925,1383454800,1),(925,1394344800,2),(925,1414904400,1),(925,1425794400,2),(925,1446354000,1),(925,1457848800,2),(925,1478408400,1),(925,1489298400,2),(925,1509858000,1),(925,1520748000,2),(925,1541307600,1),(925,1552197600,2),(925,1572757200,1),(925,1583647200,2),(925,1604206800,1),(925,1615701600,2),(925,1636261200,1),(925,1647151200,2),(925,1667710800,1),(925,1678600800,2),(925,1699160400,1),(925,1710050400,2),(925,1730610000,1),(925,1741500000,2),(925,1762059600,1),(925,1772949600,2),(925,1793509200,1),(925,1805004000,2),(925,1825563600,1),(925,1836453600,2),(925,1857013200,1),(925,1867903200,2),(925,1888462800,1),(925,1899352800,2),(925,1919912400,1),(925,1930802400,2),(925,1951362000,1),(925,1962856800,2),(925,1983416400,1),(925,1994306400,2),(925,2014866000,1),(925,2025756000,2),(925,2046315600,1),(925,2057205600,2),(925,2077765200,1),(925,2088655200,2),(925,2109214800,1),(925,2120104800,2),(925,2140664400,1),(926,-1509663504,1),(926,-733874400,2),(926,323827200,3),(926,338950800,4),(926,354675600,5),(926,370400400,4),(926,386125200,5),(926,401850000,4),(926,417574800,5),(926,433299600,4),(926,449024400,5),(926,465354000,4),(926,481078800,5),(926,496803600,4),(926,512528400,5),(926,528253200,4),(926,543978000,5),(926,559702800,4),(926,575427600,5),(926,591152400,4),(926,606877200,5),(926,622602000,4),(926,638326800,5),(926,654656400,4),(926,670381200,5),(926,686106000,4),(926,701830800,5),(926,717555600,4),(926,733280400,5),(926,749005200,4),(926,764730000,5),(926,780454800,4),(926,796179600,5),(926,811904400,4),(926,828234000,5),(926,846378000,4),(926,859683600,5),(926,877827600,4),(926,891133200,5),(926,909277200,4),(926,922582800,5),(926,941331600,4),(926,954032400,5),(926,972781200,4),(926,985482000,5),(926,1004230800,4),(926,1017536400,5),(926,1035680400,4),(926,1048986000,5),(926,1067130000,4),(926,1080435600,5),(926,1099184400,4),(926,1111885200,5),(926,1130634000,4),(926,1143334800,5),(926,1162083600,4),(926,1174784400,5),(926,1193533200,4),(926,1206838800,5),(926,1224982800,4),(926,1238288400,5),(926,1256432400,4),(926,1269738000,5),(926,1288486800,4),(926,1301187600,5),(926,1319936400,4),(926,1332637200,5),(926,1351386000,4),(926,1364691600,5),(926,1382835600,4),(926,1396141200,5),(926,1414285200,4),(926,1427590800,5),(926,1445734800,4),(926,1459040400,5),(926,1477789200,4),(926,1490490000,5),(926,1509238800,4),(926,1521939600,5),(926,1540688400,4),(926,1553994000,5),(926,1572138000,4),(926,1585443600,5),(926,1603587600,4),(926,1616893200,5),(926,1635642000,4),(926,1648342800,5),(926,1667091600,4),(926,1679792400,5),(926,1698541200,4),(926,1711846800,5),(926,1729990800,4),(926,1743296400,5),(926,1761440400,4),(926,1774746000,5),(926,1792890000,4),(926,1806195600,5),(926,1824944400,4),(926,1837645200,5),(926,1856394000,4),(926,1869094800,5),(926,1887843600,4),(926,1901149200,5),(926,1919293200,4),(926,1932598800,5),(926,1950742800,4),(926,1964048400,5),(926,1982797200,4),(926,1995498000,5),(926,2014246800,4),(926,2026947600,5),(926,2045696400,4),(926,2058397200,5),(926,2077146000,4),(926,2090451600,5),(926,2108595600,4),(926,2121901200,5),(926,2140045200,4),(927,-1830376800,1),(927,-862610400,2),(927,-764118000,3),(927,186120000,4),(928,-1955748776,1),(928,354675600,2),(928,370400400,3),(928,386125200,2),(928,401850000,3),(928,417574800,2),(928,433299600,3),(928,449024400,2),(928,465354000,3),(928,481078800,2),(928,496803600,3),(928,512528400,2),(928,528253200,3),(928,543978000,2),(928,559702800,3),(928,575427600,2),(928,591152400,3),(928,606877200,2),(928,622602000,3),(928,638326800,2),(928,654656400,3),(928,670381200,2),(928,686106000,3),(928,701830800,2),(928,717555600,3),(928,733280400,2),(928,749005200,3),(928,764730000,2),(928,780454800,3),(928,796179600,2),(928,811904400,3),(928,828234000,2),(928,846378000,3),(928,859683600,2),(928,877827600,3),(928,891133200,2),(928,909277200,3),(928,922582800,2),(928,941331600,3),(928,954032400,2),(928,972781200,3),(928,985482000,2),(928,1004230800,3),(928,1017536400,2),(928,1035680400,3),(928,1048986000,2),(928,1067130000,3),(928,1080435600,2),(928,1099184400,3),(928,1111885200,2),(928,1130634000,3),(928,1143334800,2),(928,1162083600,3),(928,1174784400,2),(928,1193533200,3),(928,1206838800,2),(928,1224982800,3),(928,1238288400,2),(928,1256432400,3),(928,1269738000,2),(928,1288486800,3),(928,1301187600,2),(928,1319936400,3),(928,1332637200,2),(928,1351386000,3),(928,1364691600,2),(928,1382835600,3),(928,1396141200,2),(928,1414285200,3),(928,1427590800,2),(928,1445734800,3),(928,1459040400,2),(928,1477789200,3),(928,1490490000,2),(928,1509238800,3),(928,1521939600,2),(928,1540688400,3),(928,1553994000,2),(928,1572138000,3),(928,1585443600,2),(928,1603587600,3),(928,1616893200,2),(928,1635642000,3),(928,1648342800,2),(928,1667091600,3),(928,1679792400,2),(928,1698541200,3),(928,1711846800,2),(928,1729990800,3),(928,1743296400,2),(928,1761440400,3),(928,1774746000,2),(928,1792890000,3),(928,1806195600,2),(928,1824944400,3),(928,1837645200,2),(928,1856394000,3),(928,1869094800,2),(928,1887843600,3),(928,1901149200,2),(928,1919293200,3),(928,1932598800,2),(928,1950742800,3),(928,1964048400,2),(928,1982797200,3),(928,1995498000,2),(928,2014246800,3),(928,2026947600,2),(928,2045696400,3),(928,2058397200,2),(928,2077146000,3),(928,2090451600,2),(928,2108595600,3),(928,2121901200,2),(928,2140045200,3),(929,-1955748776,1),(929,354675600,2),(929,370400400,3),(929,386125200,2),(929,401850000,3),(929,417574800,2),(929,433299600,3),(929,449024400,2),(929,465354000,3),(929,481078800,2),(929,496803600,3),(929,512528400,2),(929,528253200,3),(929,543978000,2),(929,559702800,3),(929,575427600,2),(929,591152400,3),(929,606877200,2),(929,622602000,3),(929,638326800,2),(929,654656400,3),(929,670381200,2),(929,686106000,3),(929,701830800,2),(929,717555600,3),(929,733280400,2),(929,749005200,3),(929,764730000,2),(929,780454800,3),(929,796179600,2),(929,811904400,3),(929,828234000,2),(929,846378000,3),(929,859683600,2),(929,877827600,3),(929,891133200,2),(929,909277200,3),(929,922582800,2),(929,941331600,3),(929,954032400,2),(929,972781200,3),(929,985482000,2),(929,1004230800,3),(929,1017536400,2),(929,1035680400,3),(929,1048986000,2),(929,1067130000,3),(929,1080435600,2),(929,1099184400,3),(929,1111885200,2),(929,1130634000,3),(929,1143334800,2),(929,1162083600,3),(929,1174784400,2),(929,1193533200,3),(929,1206838800,2),(929,1224982800,3),(929,1238288400,2),(929,1256432400,3),(929,1269738000,2),(929,1288486800,3),(929,1301187600,2),(929,1319936400,3),(929,1332637200,2),(929,1351386000,3),(929,1364691600,2),(929,1382835600,3),(929,1396141200,2),(929,1414285200,3),(929,1427590800,2),(929,1445734800,3),(929,1459040400,2),(929,1477789200,3),(929,1490490000,2),(929,1509238800,3),(929,1521939600,2),(929,1540688400,3),(929,1553994000,2),(929,1572138000,3),(929,1585443600,2),(929,1603587600,3),(929,1616893200,2),(929,1635642000,3),(929,1648342800,2),(929,1667091600,3),(929,1679792400,2),(929,1698541200,3),(929,1711846800,2),(929,1729990800,3),(929,1743296400,2),(929,1761440400,3),(929,1774746000,2),(929,1792890000,3),(929,1806195600,2),(929,1824944400,3),(929,1837645200,2),(929,1856394000,3),(929,1869094800,2),(929,1887843600,3),(929,1901149200,2),(929,1919293200,3),(929,1932598800,2),(929,1950742800,3),(929,1964048400,2),(929,1982797200,3),(929,1995498000,2),(929,2014246800,3),(929,2026947600,2),(929,2045696400,3),(929,2058397200,2),(929,2077146000,3),(929,2090451600,2),(929,2108595600,3),(929,2121901200,2),(929,2140045200,3),(930,-1691884800,0),(930,-1680573600,1),(930,-927511200,0),(930,-857257200,2),(930,-844556400,3),(930,-828226800,2),(930,-812502000,3),(930,-796777200,2),(930,-781052400,3),(930,-765327600,2),(930,-340844400,3),(930,-324514800,2),(930,-308790000,3),(930,-293065200,2),(930,-277340400,3),(930,-261615600,2),(930,-245890800,3),(930,-230166000,2),(930,-214441200,3),(930,-198716400,2),(930,-182991600,3),(930,-166662000,2),(930,-147913200,3),(930,-135212400,2),(930,315529200,1),(930,323830800,4),(930,338950800,5),(930,354675600,4),(930,370400400,5),(930,386125200,4),(930,401850000,5),(930,417574800,4),(930,433299600,5),(930,449024400,4),(930,465354000,5),(930,481078800,4),(930,496803600,5),(930,512528400,4),(930,528253200,5),(930,543978000,4),(930,559702800,5),(930,575427600,4),(930,591152400,5),(930,606877200,4),(930,622602000,5),(930,638326800,4),(930,654656400,5),(930,670381200,4),(930,686106000,5),(930,701830800,4),(930,717555600,5),(930,733280400,4),(930,749005200,5),(930,764730000,4),(930,780454800,5),(930,796179600,4),(930,811904400,5),(930,828234000,4),(930,846378000,5),(930,859683600,4),(930,877827600,5),(930,891133200,4),(930,909277200,5),(930,922582800,4),(930,941331600,5),(930,954032400,4),(930,972781200,5),(930,985482000,4),(930,1004230800,5),(930,1017536400,4),(930,1035680400,5),(930,1048986000,4),(930,1067130000,5),(930,1080435600,4),(930,1099184400,5),(930,1111885200,4),(930,1130634000,5),(930,1143334800,4),(930,1162083600,5),(930,1174784400,4),(930,1193533200,5),(930,1206838800,4),(930,1224982800,5),(930,1238288400,4),(930,1256432400,5),(930,1269738000,4),(930,1288486800,5),(930,1301187600,4),(930,1319936400,5),(930,1332637200,4),(930,1351386000,5),(930,1364691600,4),(930,1382835600,5),(930,1396141200,4),(930,1414285200,5),(930,1427590800,4),(930,1445734800,5),(930,1459040400,4),(930,1477789200,5),(930,1490490000,4),(930,1509238800,5),(930,1521939600,4),(930,1540688400,5),(930,1553994000,4),(930,1572138000,5),(930,1585443600,4),(930,1603587600,5),(930,1616893200,4),(930,1635642000,5),(930,1648342800,4),(930,1667091600,5),(930,1679792400,4),(930,1698541200,5),(930,1711846800,4),(930,1729990800,5),(930,1743296400,4),(930,1761440400,5),(930,1774746000,4),(930,1792890000,5),(930,1806195600,4),(930,1824944400,5),(930,1837645200,4),(930,1856394000,5),(930,1869094800,4),(930,1887843600,5),(930,1901149200,4),(930,1919293200,5),(930,1932598800,4),(930,1950742800,5),(930,1964048400,4),(930,1982797200,5),(930,1995498000,4),(930,2014246800,5),(930,2026947600,4),(930,2045696400,5),(930,2058397200,4),(930,2077146000,5),(930,2090451600,4),(930,2108595600,5),(930,2121901200,4),(930,2140045200,5),(931,-1830380400,5),(931,-1689552000,1),(931,-1677798000,2),(931,-1667433600,3),(931,-1647734400,4),(931,-1635811200,3),(931,-1616198400,4),(931,-1604361600,3),(931,-1584662400,4),(931,-1572739200,3),(931,-1553040000,4),(931,-1541203200,3),(931,-1521504000,4),(931,-1442448000,3),(931,-1426809600,4),(931,-1379289600,3),(931,-1364774400,4),(931,-1348444800,3),(931,-1333324800,4),(931,-1316390400,3),(931,-1301270400,4),(931,-1284336000,3),(931,-1269820800,4),(931,-1221436800,3),(931,-1206921600,4),(931,-1191196800,3),(931,-1175472000,4),(931,-1127692800,3),(931,-1111968000,4),(931,-1096848000,3),(931,-1080518400,4),(931,-1063584000,3),(931,-1049068800,4),(931,-1033344000,3),(931,-1017619200,4),(931,-1002499200,3),(931,-986169600,4),(931,-969235200,3),(931,-950486400,4),(931,-942019200,3),(931,-922665600,4),(931,-906940800,3),(931,-891129600,4),(931,-877305600,3),(931,-873680400,6),(931,-864003600,3),(931,-857952000,4),(931,-845856000,3),(931,-842835600,6),(931,-831344400,3),(931,-825897600,4),(931,-814406400,3),(931,-810781200,6),(931,-799894800,3),(931,-794448000,4),(931,-782956800,3),(931,-779331600,6),(931,-768445200,3),(931,-762998400,4),(931,-749088000,3),(931,-733363200,4),(931,-717627600,3),(931,-701902800,4),(931,-686178000,3),(931,-670453200,4),(931,-654728400,3),(931,-639003600,4),(931,-591829200,3),(931,-575499600,4),(931,-559774800,3),(931,-544050000,4),(931,-528325200,3),(931,-512600400,4),(931,-496875600,3),(931,-481150800,4),(931,-465426000,3),(931,-449701200,4),(931,-433976400,3),(931,-417646800,4),(931,-401922000,3),(931,-386197200,4),(931,-370472400,3),(931,-354747600,4),(931,-339022800,3),(931,-323298000,4),(931,-307573200,3),(931,-291848400,4),(931,-276123600,3),(931,-260398800,4),(931,-244674000,3),(931,-228344400,4),(931,-212619600,3),(931,-196894800,4),(931,-181170000,3),(931,-165445200,4),(931,-149720400,3),(931,-133995600,4),(931,-118270800,9),(931,228268800,7),(931,243993600,8),(931,260323200,7),(931,276048000,8),(931,291772800,7),(931,307501200,8),(931,323222400,7),(931,338950800,8),(931,354675600,7),(931,370400400,8),(931,386125200,7),(931,401850000,8),(931,417578400,7),(931,433299600,10),(931,449024400,11),(931,465354000,10),(931,481078800,11),(931,496803600,10),(931,512528400,11),(931,528253200,10),(931,543978000,11),(931,559702800,10),(931,575427600,11),(931,591152400,10),(931,606877200,11),(931,622602000,10),(931,638326800,11),(931,654656400,10),(931,670381200,11),(931,686106000,10),(931,701830800,11),(931,717555600,10),(931,733280400,11),(931,749005200,10),(931,764730000,11),(931,780454800,10),(931,796179600,11),(931,811904400,10),(931,828234000,11),(931,846378000,10),(931,859683600,11),(931,877827600,10),(931,891133200,11),(931,909277200,10),(931,922582800,11),(931,941331600,10),(931,954032400,11),(931,972781200,10),(931,985482000,11),(931,1004230800,10),(931,1017536400,11),(931,1035680400,10),(931,1048986000,11),(931,1067130000,10),(931,1080435600,11),(931,1099184400,10),(931,1111885200,11),(931,1130634000,10),(931,1143334800,11),(931,1162083600,10),(931,1174784400,11),(931,1193533200,10),(931,1206838800,11),(931,1224982800,10),(931,1238288400,11),(931,1256432400,10),(931,1269738000,11),(931,1288486800,10),(931,1301187600,11),(931,1319936400,10),(931,1332637200,11),(931,1351386000,10),(931,1364691600,11),(931,1382835600,10),(931,1396141200,11),(931,1414285200,10),(931,1427590800,11),(931,1445734800,10),(931,1459040400,11),(931,1477789200,10),(931,1490490000,11),(931,1509238800,10),(931,1521939600,11),(931,1540688400,10),(931,1553994000,11),(931,1572138000,10),(931,1585443600,11),(931,1603587600,10),(931,1616893200,11),(931,1635642000,10),(931,1648342800,11),(931,1667091600,10),(931,1679792400,11),(931,1698541200,10),(931,1711846800,11),(931,1729990800,10),(931,1743296400,11),(931,1761440400,10),(931,1774746000,11),(931,1792890000,10),(931,1806195600,11),(931,1824944400,10),(931,1837645200,11),(931,1856394000,10),(931,1869094800,11),(931,1887843600,10),(931,1901149200,11),(931,1919293200,10),(931,1932598800,11),(931,1950742800,10),(931,1964048400,11),(931,1982797200,10),(931,1995498000,11),(931,2014246800,10),(931,2026947600,11),(931,2045696400,10),(931,2058397200,11),(931,2077146000,10),(931,2090451600,11),(931,2108595600,10),(931,2121901200,11),(931,2140045200,10),(932,-1956609120,2),(932,-1668211200,1),(932,-1647212400,2),(932,-1636675200,1),(932,-1613430000,2),(932,-1605139200,1),(932,-1581894000,2),(932,-1539561600,1),(932,-1531350000,2),(932,-968025600,1),(932,-952293600,2),(932,-942008400,1),(932,-920239200,3),(932,-909957600,4),(932,-888789600,3),(932,-877903200,4),(932,-857944800,3),(932,-846453600,4),(932,-826495200,3),(932,-815004000,4),(932,-795045600,3),(932,-783554400,4),(932,-762991200,3),(932,-752104800,4),(932,-731541600,3),(932,-717631200,4),(932,-700092000,3),(932,-686181600,4),(932,-668642400,3),(932,-654732000,4),(932,-636588000,3),(932,-623282400,4),(932,-605743200,3),(932,-591832800,4),(932,-573688800,3),(932,-559778400,4),(932,-542239200,3),(932,-528328800,4),(932,-510789600,3),(932,-496879200,4),(932,-479340000,3),(932,-465429600,4),(932,-447890400,3),(932,-433980000,4),(932,-415836000,3),(932,-401925600,4),(932,-384386400,3),(932,-370476000,4),(932,-352936800,3),(932,-339026400,4),(932,-321487200,3),(932,-307576800,4),(932,-290037600,3),(932,-276127200,4),(932,-258588000,3),(932,-244677600,4),(932,-226533600,3),(932,-212623200,4),(932,-195084000,3),(932,-181173600,4),(932,-163634400,3),(932,-149724000,4),(932,-132184800,3),(932,-118274400,4),(932,-100735200,3),(932,-86824800,4),(932,-68680800,3),(932,-54770400,5),(934,-1830383032,1),(935,-1824235716,2),(935,-1018209600,1),(935,-1003093200,2),(935,-986760000,1),(935,-971643600,2),(935,-954705600,1),(935,-939589200,2),(935,-923256000,1),(935,-908139600,2),(935,-891806400,1),(935,-876690000,2),(935,-860356800,1),(935,-852066000,2),(935,420609600,4),(935,433306800,3),(935,452052000,4),(935,464151600,3),(935,483501600,4),(935,495601200,1),(935,514350000,2),(935,527054400,1),(935,545799600,2),(935,558504000,1),(935,577249200,2),(935,589953600,1),(935,608698800,2),(935,621403200,1),(935,640753200,2),(935,652852800,1),(935,672202800,2),(935,684907200,1),(935,703652400,2),(935,716356800,1),(935,735102000,2),(935,747806400,1),(935,766551600,2),(935,779256000,1),(935,798001200,2),(935,810705600,1),(935,830055600,2),(935,842760000,1),(935,861505200,2),(935,874209600,1),(935,892954800,2),(935,905659200,1),(935,924404400,2),(935,937108800,1),(935,955854000,2),(935,968558400,1),(935,987310800,2),(935,999410400,1),(935,1019365200,2),(935,1030860000,1),(935,1050814800,2),(935,1062914400,1),(935,1082264400,2),(935,1094364000,1),(935,1113714000,2),(935,1125813600,1),(935,1145163600,2),(935,1157263200,1),(935,1176613200,2),(935,1188712800,1),(935,1208667600,2),(935,1220767200,1),(935,1240117200,2),(935,1252216800,1),(935,1271566800,2),(935,1283666400,4),(936,-1672567140,0),(936,-1665392400,1),(936,-883641600,0),(936,-876128400,1),(936,-860400000,0),(936,-844678800,1),(936,-828345600,0),(936,-813229200,1),(936,57686400,2),(936,67968000,3),(936,89136000,2),(936,100022400,3),(936,120585600,2),(936,131472000,3),(936,152035200,2),(936,162921600,3),(936,183484800,2),(936,194976000,3),(936,215539200,2),(936,226425600,3),(936,246988800,2),(936,257875200,3),(936,278438400,2),(936,289324800,3),(936,309888000,2),(936,320774400,3),(936,341337600,2),(936,352224000,3),(936,372787200,2),(936,386697600,3),(936,404841600,2),(936,415728000,3),(936,436291200,2),(936,447177600,3),(936,467740800,2),(936,478627200,3),(936,499190400,2),(936,511286400,3),(936,530035200,2),(936,542736000,3),(936,562089600,2),(936,574790400,3),(936,594144000,2),(936,606240000,3),(936,625593600,2),(936,636480000,3),(936,657043200,2),(936,667929600,3),(936,688492800,2),(936,699379200,3),(936,719942400,2),(936,731433600,3),(936,751996800,2),(936,762883200,3),(936,783446400,2),(936,794332800,3),(936,814896000,2),(936,828201600,3),(936,846345600,2),(936,859651200,3),(936,877795200,2),(936,891100800,3),(936,909244800,2),(936,922550400,3),(936,941299200,2),(936,954000000,3),(936,967305600,2),(936,985449600,3),(936,1004198400,2),(936,1017504000,3),(936,1035648000,2),(936,1048953600,3),(936,1067097600,2),(936,1080403200,3),(936,1099152000,2),(936,1111852800,3),(936,1130601600,2),(936,1143907200,3),(936,1162051200,2),(936,1174752000,3),(936,1193500800,2),(936,1207411200,3),(936,1223136000,2),(936,1238860800,3),(936,1254585600,2),(936,1270310400,3),(936,1286035200,2),(936,1301760000,3),(936,1317484800,2),(936,1333209600,3),(936,1349539200,2),(936,1365264000,3),(936,1380988800,2),(936,1396713600,3),(936,1412438400,2),(936,1428163200,3),(936,1443888000,2),(936,1459612800,3),(936,1475337600,2),(936,1491062400,3),(936,1506787200,2),(936,1522512000,3),(936,1538841600,2),(936,1554566400,3),(936,1570291200,2),(936,1586016000,3),(936,1601740800,2),(936,1617465600,3),(936,1633190400,2),(936,1648915200,3),(936,1664640000,2),(936,1680364800,3),(936,1696089600,2),(936,1712419200,3),(936,1728144000,2),(936,1743868800,3),(936,1759593600,2),(936,1775318400,3),(936,1791043200,2),(936,1806768000,3),(936,1822492800,2),(936,1838217600,3),(936,1853942400,2),(936,1869667200,3),(936,1885996800,2),(936,1901721600,3),(936,1917446400,2),(936,1933171200,3),(936,1948896000,2),(936,1964620800,3),(936,1980345600,2),(936,1996070400,3),(936,2011795200,2),(936,2027520000,3),(936,2043244800,2),(936,2058969600,3),(936,2075299200,2),(936,2091024000,3),(936,2106748800,2),(936,2122473600,3),(936,2138198400,2),(937,-1672565340,0),(937,-1665390600,1),(937,-883639800,0),(937,-876126600,1),(937,-860398200,0),(937,-844677000,1),(937,-828343800,0),(937,-813227400,1),(937,57688200,2),(937,67969800,3),(937,89137800,2),(937,100024200,3),(937,120587400,2),(937,131473800,3),(937,152037000,2),(937,162923400,3),(937,183486600,2),(937,194977800,3),(937,215541000,2),(937,226427400,3),(937,246990600,2),(937,257877000,3),(937,278440200,2),(937,289326600,3),(937,309889800,2),(937,320776200,3),(937,341339400,2),(937,352225800,3),(937,372789000,2),(937,384280200,3),(937,404843400,2),(937,415729800,3),(937,436293000,2),(937,447179400,3),(937,467742600,2),(937,478629000,3),(937,499192200,2),(937,511288200,3),(937,530037000,2),(937,542737800,3),(937,562091400,2),(937,574792200,3),(937,594145800,2),(937,606241800,3),(937,625595400,2),(937,637691400,3),(937,657045000,2),(937,667931400,3),(937,688494600,2),(937,701195400,3),(937,719944200,2),(937,731435400,3),(937,751998600,2),(937,764094600,3),(937,783448200,2),(937,796149000,3),(937,814897800,2),(937,828203400,3),(937,846347400,2),(937,859653000,3),(937,877797000,2),(937,891102600,3),(937,909246600,2),(937,922552200,3),(937,941301000,2),(937,954001800,3),(937,972750600,2),(937,985451400,3),(937,1004200200,2),(937,1017505800,3),(937,1035649800,2),(937,1048955400,3),(937,1067099400,2),(937,1080405000,3),(937,1099153800,2),(937,1111854600,3),(937,1130603400,2),(937,1143909000,3),(937,1162053000,2),(937,1174753800,3),(937,1193502600,2),(937,1207413000,3),(937,1223137800,2),(937,1238862600,3),(937,1254587400,2),(937,1270312200,3),(937,1286037000,2),(937,1301761800,3),(937,1317486600,2),(937,1333211400,3),(937,1349541000,2),(937,1365265800,3),(937,1380990600,2),(937,1396715400,3),(937,1412440200,2),(937,1428165000,3),(937,1443889800,2),(937,1459614600,3),(937,1475339400,2),(937,1491064200,3),(937,1506789000,2),(937,1522513800,3),(937,1538843400,2),(937,1554568200,3),(937,1570293000,2),(937,1586017800,3),(937,1601742600,2),(937,1617467400,3),(937,1633192200,2),(937,1648917000,3),(937,1664641800,2),(937,1680366600,3),(937,1696091400,2),(937,1712421000,3),(937,1728145800,2),(937,1743870600,3),(937,1759595400,2),(937,1775320200,3),(937,1791045000,2),(937,1806769800,3),(937,1822494600,2),(937,1838219400,3),(937,1853944200,2),(937,1869669000,3),(937,1885998600,2),(937,1901723400,3),(937,1917448200,2),(937,1933173000,3),(937,1948897800,2),(937,1964622600,3),(937,1980347400,2),(937,1996072200,3),(937,2011797000,2),(937,2027521800,3),(937,2043246600,2),(937,2058971400,3),(937,2075301000,2),(937,2091025800,3),(937,2106750600,2),(937,2122475400,3),(937,2138200200,2),(938,-1672567140,0),(938,-1665392400,1),(938,-883641600,0),(938,-876128400,1),(938,-860400000,0),(938,-844678800,1),(938,-828345600,0),(938,-813229200,1),(938,57686400,2),(938,67968000,3),(938,625593600,2),(938,636480000,3),(938,657043200,2),(938,667929600,3),(938,688492800,2),(938,699379200,3),(939,-1672565340,0),(939,-1665390600,1),(939,-883639800,0),(939,-876126600,1),(939,-860398200,0),(939,-844677000,1),(939,-828343800,0),(939,-813227400,1),(939,57688200,2),(939,67969800,3),(939,89137800,2),(939,100024200,3),(939,120587400,2),(939,131473800,3),(939,152037000,2),(939,162923400,3),(939,183486600,2),(939,194977800,3),(939,215541000,2),(939,226427400,3),(939,246990600,2),(939,257877000,3),(939,278440200,2),(939,289326600,3),(939,309889800,2),(939,320776200,3),(939,341339400,2),(939,352225800,3),(939,372789000,2),(939,386699400,3),(939,404843400,2),(939,415729800,3),(939,436293000,2),(939,447179400,3),(939,467742600,2),(939,478629000,3),(939,499192200,2),(939,511288200,3),(939,530037000,2),(939,542737800,3),(939,562091400,2),(939,574792200,3),(939,594145800,2),(939,606241800,3),(939,625595400,2),(939,636481800,3),(939,657045000,2),(939,667931400,3),(939,688494600,2),(939,699381000,3),(939,719944200,2),(939,731435400,3),(939,751998600,2),(939,762885000,3),(939,783448200,2),(939,794334600,3),(939,814897800,2),(939,828203400,3),(939,846347400,2),(939,859653000,3),(939,877797000,2),(939,891102600,3),(939,909246600,2),(939,922552200,3),(939,941301000,2),(939,946647000,0),(939,954001800,3),(939,972750600,2),(939,985451400,3),(939,1004200200,2),(939,1017505800,3),(939,1035649800,2),(939,1048955400,3),(939,1067099400,2),(939,1080405000,3),(939,1099153800,2),(939,1111854600,3),(939,1130603400,2),(939,1143909000,3),(939,1162053000,2),(939,1174753800,3),(939,1193502600,2),(939,1207413000,3),(939,1223137800,2),(939,1238862600,3),(939,1254587400,2),(939,1270312200,3),(939,1286037000,2),(939,1301761800,3),(939,1317486600,2),(939,1333211400,3),(939,1349541000,2),(939,1365265800,3),(939,1380990600,2),(939,1396715400,3),(939,1412440200,2),(939,1428165000,3),(939,1443889800,2),(939,1459614600,3),(939,1475339400,2),(939,1491064200,3),(939,1506789000,2),(939,1522513800,3),(939,1538843400,2),(939,1554568200,3),(939,1570293000,2),(939,1586017800,3),(939,1601742600,2),(939,1617467400,3),(939,1633192200,2),(939,1648917000,3),(939,1664641800,2),(939,1680366600,3),(939,1696091400,2),(939,1712421000,3),(939,1728145800,2),(939,1743870600,3),(939,1759595400,2),(939,1775320200,3),(939,1791045000,2),(939,1806769800,3),(939,1822494600,2),(939,1838219400,3),(939,1853944200,2),(939,1869669000,3),(939,1885998600,2),(939,1901723400,3),(939,1917448200,2),(939,1933173000,3),(939,1948897800,2),(939,1964622600,3),(939,1980347400,2),(939,1996072200,3),(939,2011797000,2),(939,2027521800,3),(939,2043246600,2),(939,2058971400,3),(939,2075301000,2),(939,2091025800,3),(939,2106750600,2),(939,2122475400,3),(939,2138200200,2),(940,-1672567140,0),(940,-1665392400,1),(940,-883641600,0),(940,-876128400,1),(940,-860400000,0),(940,-844678800,1),(940,-828345600,0),(940,-813229200,1),(940,57686400,2),(940,67968000,3),(940,89136000,2),(940,100022400,3),(940,120585600,2),(940,131472000,3),(940,152035200,2),(940,162921600,3),(940,183484800,2),(940,194976000,3),(940,215539200,2),(940,226425600,3),(940,246988800,2),(940,257875200,3),(940,278438400,2),(940,289324800,3),(940,309888000,2),(940,320774400,3),(940,341337600,2),(940,352224000,3),(940,372787200,2),(940,386697600,3),(940,404841600,2),(940,415728000,3),(940,436291200,2),(940,447177600,3),(940,467740800,2),(940,478627200,3),(940,499190400,2),(940,511286400,3),(940,530035200,2),(940,542736000,3),(940,562089600,2),(940,574790400,3),(940,594144000,2),(940,606240000,3),(940,625593600,2),(940,636480000,3),(940,657043200,2),(940,667929600,3),(940,688492800,2),(940,699379200,3),(940,719942400,2),(940,731433600,3),(940,751996800,2),(940,762883200,3),(940,783446400,2),(940,794332800,3),(940,814896000,2),(940,828201600,3),(940,846345600,2),(940,859651200,3),(940,877795200,2),(940,891100800,3),(940,909244800,2),(940,922550400,3),(940,941299200,2),(940,954000000,3),(940,967305600,2),(940,985449600,3),(940,1004198400,2),(940,1017504000,3),(940,1035648000,2),(940,1048953600,3),(940,1067097600,2),(940,1080403200,3),(940,1099152000,2),(940,1111852800,3),(940,1130601600,2),(940,1143907200,3),(940,1162051200,2),(940,1174752000,3),(940,1193500800,2),(940,1207411200,3),(940,1223136000,2),(940,1238860800,3),(940,1254585600,2),(940,1270310400,3),(940,1286035200,2),(940,1301760000,3),(940,1317484800,2),(940,1333209600,3),(940,1349539200,2),(940,1365264000,3),(940,1380988800,2),(940,1396713600,3),(940,1412438400,2),(940,1428163200,3),(940,1443888000,2),(940,1459612800,3),(940,1475337600,2),(940,1491062400,3),(940,1506787200,2),(940,1522512000,3),(940,1538841600,2),(940,1554566400,3),(940,1570291200,2),(940,1586016000,3),(940,1601740800,2),(940,1617465600,3),(940,1633190400,2),(940,1648915200,3),(940,1664640000,2),(940,1680364800,3),(940,1696089600,2),(940,1712419200,3),(940,1728144000,2),(940,1743868800,3),(940,1759593600,2),(940,1775318400,3),(940,1791043200,2),(940,1806768000,3),(940,1822492800,2),(940,1838217600,3),(940,1853942400,2),(940,1869667200,3),(940,1885996800,2),(940,1901721600,3),(940,1917446400,2),(940,1933171200,3),(940,1948896000,2),(940,1964620800,3),(940,1980345600,2),(940,1996070400,3),(940,2011795200,2),(940,2027520000,3),(940,2043244800,2),(940,2058969600,3),(940,2075299200,2),(940,2091024000,3),(940,2106748800,2),(940,2122473600,3),(940,2138198400,2),(941,-1680508800,1),(941,-1665392400,0),(941,-883641600,1),(941,-876128400,0),(941,-860400000,1),(941,-844678800,0),(941,-828345600,1),(941,-813229200,0),(941,57686400,2),(941,67968000,3),(941,89136000,2),(941,100022400,3),(941,120585600,2),(941,131472000,3),(941,152035200,2),(941,162921600,3),(941,183484800,2),(941,194976000,3),(941,215539200,2),(941,226425600,3),(941,246988800,2),(941,257875200,3),(941,278438400,2),(941,289324800,3),(941,309888000,2),(941,320774400,3),(941,341337600,2),(941,352224000,3),(941,372787200,2),(941,386092800,3),(941,404841600,2),(941,417542400,3),(941,436291200,2),(941,447177600,3),(941,467740800,2),(941,478627200,3),(941,499190400,2),(941,510076800,3),(941,530035200,2),(941,542736000,3),(941,562089600,2),(941,574790400,3),(941,594144000,2),(941,606240000,3),(941,625593600,2),(941,637689600,3),(941,657043200,2),(941,670348800,3),(941,686678400,2),(941,701798400,3),(941,718128000,2),(941,733248000,3),(941,749577600,2),(941,764697600,3),(941,781027200,2),(941,796147200,3),(941,812476800,2),(941,828201600,3),(941,844531200,2),(941,859651200,3),(941,875980800,2),(941,891100800,3),(941,907430400,2),(941,922550400,3),(941,938880000,2),(941,954000000,3),(941,967305600,2),(941,985449600,3),(941,1002384000,2),(941,1017504000,3),(941,1033833600,2),(941,1048953600,3),(941,1065283200,2),(941,1080403200,3),(941,1096732800,2),(941,1111852800,3),(941,1128182400,2),(941,1143907200,3),(941,1159632000,2),(941,1174752000,3),(941,1191686400,2),(941,1207411200,3),(941,1223136000,2),(941,1238860800,3),(941,1254585600,2),(941,1270310400,3),(941,1286035200,2),(941,1301760000,3),(941,1317484800,2),(941,1333209600,3),(941,1349539200,2),(941,1365264000,3),(941,1380988800,2),(941,1396713600,3),(941,1412438400,2),(941,1428163200,3),(941,1443888000,2),(941,1459612800,3),(941,1475337600,2),(941,1491062400,3),(941,1506787200,2),(941,1522512000,3),(941,1538841600,2),(941,1554566400,3),(941,1570291200,2),(941,1586016000,3),(941,1601740800,2),(941,1617465600,3),(941,1633190400,2),(941,1648915200,3),(941,1664640000,2),(941,1680364800,3),(941,1696089600,2),(941,1712419200,3),(941,1728144000,2),(941,1743868800,3),(941,1759593600,2),(941,1775318400,3),(941,1791043200,2),(941,1806768000,3),(941,1822492800,2),(941,1838217600,3),(941,1853942400,2),(941,1869667200,3),(941,1885996800,2),(941,1901721600,3),(941,1917446400,2),(941,1933171200,3),(941,1948896000,2),(941,1964620800,3),(941,1980345600,2),(941,1996070400,3),(941,2011795200,2),(941,2027520000,3),(941,2043244800,2),(941,2058969600,3),(941,2075299200,2),(941,2091024000,3),(941,2106748800,2),(941,2122473600,3),(941,2138198400,2),(942,-1672565340,0),(942,-1665390600,1),(942,-883639800,0),(942,-876126600,1),(942,-860398200,0),(942,-844677000,1),(942,-828343800,0),(942,-813227400,1),(943,-1672562640,0),(943,-1665387900,1),(943,-883637100,0),(943,-876123900,1),(943,-860395500,0),(943,-844674300,1),(943,152039700,2),(943,162926100,3),(943,436295700,2),(943,447182100,3),(943,690311700,2),(943,699383700,3),(943,1165079700,2),(943,1174756500,3),(943,1193505300,2),(943,1206810900,3),(943,1224954900,2),(943,1238260500,3),(944,-1680508800,1),(944,-1665392400,0),(944,-883641600,1),(944,-876128400,0),(944,-860400000,1),(944,-844678800,0),(944,-828345600,1),(944,-813229200,0),(944,-71136000,2),(944,-55411200,3),(944,-37267200,2),(944,-25776000,3),(944,-5817600,2),(944,5673600,3),(944,25632000,2),(944,37728000,3),(944,57686400,2),(944,67968000,3),(944,89136000,2),(944,100022400,3),(944,120585600,2),(944,131472000,3),(944,152035200,2),(944,162921600,3),(944,183484800,2),(944,194976000,3),(944,215539200,2),(944,226425600,3),(944,246988800,2),(944,257875200,3),(944,278438400,2),(944,289324800,3),(944,309888000,2),(944,320774400,3),(944,341337600,2),(944,352224000,3),(944,372787200,2),(944,386092800,3),(944,404841600,2),(944,417542400,3),(944,436291200,2),(944,447177600,3),(944,467740800,2),(944,478627200,3),(944,499190400,2),(944,510076800,3),(944,530035200,2),(944,542736000,3),(944,562089600,2),(944,574790400,3),(944,594144000,2),(944,606240000,3),(944,625593600,2),(944,637689600,3),(944,657043200,2),(944,670348800,3),(944,686678400,2),(944,701798400,3),(944,718128000,2),(944,733248000,3),(944,749577600,2),(944,764697600,3),(944,781027200,2),(944,796147200,3),(944,812476800,2),(944,828201600,3),(944,844531200,2),(944,859651200,3),(944,875980800,2),(944,891100800,3),(944,907430400,2),(944,922550400,3),(944,938880000,2),(944,954000000,3),(944,967305600,2),(944,985449600,3),(944,1002384000,2),(944,1017504000,3),(944,1033833600,2),(944,1048953600,3),(944,1065283200,2),(944,1080403200,3),(944,1096732800,2),(944,1111852800,3),(944,1128182400,2),(944,1143907200,3),(944,1159632000,2),(944,1174752000,3),(944,1191686400,2),(944,1207411200,3),(944,1223136000,2),(944,1238860800,3),(944,1254585600,2),(944,1270310400,3),(944,1286035200,2),(944,1301760000,3),(944,1317484800,2),(944,1333209600,3),(944,1349539200,2),(944,1365264000,3),(944,1380988800,2),(944,1396713600,3),(944,1412438400,2),(944,1428163200,3),(944,1443888000,2),(944,1459612800,3),(944,1475337600,2),(944,1491062400,3),(944,1506787200,2),(944,1522512000,3),(944,1538841600,2),(944,1554566400,3),(944,1570291200,2),(944,1586016000,3),(944,1601740800,2),(944,1617465600,3),(944,1633190400,2),(944,1648915200,3),(944,1664640000,2),(944,1680364800,3),(944,1696089600,2),(944,1712419200,3),(944,1728144000,2),(944,1743868800,3),(944,1759593600,2),(944,1775318400,3),(944,1791043200,2),(944,1806768000,3),(944,1822492800,2),(944,1838217600,3),(944,1853942400,2),(944,1869667200,3),(944,1885996800,2),(944,1901721600,3),(944,1917446400,2),(944,1933171200,3),(944,1948896000,2),(944,1964620800,3),(944,1980345600,2),(944,1996070400,3),(944,2011795200,2),(944,2027520000,3),(944,2043244800,2),(944,2058969600,3),(944,2075299200,2),(944,2091024000,3),(944,2106748800,2),(944,2122473600,3),(944,2138198400,2),(945,352216800,2),(945,372785400,1),(945,384273000,2),(945,404839800,1),(945,415722600,2),(945,436289400,1),(945,447172200,2),(945,467739000,1),(945,478621800,2),(945,499188600,3),(945,511282800,2),(945,530033400,3),(945,542732400,2),(945,562087800,3),(945,574786800,2),(945,594142200,3),(945,606236400,2),(945,625591800,3),(945,636476400,2),(945,657041400,3),(945,667926000,2),(945,688491000,3),(945,699375600,2),(945,719940600,3),(945,731430000,2),(945,751995000,3),(945,762879600,2),(945,783444600,3),(945,794329200,2),(945,814894200,3),(945,828198000,2),(945,846343800,3),(945,859647600,2),(945,877793400,3),(945,891097200,2),(945,909243000,3),(945,922546800,2),(945,941297400,3),(945,953996400,2),(945,967303800,3),(945,985446000,2),(945,1004196600,3),(945,1017500400,2),(945,1035646200,3),(945,1048950000,2),(945,1067095800,3),(945,1080399600,2),(945,1099150200,3),(945,1111849200,2),(945,1130599800,3),(945,1143903600,2),(945,1162049400,3),(945,1174748400,2),(945,1193499000,3),(945,1207407600,2),(945,1223134200,3),(945,1238857200,2),(945,1254583800,3),(945,1270306800,2),(945,1286033400,3),(945,1301756400,2),(945,1317483000,3),(945,1333206000,2),(945,1349537400,3),(945,1365260400,2),(945,1380987000,3),(945,1396710000,2),(945,1412436600,3),(945,1428159600,2),(945,1443886200,3),(945,1459609200,2),(945,1475335800,3),(945,1491058800,2),(945,1506785400,3),(945,1522508400,2),(945,1538839800,3),(945,1554562800,2),(945,1570289400,3),(945,1586012400,2),(945,1601739000,3),(945,1617462000,2),(945,1633188600,3),(945,1648911600,2),(945,1664638200,3),(945,1680361200,2),(945,1696087800,3),(945,1712415600,2),(945,1728142200,3),(945,1743865200,2),(945,1759591800,3),(945,1775314800,2),(945,1791041400,3),(945,1806764400,2),(945,1822491000,3),(945,1838214000,2),(945,1853940600,3),(945,1869663600,2),(945,1885995000,3),(945,1901718000,2),(945,1917444600,3),(945,1933167600,2),(945,1948894200,3),(945,1964617200,2),(945,1980343800,3),(945,1996066800,2),(945,2011793400,3),(945,2027516400,2),(945,2043243000,3),(945,2058966000,2),(945,2075297400,3),(945,2091020400,2),(945,2106747000,3),(945,2122470000,2),(945,2138196600,3),(946,-1672567140,0),(946,-1665392400,1),(946,-883641600,0),(946,-876128400,1),(946,-860400000,0),(946,-844678800,1),(946,-828345600,0),(946,-813229200,1),(946,57686400,2),(946,67968000,3),(946,625593600,2),(946,636480000,3),(946,657043200,2),(946,667929600,3),(946,688492800,2),(946,699379200,3),(946,709912800,1),(946,719942400,2),(946,731433600,3),(946,751996800,2),(946,762883200,3),(947,352216800,2),(947,372785400,1),(947,384273000,2),(947,404839800,1),(947,415722600,2),(947,436289400,1),(947,447172200,2),(947,467739000,1),(947,478621800,2),(947,499188600,3),(947,511282800,2),(947,530033400,3),(947,542732400,2),(947,562087800,3),(947,574786800,2),(947,594142200,3),(947,606236400,2),(947,625591800,3),(947,636476400,2),(947,657041400,3),(947,667926000,2),(947,688491000,3),(947,699375600,2),(947,719940600,3),(947,731430000,2),(947,751995000,3),(947,762879600,2),(947,783444600,3),(947,794329200,2),(947,814894200,3),(947,828198000,2),(947,846343800,3),(947,859647600,2),(947,877793400,3),(947,891097200,2),(947,909243000,3),(947,922546800,2),(947,941297400,3),(947,953996400,2),(947,967303800,3),(947,985446000,2),(947,1004196600,3),(947,1017500400,2),(947,1035646200,3),(947,1048950000,2),(947,1067095800,3),(947,1080399600,2),(947,1099150200,3),(947,1111849200,2),(947,1130599800,3),(947,1143903600,2),(947,1162049400,3),(947,1174748400,2),(947,1193499000,3),(947,1207407600,2),(947,1223134200,3),(947,1238857200,2),(947,1254583800,3),(947,1270306800,2),(947,1286033400,3),(947,1301756400,2),(947,1317483000,3),(947,1333206000,2),(947,1349537400,3),(947,1365260400,2),(947,1380987000,3),(947,1396710000,2),(947,1412436600,3),(947,1428159600,2),(947,1443886200,3),(947,1459609200,2),(947,1475335800,3),(947,1491058800,2),(947,1506785400,3),(947,1522508400,2),(947,1538839800,3),(947,1554562800,2),(947,1570289400,3),(947,1586012400,2),(947,1601739000,3),(947,1617462000,2),(947,1633188600,3),(947,1648911600,2),(947,1664638200,3),(947,1680361200,2),(947,1696087800,3),(947,1712415600,2),(947,1728142200,3),(947,1743865200,2),(947,1759591800,3),(947,1775314800,2),(947,1791041400,3),(947,1806764400,2),(947,1822491000,3),(947,1838214000,2),(947,1853940600,3),(947,1869663600,2),(947,1885995000,3),(947,1901718000,2),(947,1917444600,3),(947,1933167600,2),(947,1948894200,3),(947,1964617200,2),(947,1980343800,3),(947,1996066800,2),(947,2011793400,3),(947,2027516400,2),(947,2043243000,3),(947,2058966000,2),(947,2075297400,3),(947,2091020400,2),(947,2106747000,3),(947,2122470000,2),(947,2138196600,3),(948,-1672567140,0),(948,-1665392400,1),(948,-883641600,0),(948,-876128400,1),(948,-860400000,0),(948,-844678800,1),(948,-828345600,0),(948,-813229200,1),(948,57686400,2),(948,67968000,3),(948,89136000,2),(948,100022400,3),(948,120585600,2),(948,131472000,3),(948,152035200,2),(948,162921600,3),(948,183484800,2),(948,194976000,3),(948,215539200,2),(948,226425600,3),(948,246988800,2),(948,257875200,3),(948,278438400,2),(948,289324800,3),(948,309888000,2),(948,320774400,3),(948,341337600,2),(948,352224000,3),(948,372787200,2),(948,384278400,3),(948,404841600,2),(948,415728000,3),(948,436291200,2),(948,447177600,3),(948,467740800,2),(948,478627200,3),(948,499190400,2),(948,511286400,3),(948,530035200,2),(948,542736000,3),(948,561484800,2),(948,574790400,3),(948,594144000,2),(948,606240000,3),(948,625593600,2),(948,637689600,3),(948,657043200,2),(948,667929600,3),(948,688492800,2),(948,699379200,3),(948,719942400,2),(948,731433600,3),(948,751996800,2),(948,762883200,3),(948,783446400,2),(948,796147200,3),(948,814896000,2),(948,828201600,3),(948,846345600,2),(948,859651200,3),(948,877795200,2),(948,891100800,3),(948,909244800,2),(948,922550400,3),(948,941299200,2),(948,954000000,3),(948,967305600,2),(948,985449600,3),(948,1004198400,2),(948,1017504000,3),(948,1035648000,2),(948,1048953600,3),(948,1067097600,2),(948,1080403200,3),(948,1099152000,2),(948,1111852800,3),(948,1130601600,2),(948,1143907200,3),(948,1162051200,2),(948,1174752000,3),(948,1193500800,2),(948,1207411200,3),(948,1223136000,2),(948,1238860800,3),(948,1254585600,2),(948,1270310400,3),(948,1286035200,2),(948,1301760000,3),(948,1317484800,2),(948,1333209600,3),(948,1349539200,2),(948,1365264000,3),(948,1380988800,2),(948,1396713600,3),(948,1412438400,2),(948,1428163200,3),(948,1443888000,2),(948,1459612800,3),(948,1475337600,2),(948,1491062400,3),(948,1506787200,2),(948,1522512000,3),(948,1538841600,2),(948,1554566400,3),(948,1570291200,2),(948,1586016000,3),(948,1601740800,2),(948,1617465600,3),(948,1633190400,2),(948,1648915200,3),(948,1664640000,2),(948,1680364800,3),(948,1696089600,2),(948,1712419200,3),(948,1728144000,2),(948,1743868800,3),(948,1759593600,2),(948,1775318400,3),(948,1791043200,2),(948,1806768000,3),(948,1822492800,2),(948,1838217600,3),(948,1853942400,2),(948,1869667200,3),(948,1885996800,2),(948,1901721600,3),(948,1917446400,2),(948,1933171200,3),(948,1948896000,2),(948,1964620800,3),(948,1980345600,2),(948,1996070400,3),(948,2011795200,2),(948,2027520000,3),(948,2043244800,2),(948,2058969600,3),(948,2075299200,2),(948,2091024000,3),(948,2106748800,2),(948,2122473600,3),(948,2138198400,2),(949,-1672567140,0),(949,-1665392400,1),(949,-883641600,0),(949,-876128400,1),(949,-860400000,0),(949,-844678800,1),(949,-828345600,0),(949,-813229200,1),(949,57686400,2),(949,67968000,3),(949,89136000,2),(949,100022400,3),(949,120585600,2),(949,131472000,3),(949,152035200,2),(949,162921600,3),(949,183484800,2),(949,194976000,3),(949,215539200,2),(949,226425600,3),(949,246988800,2),(949,257875200,3),(949,278438400,2),(949,289324800,3),(949,309888000,2),(949,320774400,3),(949,341337600,2),(949,352224000,3),(949,372787200,2),(949,386697600,3),(949,404841600,2),(949,415728000,3),(949,436291200,2),(949,447177600,3),(949,467740800,2),(949,478627200,3),(949,499190400,2),(949,511286400,3),(949,530035200,2),(949,542736000,3),(949,562089600,2),(949,574790400,3),(949,594144000,2),(949,606240000,3),(949,625593600,2),(949,636480000,3),(949,657043200,2),(949,667929600,3),(949,688492800,2),(949,699379200,3),(949,719942400,2),(949,731433600,3),(949,751996800,2),(949,762883200,3),(949,783446400,2),(949,794332800,3),(949,814896000,2),(949,828201600,3),(949,846345600,2),(949,859651200,3),(949,877795200,2),(949,891100800,3),(949,909244800,2),(949,922550400,3),(949,941299200,2),(949,954000000,3),(949,967305600,2),(949,985449600,3),(949,1004198400,2),(949,1017504000,3),(949,1035648000,2),(949,1048953600,3),(949,1067097600,2),(949,1080403200,3),(949,1099152000,2),(949,1111852800,3),(949,1130601600,2),(949,1143907200,3),(949,1162051200,2),(949,1174752000,3),(949,1193500800,2),(949,1207411200,3),(949,1223136000,2),(949,1238860800,3),(949,1254585600,2),(949,1270310400,3),(949,1286035200,2),(949,1301760000,3),(949,1317484800,2),(949,1333209600,3),(949,1349539200,2),(949,1365264000,3),(949,1380988800,2),(949,1396713600,3),(949,1412438400,2),(949,1428163200,3),(949,1443888000,2),(949,1459612800,3),(949,1475337600,2),(949,1491062400,3),(949,1506787200,2),(949,1522512000,3),(949,1538841600,2),(949,1554566400,3),(949,1570291200,2),(949,1586016000,3),(949,1601740800,2),(949,1617465600,3),(949,1633190400,2),(949,1648915200,3),(949,1664640000,2),(949,1680364800,3),(949,1696089600,2),(949,1712419200,3),(949,1728144000,2),(949,1743868800,3),(949,1759593600,2),(949,1775318400,3),(949,1791043200,2),(949,1806768000,3),(949,1822492800,2),(949,1838217600,3),(949,1853942400,2),(949,1869667200,3),(949,1885996800,2),(949,1901721600,3),(949,1917446400,2),(949,1933171200,3),(949,1948896000,2),(949,1964620800,3),(949,1980345600,2),(949,1996070400,3),(949,2011795200,2),(949,2027520000,3),(949,2043244800,2),(949,2058969600,3),(949,2075299200,2),(949,2091024000,3),(949,2106748800,2),(949,2122473600,3),(949,2138198400,2),(950,-1672565340,0),(950,-1665390600,1),(950,-883639800,0),(950,-876126600,1),(950,-860398200,0),(950,-844677000,1),(950,-828343800,0),(950,-813227400,1),(951,-1672559940,0),(951,-1665385200,1),(951,-883634400,0),(951,-876121200,1),(951,-860392800,0),(951,-844671600,1),(951,152042400,2),(951,162928800,3),(951,436298400,2),(951,447184800,3),(951,690314400,2),(951,699386400,3),(951,1165082400,2),(951,1174759200,3),(951,1193508000,2),(951,1206813600,3),(951,1224957600,2),(951,1238263200,3),(952,-1672567140,0),(952,-1665392400,1),(952,-883641600,0),(952,-876128400,1),(952,-860400000,0),(952,-844678800,1),(952,-828345600,0),(952,-813229200,1),(952,57686400,2),(952,67968000,3),(952,625593600,2),(952,636480000,3),(952,657043200,2),(952,667929600,3),(952,688492800,2),(952,699379200,3),(953,-1672565340,0),(953,-1665390600,1),(953,-883639800,0),(953,-876126600,1),(953,-860398200,0),(953,-844677000,1),(953,-828343800,0),(953,-813227400,1),(953,57688200,2),(953,67969800,3),(953,89137800,2),(953,100024200,3),(953,120587400,2),(953,131473800,3),(953,152037000,2),(953,162923400,3),(953,183486600,2),(953,194977800,3),(953,215541000,2),(953,226427400,3),(953,246990600,2),(953,257877000,3),(953,278440200,2),(953,289326600,3),(953,309889800,2),(953,320776200,3),(953,341339400,2),(953,352225800,3),(953,372789000,2),(953,384280200,3),(953,404843400,2),(953,415729800,3),(953,436293000,2),(953,447179400,3),(953,467742600,2),(953,478629000,3),(953,499192200,2),(953,511288200,3),(953,530037000,2),(953,542737800,3),(953,562091400,2),(953,574792200,3),(953,594145800,2),(953,606241800,3),(953,625595400,2),(953,637691400,3),(953,657045000,2),(953,667931400,3),(953,688494600,2),(953,701195400,3),(953,719944200,2),(953,731435400,3),(953,751998600,2),(953,764094600,3),(953,783448200,2),(953,796149000,3),(953,814897800,2),(953,828203400,3),(953,846347400,2),(953,859653000,3),(953,877797000,2),(953,891102600,3),(953,909246600,2),(953,922552200,3),(953,941301000,2),(953,954001800,3),(953,972750600,2),(953,985451400,3),(953,1004200200,2),(953,1017505800,3),(953,1035649800,2),(953,1048955400,3),(953,1067099400,2),(953,1080405000,3),(953,1099153800,2),(953,1111854600,3),(953,1130603400,2),(953,1143909000,3),(953,1162053000,2),(953,1174753800,3),(953,1193502600,2),(953,1207413000,3),(953,1223137800,2),(953,1238862600,3),(953,1254587400,2),(953,1270312200,3),(953,1286037000,2),(953,1301761800,3),(953,1317486600,2),(953,1333211400,3),(953,1349541000,2),(953,1365265800,3),(953,1380990600,2),(953,1396715400,3),(953,1412440200,2),(953,1428165000,3),(953,1443889800,2),(953,1459614600,3),(953,1475339400,2),(953,1491064200,3),(953,1506789000,2),(953,1522513800,3),(953,1538843400,2),(953,1554568200,3),(953,1570293000,2),(953,1586017800,3),(953,1601742600,2),(953,1617467400,3),(953,1633192200,2),(953,1648917000,3),(953,1664641800,2),(953,1680366600,3),(953,1696091400,2),(953,1712421000,3),(953,1728145800,2),(953,1743870600,3),(953,1759595400,2),(953,1775320200,3),(953,1791045000,2),(953,1806769800,3),(953,1822494600,2),(953,1838219400,3),(953,1853944200,2),(953,1869669000,3),(953,1885998600,2),(953,1901723400,3),(953,1917448200,2),(953,1933173000,3),(953,1948897800,2),(953,1964622600,3),(953,1980347400,2),(953,1996072200,3),(953,2011797000,2),(953,2027521800,3),(953,2043246600,2),(953,2058971400,3),(953,2075301000,2),(953,2091025800,3),(953,2106750600,2),(953,2122475400,3),(953,2138200200,2),(954,-1672567140,0),(954,-1665392400,1),(954,-883641600,0),(954,-876128400,1),(954,-860400000,0),(954,-844678800,1),(954,-828345600,0),(954,-813229200,1),(954,57686400,2),(954,67968000,3),(954,89136000,2),(954,100022400,3),(954,120585600,2),(954,131472000,3),(954,152035200,2),(954,162921600,3),(954,183484800,2),(954,194976000,3),(954,215539200,2),(954,226425600,3),(954,246988800,2),(954,257875200,3),(954,278438400,2),(954,289324800,3),(954,309888000,2),(954,320774400,3),(954,341337600,2),(954,352224000,3),(954,372787200,2),(954,386697600,3),(954,404841600,2),(954,415728000,3),(954,436291200,2),(954,447177600,3),(954,467740800,2),(954,478627200,3),(954,499190400,2),(954,511286400,3),(954,530035200,2),(954,542736000,3),(954,562089600,2),(954,574790400,3),(954,594144000,2),(954,606240000,3),(954,625593600,2),(954,636480000,3),(954,657043200,2),(954,667929600,3),(954,688492800,2),(954,699379200,3),(954,719942400,2),(954,731433600,3),(954,751996800,2),(954,762883200,3),(954,783446400,2),(954,794332800,3),(954,814896000,2),(954,828201600,3),(954,846345600,2),(954,859651200,3),(954,877795200,2),(954,891100800,3),(954,909244800,2),(954,922550400,3),(954,941299200,2),(954,954000000,3),(954,967305600,2),(954,985449600,3),(954,1004198400,2),(954,1017504000,3),(954,1035648000,2),(954,1048953600,3),(954,1067097600,2),(954,1080403200,3),(954,1099152000,2),(954,1111852800,3),(954,1130601600,2),(954,1143907200,3),(954,1162051200,2),(954,1174752000,3),(954,1193500800,2),(954,1207411200,3),(954,1223136000,2),(954,1238860800,3),(954,1254585600,2),(954,1270310400,3),(954,1286035200,2),(954,1301760000,3),(954,1317484800,2),(954,1333209600,3),(954,1349539200,2),(954,1365264000,3),(954,1380988800,2),(954,1396713600,3),(954,1412438400,2),(954,1428163200,3),(954,1443888000,2),(954,1459612800,3),(954,1475337600,2),(954,1491062400,3),(954,1506787200,2),(954,1522512000,3),(954,1538841600,2),(954,1554566400,3),(954,1570291200,2),(954,1586016000,3),(954,1601740800,2),(954,1617465600,3),(954,1633190400,2),(954,1648915200,3),(954,1664640000,2),(954,1680364800,3),(954,1696089600,2),(954,1712419200,3),(954,1728144000,2),(954,1743868800,3),(954,1759593600,2),(954,1775318400,3),(954,1791043200,2),(954,1806768000,3),(954,1822492800,2),(954,1838217600,3),(954,1853942400,2),(954,1869667200,3),(954,1885996800,2),(954,1901721600,3),(954,1917446400,2),(954,1933171200,3),(954,1948896000,2),(954,1964620800,3),(954,1980345600,2),(954,1996070400,3),(954,2011795200,2),(954,2027520000,3),(954,2043244800,2),(954,2058969600,3),(954,2075299200,2),(954,2091024000,3),(954,2106748800,2),(954,2122473600,3),(954,2138198400,2),(955,-1680508800,1),(955,-1665392400,0),(955,-883641600,1),(955,-876128400,0),(955,-860400000,1),(955,-844678800,0),(955,-828345600,1),(955,-813229200,0),(955,-71136000,2),(955,-55411200,3),(955,-37267200,2),(955,-25776000,3),(955,-5817600,2),(955,5673600,3),(955,25632000,2),(955,37728000,3),(955,57686400,2),(955,67968000,3),(955,89136000,2),(955,100022400,3),(955,120585600,2),(955,131472000,3),(955,152035200,2),(955,162921600,3),(955,183484800,2),(955,194976000,3),(955,215539200,2),(955,226425600,3),(955,246988800,2),(955,257875200,3),(955,278438400,2),(955,289324800,3),(955,309888000,2),(955,320774400,3),(955,341337600,2),(955,352224000,3),(955,372787200,2),(955,386092800,3),(955,404841600,2),(955,417542400,3),(955,436291200,2),(955,447177600,3),(955,467740800,2),(955,478627200,3),(955,499190400,2),(955,510076800,3),(955,530035200,2),(955,542736000,3),(955,562089600,2),(955,574790400,3),(955,594144000,2),(955,606240000,3),(955,625593600,2),(955,637689600,3),(955,657043200,2),(955,670348800,3),(955,686678400,2),(955,701798400,3),(955,718128000,2),(955,733248000,3),(955,749577600,2),(955,764697600,3),(955,781027200,2),(955,796147200,3),(955,812476800,2),(955,828201600,3),(955,844531200,2),(955,859651200,3),(955,875980800,2),(955,891100800,3),(955,907430400,2),(955,922550400,3),(955,938880000,2),(955,954000000,3),(955,967305600,2),(955,985449600,3),(955,1002384000,2),(955,1017504000,3),(955,1033833600,2),(955,1048953600,3),(955,1065283200,2),(955,1080403200,3),(955,1096732800,2),(955,1111852800,3),(955,1128182400,2),(955,1143907200,3),(955,1159632000,2),(955,1174752000,3),(955,1191686400,2),(955,1207411200,3),(955,1223136000,2),(955,1238860800,3),(955,1254585600,2),(955,1270310400,3),(955,1286035200,2),(955,1301760000,3),(955,1317484800,2),(955,1333209600,3),(955,1349539200,2),(955,1365264000,3),(955,1380988800,2),(955,1396713600,3),(955,1412438400,2),(955,1428163200,3),(955,1443888000,2),(955,1459612800,3),(955,1475337600,2),(955,1491062400,3),(955,1506787200,2),(955,1522512000,3),(955,1538841600,2),(955,1554566400,3),(955,1570291200,2),(955,1586016000,3),(955,1601740800,2),(955,1617465600,3),(955,1633190400,2),(955,1648915200,3),(955,1664640000,2),(955,1680364800,3),(955,1696089600,2),(955,1712419200,3),(955,1728144000,2),(955,1743868800,3),(955,1759593600,2),(955,1775318400,3),(955,1791043200,2),(955,1806768000,3),(955,1822492800,2),(955,1838217600,3),(955,1853942400,2),(955,1869667200,3),(955,1885996800,2),(955,1901721600,3),(955,1917446400,2),(955,1933171200,3),(955,1948896000,2),(955,1964620800,3),(955,1980345600,2),(955,1996070400,3),(955,2011795200,2),(955,2027520000,3),(955,2043244800,2),(955,2058969600,3),(955,2075299200,2),(955,2091024000,3),(955,2106748800,2),(955,2122473600,3),(955,2138198400,2),(956,-1672567140,0),(956,-1665392400,1),(956,-883641600,0),(956,-876128400,1),(956,-860400000,0),(956,-844678800,1),(956,-828345600,0),(956,-813229200,1),(956,57686400,2),(956,67968000,3),(956,89136000,2),(956,100022400,3),(956,120585600,2),(956,131472000,3),(956,152035200,2),(956,162921600,3),(956,183484800,2),(956,194976000,3),(956,215539200,2),(956,226425600,3),(956,246988800,2),(956,257875200,3),(956,278438400,2),(956,289324800,3),(956,309888000,2),(956,320774400,3),(956,341337600,2),(956,352224000,3),(956,372787200,2),(956,384278400,3),(956,404841600,2),(956,415728000,3),(956,436291200,2),(956,447177600,3),(956,467740800,2),(956,478627200,3),(956,499190400,2),(956,511286400,3),(956,530035200,2),(956,542736000,3),(956,561484800,2),(956,574790400,3),(956,594144000,2),(956,606240000,3),(956,625593600,2),(956,637689600,3),(956,657043200,2),(956,667929600,3),(956,688492800,2),(956,699379200,3),(956,719942400,2),(956,731433600,3),(956,751996800,2),(956,762883200,3),(956,783446400,2),(956,796147200,3),(956,814896000,2),(956,828201600,3),(956,846345600,2),(956,859651200,3),(956,877795200,2),(956,891100800,3),(956,909244800,2),(956,922550400,3),(956,941299200,2),(956,954000000,3),(956,967305600,2),(956,985449600,3),(956,1004198400,2),(956,1017504000,3),(956,1035648000,2),(956,1048953600,3),(956,1067097600,2),(956,1080403200,3),(956,1099152000,2),(956,1111852800,3),(956,1130601600,2),(956,1143907200,3),(956,1162051200,2),(956,1174752000,3),(956,1193500800,2),(956,1207411200,3),(956,1223136000,2),(956,1238860800,3),(956,1254585600,2),(956,1270310400,3),(956,1286035200,2),(956,1301760000,3),(956,1317484800,2),(956,1333209600,3),(956,1349539200,2),(956,1365264000,3),(956,1380988800,2),(956,1396713600,3),(956,1412438400,2),(956,1428163200,3),(956,1443888000,2),(956,1459612800,3),(956,1475337600,2),(956,1491062400,3),(956,1506787200,2),(956,1522512000,3),(956,1538841600,2),(956,1554566400,3),(956,1570291200,2),(956,1586016000,3),(956,1601740800,2),(956,1617465600,3),(956,1633190400,2),(956,1648915200,3),(956,1664640000,2),(956,1680364800,3),(956,1696089600,2),(956,1712419200,3),(956,1728144000,2),(956,1743868800,3),(956,1759593600,2),(956,1775318400,3),(956,1791043200,2),(956,1806768000,3),(956,1822492800,2),(956,1838217600,3),(956,1853942400,2),(956,1869667200,3),(956,1885996800,2),(956,1901721600,3),(956,1917446400,2),(956,1933171200,3),(956,1948896000,2),(956,1964620800,3),(956,1980345600,2),(956,1996070400,3),(956,2011795200,2),(956,2027520000,3),(956,2043244800,2),(956,2058969600,3),(956,2075299200,2),(956,2091024000,3),(956,2106748800,2),(956,2122473600,3),(956,2138198400,2),(957,-1672559940,0),(957,-1665385200,1),(957,-883634400,0),(957,-876121200,1),(957,-860392800,0),(957,-844671600,1),(957,152042400,2),(957,162928800,3),(957,436298400,2),(957,447184800,3),(957,690314400,2),(957,699386400,3),(957,1165082400,2),(957,1174759200,3),(957,1193508000,2),(957,1206813600,3),(957,1224957600,2),(957,1238263200,3),(958,-1672565340,0),(958,-1665390600,1),(958,-883639800,0),(958,-876126600,1),(958,-860398200,0),(958,-844677000,1),(958,-828343800,0),(958,-813227400,1),(958,57688200,2),(958,67969800,3),(958,89137800,2),(958,100024200,3),(958,120587400,2),(958,131473800,3),(958,152037000,2),(958,162923400,3),(958,183486600,2),(958,194977800,3),(958,215541000,2),(958,226427400,3),(958,246990600,2),(958,257877000,3),(958,278440200,2),(958,289326600,3),(958,309889800,2),(958,320776200,3),(958,341339400,2),(958,352225800,3),(958,372789000,2),(958,386699400,3),(958,404843400,2),(958,415729800,3),(958,436293000,2),(958,447179400,3),(958,467742600,2),(958,478629000,3),(958,499192200,2),(958,511288200,3),(958,530037000,2),(958,542737800,3),(958,562091400,2),(958,574792200,3),(958,594145800,2),(958,606241800,3),(958,625595400,2),(958,636481800,3),(958,657045000,2),(958,667931400,3),(958,688494600,2),(958,699381000,3),(958,719944200,2),(958,731435400,3),(958,751998600,2),(958,762885000,3),(958,783448200,2),(958,794334600,3),(958,814897800,2),(958,828203400,3),(958,846347400,2),(958,859653000,3),(958,877797000,2),(958,891102600,3),(958,909246600,2),(958,922552200,3),(958,941301000,2),(958,946647000,0),(958,954001800,3),(958,972750600,2),(958,985451400,3),(958,1004200200,2),(958,1017505800,3),(958,1035649800,2),(958,1048955400,3),(958,1067099400,2),(958,1080405000,3),(958,1099153800,2),(958,1111854600,3),(958,1130603400,2),(958,1143909000,3),(958,1162053000,2),(958,1174753800,3),(958,1193502600,2),(958,1207413000,3),(958,1223137800,2),(958,1238862600,3),(958,1254587400,2),(958,1270312200,3),(958,1286037000,2),(958,1301761800,3),(958,1317486600,2),(958,1333211400,3),(958,1349541000,2),(958,1365265800,3),(958,1380990600,2),(958,1396715400,3),(958,1412440200,2),(958,1428165000,3),(958,1443889800,2),(958,1459614600,3),(958,1475339400,2),(958,1491064200,3),(958,1506789000,2),(958,1522513800,3),(958,1538843400,2),(958,1554568200,3),(958,1570293000,2),(958,1586017800,3),(958,1601742600,2),(958,1617467400,3),(958,1633192200,2),(958,1648917000,3),(958,1664641800,2),(958,1680366600,3),(958,1696091400,2),(958,1712421000,3),(958,1728145800,2),(958,1743870600,3),(958,1759595400,2),(958,1775320200,3),(958,1791045000,2),(958,1806769800,3),(958,1822494600,2),(958,1838219400,3),(958,1853944200,2),(958,1869669000,3),(958,1885998600,2),(958,1901723400,3),(958,1917448200,2),(958,1933173000,3),(958,1948897800,2),(958,1964622600,3),(958,1980347400,2),(958,1996072200,3),(958,2011797000,2),(958,2027521800,3),(958,2043246600,2),(958,2058971400,3),(958,2075301000,2),(958,2091025800,3),(958,2106750600,2),(958,2122475400,3),(958,2138200200,2),(959,-1767209328,2),(959,-1206950400,1),(959,-1191355200,2),(959,-1175367600,1),(959,-1159819200,2),(959,-633812400,1),(959,-622062000,2),(959,-602276400,1),(959,-591825600,2),(959,-570740400,1),(959,-560203200,2),(959,-539118000,1),(959,-531345600,2),(959,-191358000,1),(959,-184190400,2),(959,-155156400,1),(959,-150062400,2),(959,-128890800,1),(959,-121118400,2),(959,-99946800,1),(959,-89582400,2),(959,-68410800,1),(959,-57960000,2),(959,499755600,1),(959,511243200,2),(959,530600400,1),(959,540273600,2),(959,562136400,1),(959,571204800,2),(959,1214283600,3),(959,1384056000,2),(960,-1767217820,2),(960,-1206961200,1),(960,-1191366000,2),(960,-1175378400,1),(960,-1159830000,2),(960,-633823200,1),(960,-622072800,2),(960,-602287200,1),(960,-591836400,2),(960,-570751200,1),(960,-560214000,2),(960,-539128800,1),(960,-531356400,2),(960,-191368800,1),(960,-184201200,2),(960,-155167200,1),(960,-150073200,2),(960,-128901600,1),(960,-121129200,2),(960,-99957600,1),(960,-89593200,2),(960,-68421600,1),(960,-57970800,2),(960,499744800,1),(960,511232400,2),(960,530589600,1),(960,540262800,2),(960,562125600,1),(960,571194000,2),(960,592970400,1),(960,602038800,2),(960,624420000,1),(960,634698000,2),(960,938916000,1),(960,951613200,2),(960,970970400,1),(960,971571600,2),(960,1003024800,1),(960,1013907600,2),(961,-1767214412,2),(961,-1206957600,1),(961,-1191362400,2),(961,-1175374800,1),(961,-1159826400,2),(961,-633819600,1),(961,-622069200,2),(961,-602283600,1),(961,-591832800,2),(961,-570747600,1),(961,-560210400,2),(961,-539125200,1),(961,-531352800,2),(961,-195426000,1),(961,-184197600,2),(961,-155163600,1),(961,-150069600,2),(961,-128898000,1),(961,-121125600,2),(961,-99954000,1),(961,-89589600,2),(961,-68418000,1),(961,-57967200,2),(961,499748400,1),(961,511236000,2),(961,530593200,1),(961,540266400,2),(961,562129200,1),(961,571197600,2),(961,592974000,1),(961,602042400,2),(961,624423600,1),(961,634701600,2),(961,656478000,1),(961,666756000,2),(961,687927600,1),(961,697600800,2),(961,719982000,1),(961,728445600,2),(961,750826800,1),(961,761709600,2),(961,782276400,1),(961,793159200,2),(961,813726000,1),(961,824004000,2),(961,844570800,1),(961,856058400,2),(961,876106800,1),(961,888717600,2),(961,908074800,1),(961,919562400,2),(961,938919600,1),(961,951616800,2),(961,970974000,1),(961,982461600,2),(961,1003028400,1),(961,1013911200,2),(961,1036292400,1),(961,1045360800,2),(961,1066532400,1),(961,1076810400,2),(961,1099364400,1),(961,1108864800,2),(961,1129431600,1),(961,1140314400,2),(961,1162695600,1),(961,1172368800,2),(961,1192330800,1),(961,1203213600,2),(961,1224385200,1),(961,1234663200,2),(961,1255834800,1),(961,1266717600,2),(961,1287284400,1),(961,1298167200,2),(961,1318734000,1),(961,1330221600,2),(961,1350788400,1),(961,1361066400,2),(961,1382238000,1),(961,1392516000,2),(961,1413687600,1),(961,1424570400,2),(961,1445137200,1),(961,1456020000,2),(961,1476586800,1),(961,1487469600,2),(961,1508036400,1),(961,1518919200,2),(961,1541300400,1),(961,1550368800,2),(961,1572750000,1),(961,1581818400,2),(961,1604199600,1),(961,1613872800,2),(961,1636254000,1),(961,1645322400,2),(961,1667703600,1),(961,1677376800,2),(961,1699153200,1),(961,1708221600,2),(961,1730602800,1),(961,1739671200,2),(961,1762052400,1),(961,1771725600,2),(961,1793502000,1),(961,1803175200,2),(961,1825556400,1),(961,1834624800,2),(961,1857006000,1),(961,1866074400,2),(961,1888455600,1),(961,1897524000,2),(961,1919905200,1),(961,1928973600,2),(961,1951354800,1),(961,1960423200,2),(961,1983409200,1),(961,1992477600,2),(961,2014858800,1),(961,2024532000,2),(961,2046308400,1),(961,2055376800,2),(961,2077758000,1),(961,2086826400,2),(961,2109207600,1),(961,2118880800,2),(961,2140657200,1),(962,-1767211196,2),(962,-1206954000,1),(962,-1191358800,2),(962,-1175371200,1),(962,-1159822800,2),(962,-633816000,1),(962,-622065600,2),(962,-602280000,1),(962,-591829200,2),(962,-570744000,1),(962,-560206800,2),(962,-539121600,1),(962,-531349200,2),(962,-191361600,1),(962,-184194000,2),(962,-155160000,1),(962,-150066000,2),(962,-128894400,1),(962,-121122000,2),(962,-99950400,1),(962,-89586000,2),(962,-68414400,1),(962,-57963600,2),(962,499752000,1),(962,511239600,2),(962,530596800,1),(962,540270000,2),(962,562132800,1),(962,571201200,2),(962,750830400,1),(962,761713200,2),(963,-1693706400,0),(963,-1680483600,1),(963,-1663455600,2),(963,-1650150000,3),(963,-1632006000,2),(963,-1618700400,3),(963,-938905200,2),(963,-857257200,3),(963,-844556400,2),(963,-828226800,3),(963,-812502000,2),(963,-796777200,3),(963,-781052400,2),(963,-766623600,3),(963,228877200,2),(963,243997200,3),(963,260326800,2),(963,276051600,3),(963,291776400,2),(963,307501200,3),(963,323830800,2),(963,338950800,3),(963,354675600,2),(963,370400400,3),(963,386125200,2),(963,401850000,3),(963,417574800,2),(963,433299600,3),(963,449024400,2),(963,465354000,3),(963,481078800,2),(963,496803600,3),(963,512528400,2),(963,528253200,3),(963,543978000,2),(963,559702800,3),(963,575427600,2),(963,591152400,3),(963,606877200,2),(963,622602000,3),(963,638326800,2),(963,654656400,3),(963,670381200,2),(963,686106000,3),(963,701830800,2),(963,717555600,3),(963,733280400,2),(963,749005200,3),(963,764730000,2),(963,780454800,3),(963,796179600,2),(963,811904400,3),(963,828234000,2),(963,846378000,3),(963,859683600,2),(963,877827600,3),(963,891133200,2),(963,909277200,3),(963,922582800,2),(963,941331600,3),(963,954032400,2),(963,972781200,3),(963,985482000,2),(963,1004230800,3),(963,1017536400,2),(963,1035680400,3),(963,1048986000,2),(963,1067130000,3),(963,1080435600,2),(963,1099184400,3),(963,1111885200,2),(963,1130634000,3),(963,1143334800,2),(963,1162083600,3),(963,1174784400,2),(963,1193533200,3),(963,1206838800,2),(963,1224982800,3),(963,1238288400,2),(963,1256432400,3),(963,1269738000,2),(963,1288486800,3),(963,1301187600,2),(963,1319936400,3),(963,1332637200,2),(963,1351386000,3),(963,1364691600,2),(963,1382835600,3),(963,1396141200,2),(963,1414285200,3),(963,1427590800,2),(963,1445734800,3),(963,1459040400,2),(963,1477789200,3),(963,1490490000,2),(963,1509238800,3),(963,1521939600,2),(963,1540688400,3),(963,1553994000,2),(963,1572138000,3),(963,1585443600,2),(963,1603587600,3),(963,1616893200,2),(963,1635642000,3),(963,1648342800,2),(963,1667091600,3),(963,1679792400,2),(963,1698541200,3),(963,1711846800,2),(963,1729990800,3),(963,1743296400,2),(963,1761440400,3),(963,1774746000,2),(963,1792890000,3),(963,1806195600,2),(963,1824944400,3),(963,1837645200,2),(963,1856394000,3),(963,1869094800,2),(963,1887843600,3),(963,1901149200,2),(963,1919293200,3),(963,1932598800,2),(963,1950742800,3),(963,1964048400,2),(963,1982797200,3),(963,1995498000,2),(963,2014246800,3),(963,2026947600,2),(963,2045696400,3),(963,2058397200,2),(963,2077146000,3),(963,2090451600,2),(963,2108595600,3),(963,2121901200,2),(963,2140045200,3),(964,-1633276800,0),(964,-1615136400,1),(964,-1601827200,0),(964,-1583686800,1),(964,-880214400,2),(964,-769395600,3),(964,-765392400,1),(964,-84384000,0),(964,-68662800,1),(964,-52934400,0),(964,-37213200,1),(964,-21484800,0),(964,-5763600,1),(964,9964800,0),(964,25686000,1),(964,41414400,0),(964,57740400,1),(964,73468800,0),(964,89190000,1),(964,104918400,0),(964,120639600,1),(964,126691200,0),(964,152089200,1),(964,162374400,0),(964,183538800,1),(964,199267200,0),(964,215593200,1),(964,230716800,0),(964,247042800,1),(964,262771200,0),(964,278492400,1),(964,294220800,0),(964,309942000,1),(964,325670400,0),(964,341391600,1),(964,357120000,0),(964,372841200,1),(964,388569600,0),(964,404895600,1),(964,420019200,0),(964,436345200,1),(964,452073600,0),(964,467794800,1),(964,483523200,0),(964,499244400,1),(964,514972800,0),(964,530694000,1),(964,544608000,0),(964,562143600,1),(964,576057600,0),(964,594198000,1),(964,607507200,0),(964,625647600,1),(964,638956800,0),(964,657097200,1),(964,671011200,0),(964,688546800,1),(964,702460800,0),(964,719996400,1),(964,733910400,0),(964,752050800,1),(964,765360000,0),(964,783500400,1),(964,796809600,0),(964,814950000,1),(964,828864000,0),(964,846399600,1),(964,860313600,0),(964,877849200,1),(964,891763200,0),(964,909298800,1),(964,923212800,0),(964,941353200,1),(964,954662400,0),(964,972802800,1),(964,986112000,0),(964,1004252400,1),(964,1018166400,0),(964,1035702000,1),(964,1049616000,0),(964,1067151600,1),(964,1081065600,0),(964,1099206000,1),(964,1112515200,0),(964,1130655600,1),(964,1143964800,0),(964,1162105200,1),(964,1173600000,0),(964,1194159600,1),(964,1205049600,0),(964,1225609200,1),(964,1236499200,0),(964,1257058800,1),(964,1268553600,0),(964,1289113200,1),(964,1300003200,0),(964,1320562800,1),(964,1331452800,0),(964,1352012400,1),(964,1362902400,0),(964,1383462000,1),(964,1394352000,0),(964,1414911600,1),(964,1425801600,0),(964,1446361200,1),(964,1457856000,0),(964,1478415600,1),(964,1489305600,0),(964,1509865200,1),(964,1520755200,0),(964,1541314800,1),(964,1552204800,0),(964,1572764400,1),(964,1583654400,0),(964,1604214000,1),(964,1615708800,0),(964,1636268400,1),(964,1647158400,0),(964,1667718000,1),(964,1678608000,0),(964,1699167600,1),(964,1710057600,0),(964,1730617200,1),(964,1741507200,0),(964,1762066800,1),(964,1772956800,0),(964,1793516400,1),(964,1805011200,0),(964,1825570800,1),(964,1836460800,0),(964,1857020400,1),(964,1867910400,0),(964,1888470000,1),(964,1899360000,0),(964,1919919600,1),(964,1930809600,0),(964,1951369200,1),(964,1962864000,0),(964,1983423600,1),(964,1994313600,0),(964,2014873200,1),(964,2025763200,0),(964,2046322800,1),(964,2057212800,0),(964,2077772400,1),(964,2088662400,0),(964,2109222000,1),(964,2120112000,0),(964,2140671600,1),(965,-2131645536,2),(965,-1696276800,1),(965,-1680469200,2),(965,-1632074400,1),(965,-1615143600,2),(965,-1566763200,1),(965,-1557090000,2),(965,-1535486400,1),(965,-1524949200,2),(965,-1504468800,1),(965,-1493413200,2),(965,-1472414400,1),(965,-1461963600,2),(965,-1440964800,1),(965,-1429390800,2),(965,-1409515200,1),(965,-1396731600,2),(965,-1376856000,1),(965,-1366491600,2),(965,-1346616000,1),(965,-1333832400,2),(965,-1313956800,1),(965,-1303678800,2),(965,-1282507200,1),(965,-1272661200,2),(965,-1251057600,1),(965,-1240088400,2),(965,-1219608000,1),(965,-1207429200,2),(965,-1188763200,1),(965,-1175979600,2),(965,-1157313600,1),(965,-1143925200,2),(965,-1124049600,1),(965,-1113771600,2),(965,-1091390400,1),(965,-1081026000,2),(965,-1059854400,1),(965,-1050786000,2),(965,-1030910400,1),(965,-1018126800,2),(965,-999460800,1),(965,-986677200,2),(965,-965592000,1),(965,-955227600,2),(965,-935956800,1),(965,-923173200,2),(965,-904507200,1),(965,-891723600,2),(965,-880221600,3),(965,-769395600,4),(965,-765399600,2),(965,-747252000,1),(965,-733950000,2),(965,-715802400,1),(965,-702500400,2),(965,-684352800,1),(965,-671050800,2),(965,-652903200,1),(965,-639601200,2),(965,-589399200,1),(965,-576097200,2),(965,-557949600,1),(965,-544647600,2),(965,-526500000,1),(965,-513198000,2),(965,-495050400,1),(965,-481748400,2),(965,-431546400,1),(965,-418244400,2),(965,-400096800,1),(965,-386794800,2),(965,-368647200,1),(965,-355345200,2),(965,-337197600,1),(965,-323895600,2),(965,-242244000,1),(965,-226522800,2),(965,-210794400,1),(965,-195073200,2),(965,-179344800,1),(965,-163623600,2),(965,-147895200,1),(965,-131569200,2),(965,-116445600,1),(965,-100119600,2),(965,-84391200,1),(965,-68670000,2),(965,-52941600,1),(965,-37220400,2),(965,-21492000,1),(965,-5770800,2),(965,9957600,1),(965,25678800,2),(965,41407200,1),(965,57733200,2),(965,73461600,1),(965,89182800,2),(965,104911200,1),(965,120632400,2),(965,136360800,1),(965,152082000,2),(965,167810400,1),(965,183531600,2),(965,199260000,1),(965,215586000,2),(965,230709600,1),(965,247035600,2),(965,262764000,1),(965,278485200,2),(965,294213600,1),(965,309934800,2),(965,325663200,1),(965,341384400,2),(965,357112800,1),(965,372834000,2),(965,388562400,1),(965,404888400,2),(965,420012000,1),(965,436338000,2),(965,452066400,1),(965,467787600,2),(965,483516000,1),(965,499237200,2),(965,514965600,1),(965,530686800,2),(965,544600800,1),(965,562136400,2),(965,576050400,1),(965,594190800,2),(965,607500000,1),(965,625640400,2),(965,638949600,1),(965,657090000,2),(965,671004000,1),(965,688539600,2),(965,702453600,1),(965,719989200,2),(965,733903200,1),(965,752043600,2),(965,765352800,1),(965,783493200,2),(965,796802400,1),(965,814942800,2),(965,828856800,1),(965,846392400,2),(965,860306400,1),(965,877842000,2),(965,891756000,1),(965,909291600,2),(965,923205600,1),(965,941346000,2),(965,954655200,1),(965,972795600,2),(965,986104800,1),(965,1004245200,2),(965,1018159200,1),(965,1035694800,2),(965,1049608800,1),(965,1067144400,2),(965,1081058400,1),(965,1099198800,2),(965,1112508000,1),(965,1130648400,2),(965,1143957600,1),(965,1162098000,2),(965,1173592800,1),(965,1194152400,2),(965,1205042400,1),(965,1225602000,2),(965,1236492000,1),(965,1257051600,2),(965,1268546400,1),(965,1289106000,2),(965,1299996000,1),(965,1320555600,2),(965,1331445600,1),(965,1352005200,2),(965,1362895200,1),(965,1383454800,2),(965,1394344800,1),(965,1414904400,2),(965,1425794400,1),(965,1446354000,2),(965,1457848800,1),(965,1478408400,2),(965,1489298400,1),(965,1509858000,2),(965,1520748000,1),(965,1541307600,2),(965,1552197600,1),(965,1572757200,2),(965,1583647200,1),(965,1604206800,2),(965,1615701600,1),(965,1636261200,2),(965,1647151200,1),(965,1667710800,2),(965,1678600800,1),(965,1699160400,2),(965,1710050400,1),(965,1730610000,2),(965,1741500000,1),(965,1762059600,2),(965,1772949600,1),(965,1793509200,2),(965,1805004000,1),(965,1825563600,2),(965,1836453600,1),(965,1857013200,2),(965,1867903200,1),(965,1888462800,2),(965,1899352800,1),(965,1919912400,2),(965,1930802400,1),(965,1951362000,2),(965,1962856800,1),(965,1983416400,2),(965,1994306400,1),(965,2014866000,2),(965,2025756000,1),(965,2046315600,2),(965,2057205600,1),(965,2077765200,2),(965,2088655200,1),(965,2109214800,2),(965,2120104800,1),(965,2140664400,2),(966,-1694368800,0),(966,-1681671600,1),(966,-1632067200,0),(966,-1615136400,1),(966,-1029686400,0),(966,-1018198800,1),(966,-880214400,2),(966,-769395600,3),(966,-765392400,1),(966,-746035200,0),(966,-732733200,1),(966,-715795200,0),(966,-702493200,1),(966,-684345600,0),(966,-671043600,1),(966,-652896000,0),(966,-639594000,1),(966,-620755200,0),(966,-607626000,1),(966,-589392000,0),(966,-576090000,1),(966,-557942400,0),(966,-544640400,1),(966,-526492800,0),(966,-513190800,1),(966,-495043200,0),(966,-481741200,1),(966,-463593600,0),(966,-450291600,1),(966,-431539200,0),(966,-418237200,1),(966,-400089600,0),(966,-386787600,1),(966,-368640000,0),(966,-355338000,1),(966,-337190400,0),(966,-321469200,1),(966,-305740800,0),(966,-292438800,1),(966,-210787200,0),(966,-198090000,1),(966,-116438400,4),(966,-100108800,5),(966,-84384000,4),(966,-68659200,5),(966,-52934400,4),(966,-37209600,5),(966,-21484800,4),(966,-5760000,5),(966,9964800,4),(966,25689600,5),(966,41414400,4),(966,57744000,5),(966,73468800,4),(966,89193600,5),(966,104918400,4),(966,120643200,5),(966,136368000,4),(966,152092800,5),(966,167817600,4),(966,183542400,5),(966,199267200,4),(966,215596800,5),(966,230716800,4),(966,247046400,5),(966,262771200,4),(966,278496000,5),(966,294220800,4),(966,309945600,5),(966,325670400,4),(966,341395200,5),(966,357120000,4),(966,372844800,5),(966,388569600,4),(966,404899200,5),(966,420019200,4),(966,436348800,5),(966,452073600,4),(966,467798400,5),(966,483523200,4),(966,499248000,5),(966,514972800,4),(966,530697600,5),(966,544608000,4),(966,562147200,5),(966,576057600,4),(966,594201600,5),(966,607507200,4),(966,625651200,5),(966,638956800,4),(966,657100800,5),(966,671011200,4),(966,688550400,5),(966,702460800,4),(966,720000000,5),(966,733910400,4),(966,752054400,5),(966,765360000,4),(966,783504000,5),(966,796809600,4),(966,814953600,5),(966,828864000,4),(966,846403200,5),(966,860313600,4),(966,877852800,5),(966,891763200,4),(966,909302400,5),(966,923212800,4),(966,941356800,5),(966,954662400,4),(966,972806400,5),(966,986112000,4),(966,1004256000,5),(966,1018166400,4),(966,1035705600,5),(966,1049616000,4),(966,1067155200,5),(966,1081065600,4),(966,1099209600,5),(966,1112515200,4),(966,1130659200,5),(966,1136095200,1),(966,1143964800,0),(966,1162105200,1),(966,1173600000,0),(966,1194159600,1),(966,1205049600,0),(966,1225609200,1),(966,1236499200,0),(966,1257058800,1),(966,1268553600,0),(966,1289113200,1),(966,1300003200,0),(966,1320562800,1),(966,1331452800,0),(966,1352012400,1),(966,1362902400,0),(966,1383462000,1),(966,1394352000,0),(966,1414911600,1),(966,1425801600,0),(966,1446361200,1),(966,1457856000,0),(966,1478415600,1),(966,1489305600,0),(966,1509865200,1),(966,1520755200,0),(966,1541314800,1),(966,1552204800,0),(966,1572764400,1),(966,1583654400,0),(966,1604214000,1),(966,1615708800,0),(966,1636268400,1),(966,1647158400,0),(966,1667718000,1),(966,1678608000,0),(966,1699167600,1),(966,1710057600,0),(966,1730617200,1),(966,1741507200,0),(966,1762066800,1),(966,1772956800,0),(966,1793516400,1),(966,1805011200,0),(966,1825570800,1),(966,1836460800,0),(966,1857020400,1),(966,1867910400,0),(966,1888470000,1),(966,1899360000,0),(966,1919919600,1),(966,1930809600,0),(966,1951369200,1),(966,1962864000,0),(966,1983423600,1),(966,1994313600,0),(966,2014873200,1),(966,2025763200,0),(966,2046322800,1),(966,2057212800,0),(966,2077772400,1),(966,2088662400,0),(966,2109222000,1),(966,2120112000,0),(966,2140671600,1),(967,-1632070800,0),(967,-1615140000,1),(967,-1601753400,0),(967,-1583697600,1),(967,-1567357200,0),(967,-1554667200,1),(967,-1534698000,0),(967,-1524074400,1),(967,-1503248400,0),(967,-1492365600,1),(967,-1471798800,0),(967,-1460916000,1),(967,-1440954000,0),(967,-1428861600,1),(967,-1409504400,0),(967,-1397412000,1),(967,-1378054800,0),(967,-1365962400,1),(967,-1346605200,0),(967,-1333908000,1),(967,-1315155600,0),(967,-1301853600,1),(967,-1283706000,0),(967,-1270404000,1),(967,-1252256400,0),(967,-1238954400,1),(967,-1220806800,0),(967,-1207504800,1),(967,-1188752400,0),(967,-1176055200,1),(967,-1157302800,0),(967,-1144000800,1),(967,-1125853200,0),(967,-1112551200,1),(967,-1094403600,0),(967,-1081101600,1),(967,-1062954000,0),(967,-1049652000,1),(967,-1031504400,0),(967,-1018202400,1),(967,-1000054800,0),(967,-986752800,1),(967,-968000400,0),(967,-955303200,1),(967,-936550800,0),(967,-880218000,2),(967,-769395600,3),(967,-765396000,1),(967,-747248400,0),(967,-733946400,1),(967,-715806000,0),(967,-702504000,1),(967,-684356400,0),(967,-671054400,1),(967,-652906800,0),(967,-634161600,1),(967,-620845200,0),(967,-602704800,1),(967,-589395600,0),(967,-576093600,1),(967,-557946000,0),(967,-544644000,1),(967,-526496400,0),(967,-513194400,1),(967,-495046800,0),(967,-481744800,1),(967,-463597200,0),(967,-450295200,1),(967,-431542800,0),(967,-418240800,1),(967,-400093200,0),(967,-384372000,1),(967,-368643600,0),(967,-352922400,1),(967,-337194000,0),(967,-321472800,1),(967,-305744400,0),(967,-289418400,1),(967,-273690000,0),(967,-257968800,1),(967,-242240400,0),(967,-226519200,1),(967,-210790800,0),(967,-195069600,1),(967,-179341200,0),(967,-163620000,1),(967,-147891600,0),(967,-131565600,1),(967,-116442000,0),(967,-100116000,1),(967,-84387600,0),(967,-68666400,1),(967,-52938000,0),(967,-37216800,1),(967,-21488400,0),(967,-5767200,1),(967,9961200,0),(967,25682400,1),(967,41410800,0),(967,57736800,1),(967,73465200,0),(967,89186400,1),(967,104914800,0),(967,120636000,1),(967,136364400,0),(967,152085600,1),(967,167814000,0),(967,183535200,1),(967,199263600,0),(967,215589600,1),(967,230713200,0),(967,247039200,1),(967,262767600,0),(967,278488800,1),(967,294217200,0),(967,309938400,1),(967,325666800,0),(967,341388000,1),(967,357116400,0),(967,372837600,1),(967,388566000,0),(967,404892000,1),(967,420015600,0),(967,436341600,1),(967,452070000,0),(967,467791200,1),(967,483519600,0),(967,499240800,1),(967,514969200,0),(967,530690400,1),(967,544604400,0),(967,562140000,1),(967,576054000,0),(967,594194400,1),(967,607503600,0),(967,625644000,1),(967,638953200,0),(967,657093600,1),(967,671007600,0),(967,688543200,1),(967,702457200,0),(967,719992800,1),(967,733906800,0),(967,752047200,1),(967,765356400,0),(967,783496800,1),(967,796806000,0),(967,814946400,1),(967,828860400,0),(967,846396000,1),(967,860310000,0),(967,877845600,1),(967,891759600,0),(967,909295200,1),(967,923209200,0),(967,941349600,1),(967,954658800,0),(967,972799200,1),(967,986108400,0),(967,1004248800,1),(967,1018162800,0),(967,1035698400,1),(967,1049612400,0),(967,1067148000,1),(967,1081062000,0),(967,1099202400,1),(967,1112511600,0),(967,1130652000,1),(967,1143961200,0),(967,1162101600,1),(967,1173596400,0),(967,1194156000,1),(967,1205046000,0),(967,1225605600,1),(967,1236495600,0),(967,1257055200,1),(967,1268550000,0),(967,1289109600,1),(967,1299999600,0),(967,1320559200,1),(967,1331449200,0),(967,1352008800,1),(967,1362898800,0),(967,1383458400,1),(967,1394348400,0),(967,1414908000,1),(967,1425798000,0),(967,1446357600,1),(967,1457852400,0),(967,1478412000,1),(967,1489302000,0),(967,1509861600,1),(967,1520751600,0),(967,1541311200,1),(967,1552201200,0),(967,1572760800,1),(967,1583650800,0),(967,1604210400,1),(967,1615705200,0),(967,1636264800,1),(967,1647154800,0),(967,1667714400,1),(967,1678604400,0),(967,1699164000,1),(967,1710054000,0),(967,1730613600,1),(967,1741503600,0),(967,1762063200,1),(967,1772953200,0),(967,1793512800,1),(967,1805007600,0),(967,1825567200,1),(967,1836457200,0),(967,1857016800,1),(967,1867906800,0),(967,1888466400,1),(967,1899356400,0),(967,1919916000,1),(967,1930806000,0),(967,1951365600,1),(967,1962860400,0),(967,1983420000,1),(967,1994310000,0),(967,2014869600,1),(967,2025759600,0),(967,2046319200,1),(967,2057209200,0),(967,2077768800,1),(967,2088658800,0),(967,2109218400,1),(967,2120108400,0),(967,2140668000,1),(968,-1998663968,2),(968,-1632063600,1),(968,-1615132800,2),(968,-1600614000,1),(968,-1596816000,2),(968,-1567954800,1),(968,-1551628800,2),(968,-1536505200,1),(968,-1523203200,2),(968,-1504450800,1),(968,-1491753600,2),(968,-1473001200,1),(968,-1459699200,2),(968,-880210800,3),(968,-769395600,4),(968,-765388800,2),(968,-715791600,1),(968,-702489600,2),(968,-84380400,1),(968,-68659200,2),(968,-21481200,1),(968,-5760000,2),(968,73472400,1),(968,89193600,2),(968,104922000,1),(968,120643200,2),(968,136371600,1),(968,152092800,2),(968,167821200,1),(968,183542400,2),(968,199270800,1),(968,215596800,2),(968,230720400,1),(968,247046400,2),(968,262774800,1),(968,278496000,2),(968,294224400,1),(968,309945600,2),(968,325674000,1),(968,341395200,2),(968,357123600,1),(968,372844800,2),(968,388573200,1),(968,404899200,2),(968,420022800,1),(968,436348800,2),(968,452077200,1),(968,467798400,2),(968,483526800,1),(968,499248000,2),(968,514976400,1),(968,530697600,2),(968,544611600,1),(968,562147200,2),(968,576061200,1),(968,594201600,2),(968,607510800,1),(968,625651200,2),(968,638960400,1),(968,657100800,2),(968,671014800,1),(968,688550400,2),(968,702464400,1),(968,720000000,2),(968,733914000,1),(968,752054400,2),(968,765363600,1),(968,783504000,2),(968,796813200,1),(968,814953600,2),(968,828867600,1),(968,846403200,2),(968,860317200,1),(968,877852800,2),(968,891766800,1),(968,909302400,2),(968,923216400,1),(968,941356800,2),(968,954666000,1),(968,972806400,2),(968,986115600,1),(968,1004256000,2),(968,1018170000,1),(968,1035705600,2),(968,1049619600,1),(968,1067155200,2),(968,1081069200,1),(968,1099209600,2),(968,1112518800,1),(968,1130659200,2),(968,1143968400,1),(968,1162108800,2),(968,1173603600,1),(968,1194163200,2),(968,1205053200,1),(968,1225612800,2),(968,1236502800,1),(968,1257062400,2),(968,1268557200,1),(968,1289116800,2),(968,1300006800,1),(968,1320566400,2),(968,1331456400,1),(968,1352016000,2),(968,1362906000,1),(968,1383465600,2),(968,1394355600,1),(968,1414915200,2),(968,1425805200,1),(968,1446364800,2),(968,1457859600,1),(968,1478419200,2),(968,1489309200,1),(968,1509868800,2),(968,1520758800,1),(968,1541318400,2),(968,1552208400,1),(968,1572768000,2),(968,1583658000,1),(968,1604217600,2),(968,1615712400,1),(968,1636272000,2),(968,1647162000,1),(968,1667721600,2),(968,1678611600,1),(968,1699171200,2),(968,1710061200,1),(968,1730620800,2),(968,1741510800,1),(968,1762070400,2),(968,1772960400,1),(968,1793520000,2),(968,1805014800,1),(968,1825574400,2),(968,1836464400,1),(968,1857024000,2),(968,1867914000,1),(968,1888473600,2),(968,1899363600,1),(968,1919923200,2),(968,1930813200,1),(968,1951372800,2),(968,1962867600,1),(968,1983427200,2),(968,1994317200,1),(968,2014876800,2),(968,2025766800,1),(968,2046326400,2),(968,2057216400,1),(968,2077776000,2),(968,2088666000,1),(968,2109225600,2),(968,2120115600,1),(968,2140675200,2),(969,-1664130548,0),(969,-1650137348,1),(969,-1632076148,0),(969,-1615145348,1),(969,-1598650148,0),(969,-1590100148,1),(969,-1567286948,0),(969,-1551565748,1),(969,-1535837348,0),(969,-1520116148,1),(969,-1503782948,0),(969,-1488666548,1),(969,-1472333348,0),(969,-1457216948,1),(969,-1440883748,0),(969,-1425767348,1),(969,-1409434148,0),(969,-1394317748,1),(969,-1377984548,0),(969,-1362263348,1),(969,-1346534948,0),(969,-1330813748,1),(969,-1314480548,0),(969,-1299364148,1),(969,-1283030948,0),(969,-1267914548,1),(969,-1251581348,0),(969,-1236464948,1),(969,-1220131748,0),(969,-1205015348,1),(969,-1188682148,0),(969,-1172960948,1),(969,-1156627748,0),(969,-1141511348,1),(969,-1125178148,0),(969,-1110061748,1),(969,-1096921748,3),(969,-1093728600,2),(969,-1078612200,3),(969,-1061670600,2),(969,-1048973400,3),(969,-1030221000,2),(969,-1017523800,3),(969,-998771400,2),(969,-986074200,3),(969,-966717000,2),(969,-954624600,3),(969,-935267400,2),(969,-922570200,3),(969,-903817800,2),(969,-891120600,3),(969,-872368200,5),(969,-769395600,4),(969,-765401400,3),(969,-746044200,2),(969,-733347000,3),(969,-714594600,2),(969,-701897400,3),(969,-683145000,2),(969,-670447800,3),(969,-651695400,2),(969,-638998200,3),(969,-619641000,2),(969,-606943800,3),(969,-589401000,2),(969,-576099000,3),(969,-557951400,2),(969,-544649400,3),(969,-526501800,2),(969,-513199800,3),(969,-495052200,2),(969,-481750200,3),(969,-463602600,2),(969,-450300600,3),(969,-431548200,2),(969,-418246200,3),(969,-400098600,2),(969,-386796600,3),(969,-368649000,2),(969,-355347000,3),(969,-337199400,2),(969,-323897400,3),(969,-305749800,2),(969,-289423800,3),(969,-273695400,2),(969,-257974200,3),(969,-242245800,2),(969,-226524600,3),(969,-210796200,2),(969,-195075000,3),(969,-179346600,2),(969,-163625400,3),(969,-147897000,2),(969,-131571000,3),(969,-116447400,2),(969,-100121400,3),(969,-84393000,2),(969,-68671800,3),(969,-52943400,2),(969,-37222200,3),(969,-21493800,2),(969,-5772600,3),(969,9955800,2),(969,25677000,3),(969,41405400,2),(969,57731400,3),(969,73459800,2),(969,89181000,3),(969,104909400,2),(969,120630600,3),(969,136359000,2),(969,152080200,3),(969,167808600,2),(969,183529800,3),(969,199258200,2),(969,215584200,3),(969,230707800,2),(969,247033800,3),(969,262762200,2),(969,278483400,3),(969,294211800,2),(969,309933000,3),(969,325661400,2),(969,341382600,3),(969,357111000,2),(969,372832200,3),(969,388560600,2),(969,404886600,3),(969,420010200,2),(969,436336200,3),(969,452064600,2),(969,467785800,3),(969,483514200,2),(969,499235400,3),(969,514963800,2),(969,530685000,3),(969,544591860,2),(969,562127460,3),(969,576041460,6),(969,594178260,3),(969,607491060,2),(969,625631460,3),(969,638940660,2),(969,657081060,3),(969,670995060,2),(969,688530660,3),(969,702444660,2),(969,719980260,3),(969,733894260,2),(969,752034660,3),(969,765343860,2),(969,783484260,3),(969,796793460,2),(969,814933860,3),(969,828847860,2),(969,846383460,3),(969,860297460,2),(969,877833060,3),(969,891747060,2),(969,909282660,3),(969,923196660,2),(969,941337060,3),(969,954646260,2),(969,972786660,3),(969,986095860,2),(969,1004236260,3),(969,1018150260,2),(969,1035685860,3),(969,1049599860,2),(969,1067135460,3),(969,1081049460,2),(969,1099189860,3),(969,1112499060,2),(969,1130639460,3),(969,1143948660,2),(969,1162089060,3),(969,1173583860,2),(969,1194143460,3),(969,1205033460,2),(969,1225593060,3),(969,1236483060,2),(969,1257042660,3),(969,1268537460,2),(969,1289097060,3),(969,1299987060,2),(969,1320553800,3),(969,1331443800,2),(969,1352003400,3),(969,1362893400,2),(969,1383453000,3),(969,1394343000,2),(969,1414902600,3),(969,1425792600,2),(969,1446352200,3),(969,1457847000,2),(969,1478406600,3),(969,1489296600,2),(969,1509856200,3),(969,1520746200,2),(969,1541305800,3),(969,1552195800,2),(969,1572755400,3),(969,1583645400,2),(969,1604205000,3),(969,1615699800,2),(969,1636259400,3),(969,1647149400,2),(969,1667709000,3),(969,1678599000,2),(969,1699158600,3),(969,1710048600,2),(969,1730608200,3),(969,1741498200,2),(969,1762057800,3),(969,1772947800,2),(969,1793507400,3),(969,1805002200,2),(969,1825561800,3),(969,1836451800,2),(969,1857011400,3),(969,1867901400,2),(969,1888461000,3),(969,1899351000,2),(969,1919910600,3),(969,1930800600,2),(969,1951360200,3),(969,1962855000,2),(969,1983414600,3),(969,1994304600,2),(969,2014864200,3),(969,2025754200,2),(969,2046313800,3),(969,2057203800,2),(969,2077763400,3),(969,2088653400,2),(969,2109213000,3),(969,2120103000,2),(969,2140662600,3),(970,-1632060000,0),(970,-1615129200,1),(970,-880207200,2),(970,-769395600,3),(970,-765385200,1),(970,-747237600,0),(970,-732726000,1),(970,-715788000,0),(970,-702486000,1),(970,-684338400,0),(970,-671036400,1),(970,-652888800,0),(970,-639586800,1),(970,-620834400,0),(970,-608137200,1),(970,-589384800,0),(970,-576082800,1),(970,-557935200,0),(970,-544633200,1),(970,-526485600,0),(970,-513183600,1),(970,-495036000,0),(970,-481734000,1),(970,-463586400,0),(970,-450284400,1),(970,-431532000,0),(970,-418230000,1),(970,-400082400,0),(970,-386780400,1),(970,-368632800,0),(970,-355330800,1),(970,-337183200,0),(970,-323881200,1),(970,-305733600,0),(970,-292431600,1),(970,-273679200,0),(970,-260982000,1),(970,-242229600,0),(970,-226508400,1),(970,-210780000,0),(970,-195058800,1),(970,-179330400,0),(970,-163609200,1),(970,-147880800,0),(970,-131554800,1),(970,-116431200,0),(970,-100105200,1),(970,-84376800,0),(970,-68655600,1),(970,-52927200,0),(970,-37206000,1),(970,-21477600,0),(970,-5756400,1),(970,9972000,0),(970,25693200,1),(970,41421600,0),(970,57747600,1),(970,73476000,0),(970,89197200,1),(970,104925600,0),(970,120646800,1),(970,136375200,0),(970,152096400,1),(970,167824800,0),(970,183546000,1),(970,199274400,0),(970,215600400,1),(970,230724000,0),(970,247050000,1),(970,262778400,0),(970,278499600,1),(970,294228000,0),(970,309949200,1),(970,325677600,0),(970,341398800,1),(970,357127200,0),(970,372848400,1),(970,388576800,0),(970,404902800,1),(970,420026400,0),(970,436352400,1),(970,452080800,0),(970,467802000,1),(970,483530400,0),(970,499251600,1),(970,514980000,0),(970,530701200,1),(970,544615200,0),(970,562150800,1),(970,576064800,0),(970,594205200,1),(970,607514400,0),(970,625654800,1),(970,638964000,0),(970,657104400,1),(970,671018400,0),(970,688554000,1),(970,702468000,0),(970,720003600,1),(970,733917600,0),(970,752058000,1),(970,765367200,0),(970,783507600,1),(970,796816800,0),(970,814957200,1),(970,828871200,0),(970,846406800,1),(970,860320800,0),(970,877856400,1),(970,891770400,0),(970,909306000,1),(970,923220000,0),(970,941360400,1),(970,954669600,0),(970,972810000,1),(970,986119200,0),(970,1004259600,1),(970,1018173600,0),(970,1035709200,1),(970,1049623200,0),(970,1067158800,1),(970,1081072800,0),(970,1099213200,1),(970,1112522400,0),(970,1130662800,1),(970,1143972000,0),(970,1162112400,1),(970,1173607200,0),(970,1194166800,1),(970,1205056800,0),(970,1225616400,1),(970,1236506400,0),(970,1257066000,1),(970,1268560800,0),(970,1289120400,1),(970,1300010400,0),(970,1320570000,1),(970,1331460000,0),(970,1352019600,1),(970,1362909600,0),(970,1383469200,1),(970,1394359200,0),(970,1414918800,1),(970,1425808800,0),(970,1446368400,1),(970,1457863200,0),(970,1478422800,1),(970,1489312800,0),(970,1509872400,1),(970,1520762400,0),(970,1541322000,1),(970,1552212000,0),(970,1572771600,1),(970,1583661600,0),(970,1604221200,1),(970,1615716000,0),(970,1636275600,1),(970,1647165600,0),(970,1667725200,1),(970,1678615200,0),(970,1699174800,1),(970,1710064800,0),(970,1730624400,1),(970,1741514400,0),(970,1762074000,1),(970,1772964000,0),(970,1793523600,1),(970,1805018400,0),(970,1825578000,1),(970,1836468000,0),(970,1857027600,1),(970,1867917600,0),(970,1888477200,1),(970,1899367200,0),(970,1919926800,1),(970,1930816800,0),(970,1951376400,1),(970,1962871200,0),(970,1983430800,1),(970,1994320800,0),(970,2014880400,1),(970,2025770400,0),(970,2046330000,1),(970,2057220000,0),(970,2077779600,1),(970,2088669600,0),(970,2109229200,1),(970,2120119200,0),(970,2140678800,1),(971,-2030202084,2),(971,-1632063600,1),(971,-1615132800,2),(971,-1251651600,1),(971,-1238349600,2),(971,-1220202000,1),(971,-1206900000,2),(971,-1188752400,1),(971,-1175450400,2),(971,-1156698000,1),(971,-1144000800,2),(971,-1125248400,1),(971,-1111946400,2),(971,-1032714000,1),(971,-1016992800,2),(971,-1001264400,1),(971,-986148000,2),(971,-969814800,1),(971,-954093600,2),(971,-937760400,1),(971,-922039200,2),(971,-906310800,1),(971,-890589600,2),(971,-880210800,3),(971,-769395600,4),(971,-765388800,2),(971,-748450800,1),(971,-732729600,2),(971,-715791600,1),(971,-702489600,2),(971,-684342000,1),(971,-671040000,2),(971,-652892400,1),(971,-639590400,2),(971,-620838000,1),(971,-608140800,2),(971,-589388400,1),(971,-576086400,2),(971,-557938800,1),(971,-544636800,2),(971,-526489200,1),(971,-513187200,2),(971,-495039600,1),(971,-481737600,2),(971,-463590000,1),(971,-450288000,2),(971,-431535600,1),(971,-418233600,2),(971,-400086000,1),(971,-386784000,2),(971,-337186800,1),(971,-321465600,2),(971,-305737200,5),(972,-1632056400,0),(972,-1615125600,1),(972,-1596978000,0),(972,-1583164800,1),(972,-880203600,2),(972,-769395600,3),(972,-765381600,1),(972,-147884400,4),(972,-131554800,1),(972,-81961200,5),(972,325677600,6),(972,341398800,5),(972,357127200,6),(972,372848400,5),(972,388576800,6),(972,404902800,5),(972,420026400,6),(972,436352400,5),(972,452080800,6),(972,467802000,5),(972,483530400,6),(972,499251600,5),(972,514980000,6),(972,530701200,5),(972,544615200,6),(972,562150800,5),(972,576064800,6),(972,594205200,5),(972,607514400,6),(972,625654800,5),(972,638964000,6),(972,657104400,5),(972,671018400,6),(972,688554000,5),(972,702468000,6),(972,720003600,5),(972,733917600,6),(972,752058000,5),(972,765367200,6),(972,783507600,5),(972,796816800,6),(972,814957200,5),(972,828871200,6),(972,846406800,5),(972,860320800,6),(972,877856400,5),(972,891770400,6),(972,909306000,5),(972,923220000,6),(972,941360400,5),(972,954669600,6),(972,972810000,5),(972,986119200,6),(972,1004259600,5),(972,1018173600,6),(972,1035709200,5),(972,1049623200,6),(972,1067158800,5),(972,1081072800,6),(972,1099213200,5),(972,1112522400,6),(972,1130662800,5),(972,1143972000,6),(972,1162112400,5),(972,1173607200,6),(972,1194166800,5),(972,1205056800,6),(972,1225616400,5),(972,1236506400,6),(972,1257066000,5),(972,1268560800,6),(972,1289120400,5),(972,1300010400,6),(972,1320570000,5),(972,1331460000,6),(972,1352019600,5),(972,1362909600,6),(972,1383469200,5),(972,1394359200,6),(972,1414918800,5),(972,1425808800,6),(972,1446368400,5),(972,1457863200,6),(972,1478422800,5),(972,1489312800,6),(972,1509872400,5),(972,1520762400,6),(972,1541322000,5),(972,1552212000,6),(972,1572771600,5),(972,1583661600,6),(972,1604221200,5),(972,1615716000,6),(972,1636275600,5),(972,1647165600,6),(972,1667725200,5),(972,1678615200,6),(972,1699174800,5),(972,1710064800,6),(972,1730624400,5),(972,1741514400,6),(972,1762074000,5),(972,1772964000,6),(972,1793523600,5),(972,1805018400,6),(972,1825578000,5),(972,1836468000,6),(972,1857027600,5),(972,1867917600,6),(972,1888477200,5),(972,1899367200,6),(972,1919926800,5),(972,1930816800,6),(972,1951376400,5),(972,1962871200,6),(972,1983430800,5),(972,1994320800,6),(972,2014880400,5),(972,2025770400,6),(972,2046330000,5),(972,2057220000,6),(972,2077779600,5),(972,2088669600,6),(972,2109229200,5),(972,2120119200,6),(972,2140678800,5),(973,-1892661434,1),(973,-1688410800,0),(973,-1619205434,2),(973,-1593806400,0),(973,-1335986234,3),(973,-1317585600,1),(973,-1304362800,3),(973,-1286049600,1),(973,-1272826800,3),(973,-1254513600,1),(973,-1241290800,3),(973,-1222977600,1),(973,-1209754800,3),(973,-1191355200,1),(973,-1178132400,2),(973,-870552000,1),(973,-865278000,2),(973,-740520000,4),(973,-736376400,2),(973,-718056000,1),(973,-713649600,2),(973,-36619200,5),(973,-23922000,6),(973,-3355200,5),(973,7527600,6),(973,24465600,5),(973,37767600,6),(973,55915200,5),(973,69217200,6),(973,87969600,5),(973,100666800,6),(973,118209600,5),(973,132116400,6),(973,150868800,5),(973,163566000,6),(973,182318400,5),(973,195620400,6),(973,213768000,5),(973,227070000,6),(973,245217600,5),(973,258519600,6),(973,277272000,5),(973,289969200,6),(973,308721600,5),(973,321418800,6),(973,340171200,5),(973,353473200,6),(973,371620800,5),(973,384922800,6),(973,403070400,5),(973,416372400,6),(973,434520000,5),(973,447822000,6),(973,466574400,5),(973,479271600,6),(973,498024000,5),(973,510721200,6),(973,529473600,5),(973,545194800,6),(973,560923200,5),(973,574225200,6),(973,592372800,5),(973,605674800,6),(973,624427200,5),(973,637124400,6),(973,653457600,5),(973,668574000,6),(973,687326400,5),(973,700628400,6),(973,718776000,5),(973,732078000,6),(973,750225600,5),(973,763527600,6),(973,781675200,5),(973,794977200,6),(973,813729600,5),(973,826426800,6),(973,845179200,5),(973,859690800,6),(973,876628800,5),(973,889930800,6),(973,906868800,5),(973,923194800,6),(973,939528000,5),(973,952830000,6),(973,971582400,5),(973,984279600,6),(973,1003032000,5),(973,1015729200,6),(973,1034481600,5),(973,1047178800,6),(973,1065931200,5),(973,1079233200,6),(973,1097380800,5),(973,1110682800,6),(973,1128830400,5),(973,1142132400,6),(973,1160884800,5),(973,1173582000,6),(973,1192334400,5),(973,1206846000,6),(973,1223784000,5),(973,1237086000,6),(973,1255233600,5),(973,1270350000,6),(973,1286683200,5),(973,1304823600,6),(973,1313899200,5),(973,1335668400,6),(973,1346558400,5),(973,1367118000,6),(973,1378612800,5),(973,1398567600,6),(973,1410062400,5),(973,1463281200,6),(973,1471147200,5),(973,1494730800,6),(973,1502596800,5),(973,1526180400,6),(973,1534046400,5),(973,1557630000,6),(973,1565496000,5),(973,1589079600,6),(973,1596945600,5),(973,1620529200,6),(973,1629000000,5),(973,1652583600,6),(973,1660449600,5),(973,1684033200,6),(973,1691899200,5),(973,1715482800,6),(973,1723348800,5),(973,1746932400,6),(973,1754798400,5),(973,1778382000,6),(973,1786248000,5),(973,1809831600,6),(973,1818302400,5),(973,1841886000,6),(973,1849752000,5),(973,1873335600,6),(973,1881201600,5),(973,1904785200,6),(973,1912651200,5),(973,1936234800,6),(973,1944100800,5),(973,1967684400,6),(973,1976155200,5),(973,1999738800,6),(973,2007604800,5),(973,2031188400,6),(973,2039054400,5),(973,2062638000,6),(973,2070504000,5),(973,2094087600,6),(973,2101953600,5),(973,2125537200,6),(973,2133403200,5),(974,-1178124152,3),(974,-36619200,1),(974,-23922000,2),(974,-3355200,1),(974,7527600,2),(974,24465600,1),(974,37767600,2),(974,55915200,1),(974,69217200,2),(974,87969600,1),(974,100666800,2),(974,118209600,1),(974,132116400,2),(974,150868800,1),(974,163566000,2),(974,182318400,1),(974,195620400,2),(974,213768000,1),(974,227070000,2),(974,245217600,1),(974,258519600,2),(974,277272000,1),(974,289969200,2),(974,308721600,1),(974,321418800,2),(974,340171200,1),(974,353473200,2),(974,371620800,1),(974,384922800,4),(974,403070400,5),(974,416372400,4),(974,434520000,5),(974,447822000,4),(974,466574400,5),(974,479271600,4),(974,498024000,5),(974,510721200,4),(974,529473600,5),(974,545194800,4),(974,560923200,5),(974,574225200,4),(974,592372800,5),(974,605674800,4),(974,624427200,5),(974,637124400,4),(974,653457600,5),(974,668574000,4),(974,687326400,5),(974,700628400,4),(974,718776000,5),(974,732078000,4),(974,750225600,5),(974,763527600,4),(974,781675200,5),(974,794977200,4),(974,813729600,5),(974,826426800,4),(974,845179200,5),(974,859690800,4),(974,876628800,5),(974,889930800,4),(974,906868800,5),(974,923194800,4),(974,939528000,5),(974,952830000,4),(974,971582400,5),(974,984279600,4),(974,1003032000,5),(974,1015729200,4),(974,1034481600,5),(974,1047178800,4),(974,1065931200,5),(974,1079233200,4),(974,1097380800,5),(974,1110682800,4),(974,1128830400,5),(974,1142132400,4),(974,1160884800,5),(974,1173582000,4),(974,1192334400,5),(974,1206846000,4),(974,1223784000,5),(974,1237086000,4),(974,1255233600,5),(974,1270350000,4),(974,1286683200,5),(974,1304823600,4),(974,1313899200,5),(974,1335668400,4),(974,1346558400,5),(974,1367118000,4),(974,1378612800,5),(974,1398567600,4),(974,1410062400,5),(974,1463281200,4),(974,1471147200,5),(974,1494730800,4),(974,1502596800,5),(974,1526180400,4),(974,1534046400,5),(974,1557630000,4),(974,1565496000,5),(974,1589079600,4),(974,1596945600,5),(974,1620529200,4),(974,1629000000,5),(974,1652583600,4),(974,1660449600,5),(974,1684033200,4),(974,1691899200,5),(974,1715482800,4),(974,1723348800,5),(974,1746932400,4),(974,1754798400,5),(974,1778382000,4),(974,1786248000,5),(974,1809831600,4),(974,1818302400,5),(974,1841886000,4),(974,1849752000,5),(974,1873335600,4),(974,1881201600,5),(974,1904785200,4),(974,1912651200,5),(974,1936234800,4),(974,1944100800,5),(974,1967684400,4),(974,1976155200,5),(974,1999738800,4),(974,2007604800,5),(974,2031188400,4),(974,2039054400,5),(974,2062638000,4),(974,2070504000,5),(974,2094087600,4),(974,2101953600,5),(974,2125537200,4),(974,2133403200,5),(975,-1402813824,2),(975,-1311534000,1),(975,-1300996800,2),(975,-933534000,1),(975,-925675200,2),(975,-902084400,1),(975,-893620800,2),(975,-870030000,1),(975,-862171200,2),(975,-775681200,1),(975,-767822400,2),(975,-744231600,1),(975,-736372800,2),(975,-144702000,1),(975,-134251200,2),(975,-113425200,1),(975,-102542400,2),(975,-86295600,1),(975,-72907200,2),(975,-54154800,1),(975,-41457600,2),(975,-21495600,1),(975,-5774400,2),(975,9954000,1),(975,25675200,2),(975,41403600,1),(975,57729600,2),(975,73458000,1),(975,87364800,2),(975,104907600,1),(975,118900800,2),(975,136357200,1),(975,150436800,2),(975,167806800,1),(975,183528000,2),(975,199256400,1),(975,215582400,2),(975,230706000,1),(975,247032000,2),(975,263365200,1),(975,276667200,2),(975,290581200,1),(975,308721600,2),(975,322030800,1),(975,340171200,2),(975,358318800,1),(975,371620800,2),(975,389768400,1),(975,403070400,2),(975,421218000,1),(975,434520000,2),(975,452667600,1),(975,466574400,2),(975,484117200,1),(975,498024000,2),(975,511333200,1),(975,529473600,2),(975,542782800,1),(975,560923200,2),(975,574837200,1),(975,592372800,2),(975,606286800,1),(975,623822400,2),(975,638946000,1),(975,655876800,2),(975,671000400,1),(975,687330000,3),(975,702450000,1),(975,718779600,3),(975,733899600,1),(975,750229200,3),(975,765349200,1),(975,781678800,3),(975,796798800,1),(975,813128400,3),(975,828853200,1),(975,844578000,3),(975,860302800,1),(975,876632400,3),(975,891147600,4),(975,909291600,3),(975,922597200,4),(975,941346000,3),(975,954651600,4),(975,972795600,3),(975,986101200,4),(975,1004245200,3),(975,1018155600,4),(975,1035694800,3),(975,1049605200,4),(975,1067144400,3),(975,1080450000,4),(975,1162098000,3),(975,1173589200,4),(975,1193547600,3),(975,1205643600,4),(975,1224997200,3),(975,1236488400,4),(975,1256446800,3),(975,1268542800,4),(975,1288501200,3),(975,1300597200,4),(975,1321160400,3),(975,1333256400,4),(975,1352005200,3),(975,1362891600,4),(975,1383454800,3),(975,1394341200,4),(975,1414904400,3),(975,1425790800,4),(975,1446354000,3),(975,1457845200,4),(975,1478408400,3),(975,1489294800,4),(975,1509858000,3),(975,1520744400,4),(975,1541307600,3),(975,1552194000,4),(975,1572757200,3),(975,1583643600,4),(975,1604206800,3),(975,1615698000,4),(975,1636261200,3),(975,1647147600,4),(975,1667710800,3),(975,1678597200,4),(975,1699160400,3),(975,1710046800,4),(975,1730610000,3),(975,1741496400,4),(975,1762059600,3),(975,1772946000,4),(975,1793509200,3),(975,1805000400,4),(975,1825563600,3),(975,1836450000,4),(975,1857013200,3),(975,1867899600,4),(975,1888462800,3),(975,1899349200,4),(975,1919912400,3),(975,1930798800,4),(975,1951362000,3),(975,1962853200,4),(975,1983416400,3),(975,1994302800,4),(975,2014866000,3),(975,2025752400,4),(975,2046315600,3),(975,2057202000,4),(975,2077765200,3),(975,2088651600,4),(975,2109214800,3),(975,2120101200,4),(975,2140664400,3),(976,228877200,0),(976,243997200,1),(976,260326800,0),(976,276051600,1),(976,291776400,0),(976,307501200,1),(976,323830800,0),(976,338950800,1),(976,354675600,0),(976,370400400,1),(976,386125200,0),(976,401850000,1),(976,417574800,0),(976,433299600,1),(976,449024400,0),(976,465354000,1),(976,481078800,0),(976,496803600,1),(976,512528400,0),(976,528253200,1),(976,543978000,0),(976,559702800,1),(976,575427600,0),(976,591152400,1),(976,606877200,0),(976,622602000,1),(976,638326800,0),(976,654656400,1),(976,670381200,0),(976,686106000,1),(976,701830800,0),(976,717555600,1),(976,733280400,0),(976,749005200,1),(976,764730000,0),(976,780454800,1),(976,796179600,0),(976,811904400,1),(976,828234000,0),(976,846378000,1),(976,859683600,0),(976,877827600,1),(976,891133200,0),(976,909277200,1),(976,922582800,0),(976,941331600,1),(976,954032400,0),(976,972781200,1),(976,985482000,0),(976,1004230800,1),(976,1017536400,0),(976,1035680400,1),(976,1048986000,0),(976,1067130000,1),(976,1080435600,0),(976,1099184400,1),(976,1111885200,0),(976,1130634000,1),(976,1143334800,0),(976,1162083600,1),(976,1174784400,0),(976,1193533200,1),(976,1206838800,0),(976,1224982800,1),(976,1238288400,0),(976,1256432400,1),(976,1269738000,0),(976,1288486800,1),(976,1301187600,0),(976,1319936400,1),(976,1332637200,0),(976,1351386000,1),(976,1364691600,0),(976,1382835600,1),(976,1396141200,0),(976,1414285200,1),(976,1427590800,0),(976,1445734800,1),(976,1459040400,0),(976,1477789200,1),(976,1490490000,0),(976,1509238800,1),(976,1521939600,0),(976,1540688400,1),(976,1553994000,0),(976,1572138000,1),(976,1585443600,0),(976,1603587600,1),(976,1616893200,0),(976,1635642000,1),(976,1648342800,0),(976,1667091600,1),(976,1679792400,0),(976,1698541200,1),(976,1711846800,0),(976,1729990800,1),(976,1743296400,0),(976,1761440400,1),(976,1774746000,0),(976,1792890000,1),(976,1806195600,0),(976,1824944400,1),(976,1837645200,0),(976,1856394000,1),(976,1869094800,0),(976,1887843600,1),(976,1901149200,0),(976,1919293200,1),(976,1932598800,0),(976,1950742800,1),(976,1964048400,0),(976,1982797200,1),(976,1995498000,0),(976,2014246800,1),(976,2026947600,0),(976,2045696400,1),(976,2058397200,0),(976,2077146000,1),(976,2090451600,0),(976,2108595600,1),(976,2121901200,0),(976,2140045200,1),(978,-1633280400,0),(978,-1615140000,1),(978,-1601830800,0),(978,-1583690400,1),(978,-880218000,2),(978,-769395600,3),(978,-765396000,1),(978,-84387600,0),(978,-68666400,1),(978,-52938000,0),(978,-37216800,1),(978,-21488400,0),(978,-5767200,1),(978,9961200,0),(978,25682400,1),(978,41410800,0),(978,57736800,1),(978,73465200,0),(978,89186400,1),(978,104914800,0),(978,120636000,1),(978,126687600,0),(978,152085600,1),(978,162370800,0),(978,183535200,1),(978,199263600,0),(978,215589600,1),(978,230713200,0),(978,247039200,1),(978,262767600,0),(978,278488800,1),(978,294217200,0),(978,309938400,1),(978,325666800,0),(978,341388000,1),(978,357116400,0),(978,372837600,1),(978,388566000,0),(978,404892000,1),(978,420015600,0),(978,436341600,1),(978,452070000,0),(978,467791200,1),(978,483519600,0),(978,499240800,1),(978,514969200,0),(978,530690400,1),(978,544604400,0),(978,562140000,1),(978,576054000,0),(978,594194400,1),(978,607503600,0),(978,625644000,1),(978,638953200,0),(978,657093600,1),(978,671007600,0),(978,688543200,1),(978,702457200,0),(978,719992800,1),(978,733906800,0),(978,752047200,1),(978,765356400,0),(978,783496800,1),(978,796806000,0),(978,814946400,1),(978,828860400,0),(978,846396000,1),(978,860310000,0),(978,877845600,1),(978,891759600,0),(978,909295200,1),(978,923209200,0),(978,941349600,1),(978,954658800,0),(978,972799200,1),(978,986108400,0),(978,1004248800,1),(978,1018162800,0),(978,1035698400,1),(978,1049612400,0),(978,1067148000,1),(978,1081062000,0),(978,1099202400,1),(978,1112511600,0),(978,1130652000,1),(978,1143961200,0),(978,1162101600,1),(978,1173596400,0),(978,1194156000,1),(978,1205046000,0),(978,1225605600,1),(978,1236495600,0),(978,1257055200,1),(978,1268550000,0),(978,1289109600,1),(978,1299999600,0),(978,1320559200,1),(978,1331449200,0),(978,1352008800,1),(978,1362898800,0),(978,1383458400,1),(978,1394348400,0),(978,1414908000,1),(978,1425798000,0),(978,1446357600,1),(978,1457852400,0),(978,1478412000,1),(978,1489302000,0),(978,1509861600,1),(978,1520751600,0),(978,1541311200,1),(978,1552201200,0),(978,1572760800,1),(978,1583650800,0),(978,1604210400,1),(978,1615705200,0),(978,1636264800,1),(978,1647154800,0),(978,1667714400,1),(978,1678604400,0),(978,1699164000,1),(978,1710054000,0),(978,1730613600,1),(978,1741503600,0),(978,1762063200,1),(978,1772953200,0),(978,1793512800,1),(978,1805007600,0),(978,1825567200,1),(978,1836457200,0),(978,1857016800,1),(978,1867906800,0),(978,1888466400,1),(978,1899356400,0),(978,1919916000,1),(978,1930806000,0),(978,1951365600,1),(978,1962860400,0),(978,1983420000,1),(978,1994310000,0),(978,2014869600,1),(978,2025759600,0),(978,2046319200,1),(978,2057209200,0),(978,2077768800,1),(978,2088658800,0),(978,2109218400,1),(978,2120108400,0),(978,2140668000,1),(979,-929844000,0),(979,-923108400,1),(979,-906170400,0),(979,-892868400,1),(979,-875844000,0),(979,-857790000,1),(979,-844308000,0),(979,-825822000,1),(979,-812685600,0),(979,-794199600,1),(979,-779853600,0),(979,-762663600,1),(979,-399088800,0),(979,-386650800,1),(979,-368330400,0),(979,-355114800,1),(979,-336790800,0),(979,-323654400,1),(979,-305168400,0),(979,-292032000,1),(979,-273632400,0),(979,-260496000,1),(979,-242096400,0),(979,-228960000,1),(979,-210560400,0),(979,-197424000,1),(979,-178938000,0),(979,-165801600,1),(979,-147402000,0),(979,-134265600,1),(979,-115866000,0),(979,-102643200,1),(979,-84330000,0),(979,-71107200,1),(979,-52707600,0),(979,-39484800,1),(979,-21171600,0),(979,-7948800,1),(979,10364400,0),(979,23587200,1),(979,41900400,0),(979,55123200,1),(979,73522800,0),(979,86745600,1),(979,105058800,0),(979,118281600,1),(979,136594800,0),(979,149817600,1),(979,168130800,0),(979,181353600,1),(979,199753200,0),(979,212976000,1),(979,231289200,0),(979,244512000,1),(979,262825200,0),(979,276048000,1),(979,294361200,0),(979,307584000,1),(979,325983600,0),(979,339206400,1),(979,357519600,0),(979,370742400,1),(979,396399600,0),(979,402278400,1),(979,426812400,0),(979,433814400,1),(979,452214000,0),(979,465436800,1),(979,483750000,0),(979,496972800,1),(979,515286000,0),(979,528508800,1),(979,546822000,0),(979,560044800,1),(979,578444400,0),(979,591667200,1),(979,610412400,0),(979,623203200,1),(979,641516400,0),(979,654739200,1),(979,673052400,0),(979,686275200,1),(979,704674800,0),(979,717897600,1),(979,736210800,0),(979,749433600,1),(979,767746800,0),(979,780969600,1),(979,799020000,2),(979,812322000,1),(979,830469600,2),(979,843771600,1),(979,861919200,2),(979,875221200,1),(979,893368800,2),(979,906670800,1),(979,925423200,2),(979,938725200,1),(979,956872800,2),(979,970174800,1),(979,988322400,2),(979,1001624400,1),(979,1019772000,2),(979,1033074000,1),(979,1051221600,2),(979,1064523600,1),(979,1083276000,2),(979,1096578000,1),(979,1114725600,2),(979,1128027600,1),(979,1146175200,2),(979,1158872400,1),(979,1177624800,2),(979,1189112400,1),(979,1209074400,2),(979,1219957200,1),(979,1240524000,2),(979,1250802000,1),(979,1272578400,2),(979,1281474000,1),(979,1284069600,0),(979,1285880400,1),(979,1400191200,0),(979,1403816400,1),(979,1406844000,0),(979,1411678800,1),(980,-1691962479,1),(980,-1680471279,3),(980,-1664143200,2),(980,-1650146400,3),(980,-1633903200,2),(980,-1617487200,3),(980,-1601848800,2),(980,-1586037600,3),(980,-1570399200,2),(980,-1552168800,3),(980,-1538344800,2),(980,-1522533600,3),(980,-1517011200,5),(980,-1507500000,4),(980,-1490565600,3),(980,-1473631200,4),(980,-1460930400,3),(980,-1442786400,4),(980,-1428876000,3),(980,-1410732000,4),(980,-1396216800,3),(980,-1379282400,4),(980,-1364767200,3),(980,-1348437600,4),(980,-1333317600,3),(980,-1315778400,4),(980,-1301263200,3),(980,-1284328800,4),(980,-1269813600,3),(980,-1253484000,4),(980,-1238364000,3),(980,-1221429600,4),(980,-1206914400,3),(980,-1189980000,4),(980,-1175464800,3),(980,-1159135200,4),(980,-1143410400,3),(980,-1126476000,4),(980,-1111960800,3),(980,-1095631200,4),(980,-1080511200,3),(980,-1063576800,4),(980,-1049061600,3),(980,-1032127200,4),(980,-1017612000,3),(980,-1001282400,4),(980,-986162400,3),(980,-969228000,4),(980,-950479200,3),(980,-942012000,4),(980,-733356000,3),(980,-719445600,4),(980,-699487200,3),(980,-684972000,4),(980,-668037600,3),(980,-654732000,4),(980,-636588000,3),(980,-622072800,4),(980,-605743200,3),(980,-590623200,4),(980,-574293600,3),(980,-558568800,4),(980,-542239200,3),(980,-527119200,4),(980,-512604000,3),(980,-496274400,4),(980,-481154400,3),(980,-464220000,4),(980,-449704800,3),(980,-432165600,4),(980,-417650400,3),(980,-401320800,4),(980,-386200800,3),(980,-369266400,4),(980,-354751200,3),(980,-337816800,4),(980,-323301600,3),(980,-306972000,4),(980,-291852000,3),(980,-276732000,4),(980,-257983200,3),(980,-245282400,4),(980,-226533600,3),(980,-213228000,4),(980,-195084000,3),(980,-182383200,4),(980,-163634400,3),(980,-150933600,4),(980,-132184800,3),(980,-119484000,4),(980,-100735200,3),(980,-88034400,4),(980,-68680800,3),(980,-59004000,4),(980,-37242000,6),(980,57722400,8),(980,69818400,4),(980,89172000,3),(980,101268000,4),(980,120621600,3),(980,132717600,4),(980,152071200,3),(980,164167200,4),(980,183520800,3),(980,196221600,4),(980,214970400,3),(980,227671200,4),(980,246420000,3),(980,259120800,4),(980,278474400,3),(980,290570400,4),(980,309924000,3),(980,322020000,4),(980,341373600,3),(980,354675600,7),(980,372819600,8),(980,386125200,7),(980,404269200,8),(980,417574800,7),(980,435718800,8),(980,449024400,7),(980,467773200,8),(980,481078800,7),(980,499222800,8),(980,512528400,7),(980,530672400,8),(980,543978000,7),(980,562122000,8),(980,575427600,7),(980,593571600,8),(980,606877200,7),(980,625626000,8),(980,638326800,7),(980,657075600,8),(980,670381200,7),(980,688525200,8),(980,701830800,7),(980,719974800,8),(980,733280400,7),(980,751424400,8),(980,764730000,7),(980,782874000,8),(980,796179600,7),(980,814323600,8),(980,820454400,5),(980,828234000,7),(980,846378000,8),(980,859683600,7),(980,877827600,8),(980,891133200,7),(980,909277200,8),(980,922582800,7),(980,941331600,8),(980,954032400,7),(980,972781200,8),(980,985482000,7),(980,1004230800,8),(980,1017536400,7),(980,1035680400,8),(980,1048986000,7),(980,1067130000,8),(980,1080435600,7),(980,1099184400,8),(980,1111885200,7),(980,1130634000,8),(980,1143334800,7),(980,1162083600,8),(980,1174784400,7),(980,1193533200,8),(980,1206838800,7),(980,1224982800,8),(980,1238288400,7),(980,1256432400,8),(980,1269738000,7),(980,1288486800,8),(980,1301187600,7),(980,1319936400,8),(980,1332637200,7),(980,1351386000,8),(980,1364691600,7),(980,1382835600,8),(980,1396141200,7),(980,1414285200,8),(980,1427590800,7),(980,1445734800,8),(980,1459040400,7),(980,1477789200,8),(980,1490490000,7),(980,1509238800,8),(980,1521939600,7),(980,1540688400,8),(980,1553994000,7),(980,1572138000,8),(980,1585443600,7),(980,1603587600,8),(980,1616893200,7),(980,1635642000,8),(980,1648342800,7),(980,1667091600,8),(980,1679792400,7),(980,1698541200,8),(980,1711846800,7),(980,1729990800,8),(980,1743296400,7),(980,1761440400,8),(980,1774746000,7),(980,1792890000,8),(980,1806195600,7),(980,1824944400,8),(980,1837645200,7),(980,1856394000,8),(980,1869094800,7),(980,1887843600,8),(980,1901149200,7),(980,1919293200,8),(980,1932598800,7),(980,1950742800,8),(980,1964048400,7),(980,1982797200,8),(980,1995498000,7),(980,2014246800,8),(980,2026947600,7),(980,2045696400,8),(980,2058397200,7),(980,2077146000,8),(980,2090451600,7),(980,2108595600,8),(980,2121901200,7),(980,2140045200,8),(1016,-1693700372,0),(1016,-1680484772,1),(1016,-1663453172,2),(1016,-1650147572,3),(1016,-1633213172,2),(1016,-1617488372,3),(1016,-1601158772,2),(1016,-1586038772,3),(1016,-1569709172,2),(1016,-1554589172,3),(1016,-1538259572,2),(1016,-1523139572,3),(1016,-1507501172,2),(1016,-1490566772,3),(1016,-1470176372,2),(1016,-1459117172,3),(1016,-1443997172,2),(1016,-1427667572,3),(1016,-1406672372,2),(1016,-1396217972,3),(1016,-1376950772,2),(1016,-1364768372,3),(1016,-1345414772,2),(1016,-1333318772,3),(1016,-1313792372,2),(1016,-1301264372,3),(1016,-1282256372,2),(1016,-1269814772,3),(1016,-1250720372,2),(1016,-1238365172,3),(1016,-1219184372,2),(1016,-1206915572,3),(1016,-1186957172,2),(1016,-1175465972,3),(1016,-1156025972,2),(1016,-1143411572,3),(1016,-1124489972,2),(1016,-1111961972,3),(1016,-1092953972,2),(1016,-1080512372,3),(1016,-1061331572,2),(1016,-1049062772,3),(1016,-1029190772,2),(1016,-1025745572,6),(1016,-1017613200,4),(1016,-998259600,5),(1016,-986163600,4),(1016,-966723600,5),(1016,-954109200,4),(1016,-935022000,9),(1016,-857257200,7),(1016,-844556400,8),(1016,-828226800,7),(1016,-812502000,8),(1016,-796777200,7),(1016,-781052400,8),(1016,-766623600,7),(1016,220921200,12),(1016,228877200,10),(1016,243997200,11),(1016,260326800,10),(1016,276051600,11),(1016,291776400,10),(1016,307501200,11),(1016,323830800,10),(1016,338950800,11),(1016,354675600,10),(1016,370400400,11),(1016,386125200,10),(1016,401850000,11),(1016,417574800,10),(1016,433299600,11),(1016,449024400,10),(1016,465354000,11),(1016,481078800,10),(1016,496803600,11),(1016,512528400,10),(1016,528253200,11),(1016,543978000,10),(1016,559702800,11),(1016,575427600,10),(1016,591152400,11),(1016,606877200,10),(1016,622602000,11),(1016,638326800,10),(1016,654656400,11),(1016,670381200,10),(1016,686106000,11),(1016,701830800,10),(1016,717555600,11),(1016,733280400,10),(1016,749005200,11),(1016,764730000,10),(1016,780454800,11),(1016,796179600,10),(1016,811904400,11),(1016,828234000,10),(1016,846378000,11),(1016,859683600,10),(1016,877827600,11),(1016,891133200,10),(1016,909277200,11),(1016,922582800,10),(1016,941331600,11),(1016,954032400,10),(1016,972781200,11),(1016,985482000,10),(1016,1004230800,11),(1016,1017536400,10),(1016,1035680400,11),(1016,1048986000,10),(1016,1067130000,11),(1016,1080435600,10),(1016,1099184400,11),(1016,1111885200,10),(1016,1130634000,11),(1016,1143334800,10),(1016,1162083600,11),(1016,1174784400,10),(1016,1193533200,11),(1016,1206838800,10),(1016,1224982800,11),(1016,1238288400,10),(1016,1256432400,11),(1016,1269738000,10),(1016,1288486800,11),(1016,1301187600,10),(1016,1319936400,11),(1016,1332637200,10),(1016,1351386000,11),(1016,1364691600,10),(1016,1382835600,11),(1016,1396141200,10),(1016,1414285200,11),(1016,1427590800,10),(1016,1445734800,11),(1016,1459040400,10),(1016,1477789200,11),(1016,1490490000,10),(1016,1509238800,11),(1016,1521939600,10),(1016,1540688400,11),(1016,1553994000,10),(1016,1572138000,11),(1016,1585443600,10),(1016,1603587600,11),(1016,1616893200,10),(1016,1635642000,11),(1016,1648342800,10),(1016,1667091600,11),(1016,1679792400,10),(1016,1698541200,11),(1016,1711846800,10),(1016,1729990800,11),(1016,1743296400,10),(1016,1761440400,11),(1016,1774746000,10),(1016,1792890000,11),(1016,1806195600,10),(1016,1824944400,11),(1016,1837645200,10),(1016,1856394000,11),(1016,1869094800,10),(1016,1887843600,11),(1016,1901149200,10),(1016,1919293200,11),(1016,1932598800,10),(1016,1950742800,11),(1016,1964048400,10),(1016,1982797200,11),(1016,1995498000,10),(1016,2014246800,11),(1016,2026947600,10),(1016,2045696400,11),(1016,2058397200,10),(1016,2077146000,11),(1016,2090451600,10),(1016,2108595600,11),(1016,2121901200,10),(1016,2140045200,11),(1017,-733881600,1),(1017,481078800,2),(1017,496803600,3),(1017,512528400,2),(1017,528253200,3),(1017,543978000,2),(1017,559702800,3),(1017,575427600,2),(1017,591152400,3),(1017,606877200,2),(1017,622602000,3),(1017,638326800,2),(1017,654656400,3),(1017,670381200,2),(1017,686106000,3),(1017,701830800,2),(1017,717555600,3),(1017,733280400,2),(1017,749005200,3),(1017,764730000,2),(1017,780454800,3),(1017,796179600,2),(1017,811904400,3),(1017,828234000,2),(1017,846378000,3),(1017,859683600,2),(1017,877827600,3),(1017,891133200,2),(1017,909277200,3),(1017,922582800,2),(1017,941331600,3),(1017,954032400,2),(1017,972781200,3),(1017,985482000,2),(1017,1004230800,3),(1017,1017536400,2),(1017,1035680400,3),(1017,1048986000,2),(1017,1067130000,3),(1017,1080435600,2),(1017,1099184400,3),(1017,1111885200,2),(1017,1130634000,3),(1017,1143334800,2),(1017,1162083600,3),(1017,1174784400,2),(1017,1193533200,3),(1017,1206838800,2),(1017,1224982800,3),(1017,1238288400,2),(1017,1256432400,3),(1017,1269738000,2),(1017,1288486800,3),(1017,1301187600,2),(1017,1319936400,3),(1017,1332637200,2),(1017,1351386000,3),(1017,1364691600,2),(1017,1382835600,3),(1017,1396141200,2),(1017,1414285200,3),(1017,1427590800,2),(1017,1445734800,3),(1017,1459040400,2),(1017,1477789200,3),(1017,1490490000,2),(1017,1509238800,3),(1017,1521939600,2),(1017,1540688400,3),(1017,1553994000,2),(1017,1572138000,3),(1017,1585443600,2),(1017,1603587600,3),(1017,1616893200,2),(1017,1635642000,3),(1017,1648342800,2),(1017,1667091600,3),(1017,1679792400,2),(1017,1698541200,3),(1017,1711846800,2),(1017,1729990800,3),(1017,1743296400,2),(1017,1761440400,3),(1017,1774746000,2),(1017,1792890000,3),(1017,1806195600,2),(1017,1824944400,3),(1017,1837645200,2),(1017,1856394000,3),(1017,1869094800,2),(1017,1887843600,3),(1017,1901149200,2),(1017,1919293200,3),(1017,1932598800,2),(1017,1950742800,3),(1017,1964048400,2),(1017,1982797200,3),(1017,1995498000,2),(1017,2014246800,3),(1017,2026947600,2),(1017,2045696400,3),(1017,2058397200,2),(1017,2077146000,3),(1017,2090451600,2),(1017,2108595600,3),(1017,2121901200,2),(1017,2140045200,3),(1018,-1441249932,1),(1018,-1247540400,3),(1018,354916800,2),(1018,370724400,3),(1018,386452800,2),(1018,402260400,3),(1018,417988800,2),(1018,433796400,3),(1018,449611200,2),(1018,465343200,4),(1018,481068000,5),(1018,496792800,4),(1018,512517600,5),(1018,528242400,4),(1018,543967200,5),(1018,559692000,4),(1018,575416800,5),(1018,591141600,4),(1018,606866400,6),(1018,622594800,7),(1018,638319600,6),(1018,654649200,7),(1018,670374000,4),(1018,701820000,6),(1018,717548400,7),(1018,733273200,6),(1018,748998000,7),(1018,764722800,6),(1018,780447600,7),(1018,796172400,6),(1018,811897200,7),(1018,828226800,6),(1018,846370800,7),(1018,859676400,6),(1018,877820400,7),(1018,891126000,6),(1018,909270000,7),(1018,922575600,6),(1018,941324400,7),(1018,954025200,6),(1018,972774000,7),(1018,985474800,6),(1018,1004223600,7),(1018,1017529200,6),(1018,1035673200,7),(1018,1048978800,6),(1018,1067122800,7),(1018,1080428400,6),(1018,1099177200,7),(1018,1111878000,6),(1018,1130626800,7),(1018,1143327600,6),(1018,1162076400,7),(1018,1174777200,6),(1018,1193526000,7),(1018,1206831600,6),(1018,1224975600,7),(1018,1238281200,6),(1018,1256425200,7),(1018,1269730800,6),(1018,1288479600,7),(1018,1301180400,4),(1018,1414274400,7),(1018,1459033200,4),(1019,-1686101632,2),(1019,-1182996000,1),(1019,-1178161200,2),(1019,-906861600,1),(1019,-904878000,4),(1019,-857257200,3),(1019,-844477200,4),(1019,-828237600,3),(1019,-812422800,2),(1019,-552362400,1),(1019,-541652400,2),(1019,166485600,5),(1019,186184800,6),(1019,198028800,5),(1019,213753600,6),(1019,228873600,5),(1019,244080000,6),(1019,260323200,5),(1019,275446800,2),(1019,291798000,1),(1019,307407600,2),(1019,323388000,1),(1019,338936400,2),(1019,354675600,7),(1019,370400400,8),(1019,386125200,7),(1019,401850000,8),(1019,417574800,7),(1019,433299600,8),(1019,449024400,7),(1019,465354000,8),(1019,481078800,7),(1019,496803600,8),(1019,512528400,7),(1019,528253200,8),(1019,543978000,7),(1019,559702800,8),(1019,575427600,7),(1019,591152400,8),(1019,606877200,7),(1019,622602000,8),(1019,638326800,7),(1019,654656400,8),(1019,670381200,7),(1019,686106000,8),(1019,701830800,7),(1019,717555600,8),(1019,733280400,7),(1019,749005200,8),(1019,764730000,7),(1019,780454800,8),(1019,796179600,7),(1019,811904400,8),(1019,828234000,7),(1019,846378000,8),(1019,859683600,7),(1019,877827600,8),(1019,891133200,7),(1019,909277200,8),(1019,922582800,7),(1019,941331600,8),(1019,954032400,7),(1019,972781200,8),(1019,985482000,7),(1019,1004230800,8),(1019,1017536400,7),(1019,1035680400,8),(1019,1048986000,7),(1019,1067130000,8),(1019,1080435600,7),(1019,1099184400,8),(1019,1111885200,7),(1019,1130634000,8),(1019,1143334800,7),(1019,1162083600,8),(1019,1174784400,7),(1019,1193533200,8),(1019,1206838800,7),(1019,1224982800,8),(1019,1238288400,7),(1019,1256432400,8),(1019,1269738000,7),(1019,1288486800,8),(1019,1301187600,7),(1019,1319936400,8),(1019,1332637200,7),(1019,1351386000,8),(1019,1364691600,7),(1019,1382835600,8),(1019,1396141200,7),(1019,1414285200,8),(1019,1427590800,7),(1019,1445734800,8),(1019,1459040400,7),(1019,1477789200,8),(1019,1490490000,7),(1019,1509238800,8),(1019,1521939600,7),(1019,1540688400,8),(1019,1553994000,7),(1019,1572138000,8),(1019,1585443600,7),(1019,1603587600,8),(1019,1616893200,7),(1019,1635642000,8),(1019,1648342800,7),(1019,1667091600,8),(1019,1679792400,7),(1019,1698541200,8),(1019,1711846800,7),(1019,1729990800,8),(1019,1743296400,7),(1019,1761440400,8),(1019,1774746000,7),(1019,1792890000,8),(1019,1806195600,7),(1019,1824944400,8),(1019,1837645200,7),(1019,1856394000,8),(1019,1869094800,7),(1019,1887843600,8),(1019,1901149200,7),(1019,1919293200,8),(1019,1932598800,7),(1019,1950742800,8),(1019,1964048400,7),(1019,1982797200,8),(1019,1995498000,7),(1019,2014246800,8),(1019,2026947600,7),(1019,2045696400,8),(1019,2058397200,7),(1019,2077146000,8),(1019,2090451600,7),(1019,2108595600,8),(1019,2121901200,7),(1019,2140045200,8),(1020,-1691964000,0),(1020,-1680472800,1),(1020,-1664143200,0),(1020,-1650146400,1),(1020,-1633903200,0),(1020,-1617487200,1),(1020,-1601848800,0),(1020,-1586037600,1),(1020,-1570399200,0),(1020,-1552168800,1),(1020,-1538344800,0),(1020,-1522533600,1),(1020,-1507500000,0),(1020,-1490565600,1),(1020,-1473631200,0),(1020,-1460930400,1),(1020,-1442786400,0),(1020,-1428876000,1),(1020,-1410732000,0),(1020,-1396216800,1),(1020,-1379282400,0),(1020,-1364767200,1),(1020,-1348437600,0),(1020,-1333317600,1),(1020,-1315778400,0),(1020,-1301263200,1),(1020,-1284328800,0),(1020,-1269813600,1),(1020,-1253484000,0),(1020,-1238364000,1),(1020,-1221429600,0),(1020,-1206914400,1),(1020,-1189980000,0),(1020,-1175464800,1),(1020,-1159135200,0),(1020,-1143410400,1),(1020,-1126476000,0),(1020,-1111960800,1),(1020,-1095631200,0),(1020,-1080511200,1),(1020,-1063576800,0),(1020,-1049061600,1),(1020,-1032127200,0),(1020,-1017612000,1),(1020,-1001282400,0),(1020,-986162400,1),(1020,-969228000,0),(1020,-950479200,1),(1020,-942012000,0),(1020,-904518000,2),(1020,-896050800,0),(1020,-875487600,2),(1020,-864601200,0),(1020,-844038000,2),(1020,-832546800,0),(1020,-812588400,2),(1020,-798073200,0),(1020,-781052400,2),(1020,-772066800,0),(1020,-764805600,1),(1020,-748476000,0),(1020,-733356000,1),(1020,-719445600,0),(1020,-717030000,2),(1020,-706748400,0),(1020,-699487200,1),(1020,-687996000,0),(1020,-668037600,1),(1020,-654732000,0),(1020,-636588000,1),(1020,-622072800,0),(1020,-605743200,1),(1020,-590623200,0),(1020,-574293600,1),(1020,-558568800,0),(1020,-542239200,1),(1020,-527119200,0),(1020,-512604000,1),(1020,-496274400,0),(1020,-481154400,1),(1020,-464220000,0),(1020,-449704800,1),(1020,-432165600,0),(1020,-417650400,1),(1020,-401320800,0),(1020,-386200800,1),(1020,-369266400,0),(1020,-354751200,1),(1020,-337816800,0),(1020,-323301600,1),(1020,-306972000,0),(1020,-291852000,1),(1020,-276732000,0),(1020,-257983200,1),(1020,-245282400,0),(1020,-226533600,1),(1020,-213228000,0),(1020,-195084000,1),(1020,-182383200,0),(1020,-163634400,1),(1020,-150933600,0),(1020,-132184800,1),(1020,-119484000,0),(1020,-100735200,1),(1020,-88034400,0),(1020,-68680800,1),(1020,-59004000,0),(1020,-37242000,3),(1020,57722400,5),(1020,69818400,0),(1020,89172000,1),(1020,101268000,0),(1020,120621600,1),(1020,132717600,0),(1020,152071200,1),(1020,164167200,0),(1020,183520800,1),(1020,196221600,0),(1020,214970400,1),(1020,227671200,0),(1020,246420000,1),(1020,259120800,0),(1020,278474400,1),(1020,290570400,0),(1020,309924000,1),(1020,322020000,0),(1020,341373600,1),(1020,354675600,4),(1020,372819600,5),(1020,386125200,4),(1020,404269200,5),(1020,417574800,4),(1020,435718800,5),(1020,449024400,4),(1020,467773200,5),(1020,481078800,4),(1020,499222800,5),(1020,512528400,4),(1020,530672400,5),(1020,543978000,4),(1020,562122000,5),(1020,575427600,4),(1020,593571600,5),(1020,606877200,4),(1020,625626000,5),(1020,638326800,4),(1020,657075600,5),(1020,670381200,4),(1020,688525200,5),(1020,701830800,4),(1020,719974800,5),(1020,733280400,4),(1020,751424400,5),(1020,764730000,4),(1020,782874000,5),(1020,796179600,4),(1020,814323600,5),(1020,820454400,6),(1020,828234000,4),(1020,846378000,5),(1020,859683600,4),(1020,877827600,5),(1020,891133200,4),(1020,909277200,5),(1020,922582800,4),(1020,941331600,5),(1020,954032400,4),(1020,972781200,5),(1020,985482000,4),(1020,1004230800,5),(1020,1017536400,4),(1020,1035680400,5),(1020,1048986000,4),(1020,1067130000,5),(1020,1080435600,4),(1020,1099184400,5),(1020,1111885200,4),(1020,1130634000,5),(1020,1143334800,4),(1020,1162083600,5),(1020,1174784400,4),(1020,1193533200,5),(1020,1206838800,4),(1020,1224982800,5),(1020,1238288400,4),(1020,1256432400,5),(1020,1269738000,4),(1020,1288486800,5),(1020,1301187600,4),(1020,1319936400,5),(1020,1332637200,4),(1020,1351386000,5),(1020,1364691600,4),(1020,1382835600,5),(1020,1396141200,4),(1020,1414285200,5),(1020,1427590800,4),(1020,1445734800,5),(1020,1459040400,4),(1020,1477789200,5),(1020,1490490000,4),(1020,1509238800,5),(1020,1521939600,4),(1020,1540688400,5),(1020,1553994000,4),(1020,1572138000,5),(1020,1585443600,4),(1020,1603587600,5),(1020,1616893200,4),(1020,1635642000,5),(1020,1648342800,4),(1020,1667091600,5),(1020,1679792400,4),(1020,1698541200,5),(1020,1711846800,4),(1020,1729990800,5),(1020,1743296400,4),(1020,1761440400,5),(1020,1774746000,4),(1020,1792890000,5),(1020,1806195600,4),(1020,1824944400,5),(1020,1837645200,4),(1020,1856394000,5),(1020,1869094800,4),(1020,1887843600,5),(1020,1901149200,4),(1020,1919293200,5),(1020,1932598800,4),(1020,1950742800,5),(1020,1964048400,4),(1020,1982797200,5),(1020,1995498000,4),(1020,2014246800,5),(1020,2026947600,4),(1020,2045696400,5),(1020,2058397200,4),(1020,2077146000,5),(1020,2090451600,4),(1020,2108595600,5),(1020,2121901200,4),(1020,2140045200,5),(1021,-905824800,3),(1021,-857257200,1),(1021,-844556400,2),(1021,-828226800,1),(1021,-812502000,2),(1021,-796777200,1),(1021,-788922000,0),(1021,-777942000,2),(1021,-766623600,1),(1021,407199600,0),(1021,417574800,4),(1021,433299600,5),(1021,449024400,4),(1021,465354000,5),(1021,481078800,4),(1021,496803600,5),(1021,512528400,4),(1021,528253200,5),(1021,543978000,4),(1021,559702800,5),(1021,575427600,4),(1021,591152400,5),(1021,606877200,4),(1021,622602000,5),(1021,638326800,4),(1021,654656400,5),(1021,670381200,4),(1021,686106000,5),(1021,701830800,4),(1021,717555600,5),(1021,733280400,4),(1021,749005200,5),(1021,764730000,4),(1021,780454800,5),(1021,796179600,4),(1021,811904400,5),(1021,828234000,4),(1021,846378000,5),(1021,859683600,4),(1021,877827600,5),(1021,891133200,4),(1021,909277200,5),(1021,922582800,4),(1021,941331600,5),(1021,954032400,4),(1021,972781200,5),(1021,985482000,4),(1021,1004230800,5),(1021,1017536400,4),(1021,1035680400,5),(1021,1048986000,4),(1021,1067130000,5),(1021,1080435600,4),(1021,1099184400,5),(1021,1111885200,4),(1021,1130634000,5),(1021,1143334800,4),(1021,1162083600,5),(1021,1174784400,4),(1021,1193533200,5),(1021,1206838800,4),(1021,1224982800,5),(1021,1238288400,4),(1021,1256432400,5),(1021,1269738000,4),(1021,1288486800,5),(1021,1301187600,4),(1021,1319936400,5),(1021,1332637200,4),(1021,1351386000,5),(1021,1364691600,4),(1021,1382835600,5),(1021,1396141200,4),(1021,1414285200,5),(1021,1427590800,4),(1021,1445734800,5),(1021,1459040400,4),(1021,1477789200,5),(1021,1490490000,4),(1021,1509238800,5),(1021,1521939600,4),(1021,1540688400,5),(1021,1553994000,4),(1021,1572138000,5),(1021,1585443600,4),(1021,1603587600,5),(1021,1616893200,4),(1021,1635642000,5),(1021,1648342800,4),(1021,1667091600,5),(1021,1679792400,4),(1021,1698541200,5),(1021,1711846800,4),(1021,1729990800,5),(1021,1743296400,4),(1021,1761440400,5),(1021,1774746000,4),(1021,1792890000,5),(1021,1806195600,4),(1021,1824944400,5),(1021,1837645200,4),(1021,1856394000,5),(1021,1869094800,4),(1021,1887843600,5),(1021,1901149200,4),(1021,1919293200,5),(1021,1932598800,4),(1021,1950742800,5),(1021,1964048400,4),(1021,1982797200,5),(1021,1995498000,4),(1021,2014246800,5),(1021,2026947600,4),(1021,2045696400,5),(1021,2058397200,4),(1021,2077146000,5),(1021,2090451600,4),(1021,2108595600,5),(1021,2121901200,4),(1021,2140045200,5),(1022,-1693706400,0),(1022,-1680483600,1),(1022,-1663455600,2),(1022,-1650150000,3),(1022,-1632006000,2),(1022,-1618700400,3),(1022,-938905200,2),(1022,-857257200,3),(1022,-844556400,2),(1022,-828226800,3),(1022,-812502000,2),(1022,-796777200,3),(1022,-781052400,2),(1022,-776563200,4),(1022,-765936000,0),(1022,-761180400,3),(1022,-757386000,1),(1022,-748479600,2),(1022,-733273200,3),(1022,-717631200,2),(1022,-714610800,5),(1022,-710380800,0),(1022,-701910000,3),(1022,-684975600,2),(1022,-670460400,3),(1022,-654130800,2),(1022,-639010800,3),(1022,315529200,1),(1022,323830800,6),(1022,338950800,7),(1022,354675600,6),(1022,370400400,7),(1022,386125200,6),(1022,401850000,7),(1022,417574800,6),(1022,433299600,7),(1022,449024400,6),(1022,465354000,7),(1022,481078800,6),(1022,496803600,7),(1022,512528400,6),(1022,528253200,7),(1022,543978000,6),(1022,559702800,7),(1022,575427600,6),(1022,591152400,7),(1022,606877200,6),(1022,622602000,7),(1022,638326800,6),(1022,654656400,7),(1022,670381200,6),(1022,686106000,7),(1022,701830800,6),(1022,717555600,7),(1022,733280400,6),(1022,749005200,7),(1022,764730000,6),(1022,780454800,7),(1022,796179600,6),(1022,811904400,7),(1022,828234000,6),(1022,846378000,7),(1022,859683600,6),(1022,877827600,7),(1022,891133200,6),(1022,909277200,7),(1022,922582800,6),(1022,941331600,7),(1022,954032400,6),(1022,972781200,7),(1022,985482000,6),(1022,1004230800,7),(1022,1017536400,6),(1022,1035680400,7),(1022,1048986000,6),(1022,1067130000,7),(1022,1080435600,6),(1022,1099184400,7),(1022,1111885200,6),(1022,1130634000,7),(1022,1143334800,6),(1022,1162083600,7),(1022,1174784400,6),(1022,1193533200,7),(1022,1206838800,6),(1022,1224982800,7),(1022,1238288400,6),(1022,1256432400,7),(1022,1269738000,6),(1022,1288486800,7),(1022,1301187600,6),(1022,1319936400,7),(1022,1332637200,6),(1022,1351386000,7),(1022,1364691600,6),(1022,1382835600,7),(1022,1396141200,6),(1022,1414285200,7),(1022,1427590800,6),(1022,1445734800,7),(1022,1459040400,6),(1022,1477789200,7),(1022,1490490000,6),(1022,1509238800,7),(1022,1521939600,6),(1022,1540688400,7),(1022,1553994000,6),(1022,1572138000,7),(1022,1585443600,6),(1022,1603587600,7),(1022,1616893200,6),(1022,1635642000,7),(1022,1648342800,6),(1022,1667091600,7),(1022,1679792400,6),(1022,1698541200,7),(1022,1711846800,6),(1022,1729990800,7),(1022,1743296400,6),(1022,1761440400,7),(1022,1774746000,6),(1022,1792890000,7),(1022,1806195600,6),(1022,1824944400,7),(1022,1837645200,6),(1022,1856394000,7),(1022,1869094800,6),(1022,1887843600,7),(1022,1901149200,6),(1022,1919293200,7),(1022,1932598800,6),(1022,1950742800,7),(1022,1964048400,6),(1022,1982797200,7),(1022,1995498000,6),(1022,2014246800,7),(1022,2026947600,6),(1022,2045696400,7),(1022,2058397200,6),(1022,2077146000,7),(1022,2090451600,6),(1022,2108595600,7),(1022,2121901200,6),(1022,2140045200,7),(1023,-1693706400,0),(1023,-1680483600,1),(1023,-1663455600,2),(1023,-1650150000,3),(1023,-1632006000,2),(1023,-1618700400,3),(1023,-938905200,2),(1023,-857257200,3),(1023,-844556400,2),(1023,-828226800,3),(1023,-812502000,2),(1023,-796777200,3),(1023,-781052400,2),(1023,-777866400,0),(1023,-765327600,3),(1023,-746578800,2),(1023,-733359600,3),(1023,-728517600,4),(1023,-721260000,1),(1023,-716425200,2),(1023,-701910000,3),(1023,-684975600,2),(1023,-670460400,3),(1023,-654217200,2),(1023,-639010800,3),(1023,283993200,1),(1023,291776400,5),(1023,307501200,6),(1023,323830800,5),(1023,338950800,6),(1023,354675600,5),(1023,370400400,6),(1023,386125200,5),(1023,401850000,6),(1023,417574800,5),(1023,433299600,6),(1023,449024400,5),(1023,465354000,6),(1023,481078800,5),(1023,496803600,6),(1023,512528400,5),(1023,528253200,6),(1023,543978000,5),(1023,559702800,6),(1023,575427600,5),(1023,591152400,6),(1023,606877200,5),(1023,622602000,6),(1023,638326800,5),(1023,654656400,6),(1023,670381200,5),(1023,686106000,6),(1023,701830800,5),(1023,717555600,6),(1023,733280400,5),(1023,749005200,6),(1023,764730000,5),(1023,780454800,6),(1023,796179600,5),(1023,811904400,6),(1023,828234000,5),(1023,846378000,6),(1023,859683600,5),(1023,877827600,6),(1023,891133200,5),(1023,909277200,6),(1023,922582800,5),(1023,941331600,6),(1023,954032400,5),(1023,972781200,6),(1023,985482000,5),(1023,1004230800,6),(1023,1017536400,5),(1023,1035680400,6),(1023,1048986000,5),(1023,1067130000,6),(1023,1080435600,5),(1023,1099184400,6),(1023,1111885200,5),(1023,1130634000,6),(1023,1143334800,5),(1023,1162083600,6),(1023,1174784400,5),(1023,1193533200,6),(1023,1206838800,5),(1023,1224982800,6),(1023,1238288400,5),(1023,1256432400,6),(1023,1269738000,5),(1023,1288486800,6),(1023,1301187600,5),(1023,1319936400,6),(1023,1332637200,5),(1023,1351386000,6),(1023,1364691600,5),(1023,1382835600,6),(1023,1396141200,5),(1023,1414285200,6),(1023,1427590800,5),(1023,1445734800,6),(1023,1459040400,5),(1023,1477789200,6),(1023,1490490000,5),(1023,1509238800,6),(1023,1521939600,5),(1023,1540688400,6),(1023,1553994000,5),(1023,1572138000,6),(1023,1585443600,5),(1023,1603587600,6),(1023,1616893200,5),(1023,1635642000,6),(1023,1648342800,5),(1023,1667091600,6),(1023,1679792400,5),(1023,1698541200,6),(1023,1711846800,5),(1023,1729990800,6),(1023,1743296400,5),(1023,1761440400,6),(1023,1774746000,5),(1023,1792890000,6),(1023,1806195600,5),(1023,1824944400,6),(1023,1837645200,5),(1023,1856394000,6),(1023,1869094800,5),(1023,1887843600,6),(1023,1901149200,5),(1023,1919293200,6),(1023,1932598800,5),(1023,1950742800,6),(1023,1964048400,5),(1023,1982797200,6),(1023,1995498000,5),(1023,2014246800,6),(1023,2026947600,5),(1023,2045696400,6),(1023,2058397200,5),(1023,2077146000,6),(1023,2090451600,5),(1023,2108595600,6),(1023,2121901200,5),(1023,2140045200,6),(1024,-1740355200,1),(1024,-1693702800,4),(1024,-1680483600,1),(1024,-1663455600,2),(1024,-1650150000,3),(1024,-1632006000,2),(1024,-1618700400,3),(1024,-1613826000,7),(1024,-1604278800,5),(1024,-1585530000,6),(1024,-1574038800,5),(1024,-1552266000,6),(1024,-1539997200,5),(1024,-1520557200,6),(1024,-1507510800,5),(1024,-1490576400,6),(1024,-1473642000,5),(1024,-1459126800,6),(1024,-1444006800,5),(1024,-1427677200,6),(1024,-1411952400,5),(1024,-1396227600,6),(1024,-1379293200,5),(1024,-1364778000,6),(1024,-1348448400,5),(1024,-1333328400,6),(1024,-1316394000,5),(1024,-1301263200,6),(1024,-1284328800,5),(1024,-1269813600,6),(1024,-1253484000,5),(1024,-1238364000,6),(1024,-1221429600,5),(1024,-1206914400,6),(1024,-1191189600,5),(1024,-1175464800,6),(1024,-1160344800,5),(1024,-1143410400,6),(1024,-1127685600,5),(1024,-1111960800,6),(1024,-1096840800,5),(1024,-1080511200,6),(1024,-1063576800,5),(1024,-1049061600,6),(1024,-1033336800,5),(1024,-1017612000,6),(1024,-1002492000,5),(1024,-986162400,6),(1024,-969228000,5),(1024,-950479200,6),(1024,-942012000,5),(1024,-934668000,2),(1024,-857257200,3),(1024,-844556400,2),(1024,-828226800,3),(1024,-812502000,2),(1024,-799293600,4),(1024,-798073200,3),(1024,-781052400,2),(1024,-766623600,3),(1024,-745455600,2),(1024,-733273200,3),(1024,220921200,1),(1024,228877200,8),(1024,243997200,9),(1024,260326800,8),(1024,276051600,9),(1024,291776400,8),(1024,307501200,9),(1024,323830800,8),(1024,338950800,9),(1024,354675600,8),(1024,370400400,9),(1024,386125200,8),(1024,401850000,9),(1024,417574800,8),(1024,433299600,9),(1024,449024400,8),(1024,465354000,9),(1024,481078800,8),(1024,496803600,9),(1024,512528400,8),(1024,528253200,9),(1024,543978000,8),(1024,559702800,9),(1024,575427600,8),(1024,591152400,9),(1024,606877200,8),(1024,622602000,9),(1024,638326800,8),(1024,654656400,9),(1024,670381200,8),(1024,686106000,9),(1024,701830800,8),(1024,717555600,9),(1024,733280400,8),(1024,749005200,9),(1024,764730000,8),(1024,780454800,9),(1024,796179600,8),(1024,811904400,9),(1024,828234000,8),(1024,846378000,9),(1024,859683600,8),(1024,877827600,9),(1024,891133200,8),(1024,909277200,9),(1024,922582800,8),(1024,941331600,9),(1024,954032400,8),(1024,972781200,9),(1024,985482000,8),(1024,1004230800,9),(1024,1017536400,8),(1024,1035680400,9),(1024,1048986000,8),(1024,1067130000,9),(1024,1080435600,8),(1024,1099184400,9),(1024,1111885200,8),(1024,1130634000,9),(1024,1143334800,8),(1024,1162083600,9),(1024,1174784400,8),(1024,1193533200,9),(1024,1206838800,8),(1024,1224982800,9),(1024,1238288400,8),(1024,1256432400,9),(1024,1269738000,8),(1024,1288486800,9),(1024,1301187600,8),(1024,1319936400,9),(1024,1332637200,8),(1024,1351386000,9),(1024,1364691600,8),(1024,1382835600,9),(1024,1396141200,8),(1024,1414285200,9),(1024,1427590800,8),(1024,1445734800,9),(1024,1459040400,8),(1024,1477789200,9),(1024,1490490000,8),(1024,1509238800,9),(1024,1521939600,8),(1024,1540688400,9),(1024,1553994000,8),(1024,1572138000,9),(1024,1585443600,8),(1024,1603587600,9),(1024,1616893200,8),(1024,1635642000,9),(1024,1648342800,8),(1024,1667091600,9),(1024,1679792400,8),(1024,1698541200,9),(1024,1711846800,8),(1024,1729990800,9),(1024,1743296400,8),(1024,1761440400,9),(1024,1774746000,8),(1024,1792890000,9),(1024,1806195600,8),(1024,1824944400,9),(1024,1837645200,8),(1024,1856394000,9),(1024,1869094800,8),(1024,1887843600,9),(1024,1901149200,8),(1024,1919293200,9),(1024,1932598800,8),(1024,1950742800,9),(1024,1964048400,8),(1024,1982797200,9),(1024,1995498000,8),(1024,2014246800,9),(1024,2026947600,8),(1024,2045696400,9),(1024,2058397200,8),(1024,2077146000,9),(1024,2090451600,8),(1024,2108595600,9),(1024,2121901200,8),(1024,2140045200,9),(1025,-1213148664,4),(1025,-1187056800,1),(1025,-1175479200,2),(1025,-1159754400,1),(1025,-1144029600,2),(1025,-1127700000,1),(1025,-1111975200,2),(1025,-1096250400,1),(1025,-1080525600,2),(1025,-1064800800,1),(1025,-1049076000,2),(1025,-1033351200,1),(1025,-1017626400,2),(1025,-1001901600,1),(1025,-986176800,2),(1025,-970452000,1),(1025,-954727200,2),(1025,296604000,3),(1025,307486800,4),(1025,323816400,3),(1025,338940000,4),(1025,354672000,1),(1025,370396800,2),(1025,386121600,1),(1025,401846400,2),(1025,417571200,1),(1025,433296000,2),(1025,449020800,1),(1025,465350400,2),(1025,481075200,1),(1025,496800000,2),(1025,512524800,1),(1025,528249600,2),(1025,543974400,1),(1025,559699200,2),(1025,575424000,1),(1025,591148800,2),(1025,606873600,1),(1025,622598400,2),(1025,638323200,1),(1025,654652800,2),(1025,662680800,4),(1025,670370400,1),(1025,686095200,2),(1025,701820000,1),(1025,717544800,2),(1025,733269600,1),(1025,748994400,2),(1025,757375200,4),(1025,764719200,3),(1025,780440400,4),(1025,796168800,3),(1025,811890000,4),(1025,828223200,3),(1025,846363600,4),(1025,859683600,5),(1025,877827600,6),(1025,891133200,5),(1025,909277200,6),(1025,922582800,5),(1025,941331600,6),(1025,954032400,5),(1025,972781200,6),(1025,985482000,5),(1025,1004230800,6),(1025,1017536400,5),(1025,1035680400,6),(1025,1048986000,5),(1025,1067130000,6),(1025,1080435600,5),(1025,1099184400,6),(1025,1111885200,5),(1025,1130634000,6),(1025,1143334800,5),(1025,1162083600,6),(1025,1174784400,5),(1025,1193533200,6),(1025,1206838800,5),(1025,1224982800,6),(1025,1238288400,5),(1025,1256432400,6),(1025,1269738000,5),(1025,1288486800,6),(1025,1301187600,5),(1025,1319936400,6),(1025,1332637200,5),(1025,1351386000,6),(1025,1364691600,5),(1025,1382835600,6),(1025,1396141200,5),(1025,1414285200,6),(1025,1427590800,5),(1025,1445734800,6),(1025,1459040400,5),(1025,1477789200,6),(1025,1490490000,5),(1025,1509238800,6),(1025,1521939600,5),(1025,1540688400,6),(1025,1553994000,5),(1025,1572138000,6),(1025,1585443600,5),(1025,1603587600,6),(1025,1616893200,5),(1025,1635642000,6),(1025,1648342800,5),(1025,1667091600,6),(1025,1679792400,5),(1025,1698541200,6),(1025,1711846800,5),(1025,1729990800,6),(1025,1743296400,5),(1025,1761440400,6),(1025,1774746000,5),(1025,1792890000,6),(1025,1806195600,5),(1025,1824944400,6),(1025,1837645200,5),(1025,1856394000,6),(1025,1869094800,5),(1025,1887843600,6),(1025,1901149200,5),(1025,1919293200,6),(1025,1932598800,5),(1025,1950742800,6),(1025,1964048400,5),(1025,1982797200,6),(1025,1995498000,5),(1025,2014246800,6),(1025,2026947600,5),(1025,2045696400,6),(1025,2058397200,5),(1025,2077146000,6),(1025,2090451600,5),(1025,2108595600,6),(1025,2121901200,5),(1025,2140045200,6),(1026,-1693706400,0),(1026,-1680483600,1),(1026,-1663455600,2),(1026,-1650150000,3),(1026,-1640998800,1),(1026,-1633212000,0),(1026,-1618700400,1),(1026,-1600466400,0),(1026,-1581202800,1),(1026,-906771600,0),(1026,-857257200,3),(1026,-844556400,2),(1026,-828226800,3),(1026,-812502000,2),(1026,-796777200,3),(1026,-788922000,1),(1026,-778471200,0),(1026,-762660000,1),(1026,-749689200,2),(1026,-733359600,3),(1026,-717634800,2),(1026,-701910000,3),(1026,-686185200,2),(1026,-670460400,3),(1026,-654130800,2),(1026,-639010800,3),(1026,-621990000,2),(1026,-605660400,3),(1026,-492656400,0),(1026,-481168800,1),(1026,-461120400,0),(1026,-449632800,1),(1026,-428547600,0),(1026,-418269600,1),(1026,-397094400,0),(1026,-386809200,1),(1026,323827200,0),(1026,338950800,4),(1026,354675600,5),(1026,370400400,4),(1026,386125200,5),(1026,401850000,4),(1026,417574800,5),(1026,433299600,4),(1026,449024400,5),(1026,465354000,4),(1026,481078800,5),(1026,496803600,4),(1026,512528400,5),(1026,528253200,4),(1026,543978000,5),(1026,559702800,4),(1026,575427600,5),(1026,591152400,4),(1026,606877200,5),(1026,622602000,4),(1026,638326800,5),(1026,654656400,4),(1026,670381200,5),(1026,686106000,4),(1026,701830800,5),(1026,717555600,4),(1026,733280400,5),(1026,749005200,4),(1026,764730000,5),(1026,780454800,4),(1026,796179600,5),(1026,811904400,4),(1026,828234000,5),(1026,846378000,4),(1026,859683600,5),(1026,877827600,4),(1026,891133200,5),(1026,909277200,4),(1026,922582800,5),(1026,941331600,4),(1026,954032400,5),(1026,972781200,4),(1026,985482000,5),(1026,1004230800,4),(1026,1017536400,5),(1026,1035680400,4),(1026,1048986000,5),(1026,1067130000,4),(1026,1080435600,5),(1026,1099184400,4),(1026,1111885200,5),(1026,1130634000,4),(1026,1143334800,5),(1026,1162083600,4),(1026,1174784400,5),(1026,1193533200,4),(1026,1206838800,5),(1026,1224982800,4),(1026,1238288400,5),(1026,1256432400,4),(1026,1269738000,5),(1026,1288486800,4),(1026,1301187600,5),(1026,1319936400,4),(1026,1332637200,5),(1026,1351386000,4),(1026,1364691600,5),(1026,1382835600,4),(1026,1396141200,5),(1026,1414285200,4),(1026,1427590800,5),(1026,1445734800,4),(1026,1459040400,5),(1026,1477789200,4),(1026,1490490000,5),(1026,1509238800,4),(1026,1521939600,5),(1026,1540688400,4),(1026,1553994000,5),(1026,1572138000,4),(1026,1585443600,5),(1026,1603587600,4),(1026,1616893200,5),(1026,1635642000,4),(1026,1648342800,5),(1026,1667091600,4),(1026,1679792400,5),(1026,1698541200,4),(1026,1711846800,5),(1026,1729990800,4),(1026,1743296400,5),(1026,1761440400,4),(1026,1774746000,5),(1026,1792890000,4),(1026,1806195600,5),(1026,1824944400,4),(1026,1837645200,5),(1026,1856394000,4),(1026,1869094800,5),(1026,1887843600,4),(1026,1901149200,5),(1026,1919293200,4),(1026,1932598800,5),(1026,1950742800,4),(1026,1964048400,5),(1026,1982797200,4),(1026,1995498000,5),(1026,2014246800,4),(1026,2026947600,5),(1026,2045696400,4),(1026,2058397200,5),(1026,2077146000,4),(1026,2090451600,5),(1026,2108595600,4),(1026,2121901200,5),(1026,2140045200,4),(1027,-904435200,0),(1027,-891129600,1),(1027,-872985600,0),(1027,-859680000,1),(1027,354675600,2),(1027,370400400,3),(1027,386125200,2),(1027,401850000,3),(1027,417574800,2),(1027,433299600,3),(1027,449024400,2),(1027,465354000,3),(1027,481078800,2),(1027,496803600,3),(1027,512528400,2),(1027,528253200,3),(1027,543978000,2),(1027,559702800,3),(1027,575427600,2),(1027,591152400,3),(1027,606877200,2),(1027,622602000,3),(1027,638326800,2),(1027,654656400,3),(1027,670381200,2),(1027,686106000,3),(1027,701830800,2),(1027,717555600,3),(1027,733280400,2),(1027,749005200,3),(1027,764730000,2),(1027,780454800,3),(1027,796179600,2),(1027,811904400,3),(1027,828234000,2),(1027,846378000,3),(1027,859683600,2),(1027,877827600,3),(1027,891133200,2),(1027,909277200,3),(1027,922582800,2),(1027,941331600,3),(1027,954032400,2),(1027,972781200,3),(1027,985482000,2),(1027,1004230800,3),(1027,1017536400,2),(1027,1035680400,3),(1027,1048986000,2),(1027,1067130000,3),(1027,1080435600,2),(1027,1099184400,3),(1027,1111885200,2),(1027,1130634000,3),(1027,1143334800,2),(1027,1162083600,3),(1027,1174784400,2),(1027,1193533200,3),(1027,1206838800,2),(1027,1224982800,3),(1027,1238288400,2),(1027,1256432400,3),(1027,1269738000,2),(1027,1288486800,3),(1027,1301187600,2),(1027,1319936400,3),(1027,1332637200,2),(1027,1351386000,3),(1027,1364691600,2),(1027,1382835600,3),(1027,1396141200,2),(1027,1414285200,3),(1027,1427590800,2),(1027,1445734800,3),(1027,1459040400,2),(1027,1477789200,3),(1027,1490490000,2),(1027,1509238800,3),(1027,1521939600,2),(1027,1540688400,3),(1027,1553994000,2),(1027,1572138000,3),(1027,1585443600,2),(1027,1603587600,3),(1027,1616893200,2),(1027,1635642000,3),(1027,1648342800,2),(1027,1667091600,3),(1027,1679792400,2),(1027,1698541200,3),(1027,1711846800,2),(1027,1729990800,3),(1027,1743296400,2),(1027,1761440400,3),(1027,1774746000,2),(1027,1792890000,3),(1027,1806195600,2),(1027,1824944400,3),(1027,1837645200,2),(1027,1856394000,3),(1027,1869094800,2),(1027,1887843600,3),(1027,1901149200,2),(1027,1919293200,3),(1027,1932598800,2),(1027,1950742800,3),(1027,1964048400,2),(1027,1982797200,3),(1027,1995498000,2),(1027,2014246800,3),(1027,2026947600,2),(1027,2045696400,3),(1027,2058397200,2),(1027,2077146000,3),(1027,2090451600,2),(1027,2108595600,3),(1027,2121901200,2),(1027,2140045200,3),(1028,-1637114100,1),(1028,-1213148664,4),(1028,-1187056800,2),(1028,-1175479200,3),(1028,-1159754400,2),(1028,-1144029600,3),(1028,-1127700000,2),(1028,-1111975200,3),(1028,-1096250400,2),(1028,-1080525600,3),(1028,-1064800800,2),(1028,-1049076000,3),(1028,-1033351200,2),(1028,-1017626400,3),(1028,-1001901600,2),(1028,-986176800,3),(1028,-970452000,2),(1028,-954727200,3),(1028,-927165600,5),(1028,-898138800,8),(1028,-857257200,6),(1028,-844556400,7),(1028,-828226800,6),(1028,-812502000,7),(1028,-800157600,10),(1028,354920400,9),(1028,370728000,10),(1028,386456400,9),(1028,402264000,10),(1028,417992400,9),(1028,433800000,10),(1028,449614800,9),(1028,465346800,11),(1028,481071600,12),(1028,496796400,11),(1028,512521200,12),(1028,528246000,11),(1028,543970800,12),(1028,559695600,11),(1028,575420400,12),(1028,591145200,11),(1028,606870000,12),(1028,622594800,11),(1028,638319600,12),(1028,641944800,5),(1028,654652800,3),(1028,670377600,2),(1028,686102400,3),(1028,694216800,4),(1028,701820000,5),(1028,717541200,4),(1028,733269600,5),(1028,748990800,4),(1028,764719200,5),(1028,780440400,4),(1028,796168800,5),(1028,811890000,4),(1028,828223200,5),(1028,846363600,4),(1028,859680000,5),(1028,877824000,4),(1028,891129600,5),(1028,909273600,4),(1028,922579200,5),(1028,941328000,4),(1028,954028800,5),(1028,972777600,4),(1028,985478400,5),(1028,1004227200,4),(1028,1017532800,5),(1028,1035676800,4),(1028,1048982400,5),(1028,1067126400,4),(1028,1080432000,5),(1028,1099180800,4),(1028,1111881600,5),(1028,1130630400,4),(1028,1143331200,5),(1028,1162080000,4),(1028,1174780800,5),(1028,1193529600,4),(1028,1206835200,5),(1028,1224979200,4),(1028,1238284800,5),(1028,1256428800,4),(1028,1269734400,5),(1028,1288483200,4),(1028,1301184000,5),(1028,1319932800,4),(1028,1332633600,5),(1028,1351382400,4),(1028,1364688000,5),(1028,1382832000,4),(1028,1396137600,5),(1028,1414281600,4),(1028,1427587200,5),(1028,1445731200,4),(1028,1459036800,5),(1028,1477785600,4),(1028,1490486400,5),(1028,1509235200,4),(1028,1521936000,5),(1028,1540684800,4),(1028,1553990400,5),(1028,1572134400,4),(1028,1585440000,5),(1028,1603584000,4),(1028,1616889600,5),(1028,1635638400,4),(1028,1648339200,5),(1028,1667088000,4),(1028,1679788800,5),(1028,1698537600,4),(1028,1711843200,5),(1028,1729987200,4),(1028,1743292800,5),(1028,1761436800,4),(1028,1774742400,5),(1028,1792886400,4),(1028,1806192000,5),(1028,1824940800,4),(1028,1837641600,5),(1028,1856390400,4),(1028,1869091200,5),(1028,1887840000,4),(1028,1901145600,5),(1028,1919289600,4),(1028,1932595200,5),(1028,1950739200,4),(1028,1964044800,5),(1028,1982793600,4),(1028,1995494400,5),(1028,2014243200,4),(1028,2026944000,5),(1028,2045692800,4),(1028,2058393600,5),(1028,2077142400,4),(1028,2090448000,5),(1028,2108592000,4),(1028,2121897600,5),(1028,2140041600,4),(1029,-1692496800,0),(1029,-1680490800,1),(1029,-935110800,0),(1029,-857257200,2),(1029,-844556400,3),(1029,-828226800,2),(1029,-812502000,3),(1029,-796777200,2),(1029,-781052400,3),(1029,-769388400,2),(1029,-747010800,3),(1029,-736383600,2),(1029,-715215600,3),(1029,-706748400,2),(1029,-683161200,3),(1029,-675298800,2),(1029,315529200,1),(1029,323830800,4),(1029,338950800,5),(1029,354675600,4),(1029,370400400,5),(1029,386125200,4),(1029,401850000,5),(1029,417574800,4),(1029,433299600,5),(1029,449024400,4),(1029,465354000,5),(1029,481078800,4),(1029,496803600,5),(1029,512528400,4),(1029,528253200,5),(1029,543978000,4),(1029,559702800,5),(1029,575427600,4),(1029,591152400,5),(1029,606877200,4),(1029,622602000,5),(1029,638326800,4),(1029,654656400,5),(1029,670381200,4),(1029,686106000,5),(1029,701830800,4),(1029,717555600,5),(1029,733280400,4),(1029,749005200,5),(1029,764730000,4),(1029,780454800,5),(1029,796179600,4),(1029,811904400,5),(1029,828234000,4),(1029,846378000,5),(1029,859683600,4),(1029,877827600,5),(1029,891133200,4),(1029,909277200,5),(1029,922582800,4),(1029,941331600,5),(1029,954032400,4),(1029,972781200,5),(1029,985482000,4),(1029,1004230800,5),(1029,1017536400,4),(1029,1035680400,5),(1029,1048986000,4),(1029,1067130000,5),(1029,1080435600,4),(1029,1099184400,5),(1029,1111885200,4),(1029,1130634000,5),(1029,1143334800,4),(1029,1162083600,5),(1029,1174784400,4),(1029,1193533200,5),(1029,1206838800,4),(1029,1224982800,5),(1029,1238288400,4),(1029,1256432400,5),(1029,1269738000,4),(1029,1288486800,5),(1029,1301187600,4),(1029,1319936400,5),(1029,1332637200,4),(1029,1351386000,5),(1029,1364691600,4),(1029,1382835600,5),(1029,1396141200,4),(1029,1414285200,5),(1029,1427590800,4),(1029,1445734800,5),(1029,1459040400,4),(1029,1477789200,5),(1029,1490490000,4),(1029,1509238800,5),(1029,1521939600,4),(1029,1540688400,5),(1029,1553994000,4),(1029,1572138000,5),(1029,1585443600,4),(1029,1603587600,5),(1029,1616893200,4),(1029,1635642000,5),(1029,1648342800,4),(1029,1667091600,5),(1029,1679792400,4),(1029,1698541200,5),(1029,1711846800,4),(1029,1729990800,5),(1029,1743296400,4),(1029,1761440400,5),(1029,1774746000,4),(1029,1792890000,5),(1029,1806195600,4),(1029,1824944400,5),(1029,1837645200,4),(1029,1856394000,5),(1029,1869094800,4),(1029,1887843600,5),(1029,1901149200,4),(1029,1919293200,5),(1029,1932598800,4),(1029,1950742800,5),(1029,1964048400,4),(1029,1982797200,5),(1029,1995498000,4),(1029,2014246800,5),(1029,2026947600,4),(1029,2045696400,5),(1029,2058397200,4),(1029,2077146000,5),(1029,2090451600,4),(1029,2108595600,5),(1029,2121901200,4),(1029,2140045200,5),(1030,-1691962479,1),(1030,-1680471279,3),(1030,-1664143200,2),(1030,-1650146400,3),(1030,-1633903200,2),(1030,-1617487200,3),(1030,-1601848800,2),(1030,-1586037600,3),(1030,-1570399200,2),(1030,-1552168800,3),(1030,-1538344800,2),(1030,-1522533600,3),(1030,-1517011200,5),(1030,-1507500000,4),(1030,-1490565600,3),(1030,-1473631200,4),(1030,-1460930400,3),(1030,-1442786400,4),(1030,-1428876000,3),(1030,-1410732000,4),(1030,-1396216800,3),(1030,-1379282400,4),(1030,-1364767200,3),(1030,-1348437600,4),(1030,-1333317600,3),(1030,-1315778400,4),(1030,-1301263200,3),(1030,-1284328800,4),(1030,-1269813600,3),(1030,-1253484000,4),(1030,-1238364000,3),(1030,-1221429600,4),(1030,-1206914400,3),(1030,-1189980000,4),(1030,-1175464800,3),(1030,-1159135200,4),(1030,-1143410400,3),(1030,-1126476000,4),(1030,-1111960800,3),(1030,-1095631200,4),(1030,-1080511200,3),(1030,-1063576800,4),(1030,-1049061600,3),(1030,-1032127200,4),(1030,-1017612000,3),(1030,-1001282400,4),(1030,-986162400,3),(1030,-969228000,4),(1030,-950479200,3),(1030,-942012000,4),(1030,-733356000,3),(1030,-719445600,4),(1030,-699487200,3),(1030,-684972000,4),(1030,-668037600,3),(1030,-654732000,4),(1030,-636588000,3),(1030,-622072800,4),(1030,-605743200,3),(1030,-590623200,4),(1030,-574293600,3),(1030,-558568800,4),(1030,-542239200,3),(1030,-527119200,4),(1030,-512604000,3),(1030,-496274400,4),(1030,-481154400,3),(1030,-464220000,4),(1030,-449704800,3),(1030,-432165600,4),(1030,-417650400,3),(1030,-401320800,4),(1030,-386200800,3),(1030,-369266400,4),(1030,-354751200,3),(1030,-337816800,4),(1030,-323301600,3),(1030,-306972000,4),(1030,-291852000,3),(1030,-276732000,4),(1030,-257983200,3),(1030,-245282400,4),(1030,-226533600,3),(1030,-213228000,4),(1030,-195084000,3),(1030,-182383200,4),(1030,-163634400,3),(1030,-150933600,4),(1030,-132184800,3),(1030,-119484000,4),(1030,-100735200,3),(1030,-88034400,4),(1030,-68680800,3),(1030,-59004000,4),(1030,-37242000,6),(1030,57722400,8),(1030,69818400,4),(1030,89172000,3),(1030,101268000,4),(1030,120621600,3),(1030,132717600,4),(1030,152071200,3),(1030,164167200,4),(1030,183520800,3),(1030,196221600,4),(1030,214970400,3),(1030,227671200,4),(1030,246420000,3),(1030,259120800,4),(1030,278474400,3),(1030,290570400,4),(1030,309924000,3),(1030,322020000,4),(1030,341373600,3),(1030,354675600,7),(1030,372819600,8),(1030,386125200,7),(1030,404269200,8),(1030,417574800,7),(1030,435718800,8),(1030,449024400,7),(1030,467773200,8),(1030,481078800,7),(1030,499222800,8),(1030,512528400,7),(1030,530672400,8),(1030,543978000,7),(1030,562122000,8),(1030,575427600,7),(1030,593571600,8),(1030,606877200,7),(1030,625626000,8),(1030,638326800,7),(1030,657075600,8),(1030,670381200,7),(1030,688525200,8),(1030,701830800,7),(1030,719974800,8),(1030,733280400,7),(1030,751424400,8),(1030,764730000,7),(1030,782874000,8),(1030,796179600,7),(1030,814323600,8),(1030,820454400,5),(1030,828234000,7),(1030,846378000,8),(1030,859683600,7),(1030,877827600,8),(1030,891133200,7),(1030,909277200,8),(1030,922582800,7),(1030,941331600,8),(1030,954032400,7),(1030,972781200,8),(1030,985482000,7),(1030,1004230800,8),(1030,1017536400,7),(1030,1035680400,8),(1030,1048986000,7),(1030,1067130000,8),(1030,1080435600,7),(1030,1099184400,8),(1030,1111885200,7),(1030,1130634000,8),(1030,1143334800,7),(1030,1162083600,8),(1030,1174784400,7),(1030,1193533200,8),(1030,1206838800,7),(1030,1224982800,8),(1030,1238288400,7),(1030,1256432400,8),(1030,1269738000,7),(1030,1288486800,8),(1030,1301187600,7),(1030,1319936400,8),(1030,1332637200,7),(1030,1351386000,8),(1030,1364691600,7),(1030,1382835600,8),(1030,1396141200,7),(1030,1414285200,8),(1030,1427590800,7),(1030,1445734800,8),(1030,1459040400,7),(1030,1477789200,8),(1030,1490490000,7),(1030,1509238800,8),(1030,1521939600,7),(1030,1540688400,8),(1030,1553994000,7),(1030,1572138000,8),(1030,1585443600,7),(1030,1603587600,8),(1030,1616893200,7),(1030,1635642000,8),(1030,1648342800,7),(1030,1667091600,8),(1030,1679792400,7),(1030,1698541200,8),(1030,1711846800,7),(1030,1729990800,8),(1030,1743296400,7),(1030,1761440400,8),(1030,1774746000,7),(1030,1792890000,8),(1030,1806195600,7),(1030,1824944400,8),(1030,1837645200,7),(1030,1856394000,8),(1030,1869094800,7),(1030,1887843600,8),(1030,1901149200,7),(1030,1919293200,8),(1030,1932598800,7),(1030,1950742800,8),(1030,1964048400,7),(1030,1982797200,8),(1030,1995498000,7),(1030,2014246800,8),(1030,2026947600,7),(1030,2045696400,8),(1030,2058397200,7),(1030,2077146000,8),(1030,2090451600,7),(1030,2108595600,8),(1030,2121901200,7),(1030,2140045200,8),(1031,-1691964000,0),(1031,-1680472800,1),(1031,-1664143200,0),(1031,-1650146400,1),(1031,-1633903200,0),(1031,-1617487200,1),(1031,-1601848800,0),(1031,-1586037600,1),(1031,-1570399200,0),(1031,-1552168800,1),(1031,-1538344800,0),(1031,-1522533600,1),(1031,-1507500000,0),(1031,-1490565600,1),(1031,-1473631200,0),(1031,-1460930400,1),(1031,-1442786400,0),(1031,-1428876000,1),(1031,-1410732000,0),(1031,-1396216800,1),(1031,-1379282400,0),(1031,-1364767200,1),(1031,-1348437600,0),(1031,-1333317600,1),(1031,-1315778400,0),(1031,-1301263200,1),(1031,-1284328800,0),(1031,-1269813600,1),(1031,-1253484000,0),(1031,-1238364000,1),(1031,-1221429600,0),(1031,-1206914400,1),(1031,-1189980000,0),(1031,-1175464800,1),(1031,-1159135200,0),(1031,-1143410400,1),(1031,-1126476000,0),(1031,-1111960800,1),(1031,-1095631200,0),(1031,-1080511200,1),(1031,-1063576800,0),(1031,-1049061600,1),(1031,-1032127200,0),(1031,-1017612000,1),(1031,-1001282400,0),(1031,-986162400,1),(1031,-969228000,0),(1031,-950479200,1),(1031,-942012000,0),(1031,-904518000,2),(1031,-896050800,0),(1031,-875487600,2),(1031,-864601200,0),(1031,-844038000,2),(1031,-832546800,0),(1031,-812588400,2),(1031,-798073200,0),(1031,-781052400,2),(1031,-772066800,0),(1031,-764805600,1),(1031,-748476000,0),(1031,-733356000,1),(1031,-719445600,0),(1031,-717030000,2),(1031,-706748400,0),(1031,-699487200,1),(1031,-687996000,0),(1031,-668037600,1),(1031,-654732000,0),(1031,-636588000,1),(1031,-622072800,0),(1031,-605743200,1),(1031,-590623200,0),(1031,-574293600,1),(1031,-558568800,0),(1031,-542239200,1),(1031,-527119200,0),(1031,-512604000,1),(1031,-496274400,0),(1031,-481154400,1),(1031,-464220000,0),(1031,-449704800,1),(1031,-432165600,0),(1031,-417650400,1),(1031,-401320800,3),(1031,386125200,4),(1031,401850000,5),(1031,417574800,4),(1031,433299600,5),(1031,449024400,4),(1031,465354000,5),(1031,481078800,4),(1031,496803600,5),(1031,512528400,4),(1031,528253200,5),(1031,543978000,4),(1031,559702800,5),(1031,575427600,4),(1031,591152400,5),(1031,606877200,4),(1031,622602000,5),(1031,638326800,4),(1031,654656400,5),(1031,670381200,4),(1031,686106000,5),(1031,701830800,4),(1031,717555600,5),(1031,733280400,4),(1031,749005200,5),(1031,764730000,4),(1031,780454800,5),(1031,796179600,4),(1031,811904400,5),(1031,828234000,4),(1031,846378000,5),(1031,859683600,4),(1031,877827600,5),(1031,891133200,4),(1031,909277200,5),(1031,922582800,4),(1031,941331600,5),(1031,954032400,4),(1031,972781200,5),(1031,985482000,4),(1031,1004230800,5),(1031,1017536400,4),(1031,1035680400,5),(1031,1048986000,4),(1031,1067130000,5),(1031,1080435600,4),(1031,1099184400,5),(1031,1111885200,4),(1031,1130634000,5),(1031,1143334800,4),(1031,1162083600,5),(1031,1174784400,4),(1031,1193533200,5),(1031,1206838800,4),(1031,1224982800,5),(1031,1238288400,4),(1031,1256432400,5),(1031,1269738000,4),(1031,1288486800,5),(1031,1301187600,4),(1031,1319936400,5),(1031,1332637200,4),(1031,1351386000,5),(1031,1364691600,4),(1031,1382835600,5),(1031,1396141200,4),(1031,1414285200,5),(1031,1427590800,4),(1031,1445734800,5),(1031,1459040400,4),(1031,1477789200,5),(1031,1490490000,4),(1031,1509238800,5),(1031,1521939600,4),(1031,1540688400,5),(1031,1553994000,4),(1031,1572138000,5),(1031,1585443600,4),(1031,1603587600,5),(1031,1616893200,4),(1031,1635642000,5),(1031,1648342800,4),(1031,1667091600,5),(1031,1679792400,4),(1031,1698541200,5),(1031,1711846800,4),(1031,1729990800,5),(1031,1743296400,4),(1031,1761440400,5),(1031,1774746000,4),(1031,1792890000,5),(1031,1806195600,4),(1031,1824944400,5),(1031,1837645200,4),(1031,1856394000,5),(1031,1869094800,4),(1031,1887843600,5),(1031,1901149200,4),(1031,1919293200,5),(1031,1932598800,4),(1031,1950742800,5),(1031,1964048400,4),(1031,1982797200,5),(1031,1995498000,4),(1031,2014246800,5),(1031,2026947600,4),(1031,2045696400,5),(1031,2058397200,4),(1031,2077146000,5),(1031,2090451600,4),(1031,2108595600,5),(1031,2121901200,4),(1031,2140045200,5),(1032,-1691964000,0),(1032,-1680472800,1),(1032,-1664143200,0),(1032,-1650146400,1),(1032,-1633903200,0),(1032,-1617487200,1),(1032,-1601848800,0),(1032,-1586037600,1),(1032,-1570399200,0),(1032,-1552168800,1),(1032,-1538344800,0),(1032,-1522533600,1),(1032,-1507500000,0),(1032,-1490565600,1),(1032,-1473631200,0),(1032,-1460930400,1),(1032,-1442786400,0),(1032,-1428876000,1),(1032,-1410732000,0),(1032,-1396216800,1),(1032,-1379282400,0),(1032,-1364767200,1),(1032,-1348437600,0),(1032,-1333317600,1),(1032,-1315778400,0),(1032,-1301263200,1),(1032,-1284328800,0),(1032,-1269813600,1),(1032,-1253484000,0),(1032,-1238364000,1),(1032,-1221429600,0),(1032,-1206914400,1),(1032,-1189980000,0),(1032,-1175464800,1),(1032,-1159135200,0),(1032,-1143410400,1),(1032,-1126476000,0),(1032,-1111960800,1),(1032,-1095631200,0),(1032,-1080511200,1),(1032,-1063576800,0),(1032,-1049061600,1),(1032,-1032127200,0),(1032,-1017612000,1),(1032,-1001282400,0),(1032,-986162400,1),(1032,-969228000,0),(1032,-950479200,1),(1032,-942012000,0),(1032,-904518000,2),(1032,-896050800,0),(1032,-875487600,2),(1032,-864601200,0),(1032,-844038000,2),(1032,-832546800,0),(1032,-812588400,2),(1032,-798073200,0),(1032,-781052400,2),(1032,-772066800,0),(1032,-764805600,1),(1032,-748476000,0),(1032,-733356000,1),(1032,-719445600,0),(1032,-717030000,2),(1032,-706748400,0),(1032,-699487200,1),(1032,-687996000,0),(1032,-668037600,1),(1032,-654732000,0),(1032,-636588000,1),(1032,-622072800,0),(1032,-605743200,1),(1032,-590623200,0),(1032,-574293600,1),(1032,-558568800,0),(1032,-542239200,1),(1032,-527119200,0),(1032,-512604000,1),(1032,-496274400,0),(1032,-481154400,1),(1032,-464220000,0),(1032,-449704800,1),(1032,-432165600,0),(1032,-417650400,1),(1032,-401320800,0),(1032,-386200800,1),(1032,-369266400,0),(1032,-354751200,1),(1032,-337816800,0),(1032,-323301600,1),(1032,-306972000,0),(1032,-291852000,1),(1032,-276732000,0),(1032,-257983200,1),(1032,-245282400,0),(1032,-226533600,1),(1032,-213228000,0),(1032,-195084000,1),(1032,-182383200,0),(1032,-163634400,1),(1032,-150933600,0),(1032,-132184800,1),(1032,-119484000,0),(1032,-100735200,1),(1032,-88034400,0),(1032,-68680800,1),(1032,-59004000,0),(1032,-37242000,3),(1032,57722400,5),(1032,69818400,0),(1032,89172000,1),(1032,101268000,0),(1032,120621600,1),(1032,132717600,0),(1032,152071200,1),(1032,164167200,0),(1032,183520800,1),(1032,196221600,0),(1032,214970400,1),(1032,227671200,0),(1032,246420000,1),(1032,259120800,0),(1032,278474400,1),(1032,290570400,0),(1032,309924000,1),(1032,322020000,0),(1032,341373600,1),(1032,354675600,4),(1032,372819600,5),(1032,386125200,4),(1032,404269200,5),(1032,417574800,4),(1032,435718800,5),(1032,449024400,4),(1032,467773200,5),(1032,481078800,4),(1032,499222800,5),(1032,512528400,4),(1032,530672400,5),(1032,543978000,4),(1032,562122000,5),(1032,575427600,4),(1032,593571600,5),(1032,606877200,4),(1032,625626000,5),(1032,638326800,4),(1032,657075600,5),(1032,670381200,4),(1032,688525200,5),(1032,701830800,4),(1032,719974800,5),(1032,733280400,4),(1032,751424400,5),(1032,764730000,4),(1032,782874000,5),(1032,796179600,4),(1032,814323600,5),(1032,820454400,6),(1032,828234000,4),(1032,846378000,5),(1032,859683600,4),(1032,877827600,5),(1032,891133200,4),(1032,909277200,5),(1032,922582800,4),(1032,941331600,5),(1032,954032400,4),(1032,972781200,5),(1032,985482000,4),(1032,1004230800,5),(1032,1017536400,4),(1032,1035680400,5),(1032,1048986000,4),(1032,1067130000,5),(1032,1080435600,4),(1032,1099184400,5),(1032,1111885200,4),(1032,1130634000,5),(1032,1143334800,4),(1032,1162083600,5),(1032,1174784400,4),(1032,1193533200,5),(1032,1206838800,4),(1032,1224982800,5),(1032,1238288400,4),(1032,1256432400,5),(1032,1269738000,4),(1032,1288486800,5),(1032,1301187600,4),(1032,1319936400,5),(1032,1332637200,4),(1032,1351386000,5),(1032,1364691600,4),(1032,1382835600,5),(1032,1396141200,4),(1032,1414285200,5),(1032,1427590800,4),(1032,1445734800,5),(1032,1459040400,4),(1032,1477789200,5),(1032,1490490000,4),(1032,1509238800,5),(1032,1521939600,4),(1032,1540688400,5),(1032,1553994000,4),(1032,1572138000,5),(1032,1585443600,4),(1032,1603587600,5),(1032,1616893200,4),(1032,1635642000,5),(1032,1648342800,4),(1032,1667091600,5),(1032,1679792400,4),(1032,1698541200,5),(1032,1711846800,4),(1032,1729990800,5),(1032,1743296400,4),(1032,1761440400,5),(1032,1774746000,4),(1032,1792890000,5),(1032,1806195600,4),(1032,1824944400,5),(1032,1837645200,4),(1032,1856394000,5),(1032,1869094800,4),(1032,1887843600,5),(1032,1901149200,4),(1032,1919293200,5),(1032,1932598800,4),(1032,1950742800,5),(1032,1964048400,4),(1032,1982797200,5),(1032,1995498000,4),(1032,2014246800,5),(1032,2026947600,4),(1032,2045696400,5),(1032,2058397200,4),(1032,2077146000,5),(1032,2090451600,4),(1032,2108595600,5),(1032,2121901200,4),(1032,2140045200,5),(1033,-1535938789,2),(1033,-875671200,1),(1033,-859773600,2),(1033,354672000,1),(1033,370396800,2),(1033,386121600,1),(1033,401846400,2),(1033,417574800,3),(1033,433299600,4),(1033,449024400,3),(1033,465354000,4),(1033,481078800,3),(1033,496803600,4),(1033,512528400,3),(1033,528253200,4),(1033,543978000,3),(1033,559702800,4),(1033,575427600,3),(1033,591152400,4),(1033,606877200,3),(1033,622602000,4),(1033,638326800,3),(1033,654656400,4),(1033,670381200,3),(1033,686106000,4),(1033,701830800,3),(1033,717555600,4),(1033,733280400,3),(1033,749005200,4),(1033,764730000,3),(1033,780454800,4),(1033,796179600,3),(1033,811904400,4),(1033,828234000,3),(1033,846378000,4),(1033,859683600,3),(1033,877827600,4),(1033,891133200,3),(1033,909277200,4),(1033,922582800,3),(1033,941331600,4),(1033,954032400,3),(1033,972781200,4),(1033,985482000,3),(1033,1004230800,4),(1033,1017536400,3),(1033,1035680400,4),(1033,1048986000,3),(1033,1067130000,4),(1033,1080435600,3),(1033,1099184400,4),(1033,1111885200,3),(1033,1130634000,4),(1033,1143334800,3),(1033,1162083600,4),(1033,1174784400,3),(1033,1193533200,4),(1033,1206838800,3),(1033,1224982800,4),(1033,1238288400,3),(1033,1256432400,4),(1033,1269738000,3),(1033,1288486800,4),(1033,1301187600,3),(1033,1319936400,4),(1033,1332637200,3),(1033,1351386000,4),(1033,1364691600,3),(1033,1382835600,4),(1033,1396141200,3),(1033,1414285200,4),(1033,1427590800,3),(1033,1445734800,4),(1033,1459040400,3),(1033,1477789200,4),(1033,1490490000,3),(1033,1509238800,4),(1033,1521939600,3),(1033,1540688400,4),(1033,1553994000,3),(1033,1572138000,4),(1033,1585443600,3),(1033,1603587600,4),(1033,1616893200,3),(1033,1635642000,4),(1033,1648342800,3),(1033,1667091600,4),(1033,1679792400,3),(1033,1698541200,4),(1033,1711846800,3),(1033,1729990800,4),(1033,1743296400,3),(1033,1761440400,4),(1033,1774746000,3),(1033,1792890000,4),(1033,1806195600,3),(1033,1824944400,4),(1033,1837645200,3),(1033,1856394000,4),(1033,1869094800,3),(1033,1887843600,4),(1033,1901149200,3),(1033,1919293200,4),(1033,1932598800,3),(1033,1950742800,4),(1033,1964048400,3),(1033,1982797200,4),(1033,1995498000,3),(1033,2014246800,4),(1033,2026947600,3),(1033,2045696400,4),(1033,2058397200,3),(1033,2077146000,4),(1033,2090451600,3),(1033,2108595600,4),(1033,2121901200,3),(1033,2140045200,4),(1034,-1691964000,0),(1034,-1680472800,1),(1034,-1664143200,0),(1034,-1650146400,1),(1034,-1633903200,0),(1034,-1617487200,1),(1034,-1601848800,0),(1034,-1586037600,1),(1034,-1570399200,0),(1034,-1552168800,1),(1034,-1538344800,0),(1034,-1522533600,1),(1034,-1507500000,0),(1034,-1490565600,1),(1034,-1473631200,0),(1034,-1460930400,1),(1034,-1442786400,0),(1034,-1428876000,1),(1034,-1410732000,0),(1034,-1396216800,1),(1034,-1379282400,0),(1034,-1364767200,1),(1034,-1348437600,0),(1034,-1333317600,1),(1034,-1315778400,0),(1034,-1301263200,1),(1034,-1284328800,0),(1034,-1269813600,1),(1034,-1253484000,0),(1034,-1238364000,1),(1034,-1221429600,0),(1034,-1206914400,1),(1034,-1189980000,0),(1034,-1175464800,1),(1034,-1159135200,0),(1034,-1143410400,1),(1034,-1126476000,0),(1034,-1111960800,1),(1034,-1095631200,0),(1034,-1080511200,1),(1034,-1063576800,0),(1034,-1049061600,1),(1034,-1032127200,0),(1034,-1017612000,1),(1034,-1001282400,0),(1034,-986162400,1),(1034,-969228000,0),(1034,-950479200,1),(1034,-942012000,0),(1034,-904518000,2),(1034,-896050800,0),(1034,-875487600,2),(1034,-864601200,0),(1034,-844038000,2),(1034,-832546800,0),(1034,-812588400,2),(1034,-798073200,0),(1034,-781052400,2),(1034,-772066800,0),(1034,-764805600,1),(1034,-748476000,0),(1034,-733356000,1),(1034,-719445600,0),(1034,-717030000,2),(1034,-706748400,0),(1034,-699487200,1),(1034,-687996000,0),(1034,-668037600,1),(1034,-654732000,0),(1034,-636588000,1),(1034,-622072800,0),(1034,-605743200,1),(1034,-590623200,0),(1034,-574293600,1),(1034,-558568800,0),(1034,-542239200,1),(1034,-527119200,0),(1034,-512604000,1),(1034,-496274400,0),(1034,-481154400,1),(1034,-464220000,0),(1034,-449704800,1),(1034,-432165600,0),(1034,-417650400,1),(1034,-401320800,0),(1034,-386200800,1),(1034,-369266400,0),(1034,-354751200,1),(1034,-337816800,0),(1034,-323301600,1),(1034,-306972000,0),(1034,-291852000,1),(1034,-276732000,0),(1034,-257983200,1),(1034,-245282400,0),(1034,-226533600,1),(1034,-213228000,0),(1034,-195084000,1),(1034,-182383200,0),(1034,-163634400,1),(1034,-150933600,0),(1034,-132184800,1),(1034,-119484000,0),(1034,-100735200,1),(1034,-88034400,0),(1034,-68680800,1),(1034,-59004000,0),(1034,-37242000,3),(1034,57722400,5),(1034,69818400,0),(1034,89172000,1),(1034,101268000,0),(1034,120621600,1),(1034,132717600,0),(1034,152071200,1),(1034,164167200,0),(1034,183520800,1),(1034,196221600,0),(1034,214970400,1),(1034,227671200,0),(1034,246420000,1),(1034,259120800,0),(1034,278474400,1),(1034,290570400,0),(1034,309924000,1),(1034,322020000,0),(1034,341373600,1),(1034,354675600,4),(1034,372819600,5),(1034,386125200,4),(1034,404269200,5),(1034,417574800,4),(1034,435718800,5),(1034,449024400,4),(1034,467773200,5),(1034,481078800,4),(1034,499222800,5),(1034,512528400,4),(1034,530672400,5),(1034,543978000,4),(1034,562122000,5),(1034,575427600,4),(1034,593571600,5),(1034,606877200,4),(1034,625626000,5),(1034,638326800,4),(1034,657075600,5),(1034,670381200,4),(1034,688525200,5),(1034,701830800,4),(1034,719974800,5),(1034,733280400,4),(1034,751424400,5),(1034,764730000,4),(1034,782874000,5),(1034,796179600,4),(1034,814323600,5),(1034,820454400,6),(1034,828234000,4),(1034,846378000,5),(1034,859683600,4),(1034,877827600,5),(1034,891133200,4),(1034,909277200,5),(1034,922582800,4),(1034,941331600,5),(1034,954032400,4),(1034,972781200,5),(1034,985482000,4),(1034,1004230800,5),(1034,1017536400,4),(1034,1035680400,5),(1034,1048986000,4),(1034,1067130000,5),(1034,1080435600,4),(1034,1099184400,5),(1034,1111885200,4),(1034,1130634000,5),(1034,1143334800,4),(1034,1162083600,5),(1034,1174784400,4),(1034,1193533200,5),(1034,1206838800,4),(1034,1224982800,5),(1034,1238288400,4),(1034,1256432400,5),(1034,1269738000,4),(1034,1288486800,5),(1034,1301187600,4),(1034,1319936400,5),(1034,1332637200,4),(1034,1351386000,5),(1034,1364691600,4),(1034,1382835600,5),(1034,1396141200,4),(1034,1414285200,5),(1034,1427590800,4),(1034,1445734800,5),(1034,1459040400,4),(1034,1477789200,5),(1034,1490490000,4),(1034,1509238800,5),(1034,1521939600,4),(1034,1540688400,5),(1034,1553994000,4),(1034,1572138000,5),(1034,1585443600,4),(1034,1603587600,5),(1034,1616893200,4),(1034,1635642000,5),(1034,1648342800,4),(1034,1667091600,5),(1034,1679792400,4),(1034,1698541200,5),(1034,1711846800,4),(1034,1729990800,5),(1034,1743296400,4),(1034,1761440400,5),(1034,1774746000,4),(1034,1792890000,5),(1034,1806195600,4),(1034,1824944400,5),(1034,1837645200,4),(1034,1856394000,5),(1034,1869094800,4),(1034,1887843600,5),(1034,1901149200,4),(1034,1919293200,5),(1034,1932598800,4),(1034,1950742800,5),(1034,1964048400,4),(1034,1982797200,5),(1034,1995498000,4),(1034,2014246800,5),(1034,2026947600,4),(1034,2045696400,5),(1034,2058397200,4),(1034,2077146000,5),(1034,2090451600,4),(1034,2108595600,5),(1034,2121901200,4),(1034,2140045200,5),(1035,-1869875816,2),(1035,-1693706400,1),(1035,-1680490800,2),(1035,-1570413600,1),(1035,-1552186800,2),(1035,-1538359200,1),(1035,-1522551600,2),(1035,-1507514400,1),(1035,-1490583600,2),(1035,-1440208800,1),(1035,-1428030000,2),(1035,-1409709600,1),(1035,-1396494000,2),(1035,-931140000,1),(1035,-922762800,2),(1035,-917834400,1),(1035,-892436400,2),(1035,-875844000,1),(1035,-857358000,2),(1035,-781063200,1),(1035,-764737200,2),(1035,-744343200,1),(1035,-733806000,2),(1035,-716436000,1),(1035,-701924400,2),(1035,-684986400,1),(1035,-670474800,2),(1035,-654141600,1),(1035,-639025200,2),(1035,-621828000,1),(1035,-606970800,2),(1035,-590032800,1),(1035,-575434800,2),(1035,-235620000,1),(1035,-228279600,2),(1035,-177732000,1),(1035,-165726000,2),(1035,10533600,1),(1035,23835600,2),(1035,41983200,1),(1035,55285200,2),(1035,74037600,1),(1035,87339600,2),(1035,107910000,1),(1035,121219200,2),(1035,133920000,1),(1035,152676000,2),(1035,165362400,1),(1035,183502800,2),(1035,202428000,1),(1035,215557200,2),(1035,228866400,1),(1035,245797200,2),(1035,260316000,1),(1035,277246800,3),(1035,308779200,4),(1035,323827200,3),(1035,340228800,4),(1035,354672000,3),(1035,371678400,4),(1035,386121600,3),(1035,403128000,4),(1035,428446800,3),(1035,433886400,4),(1035,482792400,1),(1035,496702800,2),(1035,512521200,5),(1035,528246000,6),(1035,543970800,5),(1035,559695600,6),(1035,575420400,5),(1035,591145200,6),(1035,606870000,5),(1035,622594800,6),(1035,638319600,5),(1035,654649200,6),(1035,670374000,5),(1035,686098800,6),(1035,701823600,5),(1035,717548400,6),(1035,733273200,5),(1035,748998000,6),(1035,764118000,5),(1035,780447600,6),(1035,796172400,5),(1035,811897200,6),(1035,828226800,5),(1035,846370800,6),(1035,859676400,5),(1035,877820400,6),(1035,891126000,5),(1035,909270000,6),(1035,922575600,5),(1035,941324400,6),(1035,954025200,5),(1035,972774000,6),(1035,985474800,5),(1035,1004223600,6),(1035,1017529200,5),(1035,1035673200,6),(1035,1048978800,5),(1035,1067122800,6),(1035,1080428400,5),(1035,1099177200,6),(1035,1111878000,5),(1035,1130626800,6),(1035,1143327600,5),(1035,1162076400,6),(1035,1167602400,2),(1035,1174784400,7),(1035,1193533200,8),(1035,1206838800,7),(1035,1224982800,8),(1035,1238288400,7),(1035,1256432400,8),(1035,1269738000,7),(1035,1288486800,8),(1035,1301274000,7),(1035,1319936400,8),(1035,1332637200,7),(1035,1351386000,8),(1035,1364691600,7),(1035,1382835600,8),(1035,1396227600,7),(1035,1414285200,8),(1035,1427590800,7),(1035,1446944400,8),(1035,1459040400,7),(1035,1473195600,4),(1036,-1691964000,0),(1036,-1680472800,1),(1036,-1664143200,0),(1036,-1650146400,1),(1036,-1633903200,0),(1036,-1617487200,1),(1036,-1601848800,0),(1036,-1586037600,1),(1036,-1570399200,0),(1036,-1552168800,1),(1036,-1538344800,0),(1036,-1522533600,1),(1036,-1507500000,0),(1036,-1490565600,1),(1036,-1473631200,0),(1036,-1460930400,1),(1036,-1442786400,0),(1036,-1428876000,1),(1036,-1410732000,0),(1036,-1396216800,1),(1036,-1379282400,0),(1036,-1364767200,1),(1036,-1348437600,0),(1036,-1333317600,1),(1036,-1315778400,0),(1036,-1301263200,1),(1036,-1284328800,0),(1036,-1269813600,1),(1036,-1253484000,0),(1036,-1238364000,1),(1036,-1221429600,0),(1036,-1206914400,1),(1036,-1189980000,0),(1036,-1175464800,1),(1036,-1159135200,0),(1036,-1143410400,1),(1036,-1126476000,0),(1036,-1111960800,1),(1036,-1095631200,0),(1036,-1080511200,1),(1036,-1063576800,0),(1036,-1049061600,1),(1036,-1032127200,0),(1036,-1017612000,1),(1036,-1001282400,0),(1036,-986162400,1),(1036,-969228000,0),(1036,-950479200,1),(1036,-942012000,0),(1036,-904518000,2),(1036,-896050800,0),(1036,-875487600,2),(1036,-864601200,0),(1036,-844038000,2),(1036,-832546800,0),(1036,-812588400,2),(1036,-798073200,0),(1036,-781052400,2),(1036,-772066800,0),(1036,-764805600,1),(1036,-748476000,0),(1036,-733356000,1),(1036,-719445600,0),(1036,-717030000,2),(1036,-706748400,0),(1036,-699487200,1),(1036,-687996000,0),(1036,-668037600,1),(1036,-654732000,0),(1036,-636588000,1),(1036,-622072800,0),(1036,-605743200,1),(1036,-590623200,0),(1036,-574293600,1),(1036,-558568800,0),(1036,-542239200,1),(1036,-527119200,0),(1036,-512604000,1),(1036,-496274400,0),(1036,-481154400,1),(1036,-464220000,0),(1036,-449704800,1),(1036,-432165600,0),(1036,-417650400,1),(1036,-401320800,0),(1036,-386200800,1),(1036,-369266400,0),(1036,-354751200,1),(1036,-337816800,0),(1036,-323301600,1),(1036,-306972000,0),(1036,-291852000,1),(1036,-276732000,0),(1036,-257983200,1),(1036,-245282400,0),(1036,-226533600,1),(1036,-213228000,0),(1036,-195084000,1),(1036,-182383200,0),(1036,-163634400,1),(1036,-150933600,0),(1036,-132184800,1),(1036,-119484000,0),(1036,-100735200,1),(1036,-88034400,0),(1036,-68680800,1),(1036,-59004000,0),(1036,-37242000,3),(1036,57722400,5),(1036,69818400,0),(1036,89172000,1),(1036,101268000,0),(1036,120621600,1),(1036,132717600,0),(1036,152071200,1),(1036,164167200,0),(1036,183520800,1),(1036,196221600,0),(1036,214970400,1),(1036,227671200,0),(1036,246420000,1),(1036,259120800,0),(1036,278474400,1),(1036,290570400,0),(1036,309924000,1),(1036,322020000,0),(1036,341373600,1),(1036,354675600,4),(1036,372819600,5),(1036,386125200,4),(1036,404269200,5),(1036,417574800,4),(1036,435718800,5),(1036,449024400,4),(1036,467773200,5),(1036,481078800,4),(1036,499222800,5),(1036,512528400,4),(1036,530672400,5),(1036,543978000,4),(1036,562122000,5),(1036,575427600,4),(1036,593571600,5),(1036,606877200,4),(1036,625626000,5),(1036,638326800,4),(1036,657075600,5),(1036,670381200,4),(1036,688525200,5),(1036,701830800,4),(1036,719974800,5),(1036,733280400,4),(1036,751424400,5),(1036,764730000,4),(1036,782874000,5),(1036,796179600,4),(1036,814323600,5),(1036,820454400,6),(1036,828234000,4),(1036,846378000,5),(1036,859683600,4),(1036,877827600,5),(1036,891133200,4),(1036,909277200,5),(1036,922582800,4),(1036,941331600,5),(1036,954032400,4),(1036,972781200,5),(1036,985482000,4),(1036,1004230800,5),(1036,1017536400,4),(1036,1035680400,5),(1036,1048986000,4),(1036,1067130000,5),(1036,1080435600,4),(1036,1099184400,5),(1036,1111885200,4),(1036,1130634000,5),(1036,1143334800,4),(1036,1162083600,5),(1036,1174784400,4),(1036,1193533200,5),(1036,1206838800,4),(1036,1224982800,5),(1036,1238288400,4),(1036,1256432400,5),(1036,1269738000,4),(1036,1288486800,5),(1036,1301187600,4),(1036,1319936400,5),(1036,1332637200,4),(1036,1351386000,5),(1036,1364691600,4),(1036,1382835600,5),(1036,1396141200,4),(1036,1414285200,5),(1036,1427590800,4),(1036,1445734800,5),(1036,1459040400,4),(1036,1477789200,5),(1036,1490490000,4),(1036,1509238800,5),(1036,1521939600,4),(1036,1540688400,5),(1036,1553994000,4),(1036,1572138000,5),(1036,1585443600,4),(1036,1603587600,5),(1036,1616893200,4),(1036,1635642000,5),(1036,1648342800,4),(1036,1667091600,5),(1036,1679792400,4),(1036,1698541200,5),(1036,1711846800,4),(1036,1729990800,5),(1036,1743296400,4),(1036,1761440400,5),(1036,1774746000,4),(1036,1792890000,5),(1036,1806195600,4),(1036,1824944400,5),(1036,1837645200,4),(1036,1856394000,5),(1036,1869094800,4),(1036,1887843600,5),(1036,1901149200,4),(1036,1919293200,5),(1036,1932598800,4),(1036,1950742800,5),(1036,1964048400,4),(1036,1982797200,5),(1036,1995498000,4),(1036,2014246800,5),(1036,2026947600,4),(1036,2045696400,5),(1036,2058397200,4),(1036,2077146000,5),(1036,2090451600,4),(1036,2108595600,5),(1036,2121901200,4),(1036,2140045200,5),(1037,-1693706400,0),(1037,-1680483600,1),(1037,-1663455600,2),(1037,-1650150000,3),(1037,-1632006000,2),(1037,-1618700400,3),(1037,-938905200,2),(1037,-857257200,3),(1037,-844556400,2),(1037,-828226800,3),(1037,-812502000,2),(1037,-796777200,3),(1037,-788922000,5),(1037,-778730400,4),(1037,-762663600,5),(1037,-757389600,7),(1037,354920400,6),(1037,370728000,7),(1037,386456400,6),(1037,402264000,7),(1037,417992400,6),(1037,433800000,7),(1037,449614800,6),(1037,465346800,8),(1037,481071600,9),(1037,496796400,8),(1037,512521200,9),(1037,528246000,8),(1037,543970800,9),(1037,559695600,8),(1037,575420400,9),(1037,591145200,8),(1037,606870000,10),(1037,622598400,11),(1037,638323200,10),(1037,654652800,11),(1037,670377600,10),(1037,686102400,11),(1037,701827200,10),(1037,717552000,11),(1037,733276800,10),(1037,749001600,11),(1037,764726400,10),(1037,780451200,11),(1037,796176000,10),(1037,811900800,11),(1037,828230400,10),(1037,846374400,11),(1037,859680000,10),(1037,877824000,11),(1037,891129600,10),(1037,909273600,11),(1037,922579200,10),(1037,941328000,11),(1037,954028800,10),(1037,972777600,11),(1037,985478400,10),(1037,1004227200,11),(1037,1017532800,10),(1037,1035676800,11),(1037,1048982400,10),(1037,1067126400,11),(1037,1080432000,10),(1037,1099180800,11),(1037,1111881600,10),(1037,1130630400,11),(1037,1143331200,10),(1037,1162080000,11),(1037,1174780800,10),(1037,1193529600,11),(1037,1206835200,10),(1037,1224979200,11),(1037,1238284800,10),(1037,1256428800,11),(1037,1269734400,10),(1037,1288483200,11),(1037,1301184000,12),(1037,1414278000,11),(1038,-1441159324,1),(1038,-1247536800,2),(1038,-892522800,5),(1038,-857257200,3),(1038,-844556400,4),(1038,-828226800,3),(1038,-825382800,2),(1038,354920400,6),(1038,370728000,2),(1038,386456400,6),(1038,402264000,2),(1038,417992400,6),(1038,433800000,2),(1038,449614800,6),(1038,465346800,7),(1038,481071600,8),(1038,496796400,7),(1038,512521200,8),(1038,528246000,7),(1038,543970800,8),(1038,559695600,7),(1038,575420400,8),(1038,591145200,7),(1038,606870000,8),(1038,622594800,7),(1038,638319600,8),(1038,646783200,9),(1038,686102400,1),(1038,701820000,9),(1038,717541200,1),(1038,733269600,9),(1038,748990800,1),(1038,764719200,9),(1038,780440400,1),(1038,796179600,10),(1038,811904400,11),(1038,828234000,10),(1038,846378000,11),(1038,859683600,10),(1038,877827600,11),(1038,891133200,10),(1038,909277200,11),(1038,922582800,10),(1038,941331600,11),(1038,954032400,10),(1038,972781200,11),(1038,985482000,10),(1038,1004230800,11),(1038,1017536400,10),(1038,1035680400,11),(1038,1048986000,10),(1038,1067130000,11),(1038,1080435600,10),(1038,1099184400,11),(1038,1111885200,10),(1038,1130634000,11),(1038,1143334800,10),(1038,1162083600,11),(1038,1174784400,10),(1038,1193533200,11),(1038,1206838800,10),(1038,1224982800,11),(1038,1238288400,10),(1038,1256432400,11),(1038,1269738000,10),(1038,1288486800,11),(1038,1301187600,10),(1038,1319936400,11),(1038,1332637200,10),(1038,1351386000,11),(1038,1364691600,10),(1038,1382835600,11),(1038,1396141200,10),(1038,1414285200,11),(1038,1427590800,10),(1038,1445734800,11),(1038,1459040400,10),(1038,1477789200,11),(1038,1490490000,10),(1038,1509238800,11),(1038,1521939600,10),(1038,1540688400,11),(1038,1553994000,10),(1038,1572138000,11),(1038,1585443600,10),(1038,1603587600,11),(1038,1616893200,10),(1038,1635642000,11),(1038,1648342800,10),(1038,1667091600,11),(1038,1679792400,10),(1038,1698541200,11),(1038,1711846800,10),(1038,1729990800,11),(1038,1743296400,10),(1038,1761440400,11),(1038,1774746000,10),(1038,1792890000,11),(1038,1806195600,10),(1038,1824944400,11),(1038,1837645200,10),(1038,1856394000,11),(1038,1869094800,10),(1038,1887843600,11),(1038,1901149200,10),(1038,1919293200,11),(1038,1932598800,10),(1038,1950742800,11),(1038,1964048400,10),(1038,1982797200,11),(1038,1995498000,10),(1038,2014246800,11),(1038,2026947600,10),(1038,2045696400,11),(1038,2058397200,10),(1038,2077146000,11),(1038,2090451600,10),(1038,2108595600,11),(1038,2121901200,10),(1038,2140045200,11),(1039,-1593820800,1),(1039,-1247540400,3),(1039,354916800,2),(1039,370724400,3),(1039,386452800,2),(1039,402260400,3),(1039,417988800,2),(1039,433796400,3),(1039,449611200,2),(1039,465343200,4),(1039,481068000,5),(1039,496792800,4),(1039,512517600,5),(1039,528242400,4),(1039,543967200,5),(1039,559692000,4),(1039,575416800,5),(1039,591141600,4),(1039,606866400,6),(1039,622594800,7),(1039,638319600,6),(1039,654649200,7),(1039,670374000,4),(1039,701820000,6),(1039,717548400,7),(1039,733273200,6),(1039,748998000,7),(1039,764722800,6),(1039,780447600,7),(1039,796172400,6),(1039,811897200,7),(1039,828226800,6),(1039,846370800,7),(1039,859676400,6),(1039,877820400,7),(1039,891126000,6),(1039,909270000,7),(1039,922575600,6),(1039,941324400,7),(1039,954025200,6),(1039,972774000,7),(1039,985474800,6),(1039,1004223600,7),(1039,1017529200,6),(1039,1035673200,7),(1039,1048978800,6),(1039,1067122800,7),(1039,1080428400,6),(1039,1099177200,7),(1039,1111878000,6),(1039,1130626800,7),(1039,1143327600,6),(1039,1162076400,7),(1039,1174777200,6),(1039,1193526000,7),(1039,1206831600,6),(1039,1224975600,7),(1039,1238281200,6),(1039,1256425200,7),(1039,1269730800,6),(1039,1288479600,7),(1039,1301180400,4),(1039,1414274400,7),(1040,-1830384000,6),(1040,-1689555600,1),(1040,-1677801600,2),(1040,-1667437200,3),(1040,-1647738000,4),(1040,-1635814800,3),(1040,-1616202000,4),(1040,-1604365200,3),(1040,-1584666000,4),(1040,-1572742800,3),(1040,-1553043600,4),(1040,-1541206800,3),(1040,-1521507600,4),(1040,-1442451600,3),(1040,-1426813200,4),(1040,-1379293200,3),(1040,-1364778000,4),(1040,-1348448400,3),(1040,-1333328400,4),(1040,-1316394000,3),(1040,-1301274000,4),(1040,-1284339600,3),(1040,-1269824400,4),(1040,-1221440400,3),(1040,-1206925200,4),(1040,-1191200400,3),(1040,-1175475600,4),(1040,-1127696400,3),(1040,-1111971600,4),(1040,-1096851600,3),(1040,-1080522000,4),(1040,-1063587600,3),(1040,-1049072400,4),(1040,-1033347600,3),(1040,-1017622800,4),(1040,-1002502800,3),(1040,-986173200,4),(1040,-969238800,3),(1040,-950490000,4),(1040,-942022800,3),(1040,-922669200,4),(1040,-906944400,3),(1040,-891133200,4),(1040,-877309200,3),(1040,-873684000,5),(1040,-864007200,3),(1040,-857955600,4),(1040,-845859600,3),(1040,-842839200,5),(1040,-831348000,3),(1040,-825901200,4),(1040,-814410000,3),(1040,-810784800,5),(1040,-799898400,3),(1040,-794451600,4),(1040,-782960400,3),(1040,-779335200,5),(1040,-768448800,3),(1040,-763002000,4),(1040,-749091600,3),(1040,-733366800,4),(1040,-717631200,3),(1040,-701906400,4),(1040,-686181600,3),(1040,-670456800,4),(1040,-654732000,3),(1040,-639007200,4),(1040,-591832800,3),(1040,-575503200,4),(1040,-559778400,3),(1040,-544053600,4),(1040,-528328800,3),(1040,-512604000,4),(1040,-496879200,3),(1040,-481154400,4),(1040,-465429600,3),(1040,-449704800,4),(1040,-433980000,3),(1040,-417650400,4),(1040,-401925600,3),(1040,-386200800,4),(1040,-370476000,3),(1040,-354751200,4),(1040,-339026400,3),(1040,-323301600,4),(1040,-307576800,3),(1040,-291852000,4),(1040,-276127200,3),(1040,-260402400,4),(1040,-244677600,3),(1040,-228348000,4),(1040,-212623200,3),(1040,-196898400,4),(1040,-181173600,3),(1040,-165448800,4),(1040,-149724000,3),(1040,-133999200,4),(1040,-118274400,7),(1040,212544000,2),(1040,228268800,3),(1040,243993600,4),(1040,260323200,3),(1040,276048000,4),(1040,291772800,3),(1040,307501200,4),(1040,323222400,3),(1040,338950800,4),(1040,354675600,3),(1040,370400400,4),(1040,386125200,3),(1040,401850000,4),(1040,417578400,3),(1040,433299600,4),(1040,449024400,3),(1040,465354000,4),(1040,481078800,3),(1040,496803600,4),(1040,512528400,3),(1040,528253200,4),(1040,543978000,3),(1040,559702800,4),(1040,575427600,3),(1040,591152400,4),(1040,606877200,3),(1040,622602000,4),(1040,638326800,3),(1040,654656400,4),(1040,670381200,3),(1040,686106000,4),(1040,701830800,3),(1040,717555600,8),(1040,733280400,9),(1040,749005200,8),(1040,764730000,9),(1040,780454800,8),(1040,796179600,9),(1040,811904400,8),(1040,828234000,10),(1040,846378000,6),(1040,859683600,10),(1040,877827600,6),(1040,891133200,10),(1040,909277200,6),(1040,922582800,10),(1040,941331600,6),(1040,954032400,10),(1040,972781200,6),(1040,985482000,10),(1040,1004230800,6),(1040,1017536400,10),(1040,1035680400,6),(1040,1048986000,10),(1040,1067130000,6),(1040,1080435600,10),(1040,1099184400,6),(1040,1111885200,10),(1040,1130634000,6),(1040,1143334800,10),(1040,1162083600,6),(1040,1174784400,10),(1040,1193533200,6),(1040,1206838800,10),(1040,1224982800,6),(1040,1238288400,10),(1040,1256432400,6),(1040,1269738000,10),(1040,1288486800,6),(1040,1301187600,10),(1040,1319936400,6),(1040,1332637200,10),(1040,1351386000,6),(1040,1364691600,10),(1040,1382835600,6),(1040,1396141200,10),(1040,1414285200,6),(1040,1427590800,10),(1040,1445734800,6),(1040,1459040400,10),(1040,1477789200,6),(1040,1490490000,10),(1040,1509238800,6),(1040,1521939600,10),(1040,1540688400,6),(1040,1553994000,10),(1040,1572138000,6),(1040,1585443600,10),(1040,1603587600,6),(1040,1616893200,10),(1040,1635642000,6),(1040,1648342800,10),(1040,1667091600,6),(1040,1679792400,10),(1040,1698541200,6),(1040,1711846800,10),(1040,1729990800,6),(1040,1743296400,10),(1040,1761440400,6),(1040,1774746000,10),(1040,1792890000,6),(1040,1806195600,10),(1040,1824944400,6),(1040,1837645200,10),(1040,1856394000,6),(1040,1869094800,10),(1040,1887843600,6),(1040,1901149200,10),(1040,1919293200,6),(1040,1932598800,10),(1040,1950742800,6),(1040,1964048400,10),(1040,1982797200,6),(1040,1995498000,10),(1040,2014246800,6),(1040,2026947600,10),(1040,2045696400,6),(1040,2058397200,10),(1040,2077146000,6),(1040,2090451600,10),(1040,2108595600,6),(1040,2121901200,10),(1040,2140045200,6),(1041,-905824800,3),(1041,-857257200,1),(1041,-844556400,2),(1041,-828226800,1),(1041,-812502000,2),(1041,-796777200,1),(1041,-788922000,0),(1041,-777942000,2),(1041,-766623600,1),(1041,407199600,0),(1041,417574800,4),(1041,433299600,5),(1041,449024400,4),(1041,465354000,5),(1041,481078800,4),(1041,496803600,5),(1041,512528400,4),(1041,528253200,5),(1041,543978000,4),(1041,559702800,5),(1041,575427600,4),(1041,591152400,5),(1041,606877200,4),(1041,622602000,5),(1041,638326800,4),(1041,654656400,5),(1041,670381200,4),(1041,686106000,5),(1041,701830800,4),(1041,717555600,5),(1041,733280400,4),(1041,749005200,5),(1041,764730000,4),(1041,780454800,5),(1041,796179600,4),(1041,811904400,5),(1041,828234000,4),(1041,846378000,5),(1041,859683600,4),(1041,877827600,5),(1041,891133200,4),(1041,909277200,5),(1041,922582800,4),(1041,941331600,5),(1041,954032400,4),(1041,972781200,5),(1041,985482000,4),(1041,1004230800,5),(1041,1017536400,4),(1041,1035680400,5),(1041,1048986000,4),(1041,1067130000,5),(1041,1080435600,4),(1041,1099184400,5),(1041,1111885200,4),(1041,1130634000,5),(1041,1143334800,4),(1041,1162083600,5),(1041,1174784400,4),(1041,1193533200,5),(1041,1206838800,4),(1041,1224982800,5),(1041,1238288400,4),(1041,1256432400,5),(1041,1269738000,4),(1041,1288486800,5),(1041,1301187600,4),(1041,1319936400,5),(1041,1332637200,4),(1041,1351386000,5),(1041,1364691600,4),(1041,1382835600,5),(1041,1396141200,4),(1041,1414285200,5),(1041,1427590800,4),(1041,1445734800,5),(1041,1459040400,4),(1041,1477789200,5),(1041,1490490000,4),(1041,1509238800,5),(1041,1521939600,4),(1041,1540688400,5),(1041,1553994000,4),(1041,1572138000,5),(1041,1585443600,4),(1041,1603587600,5),(1041,1616893200,4),(1041,1635642000,5),(1041,1648342800,4),(1041,1667091600,5),(1041,1679792400,4),(1041,1698541200,5),(1041,1711846800,4),(1041,1729990800,5),(1041,1743296400,4),(1041,1761440400,5),(1041,1774746000,4),(1041,1792890000,5),(1041,1806195600,4),(1041,1824944400,5),(1041,1837645200,4),(1041,1856394000,5),(1041,1869094800,4),(1041,1887843600,5),(1041,1901149200,4),(1041,1919293200,5),(1041,1932598800,4),(1041,1950742800,5),(1041,1964048400,4),(1041,1982797200,5),(1041,1995498000,4),(1041,2014246800,5),(1041,2026947600,4),(1041,2045696400,5),(1041,2058397200,4),(1041,2077146000,5),(1041,2090451600,4),(1041,2108595600,5),(1041,2121901200,4),(1041,2140045200,5),(1042,-1691964000,0),(1042,-1680472800,1),(1042,-1664143200,0),(1042,-1650146400,1),(1042,-1633903200,0),(1042,-1617487200,1),(1042,-1601848800,0),(1042,-1586037600,1),(1042,-1570399200,0),(1042,-1552168800,1),(1042,-1538344800,0),(1042,-1522533600,1),(1042,-1507500000,0),(1042,-1490565600,1),(1042,-1473631200,0),(1042,-1460930400,1),(1042,-1442786400,0),(1042,-1428876000,1),(1042,-1410732000,0),(1042,-1396216800,1),(1042,-1379282400,0),(1042,-1364767200,1),(1042,-1348437600,0),(1042,-1333317600,1),(1042,-1315778400,0),(1042,-1301263200,1),(1042,-1284328800,0),(1042,-1269813600,1),(1042,-1253484000,0),(1042,-1238364000,1),(1042,-1221429600,0),(1042,-1206914400,1),(1042,-1189980000,0),(1042,-1175464800,1),(1042,-1159135200,0),(1042,-1143410400,1),(1042,-1126476000,0),(1042,-1111960800,1),(1042,-1095631200,0),(1042,-1080511200,1),(1042,-1063576800,0),(1042,-1049061600,1),(1042,-1032127200,0),(1042,-1017612000,1),(1042,-1001282400,0),(1042,-986162400,1),(1042,-969228000,0),(1042,-950479200,1),(1042,-942012000,0),(1042,-904518000,2),(1042,-896050800,0),(1042,-875487600,2),(1042,-864601200,0),(1042,-844038000,2),(1042,-832546800,0),(1042,-812588400,2),(1042,-798073200,0),(1042,-781052400,2),(1042,-772066800,0),(1042,-764805600,1),(1042,-748476000,0),(1042,-733356000,1),(1042,-719445600,0),(1042,-717030000,2),(1042,-706748400,0),(1042,-699487200,1),(1042,-687996000,0),(1042,-668037600,1),(1042,-654732000,0),(1042,-636588000,1),(1042,-622072800,0),(1042,-605743200,1),(1042,-590623200,0),(1042,-574293600,1),(1042,-558568800,0),(1042,-542239200,1),(1042,-527119200,0),(1042,-512604000,1),(1042,-496274400,0),(1042,-481154400,1),(1042,-464220000,0),(1042,-449704800,1),(1042,-432165600,0),(1042,-417650400,1),(1042,-401320800,0),(1042,-386200800,1),(1042,-369266400,0),(1042,-354751200,1),(1042,-337816800,0),(1042,-323301600,1),(1042,-306972000,0),(1042,-291852000,1),(1042,-276732000,0),(1042,-257983200,1),(1042,-245282400,0),(1042,-226533600,1),(1042,-213228000,0),(1042,-195084000,1),(1042,-182383200,0),(1042,-163634400,1),(1042,-150933600,0),(1042,-132184800,1),(1042,-119484000,0),(1042,-100735200,1),(1042,-88034400,0),(1042,-68680800,1),(1042,-59004000,0),(1042,-37242000,3),(1042,57722400,5),(1042,69818400,0),(1042,89172000,1),(1042,101268000,0),(1042,120621600,1),(1042,132717600,0),(1042,152071200,1),(1042,164167200,0),(1042,183520800,1),(1042,196221600,0),(1042,214970400,1),(1042,227671200,0),(1042,246420000,1),(1042,259120800,0),(1042,278474400,1),(1042,290570400,0),(1042,309924000,1),(1042,322020000,0),(1042,341373600,1),(1042,354675600,4),(1042,372819600,5),(1042,386125200,4),(1042,404269200,5),(1042,417574800,4),(1042,435718800,5),(1042,449024400,4),(1042,467773200,5),(1042,481078800,4),(1042,499222800,5),(1042,512528400,4),(1042,530672400,5),(1042,543978000,4),(1042,562122000,5),(1042,575427600,4),(1042,593571600,5),(1042,606877200,4),(1042,625626000,5),(1042,638326800,4),(1042,657075600,5),(1042,670381200,4),(1042,688525200,5),(1042,701830800,4),(1042,719974800,5),(1042,733280400,4),(1042,751424400,5),(1042,764730000,4),(1042,782874000,5),(1042,796179600,4),(1042,814323600,5),(1042,820454400,6),(1042,828234000,4),(1042,846378000,5),(1042,859683600,4),(1042,877827600,5),(1042,891133200,4),(1042,909277200,5),(1042,922582800,4),(1042,941331600,5),(1042,954032400,4),(1042,972781200,5),(1042,985482000,4),(1042,1004230800,5),(1042,1017536400,4),(1042,1035680400,5),(1042,1048986000,4),(1042,1067130000,5),(1042,1080435600,4),(1042,1099184400,5),(1042,1111885200,4),(1042,1130634000,5),(1042,1143334800,4),(1042,1162083600,5),(1042,1174784400,4),(1042,1193533200,5),(1042,1206838800,4),(1042,1224982800,5),(1042,1238288400,4),(1042,1256432400,5),(1042,1269738000,4),(1042,1288486800,5),(1042,1301187600,4),(1042,1319936400,5),(1042,1332637200,4),(1042,1351386000,5),(1042,1364691600,4),(1042,1382835600,5),(1042,1396141200,4),(1042,1414285200,5),(1042,1427590800,4),(1042,1445734800,5),(1042,1459040400,4),(1042,1477789200,5),(1042,1490490000,4),(1042,1509238800,5),(1042,1521939600,4),(1042,1540688400,5),(1042,1553994000,4),(1042,1572138000,5),(1042,1585443600,4),(1042,1603587600,5),(1042,1616893200,4),(1042,1635642000,5),(1042,1648342800,4),(1042,1667091600,5),(1042,1679792400,4),(1042,1698541200,5),(1042,1711846800,4),(1042,1729990800,5),(1042,1743296400,4),(1042,1761440400,5),(1042,1774746000,4),(1042,1792890000,5),(1042,1806195600,4),(1042,1824944400,5),(1042,1837645200,4),(1042,1856394000,5),(1042,1869094800,4),(1042,1887843600,5),(1042,1901149200,4),(1042,1919293200,5),(1042,1932598800,4),(1042,1950742800,5),(1042,1964048400,4),(1042,1982797200,5),(1042,1995498000,4),(1042,2014246800,5),(1042,2026947600,4),(1042,2045696400,5),(1042,2058397200,4),(1042,2077146000,5),(1042,2090451600,4),(1042,2108595600,5),(1042,2121901200,4),(1042,2140045200,5),(1043,-2069713476,2),(1043,-1692496800,1),(1043,-1680483600,2),(1043,-1662343200,1),(1043,-1650157200,2),(1043,-1632006000,3),(1043,-1618700400,4),(1043,-1612659600,6),(1043,-1604278800,5),(1043,-1585519200,6),(1043,-1574038800,5),(1043,-1552258800,6),(1043,-1539997200,5),(1043,-1520550000,6),(1043,-1507510800,5),(1043,-1490572800,6),(1043,-1473642000,5),(1043,-1459119600,6),(1043,-1444006800,5),(1043,-1427673600,6),(1043,-1411866000,5),(1043,-1396224000,6),(1043,-1379293200,5),(1043,-1364774400,6),(1043,-1348448400,5),(1043,-1333324800,6),(1043,-1316394000,5),(1043,-1301270400,6),(1043,-1284339600,5),(1043,-1269813600,7),(1043,-1253484000,8),(1043,-1238364000,7),(1043,-1221429600,8),(1043,-1206914400,7),(1043,-1191189600,8),(1043,-1175464800,7),(1043,-1160344800,8),(1043,-1143410400,7),(1043,-1127685600,8),(1043,-1111960800,7),(1043,-1096840800,8),(1043,-1080511200,7),(1043,-1063576800,8),(1043,-1049061600,7),(1043,-1033336800,8),(1043,-1017612000,7),(1043,-1002492000,8),(1043,-986162400,7),(1043,-969228000,8),(1043,-950479200,7),(1043,-942012000,8),(1043,-935186400,11),(1043,-857257200,9),(1043,-844556400,10),(1043,-828226800,9),(1043,-812502000,10),(1043,-797986800,2),(1043,-781052400,3),(1043,-766623600,4),(1043,-745455600,3),(1043,-733273200,4),(1043,220921200,2),(1043,228877200,12),(1043,243997200,13),(1043,260326800,12),(1043,276051600,13),(1043,291776400,12),(1043,307501200,13),(1043,323830800,12),(1043,338950800,13),(1043,354675600,12),(1043,370400400,13),(1043,386125200,12),(1043,401850000,13),(1043,417574800,12),(1043,433299600,13),(1043,449024400,12),(1043,465354000,13),(1043,481078800,12),(1043,496803600,13),(1043,512528400,12),(1043,528253200,13),(1043,543978000,12),(1043,559702800,13),(1043,575427600,12),(1043,591152400,13),(1043,606877200,12),(1043,622602000,13),(1043,638326800,12),(1043,654656400,13),(1043,670381200,12),(1043,686106000,13),(1043,701830800,12),(1043,717555600,13),(1043,733280400,12),(1043,749005200,13),(1043,764730000,12),(1043,780454800,13),(1043,796179600,12),(1043,811904400,13),(1043,828234000,12),(1043,846378000,13),(1043,859683600,12),(1043,877827600,13),(1043,891133200,12),(1043,909277200,13),(1043,922582800,12),(1043,941331600,13),(1043,954032400,12),(1043,972781200,13),(1043,985482000,12),(1043,1004230800,13),(1043,1017536400,12),(1043,1035680400,13),(1043,1048986000,12),(1043,1067130000,13),(1043,1080435600,12),(1043,1099184400,13),(1043,1111885200,12),(1043,1130634000,13),(1043,1143334800,12),(1043,1162083600,13),(1043,1174784400,12),(1043,1193533200,13),(1043,1206838800,12),(1043,1224982800,13),(1043,1238288400,12),(1043,1256432400,13),(1043,1269738000,12),(1043,1288486800,13),(1043,1301187600,12),(1043,1319936400,13),(1043,1332637200,12),(1043,1351386000,13),(1043,1364691600,12),(1043,1382835600,13),(1043,1396141200,12),(1043,1414285200,13),(1043,1427590800,12),(1043,1445734800,13),(1043,1459040400,12),(1043,1477789200,13),(1043,1490490000,12),(1043,1509238800,13),(1043,1521939600,12),(1043,1540688400,13),(1043,1553994000,12),(1043,1572138000,13),(1043,1585443600,12),(1043,1603587600,13),(1043,1616893200,12),(1043,1635642000,13),(1043,1648342800,12),(1043,1667091600,13),(1043,1679792400,12),(1043,1698541200,13),(1043,1711846800,12),(1043,1729990800,13),(1043,1743296400,12),(1043,1761440400,13),(1043,1774746000,12),(1043,1792890000,13),(1043,1806195600,12),(1043,1824944400,13),(1043,1837645200,12),(1043,1856394000,13),(1043,1869094800,12),(1043,1887843600,13),(1043,1901149200,12),(1043,1919293200,13),(1043,1932598800,12),(1043,1950742800,13),(1043,1964048400,12),(1043,1982797200,13),(1043,1995498000,12),(1043,2014246800,13),(1043,2026947600,12),(1043,2045696400,13),(1043,2058397200,12),(1043,2077146000,13),(1043,2090451600,12),(1043,2108595600,13),(1043,2121901200,12),(1043,2140045200,13),(1044,-1631926800,0),(1044,-1616889600,1),(1044,-1601168400,0),(1044,-1585353600,1),(1044,-1442451600,0),(1044,-1427673600,1),(1044,-1379293200,0),(1044,-1364774400,1),(1044,-1348448400,0),(1044,-1333324800,1),(1044,-1316390400,0),(1044,-1301270400,1),(1044,-1284339600,0),(1044,-1269820800,1),(1044,-1026954000,0),(1044,-1017619200,1),(1044,-1001898000,0),(1044,-999482400,2),(1044,-986090400,0),(1044,-954115200,1),(1044,-940208400,5),(1044,-873079200,4),(1044,-862621200,5),(1044,-842839200,4),(1044,-828320400,5),(1044,-811389600,4),(1044,-796870800,5),(1044,-779940000,4),(1044,-765421200,5),(1044,-748490400,4),(1044,-733971600,5),(1044,-652327200,4),(1044,-639018000,5),(1044,135122400,4),(1044,150246000,5),(1044,166572000,4),(1044,181695600,5),(1044,196812000,4),(1044,212540400,5),(1044,228866400,4),(1044,243990000,5),(1044,260326800,6),(1044,276051600,7),(1044,283993200,5),(1044,291776400,8),(1044,307501200,9),(1044,323830800,8),(1044,338950800,9),(1044,354675600,8),(1044,370400400,9),(1044,386125200,8),(1044,401850000,9),(1044,417574800,8),(1044,433299600,9),(1044,449024400,8),(1044,465354000,9),(1044,481078800,8),(1044,496803600,9),(1044,512528400,8),(1044,528253200,9),(1044,543978000,8),(1044,559702800,9),(1044,575427600,8),(1044,591152400,9),(1044,606877200,8),(1044,622602000,9),(1044,638326800,8),(1044,654656400,9),(1044,670381200,8),(1044,686106000,9),(1044,701830800,8),(1044,717555600,9),(1044,733280400,8),(1044,749005200,9),(1044,764730000,8),(1044,780454800,9),(1044,796179600,8),(1044,811904400,9),(1044,828234000,8),(1044,846378000,9),(1044,859683600,8),(1044,877827600,9),(1044,891133200,8),(1044,909277200,9),(1044,922582800,8),(1044,941331600,9),(1044,954032400,8),(1044,972781200,9),(1044,985482000,8),(1044,1004230800,9),(1044,1017536400,8),(1044,1035680400,9),(1044,1048986000,8),(1044,1067130000,9),(1044,1080435600,8),(1044,1099184400,9),(1044,1111885200,8),(1044,1130634000,9),(1044,1143334800,8),(1044,1162083600,9),(1044,1174784400,8),(1044,1193533200,9),(1044,1206838800,8),(1044,1224982800,9),(1044,1238288400,8),(1044,1256432400,9),(1044,1269738000,8),(1044,1288486800,9),(1044,1301187600,8),(1044,1319936400,9),(1044,1332637200,8),(1044,1351386000,9),(1044,1364691600,8),(1044,1382835600,9),(1044,1396141200,8),(1044,1414285200,9),(1044,1427590800,8),(1044,1445734800,9),(1044,1459040400,8),(1044,1477789200,9),(1044,1490490000,8),(1044,1509238800,9),(1044,1521939600,8),(1044,1540688400,9),(1044,1553994000,8),(1044,1572138000,9),(1044,1585443600,8),(1044,1603587600,9),(1044,1616893200,8),(1044,1635642000,9),(1044,1648342800,8),(1044,1667091600,9),(1044,1679792400,8),(1044,1698541200,9),(1044,1711846800,8),(1044,1729990800,9),(1044,1743296400,8),(1044,1761440400,9),(1044,1774746000,8),(1044,1792890000,9),(1044,1806195600,8),(1044,1824944400,9),(1044,1837645200,8),(1044,1856394000,9),(1044,1869094800,8),(1044,1887843600,9),(1044,1901149200,8),(1044,1919293200,9),(1044,1932598800,8),(1044,1950742800,9),(1044,1964048400,8),(1044,1982797200,9),(1044,1995498000,8),(1044,2014246800,9),(1044,2026947600,8),(1044,2045696400,9),(1044,2058397200,8),(1044,2077146000,9),(1044,2090451600,8),(1044,2108595600,9),(1044,2121901200,8),(1044,2140045200,9),(1045,-1690765200,0),(1045,-1680487200,1),(1045,-1664758800,0),(1045,-1648951200,1),(1045,-1635123600,0),(1045,-1616896800,1),(1045,-1604278800,0),(1045,-1585533600,1),(1045,-1571014800,0),(1045,-1555293600,1),(1045,-932432400,0),(1045,-857257200,2),(1045,-844556400,3),(1045,-828226800,2),(1045,-812588400,3),(1045,-798073200,2),(1045,-781052400,0),(1045,-766717200,1),(1045,-750898800,3),(1045,-733359600,2),(1045,-719456400,3),(1045,-701917200,2),(1045,-689209200,3),(1045,-670460400,2),(1045,-114051600,3),(1045,-103168800,1),(1045,-81997200,3),(1045,-71715600,2),(1045,-50547600,3),(1045,-40266000,2),(1045,-18493200,3),(1045,-8211600,2),(1045,12956400,3),(1045,23238000,2),(1045,43801200,3),(1045,54687600,2),(1045,75855600,3),(1045,86742000,2),(1045,102380400,3),(1045,118105200,2),(1045,135730800,3),(1045,148518000,2),(1045,167187600,0),(1045,180489600,1),(1045,198637200,0),(1045,211939200,1),(1045,230086800,0),(1045,243388800,1),(1045,261536400,0),(1045,274838400,1),(1045,292986000,0),(1045,306288000,1),(1045,323312400,0),(1045,338342400,1),(1045,354675600,4),(1045,370400400,5),(1045,386125200,4),(1045,401850000,5),(1045,417574800,4),(1045,433299600,5),(1045,449024400,4),(1045,465354000,5),(1045,481078800,4),(1045,496803600,5),(1045,512528400,4),(1045,528253200,5),(1045,543978000,4),(1045,559702800,5),(1045,575427600,4),(1045,591152400,5),(1045,606877200,4),(1045,622602000,5),(1045,638326800,4),(1045,654656400,5),(1045,670381200,4),(1045,686106000,5),(1045,701830800,4),(1045,717555600,5),(1045,733280400,4),(1045,749005200,5),(1045,764730000,4),(1045,780454800,5),(1045,796179600,4),(1045,811904400,5),(1045,828234000,4),(1045,846378000,5),(1045,859683600,4),(1045,877827600,5),(1045,891133200,4),(1045,909277200,5),(1045,922582800,4),(1045,941331600,5),(1045,954032400,4),(1045,972781200,5),(1045,985482000,4),(1045,1004230800,5),(1045,1017536400,4),(1045,1035680400,5),(1045,1048986000,4),(1045,1067130000,5),(1045,1080435600,4),(1045,1099184400,5),(1045,1111885200,4),(1045,1130634000,5),(1045,1143334800,4),(1045,1162083600,5),(1045,1174784400,4),(1045,1193533200,5),(1045,1206838800,4),(1045,1224982800,5),(1045,1238288400,4),(1045,1256432400,5),(1045,1269738000,4),(1045,1288486800,5),(1045,1301187600,4),(1045,1319936400,5),(1045,1332637200,4),(1045,1351386000,5),(1045,1364691600,4),(1045,1382835600,5),(1045,1396141200,4),(1045,1414285200,5),(1045,1427590800,4),(1045,1445734800,5),(1045,1459040400,4),(1045,1477789200,5),(1045,1490490000,4),(1045,1509238800,5),(1045,1521939600,4),(1045,1540688400,5),(1045,1553994000,4),(1045,1572138000,5),(1045,1585443600,4),(1045,1603587600,5),(1045,1616893200,4),(1045,1635642000,5),(1045,1648342800,4),(1045,1667091600,5),(1045,1679792400,4),(1045,1698541200,5),(1045,1711846800,4),(1045,1729990800,5),(1045,1743296400,4),(1045,1761440400,5),(1045,1774746000,4),(1045,1792890000,5),(1045,1806195600,4),(1045,1824944400,5),(1045,1837645200,4),(1045,1856394000,5),(1045,1869094800,4),(1045,1887843600,5),(1045,1901149200,4),(1045,1919293200,5),(1045,1932598800,4),(1045,1950742800,5),(1045,1964048400,4),(1045,1982797200,5),(1045,1995498000,4),(1045,2014246800,5),(1045,2026947600,4),(1045,2045696400,5),(1045,2058397200,4),(1045,2077146000,5),(1045,2090451600,4),(1045,2108595600,5),(1045,2121901200,4),(1045,2140045200,5),(1046,-1535938789,2),(1046,-875671200,1),(1046,-859773600,2),(1046,354672000,1),(1046,370396800,2),(1046,386121600,1),(1046,401846400,2),(1046,417574800,3),(1046,433299600,4),(1046,449024400,3),(1046,465354000,4),(1046,481078800,3),(1046,496803600,4),(1046,512528400,3),(1046,528253200,4),(1046,543978000,3),(1046,559702800,4),(1046,575427600,3),(1046,591152400,4),(1046,606877200,3),(1046,622602000,4),(1046,638326800,3),(1046,654656400,4),(1046,670381200,3),(1046,686106000,4),(1046,701830800,3),(1046,717555600,4),(1046,733280400,3),(1046,749005200,4),(1046,764730000,3),(1046,780454800,4),(1046,796179600,3),(1046,811904400,4),(1046,828234000,3),(1046,846378000,4),(1046,859683600,3),(1046,877827600,4),(1046,891133200,3),(1046,909277200,4),(1046,922582800,3),(1046,941331600,4),(1046,954032400,3),(1046,972781200,4),(1046,985482000,3),(1046,1004230800,4),(1046,1017536400,3),(1046,1035680400,4),(1046,1048986000,3),(1046,1067130000,4),(1046,1080435600,3),(1046,1099184400,4),(1046,1111885200,3),(1046,1130634000,4),(1046,1143334800,3),(1046,1162083600,4),(1046,1174784400,3),(1046,1193533200,4),(1046,1206838800,3),(1046,1224982800,4),(1046,1238288400,3),(1046,1256432400,4),(1046,1269738000,3),(1046,1288486800,4),(1046,1301187600,3),(1046,1319936400,4),(1046,1332637200,3),(1046,1351386000,4),(1046,1364691600,3),(1046,1382835600,4),(1046,1396141200,3),(1046,1414285200,4),(1046,1427590800,3),(1046,1445734800,4),(1046,1459040400,3),(1046,1477789200,4),(1046,1490490000,3),(1046,1509238800,4),(1046,1521939600,3),(1046,1540688400,4),(1046,1553994000,3),(1046,1572138000,4),(1046,1585443600,3),(1046,1603587600,4),(1046,1616893200,3),(1046,1635642000,4),(1046,1648342800,3),(1046,1667091600,4),(1046,1679792400,3),(1046,1698541200,4),(1046,1711846800,3),(1046,1729990800,4),(1046,1743296400,3),(1046,1761440400,4),(1046,1774746000,3),(1046,1792890000,4),(1046,1806195600,3),(1046,1824944400,4),(1046,1837645200,3),(1046,1856394000,4),(1046,1869094800,3),(1046,1887843600,4),(1046,1901149200,3),(1046,1919293200,4),(1046,1932598800,3),(1046,1950742800,4),(1046,1964048400,3),(1046,1982797200,4),(1046,1995498000,3),(1046,2014246800,4),(1046,2026947600,3),(1046,2045696400,4),(1046,2058397200,3),(1046,2077146000,4),(1046,2090451600,3),(1046,2108595600,4),(1046,2121901200,3),(1046,2140045200,4),(1047,-1441158600,1),(1047,-1247536800,2),(1047,-899780400,5),(1047,-857257200,3),(1047,-844556400,4),(1047,-828226800,3),(1047,-812502000,4),(1047,-804650400,2),(1047,354920400,6),(1047,370728000,2),(1047,386456400,6),(1047,402264000,2),(1047,417992400,6),(1047,433800000,2),(1047,449614800,6),(1047,465346800,7),(1047,481071600,8),(1047,496796400,7),(1047,512521200,8),(1047,528246000,7),(1047,543970800,8),(1047,559695600,7),(1047,575420400,8),(1047,591145200,7),(1047,606870000,8),(1047,622594800,7),(1047,631141200,2),(1047,670374000,9),(1047,686102400,10),(1047,701827200,9),(1047,717552000,10),(1047,733276800,9),(1047,749001600,10),(1047,764726400,9),(1047,780451200,10),(1047,796176000,9),(1047,811900800,10),(1047,828230400,9),(1047,846374400,10),(1047,859680000,9),(1047,877824000,10),(1047,891129600,9),(1047,909273600,10),(1047,922579200,9),(1047,941328000,10),(1047,954028800,9),(1047,972777600,10),(1047,985478400,9),(1047,1004227200,10),(1047,1017532800,9),(1047,1035676800,10),(1047,1048982400,9),(1047,1067126400,10),(1047,1080432000,9),(1047,1099180800,10),(1047,1111881600,9),(1047,1130630400,10),(1047,1143331200,9),(1047,1162080000,10),(1047,1174780800,9),(1047,1193529600,10),(1047,1206835200,9),(1047,1224979200,10),(1047,1238284800,9),(1047,1256428800,10),(1047,1269734400,9),(1047,1288483200,10),(1047,1301184000,11),(1048,-1855958961,5),(1048,-1689814800,1),(1048,-1680397200,2),(1048,-1665363600,1),(1048,-1648342800,2),(1048,-1635123600,1),(1048,-1616893200,2),(1048,-1604278800,1),(1048,-1585443600,2),(1048,-1574038800,1),(1048,-1552266000,2),(1048,-1539997200,1),(1048,-1520557200,2),(1048,-1507510800,1),(1048,-1490576400,2),(1048,-1470618000,1),(1048,-1459126800,2),(1048,-1444006800,1),(1048,-1427677200,2),(1048,-1411952400,1),(1048,-1396227600,2),(1048,-1379293200,1),(1048,-1364778000,2),(1048,-1348448400,1),(1048,-1333328400,2),(1048,-1316394000,1),(1048,-1301274000,2),(1048,-1284339600,1),(1048,-1269824400,2),(1048,-1253494800,1),(1048,-1238374800,2),(1048,-1221440400,1),(1048,-1206925200,2),(1048,-1191200400,1),(1048,-1175475600,2),(1048,-1160355600,1),(1048,-1143421200,2),(1048,-1127696400,1),(1048,-1111971600,2),(1048,-1096851600,1),(1048,-1080522000,2),(1048,-1063587600,1),(1048,-1049072400,2),(1048,-1033347600,1),(1048,-1017622800,2),(1048,-1002502800,1),(1048,-986173200,2),(1048,-969238800,1),(1048,-950490000,2),(1048,-942012000,3),(1048,-904438800,4),(1048,-891136800,3),(1048,-877827600,4),(1048,-857257200,3),(1048,-844556400,4),(1048,-828226800,3),(1048,-812502000,4),(1048,-796266000,3),(1048,-781052400,4),(1048,-766623600,7),(1048,196819200,6),(1048,212540400,7),(1048,228877200,8),(1048,243997200,9),(1048,260326800,8),(1048,276051600,9),(1048,291776400,8),(1048,307501200,9),(1048,323830800,8),(1048,338950800,9),(1048,354675600,8),(1048,370400400,9),(1048,386125200,8),(1048,401850000,9),(1048,417574800,8),(1048,433299600,9),(1048,449024400,8),(1048,465354000,9),(1048,481078800,8),(1048,496803600,9),(1048,512528400,8),(1048,528253200,9),(1048,543978000,8),(1048,559702800,9),(1048,575427600,8),(1048,591152400,9),(1048,606877200,8),(1048,622602000,9),(1048,638326800,8),(1048,654656400,9),(1048,670381200,8),(1048,686106000,9),(1048,701830800,8),(1048,717555600,9),(1048,733280400,8),(1048,749005200,9),(1048,764730000,8),(1048,780454800,9),(1048,796179600,8),(1048,811904400,9),(1048,828234000,8),(1048,846378000,9),(1048,859683600,8),(1048,877827600,9),(1048,891133200,8),(1048,909277200,9),(1048,922582800,8),(1048,941331600,9),(1048,954032400,8),(1048,972781200,9),(1048,985482000,8),(1048,1004230800,9),(1048,1017536400,8),(1048,1035680400,9),(1048,1048986000,8),(1048,1067130000,9),(1048,1080435600,8),(1048,1099184400,9),(1048,1111885200,8),(1048,1130634000,9),(1048,1143334800,8),(1048,1162083600,9),(1048,1174784400,8),(1048,1193533200,9),(1048,1206838800,8),(1048,1224982800,9),(1048,1238288400,8),(1048,1256432400,9),(1048,1269738000,8),(1048,1288486800,9),(1048,1301187600,8),(1048,1319936400,9),(1048,1332637200,8),(1048,1351386000,9),(1048,1364691600,8),(1048,1382835600,9),(1048,1396141200,8),(1048,1414285200,9),(1048,1427590800,8),(1048,1445734800,9),(1048,1459040400,8),(1048,1477789200,9),(1048,1490490000,8),(1048,1509238800,9),(1048,1521939600,8),(1048,1540688400,9),(1048,1553994000,8),(1048,1572138000,9),(1048,1585443600,8),(1048,1603587600,9),(1048,1616893200,8),(1048,1635642000,9),(1048,1648342800,8),(1048,1667091600,9),(1048,1679792400,8),(1048,1698541200,9),(1048,1711846800,8),(1048,1729990800,9),(1048,1743296400,8),(1048,1761440400,9),(1048,1774746000,8),(1048,1792890000,9),(1048,1806195600,8),(1048,1824944400,9),(1048,1837645200,8),(1048,1856394000,9),(1048,1869094800,8),(1048,1887843600,9),(1048,1901149200,8),(1048,1919293200,9),(1048,1932598800,8),(1048,1950742800,9),(1048,1964048400,8),(1048,1982797200,9),(1048,1995498000,8),(1048,2014246800,9),(1048,2026947600,8),(1048,2045696400,9),(1048,2058397200,8),(1048,2077146000,9),(1048,2090451600,8),(1048,2108595600,9),(1048,2121901200,8),(1048,2140045200,9),(1049,-1688265017,2),(1049,-1656819079,1),(1049,-1641353479,2),(1049,-1627965079,3),(1049,-1618716679,1),(1049,-1596429079,3),(1049,-1593820800,4),(1049,-1589860800,5),(1049,-1542427200,6),(1049,-1539493200,7),(1049,-1525323600,6),(1049,-1522728000,5),(1049,-1491188400,8),(1049,-1247536800,5),(1049,354920400,6),(1049,370728000,5),(1049,386456400,6),(1049,402264000,5),(1049,417992400,6),(1049,433800000,5),(1049,449614800,6),(1049,465346800,9),(1049,481071600,10),(1049,496796400,9),(1049,512521200,10),(1049,528246000,9),(1049,543970800,10),(1049,559695600,9),(1049,575420400,10),(1049,591145200,9),(1049,606870000,10),(1049,622594800,9),(1049,638319600,10),(1049,654649200,9),(1049,670374000,11),(1049,686102400,12),(1049,695779200,9),(1049,701823600,10),(1049,717548400,9),(1049,733273200,10),(1049,748998000,9),(1049,764722800,10),(1049,780447600,9),(1049,796172400,10),(1049,811897200,9),(1049,828226800,10),(1049,846370800,9),(1049,859676400,10),(1049,877820400,9),(1049,891126000,10),(1049,909270000,9),(1049,922575600,10),(1049,941324400,9),(1049,954025200,10),(1049,972774000,9),(1049,985474800,10),(1049,1004223600,9),(1049,1017529200,10),(1049,1035673200,9),(1049,1048978800,10),(1049,1067122800,9),(1049,1080428400,10),(1049,1099177200,9),(1049,1111878000,10),(1049,1130626800,9),(1049,1143327600,10),(1049,1162076400,9),(1049,1174777200,10),(1049,1193526000,9),(1049,1206831600,10),(1049,1224975600,9),(1049,1238281200,10),(1049,1256425200,9),(1049,1269730800,10),(1049,1288479600,9),(1049,1301180400,13),(1049,1414274400,9),(1050,-1518920008,2),(1050,166572000,1),(1050,182293200,2),(1050,200959200,1),(1050,213829200,2),(1050,228866400,1),(1050,243982800,2),(1050,260316000,1),(1050,276123600,2),(1050,291765600,1),(1050,307486800,2),(1050,323820000,1),(1050,338936400,2),(1050,354664800,1),(1050,370386000,2),(1050,386114400,1),(1050,401835600,2),(1050,417564000,1),(1050,433285200,2),(1050,449013600,1),(1050,465339600,2),(1050,481068000,1),(1050,496789200,2),(1050,512517600,1),(1050,528238800,2),(1050,543967200,1),(1050,559688400,2),(1050,575416800,1),(1050,591138000,2),(1050,606866400,1),(1050,622587600,2),(1050,638316000,1),(1050,654642000,2),(1050,670370400,1),(1050,686091600,2),(1050,701820000,1),(1050,717541200,2),(1050,733269600,1),(1050,748990800,2),(1050,764719200,1),(1050,780440400,2),(1050,796168800,1),(1050,811890000,2),(1050,828223200,1),(1050,843944400,2),(1050,859672800,1),(1050,875394000,2),(1050,891122400,1),(1050,909277200,3),(1050,922582800,4),(1050,941331600,3),(1050,954032400,4),(1050,972781200,3),(1050,985482000,4),(1050,1004230800,3),(1050,1017536400,4),(1050,1035680400,3),(1050,1048986000,4),(1050,1067130000,3),(1050,1080435600,4),(1050,1099184400,3),(1050,1111885200,4),(1050,1130634000,3),(1050,1143334800,4),(1050,1162083600,3),(1050,1174784400,4),(1050,1193533200,3),(1050,1206838800,4),(1050,1224982800,3),(1050,1238288400,4),(1050,1256432400,3),(1050,1269738000,4),(1050,1288486800,3),(1050,1301187600,4),(1050,1319936400,3),(1050,1332637200,4),(1050,1351386000,3),(1050,1364691600,4),(1050,1382835600,3),(1050,1396141200,4),(1050,1414285200,3),(1050,1427590800,4),(1050,1445734800,3),(1050,1459040400,4),(1050,1477789200,3),(1050,1490490000,4),(1050,1509238800,3),(1050,1521939600,4),(1050,1540688400,3),(1050,1553994000,4),(1050,1572138000,3),(1050,1585443600,4),(1050,1603587600,3),(1050,1616893200,4),(1050,1635642000,3),(1050,1648342800,4),(1050,1667091600,3),(1050,1679792400,4),(1050,1698541200,3),(1050,1711846800,4),(1050,1729990800,3),(1050,1743296400,4),(1050,1761440400,3),(1050,1774746000,4),(1050,1792890000,3),(1050,1806195600,4),(1050,1824944400,3),(1050,1837645200,4),(1050,1856394000,3),(1050,1869094800,4),(1050,1887843600,3),(1050,1901149200,4),(1050,1919293200,3),(1050,1932598800,4),(1050,1950742800,3),(1050,1964048400,4),(1050,1982797200,3),(1050,1995498000,4),(1050,2014246800,3),(1050,2026947600,4),(1050,2045696400,3),(1050,2058397200,4),(1050,2077146000,3),(1050,2090451600,4),(1050,2108595600,3),(1050,2121901200,4),(1050,2140045200,3),(1051,-1691884800,0),(1051,-1680573600,1),(1051,-927511200,0),(1051,-857257200,2),(1051,-844556400,3),(1051,-828226800,2),(1051,-812502000,3),(1051,-796777200,2),(1051,-781052400,3),(1051,-765327600,2),(1051,-340844400,3),(1051,-324514800,2),(1051,-308790000,3),(1051,-293065200,2),(1051,-277340400,3),(1051,-261615600,2),(1051,-245890800,3),(1051,-230166000,2),(1051,-214441200,3),(1051,-198716400,2),(1051,-182991600,3),(1051,-166662000,2),(1051,-147913200,3),(1051,-135212400,2),(1051,315529200,1),(1051,323830800,4),(1051,338950800,5),(1051,354675600,4),(1051,370400400,5),(1051,386125200,4),(1051,401850000,5),(1051,417574800,4),(1051,433299600,5),(1051,449024400,4),(1051,465354000,5),(1051,481078800,4),(1051,496803600,5),(1051,512528400,4),(1051,528253200,5),(1051,543978000,4),(1051,559702800,5),(1051,575427600,4),(1051,591152400,5),(1051,606877200,4),(1051,622602000,5),(1051,638326800,4),(1051,654656400,5),(1051,670381200,4),(1051,686106000,5),(1051,701830800,4),(1051,717555600,5),(1051,733280400,4),(1051,749005200,5),(1051,764730000,4),(1051,780454800,5),(1051,796179600,4),(1051,811904400,5),(1051,828234000,4),(1051,846378000,5),(1051,859683600,4),(1051,877827600,5),(1051,891133200,4),(1051,909277200,5),(1051,922582800,4),(1051,941331600,5),(1051,954032400,4),(1051,972781200,5),(1051,985482000,4),(1051,1004230800,5),(1051,1017536400,4),(1051,1035680400,5),(1051,1048986000,4),(1051,1067130000,5),(1051,1080435600,4),(1051,1099184400,5),(1051,1111885200,4),(1051,1130634000,5),(1051,1143334800,4),(1051,1162083600,5),(1051,1174784400,4),(1051,1193533200,5),(1051,1206838800,4),(1051,1224982800,5),(1051,1238288400,4),(1051,1256432400,5),(1051,1269738000,4),(1051,1288486800,5),(1051,1301187600,4),(1051,1319936400,5),(1051,1332637200,4),(1051,1351386000,5),(1051,1364691600,4),(1051,1382835600,5),(1051,1396141200,4),(1051,1414285200,5),(1051,1427590800,4),(1051,1445734800,5),(1051,1459040400,4),(1051,1477789200,5),(1051,1490490000,4),(1051,1509238800,5),(1051,1521939600,4),(1051,1540688400,5),(1051,1553994000,4),(1051,1572138000,5),(1051,1585443600,4),(1051,1603587600,5),(1051,1616893200,4),(1051,1635642000,5),(1051,1648342800,4),(1051,1667091600,5),(1051,1679792400,4),(1051,1698541200,5),(1051,1711846800,4),(1051,1729990800,5),(1051,1743296400,4),(1051,1761440400,5),(1051,1774746000,4),(1051,1792890000,5),(1051,1806195600,4),(1051,1824944400,5),(1051,1837645200,4),(1051,1856394000,5),(1051,1869094800,4),(1051,1887843600,5),(1051,1901149200,4),(1051,1919293200,5),(1051,1932598800,4),(1051,1950742800,5),(1051,1964048400,4),(1051,1982797200,5),(1051,1995498000,4),(1051,2014246800,5),(1051,2026947600,4),(1051,2045696400,5),(1051,2058397200,4),(1051,2077146000,5),(1051,2090451600,4),(1051,2108595600,5),(1051,2121901200,4),(1051,2140045200,5),(1052,-1855958901,4),(1052,-1689814800,1),(1052,-1680397200,2),(1052,-1665363600,1),(1052,-1648342800,2),(1052,-1635123600,1),(1052,-1616893200,2),(1052,-1604278800,1),(1052,-1585443600,2),(1052,-1574038800,1),(1052,-1552266000,2),(1052,-1539997200,1),(1052,-1520557200,2),(1052,-1507510800,1),(1052,-1490576400,2),(1052,-1470618000,1),(1052,-1459126800,2),(1052,-1444006800,1),(1052,-1427677200,2),(1052,-1411952400,1),(1052,-1396227600,2),(1052,-1379293200,1),(1052,-1364778000,2),(1052,-1348448400,1),(1052,-1333328400,2),(1052,-1316394000,1),(1052,-1301274000,2),(1052,-1284339600,1),(1052,-1269824400,2),(1052,-1253494800,1),(1052,-1238374800,2),(1052,-1221440400,1),(1052,-1206925200,2),(1052,-1191200400,1),(1052,-1175475600,2),(1052,-1160355600,1),(1052,-1143421200,2),(1052,-1127696400,1),(1052,-1111971600,2),(1052,-1096851600,1),(1052,-1080522000,2),(1052,-1063587600,1),(1052,-1049072400,2),(1052,-1033347600,1),(1052,-1017622800,2),(1052,-1002502800,1),(1052,-986173200,2),(1052,-969238800,1),(1052,-950490000,2),(1052,-942012000,3),(1052,-932436000,7),(1052,-857257200,5),(1052,-844556400,6),(1052,-828226800,5),(1052,-812502000,6),(1052,-800071200,8),(1052,-796266000,3),(1052,-781052400,8),(1052,-766623600,9),(1052,196819200,7),(1052,212540400,9),(1052,228877200,10),(1052,243997200,11),(1052,260326800,10),(1052,276051600,11),(1052,291776400,10),(1052,307501200,11),(1052,323830800,10),(1052,338950800,11),(1052,354675600,10),(1052,370400400,11),(1052,386125200,10),(1052,401850000,11),(1052,417574800,10),(1052,433299600,11),(1052,449024400,10),(1052,465354000,11),(1052,481078800,10),(1052,496803600,11),(1052,512528400,10),(1052,528253200,11),(1052,543978000,10),(1052,559702800,11),(1052,575427600,10),(1052,591152400,11),(1052,606877200,10),(1052,622602000,11),(1052,638326800,10),(1052,654656400,11),(1052,670381200,10),(1052,686106000,11),(1052,701830800,10),(1052,717555600,11),(1052,733280400,10),(1052,749005200,11),(1052,764730000,10),(1052,780454800,11),(1052,796179600,10),(1052,811904400,11),(1052,828234000,10),(1052,846378000,11),(1052,859683600,10),(1052,877827600,11),(1052,891133200,10),(1052,909277200,11),(1052,922582800,10),(1052,941331600,11),(1052,954032400,10),(1052,972781200,11),(1052,985482000,10),(1052,1004230800,11),(1052,1017536400,10),(1052,1035680400,11),(1052,1048986000,10),(1052,1067130000,11),(1052,1080435600,10),(1052,1099184400,11),(1052,1111885200,10),(1052,1130634000,11),(1052,1143334800,10),(1052,1162083600,11),(1052,1174784400,10),(1052,1193533200,11),(1052,1206838800,10),(1052,1224982800,11),(1052,1238288400,10),(1052,1256432400,11),(1052,1269738000,10),(1052,1288486800,11),(1052,1301187600,10),(1052,1319936400,11),(1052,1332637200,10),(1052,1351386000,11),(1052,1364691600,10),(1052,1382835600,11),(1052,1396141200,10),(1052,1414285200,11),(1052,1427590800,10),(1052,1445734800,11),(1052,1459040400,10),(1052,1477789200,11),(1052,1490490000,10),(1052,1509238800,11),(1052,1521939600,10),(1052,1540688400,11),(1052,1553994000,10),(1052,1572138000,11),(1052,1585443600,10),(1052,1603587600,11),(1052,1616893200,10),(1052,1635642000,11),(1052,1648342800,10),(1052,1667091600,11),(1052,1679792400,10),(1052,1698541200,11),(1052,1711846800,10),(1052,1729990800,11),(1052,1743296400,10),(1052,1761440400,11),(1052,1774746000,10),(1052,1792890000,11),(1052,1806195600,10),(1052,1824944400,11),(1052,1837645200,10),(1052,1856394000,11),(1052,1869094800,10),(1052,1887843600,11),(1052,1901149200,10),(1052,1919293200,11),(1052,1932598800,10),(1052,1950742800,11),(1052,1964048400,10),(1052,1982797200,11),(1052,1995498000,10),(1052,2014246800,11),(1052,2026947600,10),(1052,2045696400,11),(1052,2058397200,10),(1052,2077146000,11),(1052,2090451600,10),(1052,2108595600,11),(1052,2121901200,10),(1052,2140045200,11),(1053,-905824800,3),(1053,-857257200,1),(1053,-844556400,2),(1053,-828226800,1),(1053,-812502000,2),(1053,-796777200,1),(1053,-788922000,0),(1053,-777942000,2),(1053,-766623600,1),(1053,407199600,0),(1053,417574800,4),(1053,433299600,5),(1053,449024400,4),(1053,465354000,5),(1053,481078800,4),(1053,496803600,5),(1053,512528400,4),(1053,528253200,5),(1053,543978000,4),(1053,559702800,5),(1053,575427600,4),(1053,591152400,5),(1053,606877200,4),(1053,622602000,5),(1053,638326800,4),(1053,654656400,5),(1053,670381200,4),(1053,686106000,5),(1053,701830800,4),(1053,717555600,5),(1053,733280400,4),(1053,749005200,5),(1053,764730000,4),(1053,780454800,5),(1053,796179600,4),(1053,811904400,5),(1053,828234000,4),(1053,846378000,5),(1053,859683600,4),(1053,877827600,5),(1053,891133200,4),(1053,909277200,5),(1053,922582800,4),(1053,941331600,5),(1053,954032400,4),(1053,972781200,5),(1053,985482000,4),(1053,1004230800,5),(1053,1017536400,4),(1053,1035680400,5),(1053,1048986000,4),(1053,1067130000,5),(1053,1080435600,4),(1053,1099184400,5),(1053,1111885200,4),(1053,1130634000,5),(1053,1143334800,4),(1053,1162083600,5),(1053,1174784400,4),(1053,1193533200,5),(1053,1206838800,4),(1053,1224982800,5),(1053,1238288400,4),(1053,1256432400,5),(1053,1269738000,4),(1053,1288486800,5),(1053,1301187600,4),(1053,1319936400,5),(1053,1332637200,4),(1053,1351386000,5),(1053,1364691600,4),(1053,1382835600,5),(1053,1396141200,4),(1053,1414285200,5),(1053,1427590800,4),(1053,1445734800,5),(1053,1459040400,4),(1053,1477789200,5),(1053,1490490000,4),(1053,1509238800,5),(1053,1521939600,4),(1053,1540688400,5),(1053,1553994000,4),(1053,1572138000,5),(1053,1585443600,4),(1053,1603587600,5),(1053,1616893200,4),(1053,1635642000,5),(1053,1648342800,4),(1053,1667091600,5),(1053,1679792400,4),(1053,1698541200,5),(1053,1711846800,4),(1053,1729990800,5),(1053,1743296400,4),(1053,1761440400,5),(1053,1774746000,4),(1053,1792890000,5),(1053,1806195600,4),(1053,1824944400,5),(1053,1837645200,4),(1053,1856394000,5),(1053,1869094800,4),(1053,1887843600,5),(1053,1901149200,4),(1053,1919293200,5),(1053,1932598800,4),(1053,1950742800,5),(1053,1964048400,4),(1053,1982797200,5),(1053,1995498000,4),(1053,2014246800,5),(1053,2026947600,4),(1053,2045696400,5),(1053,2058397200,4),(1053,2077146000,5),(1053,2090451600,4),(1053,2108595600,5),(1053,2121901200,4),(1053,2140045200,5),(1054,-1693706400,0),(1054,-1680483600,1),(1054,-1663455600,2),(1054,-1650150000,3),(1054,-1632006000,2),(1054,-1618700400,3),(1054,-938905200,2),(1054,-857257200,3),(1054,-844556400,2),(1054,-828226800,3),(1054,-812502000,2),(1054,-796777200,3),(1054,-781052400,2),(1054,-777866400,0),(1054,-765327600,3),(1054,-746578800,2),(1054,-733359600,3),(1054,-728517600,4),(1054,-721260000,1),(1054,-716425200,2),(1054,-701910000,3),(1054,-684975600,2),(1054,-670460400,3),(1054,-654217200,2),(1054,-639010800,3),(1054,283993200,1),(1054,291776400,5),(1054,307501200,6),(1054,323830800,5),(1054,338950800,6),(1054,354675600,5),(1054,370400400,6),(1054,386125200,5),(1054,401850000,6),(1054,417574800,5),(1054,433299600,6),(1054,449024400,5),(1054,465354000,6),(1054,481078800,5),(1054,496803600,6),(1054,512528400,5),(1054,528253200,6),(1054,543978000,5),(1054,559702800,6),(1054,575427600,5),(1054,591152400,6),(1054,606877200,5),(1054,622602000,6),(1054,638326800,5),(1054,654656400,6),(1054,670381200,5),(1054,686106000,6),(1054,701830800,5),(1054,717555600,6),(1054,733280400,5),(1054,749005200,6),(1054,764730000,5),(1054,780454800,6),(1054,796179600,5),(1054,811904400,6),(1054,828234000,5),(1054,846378000,6),(1054,859683600,5),(1054,877827600,6),(1054,891133200,5),(1054,909277200,6),(1054,922582800,5),(1054,941331600,6),(1054,954032400,5),(1054,972781200,6),(1054,985482000,5),(1054,1004230800,6),(1054,1017536400,5),(1054,1035680400,6),(1054,1048986000,5),(1054,1067130000,6),(1054,1080435600,5),(1054,1099184400,6),(1054,1111885200,5),(1054,1130634000,6),(1054,1143334800,5),(1054,1162083600,6),(1054,1174784400,5),(1054,1193533200,6),(1054,1206838800,5),(1054,1224982800,6),(1054,1238288400,5),(1054,1256432400,6),(1054,1269738000,5),(1054,1288486800,6),(1054,1301187600,5),(1054,1319936400,6),(1054,1332637200,5),(1054,1351386000,6),(1054,1364691600,5),(1054,1382835600,6),(1054,1396141200,5),(1054,1414285200,6),(1054,1427590800,5),(1054,1445734800,6),(1054,1459040400,5),(1054,1477789200,6),(1054,1490490000,5),(1054,1509238800,6),(1054,1521939600,5),(1054,1540688400,6),(1054,1553994000,5),(1054,1572138000,6),(1054,1585443600,5),(1054,1603587600,6),(1054,1616893200,5),(1054,1635642000,6),(1054,1648342800,5),(1054,1667091600,6),(1054,1679792400,5),(1054,1698541200,6),(1054,1711846800,5),(1054,1729990800,6),(1054,1743296400,5),(1054,1761440400,6),(1054,1774746000,5),(1054,1792890000,6),(1054,1806195600,5),(1054,1824944400,6),(1054,1837645200,5),(1054,1856394000,6),(1054,1869094800,5),(1054,1887843600,6),(1054,1901149200,5),(1054,1919293200,6),(1054,1932598800,5),(1054,1950742800,6),(1054,1964048400,5),(1054,1982797200,6),(1054,1995498000,5),(1054,2014246800,6),(1054,2026947600,5),(1054,2045696400,6),(1054,2058397200,5),(1054,2077146000,6),(1054,2090451600,5),(1054,2108595600,6),(1054,2121901200,5),(1054,2140045200,6),(1055,-1632008194,1),(1055,-1618702594,0),(1055,-1601681794,1),(1055,-1597275394,0),(1055,-1377308194,2),(1055,-928029600,3),(1055,-899521200,6),(1055,-857257200,4),(1055,-844556400,5),(1055,-828226800,4),(1055,-812502000,5),(1055,-796777200,4),(1055,-795834000,3),(1055,354920400,7),(1055,370728000,3),(1055,386456400,7),(1055,402264000,3),(1055,417992400,7),(1055,433800000,3),(1055,449614800,7),(1055,465346800,8),(1055,481071600,9),(1055,496796400,8),(1055,512521200,9),(1055,528246000,8),(1055,543970800,9),(1055,559695600,8),(1055,575420400,9),(1055,591145200,8),(1055,606870000,10),(1055,622598400,11),(1055,638323200,10),(1055,654652800,11),(1055,670377600,10),(1055,686102400,11),(1055,701827200,10),(1055,717552000,11),(1055,733276800,10),(1055,749001600,11),(1055,764726400,10),(1055,780451200,11),(1055,796176000,10),(1055,811900800,11),(1055,828230400,10),(1055,843955200,11),(1055,853797600,2),(1055,859683600,12),(1055,877827600,13),(1055,891133200,12),(1055,909277200,13),(1055,922582800,12),(1055,941331600,13),(1055,951775200,2),(1055,985482000,12),(1055,1004230800,13),(1055,1017536400,12),(1055,1035680400,13),(1055,1048986000,12),(1055,1067130000,13),(1055,1080435600,12),(1055,1099184400,13),(1055,1111885200,12),(1055,1130634000,13),(1055,1143334800,12),(1055,1162083600,13),(1055,1174784400,12),(1055,1193533200,13),(1055,1206838800,12),(1055,1224982800,13),(1055,1238288400,12),(1055,1256432400,13),(1055,1269738000,12),(1055,1288486800,13),(1055,1301187600,12),(1055,1319936400,13),(1055,1332637200,12),(1055,1351386000,13),(1055,1364691600,12),(1055,1382835600,13),(1055,1396141200,12),(1055,1414285200,13),(1055,1427590800,12),(1055,1445734800,13),(1055,1459040400,12),(1055,1477789200,13),(1055,1490490000,12),(1055,1509238800,13),(1055,1521939600,12),(1055,1540688400,13),(1055,1553994000,12),(1055,1572138000,13),(1055,1585443600,12),(1055,1603587600,13),(1055,1616893200,12),(1055,1635642000,13),(1055,1648342800,12),(1055,1667091600,13),(1055,1679792400,12),(1055,1698541200,13),(1055,1711846800,12),(1055,1729990800,13),(1055,1743296400,12),(1055,1761440400,13),(1055,1774746000,12),(1055,1792890000,13),(1055,1806195600,12),(1055,1824944400,13),(1055,1837645200,12),(1055,1856394000,13),(1055,1869094800,12),(1055,1887843600,13),(1055,1901149200,12),(1055,1919293200,13),(1055,1932598800,12),(1055,1950742800,13),(1055,1964048400,12),(1055,1982797200,13),(1055,1995498000,12),(1055,2014246800,13),(1055,2026947600,12),(1055,2045696400,13),(1055,2058397200,12),(1055,2077146000,13),(1055,2090451600,12),(1055,2108595600,13),(1055,2121901200,12),(1055,2140045200,13),(1056,-1690765200,0),(1056,-1680487200,1),(1056,-1664758800,0),(1056,-1648951200,1),(1056,-1635123600,0),(1056,-1616896800,1),(1056,-1604278800,0),(1056,-1585533600,1),(1056,-1571014800,0),(1056,-1555293600,1),(1056,-932432400,0),(1056,-857257200,2),(1056,-844556400,3),(1056,-830311200,0),(1056,-828226800,2),(1056,-812502000,3),(1056,-807156000,0),(1056,-798073200,2),(1056,-781052400,0),(1056,-766717200,1),(1056,-750898800,3),(1056,-733359600,2),(1056,-719456400,3),(1056,-701917200,2),(1056,-689209200,3),(1056,-670460400,2),(1056,-114051600,3),(1056,-103168800,1),(1056,-81997200,3),(1056,-71715600,2),(1056,-50547600,3),(1056,-40266000,2),(1056,-18493200,3),(1056,-8211600,2),(1056,12956400,3),(1056,23238000,2),(1056,43801200,3),(1056,54687600,2),(1056,75855600,3),(1056,86742000,2),(1056,107910000,3),(1056,118191600,2),(1056,138754800,3),(1056,149641200,2),(1056,170809200,3),(1056,181090800,2),(1056,202258800,3),(1056,212540400,2),(1056,233103600,3),(1056,243990000,2),(1056,265158000,3),(1056,276044400,2),(1056,296607600,3),(1056,307494000,2),(1056,315529200,1),(1056,323830800,4),(1056,338950800,5),(1056,354675600,4),(1056,370400400,5),(1056,386125200,4),(1056,401850000,5),(1056,417574800,4),(1056,433299600,5),(1056,449024400,4),(1056,465354000,5),(1056,481078800,4),(1056,496803600,5),(1056,512528400,4),(1056,528253200,5),(1056,543978000,4),(1056,559702800,5),(1056,575427600,4),(1056,591152400,5),(1056,606877200,4),(1056,622602000,5),(1056,638326800,4),(1056,654656400,5),(1056,670381200,4),(1056,686106000,5),(1056,701830800,4),(1056,717555600,5),(1056,733280400,4),(1056,749005200,5),(1056,764730000,4),(1056,780454800,5),(1056,796179600,4),(1056,811904400,5),(1056,828234000,4),(1056,846378000,5),(1056,859683600,4),(1056,877827600,5),(1056,891133200,4),(1056,909277200,5),(1056,922582800,4),(1056,941331600,5),(1056,954032400,4),(1056,972781200,5),(1056,985482000,4),(1056,1004230800,5),(1056,1017536400,4),(1056,1035680400,5),(1056,1048986000,4),(1056,1067130000,5),(1056,1080435600,4),(1056,1099184400,5),(1056,1111885200,4),(1056,1130634000,5),(1056,1143334800,4),(1056,1162083600,5),(1056,1174784400,4),(1056,1193533200,5),(1056,1206838800,4),(1056,1224982800,5),(1056,1238288400,4),(1056,1256432400,5),(1056,1269738000,4),(1056,1288486800,5),(1056,1301187600,4),(1056,1319936400,5),(1056,1332637200,4),(1056,1351386000,5),(1056,1364691600,4),(1056,1382835600,5),(1056,1396141200,4),(1056,1414285200,5),(1056,1427590800,4),(1056,1445734800,5),(1056,1459040400,4),(1056,1477789200,5),(1056,1490490000,4),(1056,1509238800,5),(1056,1521939600,4),(1056,1540688400,5),(1056,1553994000,4),(1056,1572138000,5),(1056,1585443600,4),(1056,1603587600,5),(1056,1616893200,4),(1056,1635642000,5),(1056,1648342800,4),(1056,1667091600,5),(1056,1679792400,4),(1056,1698541200,5),(1056,1711846800,4),(1056,1729990800,5),(1056,1743296400,4),(1056,1761440400,5),(1056,1774746000,4),(1056,1792890000,5),(1056,1806195600,4),(1056,1824944400,5),(1056,1837645200,4),(1056,1856394000,5),(1056,1869094800,4),(1056,1887843600,5),(1056,1901149200,4),(1056,1919293200,5),(1056,1932598800,4),(1056,1950742800,5),(1056,1964048400,4),(1056,1982797200,5),(1056,1995498000,4),(1056,2014246800,5),(1056,2026947600,4),(1056,2045696400,5),(1056,2058397200,4),(1056,2077146000,5),(1056,2090451600,4),(1056,2108595600,5),(1056,2121901200,4),(1056,2140045200,5),(1057,-1593820800,1),(1057,-1247540400,2),(1057,354916800,3),(1057,370724400,2),(1057,386452800,3),(1057,402260400,2),(1057,417988800,3),(1057,433796400,2),(1057,449611200,3),(1057,465343200,4),(1057,481068000,5),(1057,496792800,4),(1057,512517600,5),(1057,528242400,4),(1057,543967200,5),(1057,559692000,4),(1057,575416800,5),(1057,591141600,4),(1057,606866400,6),(1057,622594800,7),(1057,638319600,6),(1057,654649200,7),(1057,670374000,8),(1057,686102400,7),(1057,687916800,2),(1057,701820000,5),(1057,717544800,4),(1057,733269600,5),(1057,748994400,4),(1057,764719200,5),(1057,780444000,4),(1057,796168800,5),(1057,811893600,4),(1057,828223200,5),(1057,846367200,4),(1057,859672800,5),(1057,877816800,4),(1057,891122400,5),(1057,909266400,4),(1057,922572000,5),(1057,941320800,4),(1057,954021600,5),(1057,972770400,4),(1057,985471200,5),(1057,1004220000,4),(1057,1017525600,5),(1057,1035669600,4),(1057,1048975200,5),(1057,1067119200,4),(1057,1080424800,5),(1057,1099173600,4),(1057,1111874400,5),(1057,1130623200,4),(1057,1143324000,5),(1057,1162072800,4),(1057,1174773600,5),(1057,1193522400,4),(1057,1206828000,5),(1057,1224972000,4),(1057,1238277600,5),(1057,1256421600,4),(1057,1269727200,6),(1057,1288479600,7),(1057,1301180400,4),(1058,-1690765200,0),(1058,-1680487200,1),(1058,-1664758800,0),(1058,-1648951200,1),(1058,-1635123600,0),(1058,-1616896800,1),(1058,-1604278800,0),(1058,-1585533600,1),(1058,-1571014800,0),(1058,-1555293600,1),(1058,-932432400,0),(1058,-857257200,2),(1058,-844556400,3),(1058,-830311200,0),(1058,-828226800,2),(1058,-812502000,3),(1058,-807156000,0),(1058,-798073200,2),(1058,-781052400,0),(1058,-766717200,1),(1058,-750898800,3),(1058,-733359600,2),(1058,-719456400,3),(1058,-701917200,2),(1058,-689209200,3),(1058,-670460400,2),(1058,-114051600,3),(1058,-103168800,1),(1058,-81997200,3),(1058,-71715600,2),(1058,-50547600,3),(1058,-40266000,2),(1058,-18493200,3),(1058,-8211600,2),(1058,12956400,3),(1058,23238000,2),(1058,43801200,3),(1058,54687600,2),(1058,75855600,3),(1058,86742000,2),(1058,107910000,3),(1058,118191600,2),(1058,138754800,3),(1058,149641200,2),(1058,170809200,3),(1058,181090800,2),(1058,202258800,3),(1058,212540400,2),(1058,233103600,3),(1058,243990000,2),(1058,265158000,3),(1058,276044400,2),(1058,296607600,3),(1058,307494000,2),(1058,315529200,1),(1058,323830800,4),(1058,338950800,5),(1058,354675600,4),(1058,370400400,5),(1058,386125200,4),(1058,401850000,5),(1058,417574800,4),(1058,433299600,5),(1058,449024400,4),(1058,465354000,5),(1058,481078800,4),(1058,496803600,5),(1058,512528400,4),(1058,528253200,5),(1058,543978000,4),(1058,559702800,5),(1058,575427600,4),(1058,591152400,5),(1058,606877200,4),(1058,622602000,5),(1058,638326800,4),(1058,654656400,5),(1058,670381200,4),(1058,686106000,5),(1058,701830800,4),(1058,717555600,5),(1058,733280400,4),(1058,749005200,5),(1058,764730000,4),(1058,780454800,5),(1058,796179600,4),(1058,811904400,5),(1058,828234000,4),(1058,846378000,5),(1058,859683600,4),(1058,877827600,5),(1058,891133200,4),(1058,909277200,5),(1058,922582800,4),(1058,941331600,5),(1058,954032400,4),(1058,972781200,5),(1058,985482000,4),(1058,1004230800,5),(1058,1017536400,4),(1058,1035680400,5),(1058,1048986000,4),(1058,1067130000,5),(1058,1080435600,4),(1058,1099184400,5),(1058,1111885200,4),(1058,1130634000,5),(1058,1143334800,4),(1058,1162083600,5),(1058,1174784400,4),(1058,1193533200,5),(1058,1206838800,4),(1058,1224982800,5),(1058,1238288400,4),(1058,1256432400,5),(1058,1269738000,4),(1058,1288486800,5),(1058,1301187600,4),(1058,1319936400,5),(1058,1332637200,4),(1058,1351386000,5),(1058,1364691600,4),(1058,1382835600,5),(1058,1396141200,4),(1058,1414285200,5),(1058,1427590800,4),(1058,1445734800,5),(1058,1459040400,4),(1058,1477789200,5),(1058,1490490000,4),(1058,1509238800,5),(1058,1521939600,4),(1058,1540688400,5),(1058,1553994000,4),(1058,1572138000,5),(1058,1585443600,4),(1058,1603587600,5),(1058,1616893200,4),(1058,1635642000,5),(1058,1648342800,4),(1058,1667091600,5),(1058,1679792400,4),(1058,1698541200,5),(1058,1711846800,4),(1058,1729990800,5),(1058,1743296400,4),(1058,1761440400,5),(1058,1774746000,4),(1058,1792890000,5),(1058,1806195600,4),(1058,1824944400,5),(1058,1837645200,4),(1058,1856394000,5),(1058,1869094800,4),(1058,1887843600,5),(1058,1901149200,4),(1058,1919293200,5),(1058,1932598800,4),(1058,1950742800,5),(1058,1964048400,4),(1058,1982797200,5),(1058,1995498000,4),(1058,2014246800,5),(1058,2026947600,4),(1058,2045696400,5),(1058,2058397200,4),(1058,2077146000,5),(1058,2090451600,4),(1058,2108595600,5),(1058,2121901200,4),(1058,2140045200,5),(1059,-905824800,3),(1059,-857257200,1),(1059,-844556400,2),(1059,-828226800,1),(1059,-812502000,2),(1059,-796777200,1),(1059,-788922000,0),(1059,-777942000,2),(1059,-766623600,1),(1059,407199600,0),(1059,417574800,4),(1059,433299600,5),(1059,449024400,4),(1059,465354000,5),(1059,481078800,4),(1059,496803600,5),(1059,512528400,4),(1059,528253200,5),(1059,543978000,4),(1059,559702800,5),(1059,575427600,4),(1059,591152400,5),(1059,606877200,4),(1059,622602000,5),(1059,638326800,4),(1059,654656400,5),(1059,670381200,4),(1059,686106000,5),(1059,701830800,4),(1059,717555600,5),(1059,733280400,4),(1059,749005200,5),(1059,764730000,4),(1059,780454800,5),(1059,796179600,4),(1059,811904400,5),(1059,828234000,4),(1059,846378000,5),(1059,859683600,4),(1059,877827600,5),(1059,891133200,4),(1059,909277200,5),(1059,922582800,4),(1059,941331600,5),(1059,954032400,4),(1059,972781200,5),(1059,985482000,4),(1059,1004230800,5),(1059,1017536400,4),(1059,1035680400,5),(1059,1048986000,4),(1059,1067130000,5),(1059,1080435600,4),(1059,1099184400,5),(1059,1111885200,4),(1059,1130634000,5),(1059,1143334800,4),(1059,1162083600,5),(1059,1174784400,4),(1059,1193533200,5),(1059,1206838800,4),(1059,1224982800,5),(1059,1238288400,4),(1059,1256432400,5),(1059,1269738000,4),(1059,1288486800,5),(1059,1301187600,4),(1059,1319936400,5),(1059,1332637200,4),(1059,1351386000,5),(1059,1364691600,4),(1059,1382835600,5),(1059,1396141200,4),(1059,1414285200,5),(1059,1427590800,4),(1059,1445734800,5),(1059,1459040400,4),(1059,1477789200,5),(1059,1490490000,4),(1059,1509238800,5),(1059,1521939600,4),(1059,1540688400,5),(1059,1553994000,4),(1059,1572138000,5),(1059,1585443600,4),(1059,1603587600,5),(1059,1616893200,4),(1059,1635642000,5),(1059,1648342800,4),(1059,1667091600,5),(1059,1679792400,4),(1059,1698541200,5),(1059,1711846800,4),(1059,1729990800,5),(1059,1743296400,4),(1059,1761440400,5),(1059,1774746000,4),(1059,1792890000,5),(1059,1806195600,4),(1059,1824944400,5),(1059,1837645200,4),(1059,1856394000,5),(1059,1869094800,4),(1059,1887843600,5),(1059,1901149200,4),(1059,1919293200,5),(1059,1932598800,4),(1059,1950742800,5),(1059,1964048400,4),(1059,1982797200,5),(1059,1995498000,4),(1059,2014246800,5),(1059,2026947600,4),(1059,2045696400,5),(1059,2058397200,4),(1059,2077146000,5),(1059,2090451600,4),(1059,2108595600,5),(1059,2121901200,4),(1059,2140045200,5),(1060,-1593820800,1),(1060,-1247540400,3),(1060,354916800,2),(1060,370724400,3),(1060,386452800,2),(1060,402260400,3),(1060,417988800,2),(1060,433796400,3),(1060,449611200,2),(1060,465343200,4),(1060,481068000,5),(1060,496792800,4),(1060,512517600,5),(1060,528242400,4),(1060,543967200,5),(1060,559692000,4),(1060,575416800,6),(1060,591145200,7),(1060,606870000,6),(1060,622594800,7),(1060,638319600,6),(1060,654649200,7),(1060,670374000,4),(1060,701820000,6),(1060,717548400,7),(1060,733273200,6),(1060,748998000,7),(1060,764722800,6),(1060,780447600,7),(1060,796172400,6),(1060,811897200,7),(1060,828226800,6),(1060,846370800,7),(1060,859676400,6),(1060,877820400,7),(1060,891126000,6),(1060,909270000,7),(1060,922575600,6),(1060,941324400,7),(1060,954025200,6),(1060,972774000,7),(1060,985474800,6),(1060,1004223600,7),(1060,1017529200,6),(1060,1035673200,7),(1060,1048978800,6),(1060,1067122800,7),(1060,1080428400,6),(1060,1099177200,7),(1060,1111878000,6),(1060,1130626800,7),(1060,1143327600,6),(1060,1162076400,7),(1060,1174777200,6),(1060,1193526000,7),(1060,1206831600,6),(1060,1224975600,7),(1060,1238281200,6),(1060,1256425200,7),(1060,1269730800,6),(1060,1288479600,7),(1060,1301180400,4),(1060,1414274400,7),(1060,1480806000,4),(1061,-1441160160,1),(1061,-1247536800,2),(1061,-888894000,5),(1061,-857257200,3),(1061,-844556400,4),(1061,-828226800,3),(1061,-812502000,4),(1061,-811648800,2),(1061,354920400,6),(1061,370728000,2),(1061,386456400,6),(1061,402264000,2),(1061,417992400,6),(1061,433800000,2),(1061,449614800,6),(1061,465346800,7),(1061,481071600,8),(1061,496796400,7),(1061,512521200,8),(1061,528246000,7),(1061,543970800,8),(1061,559695600,7),(1061,575420400,8),(1061,591145200,7),(1061,606870000,8),(1061,622594800,7),(1061,631141200,2),(1061,646786800,1),(1061,701820000,9),(1061,717541200,1),(1061,733269600,9),(1061,748990800,1),(1061,764719200,9),(1061,767739600,6),(1061,780436800,2),(1061,796165200,6),(1061,811886400,2),(1061,828219600,8),(1061,846374400,7),(1061,852066000,2),(1061,859683600,10),(1061,877827600,11),(1061,891133200,10),(1061,909277200,11),(1061,922582800,10),(1061,941331600,11),(1061,954032400,10),(1061,972781200,11),(1061,985482000,10),(1061,1004230800,11),(1061,1017536400,10),(1061,1035680400,11),(1061,1048986000,10),(1061,1067130000,11),(1061,1080435600,10),(1061,1099184400,11),(1061,1111885200,10),(1061,1130634000,11),(1061,1143334800,10),(1061,1162083600,11),(1061,1174784400,10),(1061,1193533200,11),(1061,1206838800,10),(1061,1224982800,11),(1061,1238288400,10),(1061,1256432400,11),(1061,1269738000,10),(1061,1288486800,11),(1061,1301187600,10),(1061,1319936400,11),(1061,1332637200,10),(1061,1351386000,11),(1061,1364691600,10),(1061,1382835600,11),(1061,1396137600,12),(1061,1414274400,7),(1062,-905824800,3),(1062,-857257200,1),(1062,-844556400,2),(1062,-828226800,1),(1062,-812502000,2),(1062,-796777200,1),(1062,-788922000,0),(1062,-777942000,2),(1062,-766623600,1),(1062,407199600,0),(1062,417574800,4),(1062,433299600,5),(1062,449024400,4),(1062,465354000,5),(1062,481078800,4),(1062,496803600,5),(1062,512528400,4),(1062,528253200,5),(1062,543978000,4),(1062,559702800,5),(1062,575427600,4),(1062,591152400,5),(1062,606877200,4),(1062,622602000,5),(1062,638326800,4),(1062,654656400,5),(1062,670381200,4),(1062,686106000,5),(1062,701830800,4),(1062,717555600,5),(1062,733280400,4),(1062,749005200,5),(1062,764730000,4),(1062,780454800,5),(1062,796179600,4),(1062,811904400,5),(1062,828234000,4),(1062,846378000,5),(1062,859683600,4),(1062,877827600,5),(1062,891133200,4),(1062,909277200,5),(1062,922582800,4),(1062,941331600,5),(1062,954032400,4),(1062,972781200,5),(1062,985482000,4),(1062,1004230800,5),(1062,1017536400,4),(1062,1035680400,5),(1062,1048986000,4),(1062,1067130000,5),(1062,1080435600,4),(1062,1099184400,5),(1062,1111885200,4),(1062,1130634000,5),(1062,1143334800,4),(1062,1162083600,5),(1062,1174784400,4),(1062,1193533200,5),(1062,1206838800,4),(1062,1224982800,5),(1062,1238288400,4),(1062,1256432400,5),(1062,1269738000,4),(1062,1288486800,5),(1062,1301187600,4),(1062,1319936400,5),(1062,1332637200,4),(1062,1351386000,5),(1062,1364691600,4),(1062,1382835600,5),(1062,1396141200,4),(1062,1414285200,5),(1062,1427590800,4),(1062,1445734800,5),(1062,1459040400,4),(1062,1477789200,5),(1062,1490490000,4),(1062,1509238800,5),(1062,1521939600,4),(1062,1540688400,5),(1062,1553994000,4),(1062,1572138000,5),(1062,1585443600,4),(1062,1603587600,5),(1062,1616893200,4),(1062,1635642000,5),(1062,1648342800,4),(1062,1667091600,5),(1062,1679792400,4),(1062,1698541200,5),(1062,1711846800,4),(1062,1729990800,5),(1062,1743296400,4),(1062,1761440400,5),(1062,1774746000,4),(1062,1792890000,5),(1062,1806195600,4),(1062,1824944400,5),(1062,1837645200,4),(1062,1856394000,5),(1062,1869094800,4),(1062,1887843600,5),(1062,1901149200,4),(1062,1919293200,5),(1062,1932598800,4),(1062,1950742800,5),(1062,1964048400,4),(1062,1982797200,5),(1062,1995498000,4),(1062,2014246800,5),(1062,2026947600,4),(1062,2045696400,5),(1062,2058397200,4),(1062,2077146000,5),(1062,2090451600,4),(1062,2108595600,5),(1062,2121901200,4),(1062,2140045200,5),(1063,-857257200,1),(1063,-844556400,2),(1063,-828226800,1),(1063,-812502000,2),(1063,-796777200,1),(1063,-788922000,3),(1063,-781048800,0),(1063,291762000,4),(1063,307576800,0),(1063,323816400,4),(1063,339026400,0),(1063,355266000,4),(1063,370393200,0),(1063,386715600,4),(1063,401846400,5),(1063,417571200,6),(1063,433296000,5),(1063,449020800,6),(1063,465350400,5),(1063,481075200,6),(1063,496800000,5),(1063,512524800,6),(1063,528249600,5),(1063,543974400,6),(1063,559699200,5),(1063,575424000,6),(1063,591148800,5),(1063,606873600,6),(1063,622598400,5),(1063,638323200,6),(1063,654652800,5),(1063,662680800,0),(1063,670370400,4),(1063,686091600,0),(1063,701820000,4),(1063,717541200,0),(1063,733269600,4),(1063,748990800,0),(1063,764719200,4),(1063,780440400,0),(1063,796168800,4),(1063,811890000,0),(1063,828223200,4),(1063,846363600,0),(1063,859683600,7),(1063,877827600,8),(1063,891133200,7),(1063,909277200,8),(1063,922582800,7),(1063,941331600,8),(1063,954032400,7),(1063,972781200,8),(1063,985482000,7),(1063,1004230800,8),(1063,1017536400,7),(1063,1035680400,8),(1063,1048986000,7),(1063,1067130000,8),(1063,1080435600,7),(1063,1099184400,8),(1063,1111885200,7),(1063,1130634000,8),(1063,1143334800,7),(1063,1162083600,8),(1063,1174784400,7),(1063,1193533200,8),(1063,1206838800,7),(1063,1224982800,8),(1063,1238288400,7),(1063,1256432400,8),(1063,1269738000,7),(1063,1288486800,8),(1063,1301187600,7),(1063,1319936400,8),(1063,1332637200,7),(1063,1351386000,8),(1063,1364691600,7),(1063,1382835600,8),(1063,1396141200,7),(1063,1414285200,8),(1063,1427590800,7),(1063,1445734800,8),(1063,1459040400,7),(1063,1477789200,8),(1063,1490490000,7),(1063,1509238800,8),(1063,1521939600,7),(1063,1540688400,8),(1063,1553994000,7),(1063,1572138000,8),(1063,1585443600,7),(1063,1603587600,8),(1063,1616893200,7),(1063,1635642000,8),(1063,1648342800,7),(1063,1667091600,8),(1063,1679792400,7),(1063,1698541200,8),(1063,1711846800,7),(1063,1729990800,8),(1063,1743296400,7),(1063,1761440400,8),(1063,1774746000,7),(1063,1792890000,8),(1063,1806195600,7),(1063,1824944400,8),(1063,1837645200,7),(1063,1856394000,8),(1063,1869094800,7),(1063,1887843600,8),(1063,1901149200,7),(1063,1919293200,8),(1063,1932598800,7),(1063,1950742800,8),(1063,1964048400,7),(1063,1982797200,8),(1063,1995498000,7),(1063,2014246800,8),(1063,2026947600,7),(1063,2045696400,8),(1063,2058397200,7),(1063,2077146000,8),(1063,2090451600,7),(1063,2108595600,8),(1063,2121901200,7),(1063,2140045200,8),(1064,-1692496800,1),(1064,-1680483600,0),(1064,323830800,2),(1064,338950800,3),(1064,354675600,2),(1064,370400400,3),(1064,386125200,2),(1064,401850000,3),(1064,417574800,2),(1064,433299600,3),(1064,449024400,2),(1064,465354000,3),(1064,481078800,2),(1064,496803600,3),(1064,512528400,2),(1064,528253200,3),(1064,543978000,2),(1064,559702800,3),(1064,575427600,2),(1064,591152400,3),(1064,606877200,2),(1064,622602000,3),(1064,638326800,2),(1064,654656400,3),(1064,670381200,2),(1064,686106000,3),(1064,701830800,2),(1064,717555600,3),(1064,733280400,2),(1064,749005200,3),(1064,764730000,2),(1064,780454800,3),(1064,796179600,2),(1064,811904400,3),(1064,828234000,2),(1064,846378000,3),(1064,859683600,2),(1064,877827600,3),(1064,891133200,2),(1064,909277200,3),(1064,922582800,2),(1064,941331600,3),(1064,954032400,2),(1064,972781200,3),(1064,985482000,2),(1064,1004230800,3),(1064,1017536400,2),(1064,1035680400,3),(1064,1048986000,2),(1064,1067130000,3),(1064,1080435600,2),(1064,1099184400,3),(1064,1111885200,2),(1064,1130634000,3),(1064,1143334800,2),(1064,1162083600,3),(1064,1174784400,2),(1064,1193533200,3),(1064,1206838800,2),(1064,1224982800,3),(1064,1238288400,2),(1064,1256432400,3),(1064,1269738000,2),(1064,1288486800,3),(1064,1301187600,2),(1064,1319936400,3),(1064,1332637200,2),(1064,1351386000,3),(1064,1364691600,2),(1064,1382835600,3),(1064,1396141200,2),(1064,1414285200,3),(1064,1427590800,2),(1064,1445734800,3),(1064,1459040400,2),(1064,1477789200,3),(1064,1490490000,2),(1064,1509238800,3),(1064,1521939600,2),(1064,1540688400,3),(1064,1553994000,2),(1064,1572138000,3),(1064,1585443600,2),(1064,1603587600,3),(1064,1616893200,2),(1064,1635642000,3),(1064,1648342800,2),(1064,1667091600,3),(1064,1679792400,2),(1064,1698541200,3),(1064,1711846800,2),(1064,1729990800,3),(1064,1743296400,2),(1064,1761440400,3),(1064,1774746000,2),(1064,1792890000,3),(1064,1806195600,2),(1064,1824944400,3),(1064,1837645200,2),(1064,1856394000,3),(1064,1869094800,2),(1064,1887843600,3),(1064,1901149200,2),(1064,1919293200,3),(1064,1932598800,2),(1064,1950742800,3),(1064,1964048400,2),(1064,1982797200,3),(1064,1995498000,2),(1064,2014246800,3),(1064,2026947600,2),(1064,2045696400,3),(1064,2058397200,2),(1064,2077146000,3),(1064,2090451600,2),(1064,2108595600,3),(1064,2121901200,2),(1064,2140045200,3),(1065,-1638322740,3),(1065,-1632006000,1),(1065,-1618700400,2),(1065,-1593824400,0),(1065,-1535938740,4),(1065,-927943200,5),(1065,-892954800,6),(1065,-857257200,2),(1065,-844556400,1),(1065,-828226800,2),(1065,-812502000,1),(1065,-797652000,5),(1065,354920400,7),(1065,370728000,5),(1065,386456400,7),(1065,402264000,5),(1065,417992400,7),(1065,433800000,5),(1065,449614800,7),(1065,465346800,8),(1065,481071600,9),(1065,496796400,8),(1065,512521200,9),(1065,528246000,8),(1065,543970800,9),(1065,559695600,8),(1065,575420400,9),(1065,591145200,8),(1065,606870000,10),(1065,622598400,11),(1065,638323200,10),(1065,654652800,11),(1065,670377600,10),(1065,686102400,11),(1065,701827200,10),(1065,717552000,11),(1065,733276800,10),(1065,749001600,11),(1065,764726400,10),(1065,780451200,11),(1065,796176000,10),(1065,811900800,11),(1065,828230400,10),(1065,846374400,11),(1065,859680000,10),(1065,877824000,11),(1065,891129600,10),(1065,906411600,14),(1065,909277200,12),(1065,922582800,13),(1065,941331600,4),(1065,1017536400,13),(1065,1035680400,12),(1065,1048986000,13),(1065,1067130000,12),(1065,1080435600,13),(1065,1099184400,12),(1065,1111885200,13),(1065,1130634000,12),(1065,1143334800,13),(1065,1162083600,12),(1065,1174784400,13),(1065,1193533200,12),(1065,1206838800,13),(1065,1224982800,12),(1065,1238288400,13),(1065,1256432400,12),(1065,1269738000,13),(1065,1288486800,12),(1065,1301187600,13),(1065,1319936400,12),(1065,1332637200,13),(1065,1351386000,12),(1065,1364691600,13),(1065,1382835600,12),(1065,1396141200,13),(1065,1414285200,12),(1065,1427590800,13),(1065,1445734800,12),(1065,1459040400,13),(1065,1477789200,12),(1065,1490490000,13),(1065,1509238800,12),(1065,1521939600,13),(1065,1540688400,12),(1065,1553994000,13),(1065,1572138000,12),(1065,1585443600,13),(1065,1603587600,12),(1065,1616893200,13),(1065,1635642000,12),(1065,1648342800,13),(1065,1667091600,12),(1065,1679792400,13),(1065,1698541200,12),(1065,1711846800,13),(1065,1729990800,12),(1065,1743296400,13),(1065,1761440400,12),(1065,1774746000,13),(1065,1792890000,12),(1065,1806195600,13),(1065,1824944400,12),(1065,1837645200,13),(1065,1856394000,12),(1065,1869094800,13),(1065,1887843600,12),(1065,1901149200,13),(1065,1919293200,12),(1065,1932598800,13),(1065,1950742800,12),(1065,1964048400,13),(1065,1982797200,12),(1065,1995498000,13),(1065,2014246800,12),(1065,2026947600,13),(1065,2045696400,12),(1065,2058397200,13),(1065,2077146000,12),(1065,2090451600,13),(1065,2108595600,12),(1065,2121901200,13),(1065,2140045200,12),(1066,-1767230360,1),(1066,-932346000,2),(1066,-857257200,1),(1066,-844556400,2),(1066,-843519600,1),(1066,136854000,2),(1066,149896800,1),(1066,168130800,2),(1066,181432800,1),(1066,199839600,2),(1066,213141600,1),(1066,231894000,2),(1066,244591200,1),(1066,263257200,2),(1066,276040800,1),(1066,294706800,2),(1066,307490400,1),(1066,326156400,2),(1066,339458400,1),(1066,357087600,2),(1066,370389600,1),(1066,389142000,2),(1066,402444000,1),(1066,419468400,2),(1066,433807200,1),(1066,449622000,2),(1066,465354000,3),(1066,481078800,4),(1066,496803600,3),(1066,512528400,4),(1066,528253200,3),(1066,543978000,4),(1066,559702800,3),(1066,575427600,4),(1066,591152400,3),(1066,606877200,4),(1066,622602000,3),(1066,638326800,4),(1066,654656400,3),(1066,670381200,4),(1066,686106000,3),(1066,701830800,4),(1066,717555600,3),(1066,733280400,4),(1066,749005200,3),(1066,764730000,4),(1066,780454800,3),(1066,796179600,4),(1066,811904400,3),(1066,828234000,4),(1066,846378000,3),(1066,859683600,4),(1066,877827600,3),(1066,891133200,4),(1066,909277200,3),(1066,922582800,4),(1066,941331600,3),(1066,954032400,4),(1066,972781200,3),(1066,985482000,4),(1066,1004230800,3),(1066,1017536400,4),(1066,1035680400,3),(1066,1048986000,4),(1066,1067130000,3),(1066,1080435600,4),(1066,1099184400,3),(1066,1111885200,4),(1066,1130634000,3),(1066,1143334800,4),(1066,1162083600,3),(1066,1174784400,4),(1066,1193533200,3),(1066,1206838800,4),(1066,1224982800,3),(1066,1238288400,4),(1066,1256432400,3),(1066,1269738000,4),(1066,1288486800,3),(1066,1301187600,4),(1066,1319936400,3),(1066,1332637200,4),(1066,1351386000,3),(1066,1364691600,4),(1066,1382835600,3),(1066,1396141200,4),(1066,1414285200,3),(1066,1427590800,4),(1066,1445734800,3),(1066,1459040400,4),(1066,1477789200,3),(1066,1490490000,4),(1066,1509238800,3),(1066,1521939600,4),(1066,1540688400,3),(1066,1553994000,4),(1066,1572138000,3),(1066,1585443600,4),(1066,1603587600,3),(1066,1616893200,4),(1066,1635642000,3),(1066,1648342800,4),(1066,1667091600,3),(1066,1679792400,4),(1066,1698541200,3),(1066,1711846800,4),(1066,1729990800,3),(1066,1743296400,4),(1066,1761440400,3),(1066,1774746000,4),(1066,1792890000,3),(1066,1806195600,4),(1066,1824944400,3),(1066,1837645200,4),(1066,1856394000,3),(1066,1869094800,4),(1066,1887843600,3),(1066,1901149200,4),(1066,1919293200,3),(1066,1932598800,4),(1066,1950742800,3),(1066,1964048400,4),(1066,1982797200,3),(1066,1995498000,4),(1066,2014246800,3),(1066,2026947600,4),(1066,2045696400,3),(1066,2058397200,4),(1066,2077146000,3),(1066,2090451600,4),(1066,2108595600,3),(1066,2121901200,4),(1066,2140045200,3),(1067,-1637114100,1),(1067,-1213148664,4),(1067,-1187056800,2),(1067,-1175479200,3),(1067,-1159754400,2),(1067,-1144029600,3),(1067,-1127700000,2),(1067,-1111975200,3),(1067,-1096250400,2),(1067,-1080525600,3),(1067,-1064800800,2),(1067,-1049076000,3),(1067,-1033351200,2),(1067,-1017626400,3),(1067,-1001901600,2),(1067,-986176800,3),(1067,-970452000,2),(1067,-954727200,3),(1067,-927165600,5),(1067,-898138800,8),(1067,-857257200,6),(1067,-844556400,7),(1067,-828226800,6),(1067,-812502000,7),(1067,-800157600,10),(1067,354920400,9),(1067,370728000,10),(1067,386456400,9),(1067,402264000,10),(1067,417992400,9),(1067,433800000,10),(1067,449614800,9),(1067,465346800,11),(1067,481071600,12),(1067,496796400,11),(1067,512521200,12),(1067,528246000,11),(1067,543970800,12),(1067,559695600,11),(1067,575420400,12),(1067,591145200,11),(1067,606870000,12),(1067,622594800,11),(1067,638319600,12),(1067,641944800,5),(1067,654652800,3),(1067,670377600,2),(1067,686102400,3),(1067,694216800,4),(1067,701820000,5),(1067,717541200,4),(1067,733269600,5),(1067,748990800,4),(1067,764719200,5),(1067,780440400,4),(1067,796168800,5),(1067,811890000,4),(1067,828223200,5),(1067,846363600,4),(1067,859680000,5),(1067,877824000,4),(1067,891129600,5),(1067,909273600,4),(1067,922579200,5),(1067,941328000,4),(1067,954028800,5),(1067,972777600,4),(1067,985478400,5),(1067,1004227200,4),(1067,1017532800,5),(1067,1035676800,4),(1067,1048982400,5),(1067,1067126400,4),(1067,1080432000,5),(1067,1099180800,4),(1067,1111881600,5),(1067,1130630400,4),(1067,1143331200,5),(1067,1162080000,4),(1067,1174780800,5),(1067,1193529600,4),(1067,1206835200,5),(1067,1224979200,4),(1067,1238284800,5),(1067,1256428800,4),(1067,1269734400,5),(1067,1288483200,4),(1067,1301184000,5),(1067,1319932800,4),(1067,1332633600,5),(1067,1351382400,4),(1067,1364688000,5),(1067,1382832000,4),(1067,1396137600,5),(1067,1414281600,4),(1067,1427587200,5),(1067,1445731200,4),(1067,1459036800,5),(1067,1477785600,4),(1067,1490486400,5),(1067,1509235200,4),(1067,1521936000,5),(1067,1540684800,4),(1067,1553990400,5),(1067,1572134400,4),(1067,1585440000,5),(1067,1603584000,4),(1067,1616889600,5),(1067,1635638400,4),(1067,1648339200,5),(1067,1667088000,4),(1067,1679788800,5),(1067,1698537600,4),(1067,1711843200,5),(1067,1729987200,4),(1067,1743292800,5),(1067,1761436800,4),(1067,1774742400,5),(1067,1792886400,4),(1067,1806192000,5),(1067,1824940800,4),(1067,1837641600,5),(1067,1856390400,4),(1067,1869091200,5),(1067,1887840000,4),(1067,1901145600,5),(1067,1919289600,4),(1067,1932595200,5),(1067,1950739200,4),(1067,1964044800,5),(1067,1982793600,4),(1067,1995494400,5),(1067,2014243200,4),(1067,2026944000,5),(1067,2045692800,4),(1067,2058393600,5),(1067,2077142400,4),(1067,2090448000,5),(1067,2108592000,4),(1067,2121897600,5),(1067,2140041600,4),(1068,-1593820800,1),(1068,-1247540400,3),(1068,354916800,2),(1068,370724400,3),(1068,386452800,2),(1068,402260400,3),(1068,417988800,2),(1068,433796400,3),(1068,449611200,2),(1068,465343200,4),(1068,481068000,5),(1068,496792800,4),(1068,512517600,5),(1068,528242400,4),(1068,543967200,5),(1068,559692000,4),(1068,575416800,5),(1068,591141600,4),(1068,606866400,6),(1068,622594800,7),(1068,638319600,6),(1068,654649200,7),(1068,670374000,8),(1068,686102400,9),(1068,695779200,7),(1068,701823600,6),(1068,717548400,7),(1068,733273200,6),(1068,748998000,7),(1068,764722800,6),(1068,780447600,7),(1068,796172400,6),(1068,811897200,7),(1068,828226800,6),(1068,846370800,7),(1068,859676400,6),(1068,877820400,7),(1068,891126000,6),(1068,909270000,7),(1068,922575600,6),(1068,941324400,7),(1068,954025200,6),(1068,972774000,7),(1068,985474800,6),(1068,1004223600,7),(1068,1017529200,6),(1068,1035673200,7),(1068,1048978800,6),(1068,1067122800,7),(1068,1080428400,6),(1068,1099177200,7),(1068,1111878000,6),(1068,1130626800,7),(1068,1143327600,6),(1068,1162076400,7),(1068,1174777200,6),(1068,1193526000,7),(1068,1206831600,6),(1068,1224975600,7),(1068,1238281200,6),(1068,1256425200,7),(1068,1269730800,6),(1068,1288479600,7),(1068,1301180400,4),(1068,1414274400,7),(1068,1459033200,4),(1069,-938905200,1),(1069,-857257200,2),(1069,-844556400,1),(1069,-828226800,2),(1069,-812502000,1),(1069,-796874400,3),(1069,-794714400,0),(1069,-773456400,5),(1069,354920400,4),(1069,370728000,5),(1069,386456400,4),(1069,402264000,5),(1069,417992400,4),(1069,433800000,5),(1069,449614800,4),(1069,465346800,6),(1069,481071600,7),(1069,496796400,6),(1069,512521200,7),(1069,528246000,6),(1069,543970800,7),(1069,559695600,6),(1069,575420400,7),(1069,591145200,6),(1069,606870000,7),(1069,622594800,6),(1069,631141200,5),(1069,646786800,0),(1069,670384800,8),(1069,701820000,9),(1069,717541200,8),(1069,733269600,9),(1069,748990800,8),(1069,764719200,9),(1069,780440400,8),(1069,796179600,10),(1069,811904400,11),(1069,828234000,10),(1069,846378000,11),(1069,859683600,10),(1069,877827600,11),(1069,891133200,10),(1069,909277200,11),(1069,922582800,10),(1069,941331600,11),(1069,954032400,10),(1069,972781200,11),(1069,985482000,10),(1069,1004230800,11),(1069,1017536400,10),(1069,1035680400,11),(1069,1048986000,10),(1069,1067130000,11),(1069,1080435600,10),(1069,1099184400,11),(1069,1111885200,10),(1069,1130634000,11),(1069,1143334800,10),(1069,1162083600,11),(1069,1174784400,10),(1069,1193533200,11),(1069,1206838800,10),(1069,1224982800,11),(1069,1238288400,10),(1069,1256432400,11),(1069,1269738000,10),(1069,1288486800,11),(1069,1301187600,10),(1069,1319936400,11),(1069,1332637200,10),(1069,1351386000,11),(1069,1364691600,10),(1069,1382835600,11),(1069,1396141200,10),(1069,1414285200,11),(1069,1427590800,10),(1069,1445734800,11),(1069,1459040400,10),(1069,1477789200,11),(1069,1490490000,10),(1069,1509238800,11),(1069,1521939600,10),(1069,1540688400,11),(1069,1553994000,10),(1069,1572138000,11),(1069,1585443600,10),(1069,1603587600,11),(1069,1616893200,10),(1069,1635642000,11),(1069,1648342800,10),(1069,1667091600,11),(1069,1679792400,10),(1069,1698541200,11),(1069,1711846800,10),(1069,1729990800,11),(1069,1743296400,10),(1069,1761440400,11),(1069,1774746000,10),(1069,1792890000,11),(1069,1806195600,10),(1069,1824944400,11),(1069,1837645200,10),(1069,1856394000,11),(1069,1869094800,10),(1069,1887843600,11),(1069,1901149200,10),(1069,1919293200,11),(1069,1932598800,10),(1069,1950742800,11),(1069,1964048400,10),(1069,1982797200,11),(1069,1995498000,10),(1069,2014246800,11),(1069,2026947600,10),(1069,2045696400,11),(1069,2058397200,10),(1069,2077146000,11),(1069,2090451600,10),(1069,2108595600,11),(1069,2121901200,10),(1069,2140045200,11),(1070,-904435200,0),(1070,-891129600,1),(1070,-872985600,0),(1070,-859680000,1),(1070,354675600,2),(1070,370400400,3),(1070,386125200,2),(1070,401850000,3),(1070,417574800,2),(1070,433299600,3),(1070,449024400,2),(1070,465354000,3),(1070,481078800,2),(1070,496803600,3),(1070,512528400,2),(1070,528253200,3),(1070,543978000,2),(1070,559702800,3),(1070,575427600,2),(1070,591152400,3),(1070,606877200,2),(1070,622602000,3),(1070,638326800,2),(1070,654656400,3),(1070,670381200,2),(1070,686106000,3),(1070,701830800,2),(1070,717555600,3),(1070,733280400,2),(1070,749005200,3),(1070,764730000,2),(1070,780454800,3),(1070,796179600,2),(1070,811904400,3),(1070,828234000,2),(1070,846378000,3),(1070,859683600,2),(1070,877827600,3),(1070,891133200,2),(1070,909277200,3),(1070,922582800,2),(1070,941331600,3),(1070,954032400,2),(1070,972781200,3),(1070,985482000,2),(1070,1004230800,3),(1070,1017536400,2),(1070,1035680400,3),(1070,1048986000,2),(1070,1067130000,3),(1070,1080435600,2),(1070,1099184400,3),(1070,1111885200,2),(1070,1130634000,3),(1070,1143334800,2),(1070,1162083600,3),(1070,1174784400,2),(1070,1193533200,3),(1070,1206838800,2),(1070,1224982800,3),(1070,1238288400,2),(1070,1256432400,3),(1070,1269738000,2),(1070,1288486800,3),(1070,1301187600,2),(1070,1319936400,3),(1070,1332637200,2),(1070,1351386000,3),(1070,1364691600,2),(1070,1382835600,3),(1070,1396141200,2),(1070,1414285200,3),(1070,1427590800,2),(1070,1445734800,3),(1070,1459040400,2),(1070,1477789200,3),(1070,1490490000,2),(1070,1509238800,3),(1070,1521939600,2),(1070,1540688400,3),(1070,1553994000,2),(1070,1572138000,3),(1070,1585443600,2),(1070,1603587600,3),(1070,1616893200,2),(1070,1635642000,3),(1070,1648342800,2),(1070,1667091600,3),(1070,1679792400,2),(1070,1698541200,3),(1070,1711846800,2),(1070,1729990800,3),(1070,1743296400,2),(1070,1761440400,3),(1070,1774746000,2),(1070,1792890000,3),(1070,1806195600,2),(1070,1824944400,3),(1070,1837645200,2),(1070,1856394000,3),(1070,1869094800,2),(1070,1887843600,3),(1070,1901149200,2),(1070,1919293200,3),(1070,1932598800,2),(1070,1950742800,3),(1070,1964048400,2),(1070,1982797200,3),(1070,1995498000,2),(1070,2014246800,3),(1070,2026947600,2),(1070,2045696400,3),(1070,2058397200,2),(1070,2077146000,3),(1070,2090451600,2),(1070,2108595600,3),(1070,2121901200,2),(1070,2140045200,3),(1071,-1690765200,0),(1071,-1680487200,1),(1071,-1664758800,0),(1071,-1648951200,1),(1071,-1635123600,0),(1071,-1616896800,1),(1071,-1604278800,0),(1071,-1585533600,1),(1071,-1571014800,0),(1071,-1555293600,1),(1071,-932432400,0),(1071,-857257200,2),(1071,-844556400,3),(1071,-830311200,0),(1071,-828226800,2),(1071,-812502000,3),(1071,-807156000,0),(1071,-798073200,2),(1071,-781052400,0),(1071,-766717200,1),(1071,-750898800,3),(1071,-733359600,2),(1071,-719456400,3),(1071,-701917200,2),(1071,-689209200,3),(1071,-670460400,2),(1071,-114051600,3),(1071,-103168800,1),(1071,-81997200,3),(1071,-71715600,2),(1071,-50547600,3),(1071,-40266000,2),(1071,-18493200,3),(1071,-8211600,2),(1071,12956400,3),(1071,23238000,2),(1071,43801200,3),(1071,54687600,2),(1071,75855600,3),(1071,86742000,2),(1071,107910000,3),(1071,118191600,2),(1071,138754800,3),(1071,149641200,2),(1071,170809200,3),(1071,181090800,2),(1071,202258800,3),(1071,212540400,2),(1071,233103600,3),(1071,243990000,2),(1071,265158000,3),(1071,276044400,2),(1071,296607600,3),(1071,307494000,2),(1071,315529200,1),(1071,323830800,4),(1071,338950800,5),(1071,354675600,4),(1071,370400400,5),(1071,386125200,4),(1071,401850000,5),(1071,417574800,4),(1071,433299600,5),(1071,449024400,4),(1071,465354000,5),(1071,481078800,4),(1071,496803600,5),(1071,512528400,4),(1071,528253200,5),(1071,543978000,4),(1071,559702800,5),(1071,575427600,4),(1071,591152400,5),(1071,606877200,4),(1071,622602000,5),(1071,638326800,4),(1071,654656400,5),(1071,670381200,4),(1071,686106000,5),(1071,701830800,4),(1071,717555600,5),(1071,733280400,4),(1071,749005200,5),(1071,764730000,4),(1071,780454800,5),(1071,796179600,4),(1071,811904400,5),(1071,828234000,4),(1071,846378000,5),(1071,859683600,4),(1071,877827600,5),(1071,891133200,4),(1071,909277200,5),(1071,922582800,4),(1071,941331600,5),(1071,954032400,4),(1071,972781200,5),(1071,985482000,4),(1071,1004230800,5),(1071,1017536400,4),(1071,1035680400,5),(1071,1048986000,4),(1071,1067130000,5),(1071,1080435600,4),(1071,1099184400,5),(1071,1111885200,4),(1071,1130634000,5),(1071,1143334800,4),(1071,1162083600,5),(1071,1174784400,4),(1071,1193533200,5),(1071,1206838800,4),(1071,1224982800,5),(1071,1238288400,4),(1071,1256432400,5),(1071,1269738000,4),(1071,1288486800,5),(1071,1301187600,4),(1071,1319936400,5),(1071,1332637200,4),(1071,1351386000,5),(1071,1364691600,4),(1071,1382835600,5),(1071,1396141200,4),(1071,1414285200,5),(1071,1427590800,4),(1071,1445734800,5),(1071,1459040400,4),(1071,1477789200,5),(1071,1490490000,4),(1071,1509238800,5),(1071,1521939600,4),(1071,1540688400,5),(1071,1553994000,4),(1071,1572138000,5),(1071,1585443600,4),(1071,1603587600,5),(1071,1616893200,4),(1071,1635642000,5),(1071,1648342800,4),(1071,1667091600,5),(1071,1679792400,4),(1071,1698541200,5),(1071,1711846800,4),(1071,1729990800,5),(1071,1743296400,4),(1071,1761440400,5),(1071,1774746000,4),(1071,1792890000,5),(1071,1806195600,4),(1071,1824944400,5),(1071,1837645200,4),(1071,1856394000,5),(1071,1869094800,4),(1071,1887843600,5),(1071,1901149200,4),(1071,1919293200,5),(1071,1932598800,4),(1071,1950742800,5),(1071,1964048400,4),(1071,1982797200,5),(1071,1995498000,4),(1071,2014246800,5),(1071,2026947600,4),(1071,2045696400,5),(1071,2058397200,4),(1071,2077146000,5),(1071,2090451600,4),(1071,2108595600,5),(1071,2121901200,4),(1071,2140045200,5),(1072,-1693706400,0),(1072,-1680483600,1),(1072,-1663455600,2),(1072,-1650150000,3),(1072,-1632006000,2),(1072,-1618700400,3),(1072,-1577926800,1),(1072,-1569711600,2),(1072,-1555801200,3),(1072,-938905200,2),(1072,-857257200,3),(1072,-844556400,2),(1072,-828226800,3),(1072,-812502000,2),(1072,-796777200,3),(1072,-781052400,2),(1072,-780188400,3),(1072,-757386000,1),(1072,-748479600,2),(1072,-733359600,3),(1072,-717634800,2),(1072,-701910000,3),(1072,-684975600,2),(1072,-670460400,3),(1072,323823600,0),(1072,338940000,1),(1072,354675600,4),(1072,370400400,5),(1072,386125200,4),(1072,401850000,5),(1072,417574800,4),(1072,433299600,5),(1072,449024400,4),(1072,465354000,5),(1072,481078800,4),(1072,496803600,5),(1072,512528400,4),(1072,528253200,5),(1072,543978000,4),(1072,559702800,5),(1072,575427600,4),(1072,591152400,5),(1072,606877200,4),(1072,622602000,5),(1072,638326800,4),(1072,654656400,5),(1072,670381200,4),(1072,686106000,5),(1072,701830800,4),(1072,717555600,5),(1072,733280400,4),(1072,749005200,5),(1072,764730000,4),(1072,780454800,5),(1072,796179600,4),(1072,811904400,5),(1072,828234000,4),(1072,846378000,5),(1072,859683600,4),(1072,877827600,5),(1072,891133200,4),(1072,909277200,5),(1072,922582800,4),(1072,941331600,5),(1072,954032400,4),(1072,972781200,5),(1072,985482000,4),(1072,1004230800,5),(1072,1017536400,4),(1072,1035680400,5),(1072,1048986000,4),(1072,1067130000,5),(1072,1080435600,4),(1072,1099184400,5),(1072,1111885200,4),(1072,1130634000,5),(1072,1143334800,4),(1072,1162083600,5),(1072,1174784400,4),(1072,1193533200,5),(1072,1206838800,4),(1072,1224982800,5),(1072,1238288400,4),(1072,1256432400,5),(1072,1269738000,4),(1072,1288486800,5),(1072,1301187600,4),(1072,1319936400,5),(1072,1332637200,4),(1072,1351386000,5),(1072,1364691600,4),(1072,1382835600,5),(1072,1396141200,4),(1072,1414285200,5),(1072,1427590800,4),(1072,1445734800,5),(1072,1459040400,4),(1072,1477789200,5),(1072,1490490000,4),(1072,1509238800,5),(1072,1521939600,4),(1072,1540688400,5),(1072,1553994000,4),(1072,1572138000,5),(1072,1585443600,4),(1072,1603587600,5),(1072,1616893200,4),(1072,1635642000,5),(1072,1648342800,4),(1072,1667091600,5),(1072,1679792400,4),(1072,1698541200,5),(1072,1711846800,4),(1072,1729990800,5),(1072,1743296400,4),(1072,1761440400,5),(1072,1774746000,4),(1072,1792890000,5),(1072,1806195600,4),(1072,1824944400,5),(1072,1837645200,4),(1072,1856394000,5),(1072,1869094800,4),(1072,1887843600,5),(1072,1901149200,4),(1072,1919293200,5),(1072,1932598800,4),(1072,1950742800,5),(1072,1964048400,4),(1072,1982797200,5),(1072,1995498000,4),(1072,2014246800,5),(1072,2026947600,4),(1072,2045696400,5),(1072,2058397200,4),(1072,2077146000,5),(1072,2090451600,4),(1072,2108595600,5),(1072,2121901200,4),(1072,2140045200,5),(1073,-1672536240,1),(1073,-1585100136,2),(1073,-1561251600,3),(1073,-1553565600,2),(1073,-928198800,4),(1073,-900126000,7),(1073,-857257200,5),(1073,-844556400,6),(1073,-828226800,5),(1073,-812502000,6),(1073,-802144800,4),(1073,354920400,8),(1073,370728000,4),(1073,386456400,8),(1073,402264000,4),(1073,417992400,8),(1073,433800000,4),(1073,449614800,8),(1073,465346800,9),(1073,481071600,10),(1073,496796400,9),(1073,512521200,10),(1073,528246000,9),(1073,543970800,10),(1073,559695600,9),(1073,575420400,10),(1073,591145200,9),(1073,606870000,11),(1073,622598400,12),(1073,638323200,11),(1073,654652800,12),(1073,670377600,11),(1073,686102400,12),(1073,701827200,11),(1073,717552000,12),(1073,733276800,11),(1073,749001600,12),(1073,764726400,11),(1073,780451200,12),(1073,796176000,11),(1073,811900800,12),(1073,828230400,11),(1073,846374400,12),(1073,859680000,11),(1073,877824000,12),(1073,883605600,3),(1073,891133200,13),(1073,909277200,14),(1073,922582800,13),(1073,941331600,15),(1073,1041372000,3),(1073,1048986000,16),(1073,1067130000,15),(1073,1080435600,16),(1073,1099184400,15),(1073,1111885200,16),(1073,1130634000,15),(1073,1143334800,16),(1073,1162083600,15),(1073,1174784400,16),(1073,1193533200,15),(1073,1206838800,16),(1073,1224982800,15),(1073,1238288400,16),(1073,1256432400,15),(1073,1269738000,16),(1073,1288486800,15),(1073,1301187600,16),(1073,1319936400,15),(1073,1332637200,16),(1073,1351386000,15),(1073,1364691600,16),(1073,1382835600,15),(1073,1396141200,16),(1073,1414285200,15),(1073,1427590800,16),(1073,1445734800,15),(1073,1459040400,16),(1073,1477789200,15),(1073,1490490000,16),(1073,1509238800,15),(1073,1521939600,16),(1073,1540688400,15),(1073,1553994000,16),(1073,1572138000,15),(1073,1585443600,16),(1073,1603587600,15),(1073,1616893200,16),(1073,1635642000,15),(1073,1648342800,16),(1073,1667091600,15),(1073,1679792400,16),(1073,1698541200,15),(1073,1711846800,16),(1073,1729990800,15),(1073,1743296400,16),(1073,1761440400,15),(1073,1774746000,16),(1073,1792890000,15),(1073,1806195600,16),(1073,1824944400,15),(1073,1837645200,16),(1073,1856394000,15),(1073,1869094800,16),(1073,1887843600,15),(1073,1901149200,16),(1073,1919293200,15),(1073,1932598800,16),(1073,1950742800,15),(1073,1964048400,16),(1073,1982797200,15),(1073,1995498000,16),(1073,2014246800,15),(1073,2026947600,16),(1073,2045696400,15),(1073,2058397200,16),(1073,2077146000,15),(1073,2090451600,16),(1073,2108595600,15),(1073,2121901200,16),(1073,2140045200,15),(1074,-1577761060,1),(1074,-1247540400,2),(1074,354916800,3),(1074,370724400,2),(1074,386452800,3),(1074,402260400,2),(1074,417988800,3),(1074,433796400,2),(1074,449611200,3),(1074,465343200,4),(1074,481068000,5),(1074,496792800,4),(1074,512517600,5),(1074,528242400,4),(1074,543967200,5),(1074,559692000,4),(1074,575416800,6),(1074,591145200,7),(1074,606870000,6),(1074,622594800,7),(1074,638319600,6),(1074,654649200,7),(1074,670374000,4),(1074,701820000,6),(1074,717548400,7),(1074,733273200,6),(1074,748998000,7),(1074,764722800,6),(1074,780447600,7),(1074,796172400,6),(1074,811897200,7),(1074,828226800,6),(1074,846370800,7),(1074,859676400,6),(1074,877820400,7),(1074,891126000,6),(1074,909270000,7),(1074,922575600,6),(1074,941324400,7),(1074,954025200,6),(1074,972774000,7),(1074,985474800,6),(1074,1004223600,7),(1074,1017529200,6),(1074,1035673200,7),(1074,1048978800,6),(1074,1067122800,7),(1074,1080428400,6),(1074,1099177200,7),(1074,1111878000,6),(1074,1130626800,7),(1074,1143327600,6),(1074,1162076400,7),(1074,1174777200,6),(1074,1193526000,7),(1074,1206831600,6),(1074,1224975600,7),(1074,1238281200,6),(1074,1256425200,7),(1074,1269730800,6),(1074,1288479600,7),(1074,1301180400,4),(1074,1414274400,7),(1075,-1717032240,2),(1075,-1693706400,1),(1075,-1680483600,2),(1075,-1663455600,3),(1075,-1650150000,4),(1075,-1632006000,3),(1075,-1618700400,7),(1075,-1600473600,5),(1075,-1587168000,6),(1075,-1501725600,2),(1075,-931734000,1),(1075,-857257200,4),(1075,-844556400,3),(1075,-828226800,4),(1075,-812502000,3),(1075,-796874400,1),(1075,-796608000,2),(1075,-778726800,1),(1075,-762660000,2),(1075,-748486800,3),(1075,-733273200,4),(1075,-715215600,3),(1075,-701910000,4),(1075,-684975600,3),(1075,-670460400,4),(1075,-654130800,3),(1075,-639010800,4),(1075,-397094400,3),(1075,-386812800,4),(1075,-371088000,3),(1075,-355363200,4),(1075,-334195200,3),(1075,-323308800,4),(1075,-307584000,3),(1075,-291859200,4),(1075,-271296000,3),(1075,-260409600,4),(1075,-239846400,3),(1075,-228960000,4),(1075,-208396800,3),(1075,-197510400,4),(1075,-176342400,3),(1075,-166060800,4),(1075,220921200,2),(1075,228873600,3),(1075,243993600,4),(1075,260323200,3),(1075,276048000,4),(1075,291772800,3),(1075,307497600,4),(1075,323827200,3),(1075,338947200,4),(1075,354672000,3),(1075,370396800,4),(1075,386121600,3),(1075,401846400,4),(1075,417571200,3),(1075,433296000,4),(1075,449020800,3),(1075,465350400,4),(1075,481075200,3),(1075,496800000,4),(1075,512524800,3),(1075,528249600,4),(1075,543974400,3),(1075,559699200,4),(1075,567990000,2),(1075,575427600,8),(1075,591152400,9),(1075,606877200,8),(1075,622602000,9),(1075,638326800,8),(1075,654656400,9),(1075,670381200,8),(1075,686106000,9),(1075,701830800,8),(1075,717555600,9),(1075,733280400,8),(1075,749005200,9),(1075,764730000,8),(1075,780454800,9),(1075,796179600,8),(1075,811904400,9),(1075,828234000,8),(1075,846378000,9),(1075,859683600,8),(1075,877827600,9),(1075,891133200,8),(1075,909277200,9),(1075,922582800,8),(1075,941331600,9),(1075,954032400,8),(1075,972781200,9),(1075,985482000,8),(1075,1004230800,9),(1075,1017536400,8),(1075,1035680400,9),(1075,1048986000,8),(1075,1067130000,9),(1075,1080435600,8),(1075,1099184400,9),(1075,1111885200,8),(1075,1130634000,9),(1075,1143334800,8),(1075,1162083600,9),(1075,1174784400,8),(1075,1193533200,9),(1075,1206838800,8),(1075,1224982800,9),(1075,1238288400,8),(1075,1256432400,9),(1075,1269738000,8),(1075,1288486800,9),(1075,1301187600,8),(1075,1319936400,9),(1075,1332637200,8),(1075,1351386000,9),(1075,1364691600,8),(1075,1382835600,9),(1075,1396141200,8),(1075,1414285200,9),(1075,1427590800,8),(1075,1445734800,9),(1075,1459040400,8),(1075,1477789200,9),(1075,1490490000,8),(1075,1509238800,9),(1075,1521939600,8),(1075,1540688400,9),(1075,1553994000,8),(1075,1572138000,9),(1075,1585443600,8),(1075,1603587600,9),(1075,1616893200,8),(1075,1635642000,9),(1075,1648342800,8),(1075,1667091600,9),(1075,1679792400,8),(1075,1698541200,9),(1075,1711846800,8),(1075,1729990800,9),(1075,1743296400,8),(1075,1761440400,9),(1075,1774746000,8),(1075,1792890000,9),(1075,1806195600,8),(1075,1824944400,9),(1075,1837645200,8),(1075,1856394000,9),(1075,1869094800,8),(1075,1887843600,9),(1075,1901149200,8),(1075,1919293200,9),(1075,1932598800,8),(1075,1950742800,9),(1075,1964048400,8),(1075,1982797200,9),(1075,1995498000,8),(1075,2014246800,9),(1075,2026947600,8),(1075,2045696400,9),(1075,2058397200,8),(1075,2077146000,9),(1075,2090451600,8),(1075,2108595600,9),(1075,2121901200,8),(1075,2140045200,9),(1076,-905824800,3),(1076,-857257200,1),(1076,-844556400,2),(1076,-828226800,1),(1076,-812502000,2),(1076,-796777200,1),(1076,-788922000,0),(1076,-777942000,2),(1076,-766623600,1),(1076,407199600,0),(1076,417574800,4),(1076,433299600,5),(1076,449024400,4),(1076,465354000,5),(1076,481078800,4),(1076,496803600,5),(1076,512528400,4),(1076,528253200,5),(1076,543978000,4),(1076,559702800,5),(1076,575427600,4),(1076,591152400,5),(1076,606877200,4),(1076,622602000,5),(1076,638326800,4),(1076,654656400,5),(1076,670381200,4),(1076,686106000,5),(1076,701830800,4),(1076,717555600,5),(1076,733280400,4),(1076,749005200,5),(1076,764730000,4),(1076,780454800,5),(1076,796179600,4),(1076,811904400,5),(1076,828234000,4),(1076,846378000,5),(1076,859683600,4),(1076,877827600,5),(1076,891133200,4),(1076,909277200,5),(1076,922582800,4),(1076,941331600,5),(1076,954032400,4),(1076,972781200,5),(1076,985482000,4),(1076,1004230800,5),(1076,1017536400,4),(1076,1035680400,5),(1076,1048986000,4),(1076,1067130000,5),(1076,1080435600,4),(1076,1099184400,5),(1076,1111885200,4),(1076,1130634000,5),(1076,1143334800,4),(1076,1162083600,5),(1076,1174784400,4),(1076,1193533200,5),(1076,1206838800,4),(1076,1224982800,5),(1076,1238288400,4),(1076,1256432400,5),(1076,1269738000,4),(1076,1288486800,5),(1076,1301187600,4),(1076,1319936400,5),(1076,1332637200,4),(1076,1351386000,5),(1076,1364691600,4),(1076,1382835600,5),(1076,1396141200,4),(1076,1414285200,5),(1076,1427590800,4),(1076,1445734800,5),(1076,1459040400,4),(1076,1477789200,5),(1076,1490490000,4),(1076,1509238800,5),(1076,1521939600,4),(1076,1540688400,5),(1076,1553994000,4),(1076,1572138000,5),(1076,1585443600,4),(1076,1603587600,5),(1076,1616893200,4),(1076,1635642000,5),(1076,1648342800,4),(1076,1667091600,5),(1076,1679792400,4),(1076,1698541200,5),(1076,1711846800,4),(1076,1729990800,5),(1076,1743296400,4),(1076,1761440400,5),(1076,1774746000,4),(1076,1792890000,5),(1076,1806195600,4),(1076,1824944400,5),(1076,1837645200,4),(1076,1856394000,5),(1076,1869094800,4),(1076,1887843600,5),(1076,1901149200,4),(1076,1919293200,5),(1076,1932598800,4),(1076,1950742800,5),(1076,1964048400,4),(1076,1982797200,5),(1076,1995498000,4),(1076,2014246800,5),(1076,2026947600,4),(1076,2045696400,5),(1076,2058397200,4),(1076,2077146000,5),(1076,2090451600,4),(1076,2108595600,5),(1076,2121901200,4),(1076,2140045200,5),(1077,-1441160400,1),(1077,-1247536800,2),(1077,-894769200,5),(1077,-857257200,3),(1077,-844556400,4),(1077,-828226800,3),(1077,-826419600,2),(1077,354920400,6),(1077,370728000,2),(1077,386456400,6),(1077,402264000,2),(1077,417992400,6),(1077,433800000,2),(1077,449614800,6),(1077,465346800,7),(1077,481071600,8),(1077,496796400,7),(1077,512521200,8),(1077,528246000,7),(1077,543970800,8),(1077,559695600,7),(1077,575420400,8),(1077,591145200,7),(1077,606870000,8),(1077,622594800,7),(1077,638319600,8),(1077,654649200,7),(1077,670374000,9),(1077,686091600,1),(1077,701820000,9),(1077,717541200,1),(1077,733269600,9),(1077,748990800,1),(1077,764719200,9),(1077,780440400,1),(1077,796179600,10),(1077,811904400,11),(1077,828234000,10),(1077,846378000,11),(1077,859683600,10),(1077,877827600,11),(1077,891133200,10),(1077,909277200,11),(1077,922582800,10),(1077,941331600,11),(1077,954032400,10),(1077,972781200,11),(1077,985482000,10),(1077,1004230800,11),(1077,1017536400,10),(1077,1035680400,11),(1077,1048986000,10),(1077,1067130000,11),(1077,1080435600,10),(1077,1099184400,11),(1077,1111885200,10),(1077,1130634000,11),(1077,1143334800,10),(1077,1162083600,11),(1077,1174784400,10),(1077,1193533200,11),(1077,1206838800,10),(1077,1224982800,11),(1077,1238288400,10),(1077,1256432400,11),(1077,1269738000,10),(1077,1288486800,11),(1077,1301187600,10),(1077,1319936400,11),(1077,1332637200,10),(1077,1351386000,11),(1077,1364691600,10),(1077,1382835600,11),(1077,1396141200,10),(1077,1414285200,11),(1077,1427590800,10),(1077,1445734800,11),(1077,1459040400,10),(1077,1477789200,11),(1077,1490490000,10),(1077,1509238800,11),(1077,1521939600,10),(1077,1540688400,11),(1077,1553994000,10),(1077,1572138000,11),(1077,1585443600,10),(1077,1603587600,11),(1077,1616893200,10),(1077,1635642000,11),(1077,1648342800,10),(1077,1667091600,11),(1077,1679792400,10),(1077,1698541200,11),(1077,1711846800,10),(1077,1729990800,11),(1077,1743296400,10),(1077,1761440400,11),(1077,1774746000,10),(1077,1792890000,11),(1077,1806195600,10),(1077,1824944400,11),(1077,1837645200,10),(1077,1856394000,11),(1077,1869094800,10),(1077,1887843600,11),(1077,1901149200,10),(1077,1919293200,11),(1077,1932598800,10),(1077,1950742800,11),(1077,1964048400,10),(1077,1982797200,11),(1077,1995498000,10),(1077,2014246800,11),(1077,2026947600,10),(1077,2045696400,11),(1077,2058397200,10),(1077,2077146000,11),(1077,2090451600,10),(1077,2108595600,11),(1077,2121901200,10),(1077,2140045200,11),(1078,-904435200,0),(1078,-891129600,1),(1078,-872985600,0),(1078,-859680000,1),(1078,354675600,2),(1078,370400400,3),(1078,386125200,2),(1078,401850000,3),(1078,417574800,2),(1078,433299600,3),(1078,449024400,2),(1078,465354000,3),(1078,481078800,2),(1078,496803600,3),(1078,512528400,2),(1078,528253200,3),(1078,543978000,2),(1078,559702800,3),(1078,575427600,2),(1078,591152400,3),(1078,606877200,2),(1078,622602000,3),(1078,638326800,2),(1078,654656400,3),(1078,670381200,2),(1078,686106000,3),(1078,701830800,2),(1078,717555600,3),(1078,733280400,2),(1078,749005200,3),(1078,764730000,2),(1078,780454800,3),(1078,796179600,2),(1078,811904400,3),(1078,828234000,2),(1078,846378000,3),(1078,859683600,2),(1078,877827600,3),(1078,891133200,2),(1078,909277200,3),(1078,922582800,2),(1078,941331600,3),(1078,954032400,2),(1078,972781200,3),(1078,985482000,2),(1078,1004230800,3),(1078,1017536400,2),(1078,1035680400,3),(1078,1048986000,2),(1078,1067130000,3),(1078,1080435600,2),(1078,1099184400,3),(1078,1111885200,2),(1078,1130634000,3),(1078,1143334800,2),(1078,1162083600,3),(1078,1174784400,2),(1078,1193533200,3),(1078,1206838800,2),(1078,1224982800,3),(1078,1238288400,2),(1078,1256432400,3),(1078,1269738000,2),(1078,1288486800,3),(1078,1301187600,2),(1078,1319936400,3),(1078,1332637200,2),(1078,1351386000,3),(1078,1364691600,2),(1078,1382835600,3),(1078,1396141200,2),(1078,1414285200,3),(1078,1427590800,2),(1078,1445734800,3),(1078,1459040400,2),(1078,1477789200,3),(1078,1490490000,2),(1078,1509238800,3),(1078,1521939600,2),(1078,1540688400,3),(1078,1553994000,2),(1078,1572138000,3),(1078,1585443600,2),(1078,1603587600,3),(1078,1616893200,2),(1078,1635642000,3),(1078,1648342800,2),(1078,1667091600,3),(1078,1679792400,2),(1078,1698541200,3),(1078,1711846800,2),(1078,1729990800,3),(1078,1743296400,2),(1078,1761440400,3),(1078,1774746000,2),(1078,1792890000,3),(1078,1806195600,2),(1078,1824944400,3),(1078,1837645200,2),(1078,1856394000,3),(1078,1869094800,2),(1078,1887843600,3),(1078,1901149200,2),(1078,1919293200,3),(1078,1932598800,2),(1078,1950742800,3),(1078,1964048400,2),(1078,1982797200,3),(1078,1995498000,2),(1078,2014246800,3),(1078,2026947600,2),(1078,2045696400,3),(1078,2058397200,2),(1078,2077146000,3),(1078,2090451600,2),(1078,2108595600,3),(1078,2121901200,2),(1078,2140045200,3),(1079,-1691964000,0),(1079,-1680472800,1),(1079,-1664143200,0),(1079,-1650146400,1),(1079,-1633903200,0),(1079,-1617487200,1),(1079,-1601848800,0),(1079,-1586037600,1),(1079,-1570399200,0),(1079,-1552168800,1),(1079,-1538344800,0),(1079,-1522533600,1),(1079,-1507500000,0),(1079,-1490565600,1),(1079,-1473631200,0),(1079,-1460930400,1),(1079,-1442786400,0),(1079,-1428876000,1),(1079,-1410732000,0),(1079,-1396216800,1),(1079,-1379282400,0),(1079,-1364767200,1),(1079,-1348437600,0),(1079,-1333317600,1),(1079,-1315778400,0),(1079,-1301263200,1),(1079,-1284328800,0),(1079,-1269813600,1),(1079,-1253484000,0),(1079,-1238364000,1),(1079,-1221429600,0),(1079,-1206914400,1),(1079,-1189980000,0),(1079,-1175464800,1),(1079,-1159135200,0),(1079,-1143410400,1),(1079,-1126476000,0),(1079,-1111960800,1),(1079,-1095631200,0),(1079,-1080511200,1),(1079,-1063576800,0),(1079,-1049061600,1),(1079,-1032127200,0),(1079,-1017612000,1),(1079,-1001282400,0),(1079,-986162400,1),(1079,-969228000,0),(1079,-950479200,1),(1079,-942012000,0),(1079,-904518000,2),(1079,-896050800,0),(1079,-875487600,2),(1079,-864601200,0),(1079,-844038000,2),(1079,-832546800,0),(1079,-812588400,2),(1079,-798073200,0),(1079,-781052400,2),(1079,-772066800,0),(1079,-764805600,1),(1079,-748476000,0),(1079,-733356000,1),(1079,-719445600,0),(1079,-717030000,2),(1079,-706748400,0),(1079,-699487200,1),(1079,-687996000,0),(1079,-668037600,1),(1079,-654732000,0),(1079,-636588000,1),(1079,-622072800,0),(1079,-605743200,1),(1079,-590623200,0),(1079,-574293600,1),(1079,-558568800,0),(1079,-542239200,1),(1079,-527119200,0),(1079,-512604000,1),(1079,-496274400,0),(1079,-481154400,1),(1079,-464220000,0),(1079,-449704800,1),(1079,-432165600,0),(1079,-417650400,1),(1079,-401320800,0),(1079,-386200800,1),(1079,-369266400,0),(1079,-354751200,1),(1079,-337816800,0),(1079,-323301600,1),(1079,-306972000,0),(1079,-291852000,1),(1079,-276732000,0),(1079,-257983200,1),(1079,-245282400,0),(1079,-226533600,1),(1079,-213228000,0),(1079,-195084000,1),(1079,-182383200,0),(1079,-163634400,1),(1079,-150933600,0),(1079,-132184800,1),(1079,-119484000,0),(1079,-100735200,1),(1079,-88034400,0),(1079,-68680800,1),(1079,-59004000,0),(1079,-37242000,3),(1079,57722400,5),(1079,69818400,0),(1079,89172000,1),(1079,101268000,0),(1079,120621600,1),(1079,132717600,0),(1079,152071200,1),(1079,164167200,0),(1079,183520800,1),(1079,196221600,0),(1079,214970400,1),(1079,227671200,0),(1079,246420000,1),(1079,259120800,0),(1079,278474400,1),(1079,290570400,0),(1079,309924000,1),(1079,322020000,0),(1079,341373600,1),(1079,354675600,4),(1079,372819600,5),(1079,386125200,4),(1079,404269200,5),(1079,417574800,4),(1079,435718800,5),(1079,449024400,4),(1079,467773200,5),(1079,481078800,4),(1079,499222800,5),(1079,512528400,4),(1079,530672400,5),(1079,543978000,4),(1079,562122000,5),(1079,575427600,4),(1079,593571600,5),(1079,606877200,4),(1079,625626000,5),(1079,638326800,4),(1079,657075600,5),(1079,670381200,4),(1079,688525200,5),(1079,701830800,4),(1079,719974800,5),(1079,733280400,4),(1079,751424400,5),(1079,764730000,4),(1079,782874000,5),(1079,796179600,4),(1079,814323600,5),(1079,820454400,6),(1079,828234000,4),(1079,846378000,5),(1079,859683600,4),(1079,877827600,5),(1079,891133200,4),(1079,909277200,5),(1079,922582800,4),(1079,941331600,5),(1079,954032400,4),(1079,972781200,5),(1079,985482000,4),(1079,1004230800,5),(1079,1017536400,4),(1079,1035680400,5),(1079,1048986000,4),(1079,1067130000,5),(1079,1080435600,4),(1079,1099184400,5),(1079,1111885200,4),(1079,1130634000,5),(1079,1143334800,4),(1079,1162083600,5),(1079,1174784400,4),(1079,1193533200,5),(1079,1206838800,4),(1079,1224982800,5),(1079,1238288400,4),(1079,1256432400,5),(1079,1269738000,4),(1079,1288486800,5),(1079,1301187600,4),(1079,1319936400,5),(1079,1332637200,4),(1079,1351386000,5),(1079,1364691600,4),(1079,1382835600,5),(1079,1396141200,4),(1079,1414285200,5),(1079,1427590800,4),(1079,1445734800,5),(1079,1459040400,4),(1079,1477789200,5),(1079,1490490000,4),(1079,1509238800,5),(1079,1521939600,4),(1079,1540688400,5),(1079,1553994000,4),(1079,1572138000,5),(1079,1585443600,4),(1079,1603587600,5),(1079,1616893200,4),(1079,1635642000,5),(1079,1648342800,4),(1079,1667091600,5),(1079,1679792400,4),(1079,1698541200,5),(1079,1711846800,4),(1079,1729990800,5),(1079,1743296400,4),(1079,1761440400,5),(1079,1774746000,4),(1079,1792890000,5),(1079,1806195600,4),(1079,1824944400,5),(1079,1837645200,4),(1079,1856394000,5),(1079,1869094800,4),(1079,1887843600,5),(1079,1901149200,4),(1079,1919293200,5),(1079,1932598800,4),(1079,1950742800,5),(1079,1964048400,4),(1079,1982797200,5),(1079,1995498000,4),(1079,2014246800,5),(1079,2026947600,4),(1079,2045696400,5),(1079,2058397200,4),(1079,2077146000,5),(1079,2090451600,4),(1079,2108595600,5),(1079,2121901200,4),(1079,2140045200,5),(1080,-1691964000,0),(1080,-1680472800,1),(1080,-1664143200,0),(1080,-1650146400,1),(1080,-1633903200,0),(1080,-1617487200,1),(1080,-1601848800,0),(1080,-1586037600,1),(1080,-1570399200,0),(1080,-1552168800,1),(1080,-1538344800,0),(1080,-1522533600,1),(1080,-1507500000,0),(1080,-1490565600,1),(1080,-1473631200,0),(1080,-1460930400,1),(1080,-1442786400,0),(1080,-1428876000,1),(1080,-1410732000,0),(1080,-1396216800,1),(1080,-1379282400,0),(1080,-1364767200,1),(1080,-1348437600,0),(1080,-1333317600,1),(1080,-1315778400,0),(1080,-1301263200,1),(1080,-1284328800,0),(1080,-1269813600,1),(1080,-1253484000,0),(1080,-1238364000,1),(1080,-1221429600,0),(1080,-1206914400,1),(1080,-1189980000,0),(1080,-1175464800,1),(1080,-1159135200,0),(1080,-1143410400,1),(1080,-1126476000,0),(1080,-1111960800,1),(1080,-1095631200,0),(1080,-1080511200,1),(1080,-1063576800,0),(1080,-1049061600,1),(1080,-1032127200,0),(1080,-1017612000,1),(1080,-1001282400,0),(1080,-986162400,1),(1080,-969228000,0),(1080,-950479200,1),(1080,-942012000,0),(1080,-904518000,2),(1080,-896050800,0),(1080,-875487600,2),(1080,-864601200,0),(1080,-844038000,2),(1080,-832546800,0),(1080,-812588400,2),(1080,-798073200,0),(1080,-781052400,2),(1080,-772066800,0),(1080,-764805600,1),(1080,-748476000,0),(1080,-733356000,1),(1080,-719445600,0),(1080,-717030000,2),(1080,-706748400,0),(1080,-699487200,1),(1080,-687996000,0),(1080,-668037600,1),(1080,-654732000,0),(1080,-636588000,1),(1080,-622072800,0),(1080,-605743200,1),(1080,-590623200,0),(1080,-574293600,1),(1080,-558568800,0),(1080,-542239200,1),(1080,-527119200,0),(1080,-512604000,1),(1080,-496274400,0),(1080,-481154400,1),(1080,-464220000,0),(1080,-449704800,1),(1080,-432165600,0),(1080,-417650400,1),(1080,-401320800,0),(1080,-386200800,1),(1080,-369266400,0),(1080,-354751200,1),(1080,-337816800,0),(1080,-323301600,1),(1080,-306972000,0),(1080,-291852000,1),(1080,-276732000,0),(1080,-257983200,1),(1080,-245282400,0),(1080,-226533600,1),(1080,-213228000,0),(1080,-195084000,1),(1080,-182383200,0),(1080,-163634400,1),(1080,-150933600,0),(1080,-132184800,1),(1080,-119484000,0),(1080,-100735200,1),(1080,-88034400,0),(1080,-68680800,1),(1080,-59004000,0),(1080,-37242000,3),(1080,57722400,5),(1080,69818400,0),(1080,89172000,1),(1080,101268000,0),(1080,120621600,1),(1080,132717600,0),(1080,152071200,1),(1080,164167200,0),(1080,183520800,1),(1080,196221600,0),(1080,214970400,1),(1080,227671200,0),(1080,246420000,1),(1080,259120800,0),(1080,278474400,1),(1080,290570400,0),(1080,309924000,1),(1080,322020000,0),(1080,341373600,1),(1080,354675600,4),(1080,372819600,5),(1080,386125200,4),(1080,404269200,5),(1080,417574800,4),(1080,435718800,5),(1080,449024400,4),(1080,467773200,5),(1080,481078800,4),(1080,499222800,5),(1080,512528400,4),(1080,530672400,5),(1080,543978000,4),(1080,562122000,5),(1080,575427600,4),(1080,593571600,5),(1080,606877200,4),(1080,625626000,5),(1080,638326800,4),(1080,657075600,5),(1080,670381200,4),(1080,688525200,5),(1080,701830800,4),(1080,719974800,5),(1080,733280400,4),(1080,751424400,5),(1080,764730000,4),(1080,782874000,5),(1080,796179600,4),(1080,814323600,5),(1080,820454400,6),(1080,828234000,4),(1080,846378000,5),(1080,859683600,4),(1080,877827600,5),(1080,891133200,4),(1080,909277200,5),(1080,922582800,4),(1080,941331600,5),(1080,954032400,4),(1080,972781200,5),(1080,985482000,4),(1080,1004230800,5),(1080,1017536400,4),(1080,1035680400,5),(1080,1048986000,4),(1080,1067130000,5),(1080,1080435600,4),(1080,1099184400,5),(1080,1111885200,4),(1080,1130634000,5),(1080,1143334800,4),(1080,1162083600,5),(1080,1174784400,4),(1080,1193533200,5),(1080,1206838800,4),(1080,1224982800,5),(1080,1238288400,4),(1080,1256432400,5),(1080,1269738000,4),(1080,1288486800,5),(1080,1301187600,4),(1080,1319936400,5),(1080,1332637200,4),(1080,1351386000,5),(1080,1364691600,4),(1080,1382835600,5),(1080,1396141200,4),(1080,1414285200,5),(1080,1427590800,4),(1080,1445734800,5),(1080,1459040400,4),(1080,1477789200,5),(1080,1490490000,4),(1080,1509238800,5),(1080,1521939600,4),(1080,1540688400,5),(1080,1553994000,4),(1080,1572138000,5),(1080,1585443600,4),(1080,1603587600,5),(1080,1616893200,4),(1080,1635642000,5),(1080,1648342800,4),(1080,1667091600,5),(1080,1679792400,4),(1080,1698541200,5),(1080,1711846800,4),(1080,1729990800,5),(1080,1743296400,4),(1080,1761440400,5),(1080,1774746000,4),(1080,1792890000,5),(1080,1806195600,4),(1080,1824944400,5),(1080,1837645200,4),(1080,1856394000,5),(1080,1869094800,4),(1080,1887843600,5),(1080,1901149200,4),(1080,1919293200,5),(1080,1932598800,4),(1080,1950742800,5),(1080,1964048400,4),(1080,1982797200,5),(1080,1995498000,4),(1080,2014246800,5),(1080,2026947600,4),(1080,2045696400,5),(1080,2058397200,4),(1080,2077146000,5),(1080,2090451600,4),(1080,2108595600,5),(1080,2121901200,4),(1080,2140045200,5),(1087,-2056693002,2),(1087,-907389000,1),(1087,-891667800,2),(1087,-884246400,3),(1087,-766746000,2),(1087,-747981000,1),(1087,-728544600,2),(1087,-717049800,1),(1087,-694503000,2),(1087,-683785800,1),(1087,-668064600,2),(1087,-654755400,1),(1087,-636615000,2),(1087,-623305800,1),(1087,-605165400,2),(1087,-591856200,1),(1087,-573715800,2),(1087,-559801800,1),(1087,-542352600,2),(1087,-528352200,1),(1087,-510211800,2),(1087,-498112200,1),(1087,-478762200,2),(1087,-466662600,1),(1087,-446707800,2),(1087,-435213000,1),(1087,-415258200,2),(1087,-403158600,1),(1087,-383808600,2),(1087,-371709000,1),(1087,-352359000,2),(1087,-340259400,1),(1087,-320909400,2),(1087,-308809800,1),(1087,-288855000,2),(1087,-277360200,1),(1087,-257405400,2),(1087,-245910600,1),(1087,-225955800,2),(1087,-213856200,1),(1087,-194506200,2),(1087,-182406600,1),(1087,-163056600,2),(1087,-148537800,1),(1087,-132816600,2),(1087,-117088200,1),(1087,-101367000,2),(1087,-85638600,1),(1087,-69312600,2),(1087,-53584200,1),(1087,-37863000,2),(1087,-22134600,1),(1087,-6413400,2),(1087,9315000,1),(1087,25036200,2),(1087,40764600,1),(1087,56485800,2),(1087,72214200,1),(1087,88540200,2),(1087,104268600,1),(1087,119989800,2),(1087,126041400,1),(1087,151439400,2),(1087,167167800,1),(1087,182889000,2),(1087,198617400,1),(1087,214338600,2),(1087,295385400,1),(1087,309292200,2),(1088,-1956609120,2),(1088,-1668211200,1),(1088,-1647212400,2),(1088,-1636675200,1),(1088,-1613430000,2),(1088,-1605139200,1),(1088,-1581894000,2),(1088,-1539561600,1),(1088,-1531350000,2),(1088,-968025600,1),(1088,-952293600,2),(1088,-942008400,1),(1088,-920239200,3),(1088,-909957600,4),(1088,-888789600,3),(1088,-877903200,4),(1088,-857944800,3),(1088,-846453600,4),(1088,-826495200,3),(1088,-815004000,4),(1088,-795045600,3),(1088,-783554400,4),(1088,-762991200,3),(1088,-752104800,4),(1088,-731541600,3),(1088,-717631200,4),(1088,-700092000,3),(1088,-686181600,4),(1088,-668642400,3),(1088,-654732000,4),(1088,-636588000,3),(1088,-623282400,4),(1088,-605743200,3),(1088,-591832800,4),(1088,-573688800,3),(1088,-559778400,4),(1088,-542239200,3),(1088,-528328800,4),(1088,-510789600,3),(1088,-496879200,4),(1088,-479340000,3),(1088,-465429600,4),(1088,-447890400,3),(1088,-433980000,4),(1088,-415836000,3),(1088,-401925600,4),(1088,-384386400,3),(1088,-370476000,4),(1088,-352936800,3),(1088,-339026400,4),(1088,-321487200,3),(1088,-307576800,4),(1088,-290037600,3),(1088,-276127200,4),(1088,-258588000,3),(1088,-244677600,4),(1088,-226533600,3),(1088,-212623200,4),(1088,-195084000,3),(1088,-181173600,4),(1088,-163634400,3),(1088,-149724000,4),(1088,-132184800,3),(1088,-118274400,4),(1088,-100735200,3),(1088,-86824800,4),(1088,-68680800,3),(1088,-54770400,5),(1089,-1309746436,1),(1089,-1262314800,2),(1089,-946780200,3),(1089,-315629100,1),(1090,-1988167780,1),(1090,820436400,2),(1093,-1309746436,1),(1093,-1262314800,2),(1093,-946780200,3),(1093,-315629100,1),(1094,-631152000,1),(1095,-2006653308,1),(1096,-315636840,1),(1097,-1988164200,2),(1097,403041600,1),(1097,417034800,2),(1097,1224972000,1),(1097,1238274000,2),(1098,-1309746436,1),(1098,-1262314800,2),(1098,-946780200,3),(1098,-315629100,1),(1099,-1848886912,1),(1100,-1704165944,1),(1100,-757394744,2),(1100,247177800,4),(1100,259272000,3),(1100,277758000,4),(1100,283982400,2),(1100,290809800,5),(1100,306531000,2),(1100,322432200,5),(1100,338499000,2),(1100,673216200,5),(1100,685481400,2),(1100,701209800,5),(1100,717103800,2),(1100,732745800,5),(1100,748639800,2),(1100,764281800,5),(1100,780175800,2),(1100,795817800,5),(1100,811711800,2),(1100,827353800,5),(1100,843247800,2),(1100,858976200,5),(1100,874870200,2),(1100,890512200,5),(1100,906406200,2),(1100,922048200,5),(1100,937942200,2),(1100,953584200,5),(1100,969478200,2),(1100,985206600,5),(1100,1001100600,2),(1100,1016742600,5),(1100,1032636600,2),(1100,1048278600,5),(1100,1064172600,2),(1100,1079814600,5),(1100,1095708600,2),(1100,1111437000,5),(1100,1127331000,2),(1100,1206045000,5),(1100,1221939000,2),(1100,1237667400,5),(1100,1253561400,2),(1100,1269203400,5),(1100,1285097400,2),(1100,1300739400,5),(1100,1316633400,2),(1100,1332275400,5),(1100,1348169400,2),(1100,1363897800,5),(1100,1379791800,2),(1100,1395433800,5),(1100,1411327800,2),(1100,1426969800,5),(1100,1442863800,2),(1100,1458505800,5),(1100,1474399800,2),(1100,1490128200,5),(1100,1506022200,2),(1100,1521664200,5),(1100,1537558200,2),(1100,1553200200,5),(1100,1569094200,2),(1100,1584736200,5),(1100,1600630200,2),(1100,1616358600,5),(1100,1632252600,2),(1100,1647894600,5),(1100,1663788600,2),(1100,1679430600,5),(1100,1695324600,2),(1100,1710966600,5),(1100,1726860600,2),(1100,1742589000,5),(1100,1758483000,2),(1100,1774125000,5),(1100,1790019000,2),(1100,1805661000,5),(1100,1821555000,2),(1100,1837197000,5),(1100,1853091000,2),(1100,1868733000,5),(1100,1884627000,2),(1100,1900355400,5),(1100,1916249400,2),(1100,1931891400,5),(1100,1947785400,2),(1100,1963427400,5),(1100,1979321400,2),(1100,1994963400,5),(1100,2010857400,2),(1100,2026585800,5),(1100,2042479800,2),(1100,2058121800,5),(1100,2074015800,2),(1100,2089657800,5),(1100,2105551800,2),(1100,2121193800,5),(1100,2137087800,2),(1101,-1641003640,2),(1101,-933645600,1),(1101,-857358000,2),(1101,-844300800,1),(1101,-825822000,2),(1101,-812685600,1),(1101,-794199600,2),(1101,-779853600,1),(1101,-762656400,2),(1101,-748310400,1),(1101,-731127600,2),(1101,-681962400,3),(1101,-673243200,1),(1101,-667962000,2),(1101,-652327200,1),(1101,-636426000,2),(1101,-622087200,1),(1101,-608947200,2),(1101,-591847200,1),(1101,-572486400,2),(1101,-558576000,1),(1101,-542851200,2),(1101,-527731200,1),(1101,-514425600,2),(1101,-490845600,1),(1101,-482986800,2),(1101,-459475200,1),(1101,-451537200,2),(1101,-428551200,1),(1101,-418262400,2),(1101,-400032000,1),(1101,-387428400,2),(1101,142380000,1),(1101,150843600,2),(1101,167176800,1),(1101,178664400,2),(1101,482277600,1),(1101,495579600,2),(1101,516751200,1),(1101,526424400,2),(1101,545436000,1),(1101,558478800,2),(1101,576626400,1),(1101,589323600,2),(1101,609890400,1),(1101,620773200,2),(1101,638316000,1),(1101,651618000,2),(1101,669765600,1),(1101,683672400,2),(1101,701820000,1),(1101,715726800,2),(1101,733701600,1),(1101,747176400,2),(1101,765151200,1),(1101,778021200,2),(1101,796600800,1),(1101,810075600,2),(1101,826840800,1),(1101,842821200,2),(1101,858895200,1),(1101,874184400,2),(1101,890344800,1),(1101,905029200,2),(1101,923011200,1),(1101,936313200,2),(1101,955670400,1),(1101,970783200,2),(1101,986770800,1),(1101,1001282400,2),(1101,1017356400,1),(1101,1033941600,2),(1101,1048806000,1),(1101,1065132000,2),(1101,1081292400,1),(1101,1095804000,2),(1101,1112313600,1),(1101,1128812400,2),(1101,1143763200,1),(1101,1159657200,2),(1101,1175212800,1),(1101,1189897200,2),(1101,1206662400,1),(1101,1223161200,2),(1101,1238112000,1),(1101,1254006000,2),(1101,1269561600,1),(1101,1284246000,2),(1101,1301616000,1),(1101,1317510000,2),(1101,1333065600,1),(1101,1348354800,2),(1101,1364515200,1),(1101,1382828400,2),(1101,1395964800,1),(1101,1414278000,2),(1101,1427414400,1),(1101,1445727600,2),(1101,1458864000,1),(1101,1477782000,2),(1101,1490313600,1),(1101,1509231600,2),(1101,1521763200,1),(1101,1540681200,2),(1101,1553817600,1),(1101,1572130800,2),(1101,1585267200,1),(1101,1603580400,2),(1101,1616716800,1),(1101,1635634800,2),(1101,1648166400,1),(1101,1667084400,2),(1101,1679616000,1),(1101,1698534000,2),(1101,1711670400,1),(1101,1729983600,2),(1101,1743120000,1),(1101,1761433200,2),(1101,1774569600,1),(1101,1792882800,2),(1101,1806019200,1),(1101,1824937200,2),(1101,1837468800,1),(1101,1856386800,2),(1101,1868918400,1),(1101,1887836400,2),(1101,1900972800,1),(1101,1919286000,2),(1101,1932422400,1),(1101,1950735600,2),(1101,1963872000,1),(1101,1982790000,2),(1101,1995321600,1),(1101,2014239600,2),(1101,2026771200,1),(1101,2045689200,2),(1101,2058220800,1),(1101,2077138800,2),(1101,2090275200,1),(1101,2108588400,2),(1101,2121724800,1),(1101,2140038000,2),(1102,-1827687170,1),(1102,126687600,2),(1102,152085600,1),(1102,162370800,2),(1102,183535200,1),(1102,199263600,2),(1102,215589600,1),(1102,230713200,2),(1102,247039200,1),(1102,262767600,2),(1102,278488800,1),(1102,294217200,2),(1102,309938400,1),(1102,325666800,2),(1102,341388000,1),(1102,357116400,2),(1102,372837600,1),(1102,388566000,2),(1102,404892000,1),(1102,420015600,2),(1102,436341600,1),(1103,-683802000,0),(1103,-672314400,1),(1103,-654771600,0),(1103,-640864800,1),(1103,-620298000,0),(1103,-609415200,1),(1103,-588848400,0),(1103,-577965600,1),(1104,-7988400,1),(1104,745848000,2),(1105,-1577926364,2),(1105,-574902000,1),(1105,-568087200,2),(1105,-512175600,1),(1105,-504928800,2),(1105,-449888400,1),(1105,-441856800,2),(1105,-347158800,3),(1105,378684000,2),(1105,386463600,1),(1105,402271200,2),(1105,417999600,1),(1105,433807200,2),(1105,449622000,1),(1105,465429600,2),(1105,481590000,1),(1105,496965600,2),(1105,512953200,1),(1105,528674400,2),(1105,544230000,1),(1105,560037600,2),(1105,575852400,1),(1105,591660000,2),(1105,607388400,1),(1105,623196000,2),(1105,641775600,3),(1105,844034400,2),(1105,860108400,1),(1105,875916000,3),(1105,1352505600,2),(1105,1364515200,1),(1105,1382659200,3),(1106,-1693706400,0),(1106,-1680483600,1),(1106,-1663455600,2),(1106,-1650150000,3),(1106,-1632006000,2),(1106,-1618700400,3),(1106,-938905200,2),(1106,-857257200,3),(1106,-844556400,2),(1106,-828226800,3),(1106,-812502000,2),(1106,-796777200,3),(1106,-781052400,2),(1106,-766623600,3),(1106,228877200,2),(1106,243997200,3),(1106,260326800,2),(1106,276051600,3),(1106,291776400,2),(1106,307501200,3),(1106,323830800,2),(1106,338950800,3),(1106,354675600,2),(1106,370400400,3),(1106,386125200,2),(1106,401850000,3),(1106,417574800,2),(1106,433299600,3),(1106,449024400,2),(1106,465354000,3),(1106,481078800,2),(1106,496803600,3),(1106,512528400,2),(1106,528253200,3),(1106,543978000,2),(1106,559702800,3),(1106,575427600,2),(1106,591152400,3),(1106,606877200,2),(1106,622602000,3),(1106,638326800,2),(1106,654656400,3),(1106,670381200,2),(1106,686106000,3),(1106,701830800,2),(1106,717555600,3),(1106,733280400,2),(1106,749005200,3),(1106,764730000,2),(1106,780454800,3),(1106,796179600,2),(1106,811904400,3),(1106,828234000,2),(1106,846378000,3),(1106,859683600,2),(1106,877827600,3),(1106,891133200,2),(1106,909277200,3),(1106,922582800,2),(1106,941331600,3),(1106,954032400,2),(1106,972781200,3),(1106,985482000,2),(1106,1004230800,3),(1106,1017536400,2),(1106,1035680400,3),(1106,1048986000,2),(1106,1067130000,3),(1106,1080435600,2),(1106,1099184400,3),(1106,1111885200,2),(1106,1130634000,3),(1106,1143334800,2),(1106,1162083600,3),(1106,1174784400,2),(1106,1193533200,3),(1106,1206838800,2),(1106,1224982800,3),(1106,1238288400,2),(1106,1256432400,3),(1106,1269738000,2),(1106,1288486800,3),(1106,1301187600,2),(1106,1319936400,3),(1106,1332637200,2),(1106,1351386000,3),(1106,1364691600,2),(1106,1382835600,3),(1106,1396141200,2),(1106,1414285200,3),(1106,1427590800,2),(1106,1445734800,3),(1106,1459040400,2),(1106,1477789200,3),(1106,1490490000,2),(1106,1509238800,3),(1106,1521939600,2),(1106,1540688400,3),(1106,1553994000,2),(1106,1572138000,3),(1106,1585443600,2),(1106,1603587600,3),(1106,1616893200,2),(1106,1635642000,3),(1106,1648342800,2),(1106,1667091600,3),(1106,1679792400,2),(1106,1698541200,3),(1106,1711846800,2),(1106,1729990800,3),(1106,1743296400,2),(1106,1761440400,3),(1106,1774746000,2),(1106,1792890000,3),(1106,1806195600,2),(1106,1824944400,3),(1106,1837645200,2),(1106,1856394000,3),(1106,1869094800,2),(1106,1887843600,3),(1106,1901149200,2),(1106,1919293200,3),(1106,1932598800,2),(1106,1950742800,3),(1106,1964048400,2),(1106,1982797200,3),(1106,1995498000,2),(1106,2014246800,3),(1106,2026947600,2),(1106,2045696400,3),(1106,2058397200,2),(1106,2077146000,3),(1106,2090451600,2),(1106,2108595600,3),(1106,2121901200,2),(1106,2140045200,3),(1108,-1633273200,0),(1108,-1615132800,1),(1108,-1601823600,0),(1108,-1583683200,1),(1108,-880210800,2),(1108,-769395600,3),(1108,-765388800,1),(1108,-84380400,0),(1108,-68659200,1),(1108,-52930800,0),(1108,-37209600,1),(1108,-21481200,0),(1108,-5760000,1),(1108,9968400,0),(1108,25689600,1),(1108,41418000,0),(1108,57744000,1),(1108,73472400,0),(1108,89193600,1),(1108,104922000,0),(1108,120643200,1),(1108,126694800,0),(1108,152092800,1),(1108,162378000,0),(1108,183542400,1),(1108,199270800,0),(1108,215596800,1),(1108,230720400,0),(1108,247046400,1),(1108,262774800,0),(1108,278496000,1),(1108,294224400,0),(1108,309945600,1),(1108,325674000,0),(1108,341395200,1),(1108,357123600,0),(1108,372844800,1),(1108,388573200,0),(1108,404899200,1),(1108,420022800,0),(1108,436348800,1),(1108,452077200,0),(1108,467798400,1),(1108,483526800,0),(1108,499248000,1),(1108,514976400,0),(1108,530697600,1),(1108,544611600,0),(1108,562147200,1),(1108,576061200,0),(1108,594201600,1),(1108,607510800,0),(1108,625651200,1),(1108,638960400,0),(1108,657100800,1),(1108,671014800,0),(1108,688550400,1),(1108,702464400,0),(1108,720000000,1),(1108,733914000,0),(1108,752054400,1),(1108,765363600,0),(1108,783504000,1),(1108,796813200,0),(1108,814953600,1),(1108,828867600,0),(1108,846403200,1),(1108,860317200,0),(1108,877852800,1),(1108,891766800,0),(1108,909302400,1),(1108,923216400,0),(1108,941356800,1),(1108,954666000,0),(1108,972806400,1),(1108,986115600,0),(1108,1004256000,1),(1108,1018170000,0),(1108,1035705600,1),(1108,1049619600,0),(1108,1067155200,1),(1108,1081069200,0),(1108,1099209600,1),(1108,1112518800,0),(1108,1130659200,1),(1108,1143968400,0),(1108,1162108800,1),(1108,1173603600,0),(1108,1194163200,1),(1108,1205053200,0),(1108,1225612800,1),(1108,1236502800,0),(1108,1257062400,1),(1108,1268557200,0),(1108,1289116800,1),(1108,1300006800,0),(1108,1320566400,1),(1108,1331456400,0),(1108,1352016000,1),(1108,1362906000,0),(1108,1383465600,1),(1108,1394355600,0),(1108,1414915200,1),(1108,1425805200,0),(1108,1446364800,1),(1108,1457859600,0),(1108,1478419200,1),(1108,1489309200,0),(1108,1509868800,1),(1108,1520758800,0),(1108,1541318400,1),(1108,1552208400,0),(1108,1572768000,1),(1108,1583658000,0),(1108,1604217600,1),(1108,1615712400,0),(1108,1636272000,1),(1108,1647162000,0),(1108,1667721600,1),(1108,1678611600,0),(1108,1699171200,1),(1108,1710061200,0),(1108,1730620800,1),(1108,1741510800,0),(1108,1762070400,1),(1108,1772960400,0),(1108,1793520000,1),(1108,1805014800,0),(1108,1825574400,1),(1108,1836464400,0),(1108,1857024000,1),(1108,1867914000,0),(1108,1888473600,1),(1108,1899363600,0),(1108,1919923200,1),(1108,1930813200,0),(1108,1951372800,1),(1108,1962867600,0),(1108,1983427200,1),(1108,1994317200,0),(1108,2014876800,1),(1108,2025766800,0),(1108,2046326400,1),(1108,2057216400,0),(1108,2077776000,1),(1108,2088666000,0),(1108,2109225600,1),(1108,2120115600,0),(1108,2140675200,1),(1109,-1514736000,1),(1109,-1451667600,2),(1109,-1343062800,1),(1109,-1234803600,2),(1109,-1222963200,3),(1109,-1207242000,2),(1109,-873820800,4),(1109,-769395600,5),(1109,-761677200,2),(1109,-686073600,3),(1109,-661539600,2),(1109,-495039600,3),(1109,-481734000,2),(1109,-463590000,3),(1109,-450284400,2),(1109,-431535600,3),(1109,-418230000,2),(1109,-400086000,3),(1109,-386780400,2),(1109,-368636400,3),(1109,-355330800,2),(1109,-337186800,3),(1109,-323881200,2),(1109,-305737200,3),(1109,-292431600,2),(1109,199274400,3),(1109,215600400,2),(1109,230724000,3),(1109,247050000,2),(1109,262778400,3),(1109,278499600,2),(1109,294228000,3),(1109,309949200,2),(1109,325677600,3),(1109,341398800,2),(1109,357127200,3),(1109,372848400,2),(1109,388576800,3),(1109,404902800,2),(1109,420026400,3),(1109,436352400,2),(1109,452080800,3),(1109,467802000,2),(1109,483530400,3),(1109,499251600,2),(1109,514980000,3),(1109,530701200,2),(1109,544615200,3),(1109,562150800,2),(1109,576064800,3),(1109,594205200,2),(1109,607514400,3),(1109,625654800,2),(1109,638964000,3),(1109,657104400,2),(1109,671018400,3),(1109,688554000,2),(1109,702468000,3),(1109,720003600,2),(1109,733917600,3),(1109,752058000,2),(1109,765367200,3),(1109,783507600,2),(1109,796816800,3),(1109,814957200,2),(1109,828871200,3),(1109,846406800,2),(1109,860320800,3),(1109,877856400,2),(1109,891770400,3),(1109,909306000,2),(1109,923220000,3),(1109,941360400,2),(1109,954669600,3),(1109,972810000,2),(1109,986119200,3),(1109,1004259600,2),(1109,1018173600,3),(1109,1035709200,2),(1109,1049623200,3),(1109,1067158800,2),(1109,1081072800,3),(1109,1099213200,2),(1109,1112522400,3),(1109,1130662800,2),(1109,1143972000,3),(1109,1162112400,2),(1109,1175421600,3),(1109,1193562000,2),(1109,1207476000,3),(1109,1225011600,2),(1109,1238925600,3),(1109,1256461200,2),(1109,1268560800,3),(1109,1289120400,2),(1109,1300010400,3),(1109,1320570000,2),(1109,1331460000,3),(1109,1352019600,2),(1109,1362909600,3),(1109,1383469200,2),(1109,1394359200,3),(1109,1414918800,2),(1109,1425808800,3),(1109,1446368400,2),(1109,1457863200,3),(1109,1478422800,2),(1109,1489312800,3),(1109,1509872400,2),(1109,1520762400,3),(1109,1541322000,2),(1109,1552212000,3),(1109,1572771600,2),(1109,1583661600,3),(1109,1604221200,2),(1109,1615716000,3),(1109,1636275600,2),(1109,1647165600,3),(1109,1667725200,2),(1109,1678615200,3),(1109,1699174800,2),(1109,1710064800,3),(1109,1730624400,2),(1109,1741514400,3),(1109,1762074000,2),(1109,1772964000,3),(1109,1793523600,2),(1109,1805018400,3),(1109,1825578000,2),(1109,1836468000,3),(1109,1857027600,2),(1109,1867917600,3),(1109,1888477200,2),(1109,1899367200,3),(1109,1919926800,2),(1109,1930816800,3),(1109,1951376400,2),(1109,1962871200,3),(1109,1983430800,2),(1109,1994320800,3),(1109,2014880400,2),(1109,2025770400,3),(1109,2046330000,2),(1109,2057220000,3),(1109,2077779600,2),(1109,2088669600,3),(1109,2109229200,2),(1109,2120119200,3),(1109,2140678800,2),(1110,-1514739600,1),(1110,-1343066400,2),(1110,-1234807200,1),(1110,-1220292000,2),(1110,-1207159200,1),(1110,-1191344400,2),(1110,-873828000,1),(1110,-661539600,3),(1110,28800,1),(1110,828867600,4),(1110,846403200,1),(1110,860317200,4),(1110,877852800,1),(1110,891766800,4),(1110,909302400,1),(1110,923216400,4),(1110,941356800,1),(1110,954666000,4),(1110,972806400,1),(1110,989139600,4),(1110,1001836800,1),(1110,1018170000,4),(1110,1035705600,1),(1110,1049619600,4),(1110,1067155200,1),(1110,1081069200,4),(1110,1099209600,1),(1110,1112518800,4),(1110,1130659200,1),(1110,1143968400,4),(1110,1162108800,1),(1110,1175418000,4),(1110,1193558400,1),(1110,1207472400,4),(1110,1225008000,1),(1110,1238922000,4),(1110,1256457600,1),(1110,1270371600,4),(1110,1288512000,1),(1110,1301821200,4),(1110,1319961600,1),(1110,1333270800,4),(1110,1351411200,1),(1110,1365325200,4),(1110,1382860800,1),(1110,1396774800,4),(1110,1414310400,1),(1110,1428224400,4),(1110,1445760000,1),(1110,1459674000,4),(1110,1477814400,1),(1110,1491123600,4),(1110,1509264000,1),(1110,1522573200,4),(1110,1540713600,1),(1110,1554627600,4),(1110,1572163200,1),(1110,1586077200,4),(1110,1603612800,1),(1110,1617526800,4),(1110,1635667200,1),(1110,1648976400,4),(1110,1667116800,1),(1110,1680426000,4),(1110,1698566400,1),(1110,1712480400,4),(1110,1730016000,1),(1110,1743930000,4),(1110,1761465600,1),(1110,1775379600,4),(1110,1792915200,1),(1110,1806829200,4),(1110,1824969600,1),(1110,1838278800,4),(1110,1856419200,1),(1110,1869728400,4),(1110,1887868800,1),(1110,1901782800,4),(1110,1919318400,1),(1110,1933232400,4),(1110,1950768000,1),(1110,1964682000,4),(1110,1982822400,1),(1110,1996131600,4),(1110,2014272000,1),(1110,2027581200,4),(1110,2045721600,1),(1110,2059030800,4),(1110,2077171200,1),(1110,2091085200,4),(1110,2108620800,1),(1110,2122534800,4),(1110,2140070400,1),(1111,-1514739600,1),(1111,-1343066400,2),(1111,-1234807200,1),(1111,-1220292000,2),(1111,-1207159200,1),(1111,-1191344400,2),(1111,-975261600,3),(1111,-963169200,2),(1111,-917114400,3),(1111,-907354800,2),(1111,-821901600,4),(1111,-810068400,2),(1111,-627501600,3),(1111,-612990000,2),(1111,828864000,3),(1111,846399600,2),(1111,860313600,3),(1111,877849200,2),(1111,891763200,3),(1111,909298800,2),(1111,923212800,3),(1111,941353200,2),(1111,954662400,3),(1111,972802800,2),(1111,989136000,3),(1111,1001833200,2),(1111,1018166400,3),(1111,1035702000,2),(1111,1049616000,3),(1111,1067151600,2),(1111,1081065600,3),(1111,1099206000,2),(1111,1112515200,3),(1111,1130655600,2),(1111,1143964800,3),(1111,1162105200,2),(1111,1175414400,3),(1111,1193554800,2),(1111,1207468800,3),(1111,1225004400,2),(1111,1238918400,3),(1111,1256454000,2),(1111,1270368000,3),(1111,1288508400,2),(1111,1301817600,3),(1111,1319958000,2),(1111,1333267200,3),(1111,1351407600,2),(1111,1365321600,3),(1111,1382857200,2),(1111,1396771200,3),(1111,1414306800,2),(1111,1428220800,3),(1111,1445756400,2),(1111,1459670400,3),(1111,1477810800,2),(1111,1491120000,3),(1111,1509260400,2),(1111,1522569600,3),(1111,1540710000,2),(1111,1554624000,3),(1111,1572159600,2),(1111,1586073600,3),(1111,1603609200,2),(1111,1617523200,3),(1111,1635663600,2),(1111,1648972800,3),(1111,1667113200,2),(1111,1680422400,3),(1111,1698562800,2),(1111,1712476800,3),(1111,1730012400,2),(1111,1743926400,3),(1111,1761462000,2),(1111,1775376000,3),(1111,1792911600,2),(1111,1806825600,3),(1111,1824966000,2),(1111,1838275200,3),(1111,1856415600,2),(1111,1869724800,3),(1111,1887865200,2),(1111,1901779200,3),(1111,1919314800,2),(1111,1933228800,3),(1111,1950764400,2),(1111,1964678400,3),(1111,1982818800,2),(1111,1996128000,3),(1111,2014268400,2),(1111,2027577600,3),(1111,2045718000,2),(1111,2059027200,3),(1111,2077167600,2),(1111,2091081600,3),(1111,2108617200,2),(1111,2122531200,3),(1111,2140066800,2),(1112,-1330335000,0),(1112,-1320057000,1),(1112,-1300699800,2),(1112,-1287396000,1),(1112,-1269250200,2),(1112,-1255946400,1),(1112,-1237800600,2),(1112,-1224496800,1),(1112,-1206351000,2),(1112,-1192442400,1),(1112,-1174901400,2),(1112,-1160992800,1),(1112,-1143451800,2),(1112,-1125914400,1),(1112,-1112607000,2),(1112,-1094464800,1),(1112,-1081157400,2),(1112,-1063015200,1),(1112,-1049707800,2),(1112,-1031565600,1),(1112,-1018258200,2),(1112,-1000116000,1),(1112,-986808600,2),(1112,-968061600,1),(1112,-955359000,2),(1112,-936612000,1),(1112,-923304600,2),(1112,-757425600,5),(1112,152632800,3),(1112,162309600,4),(1112,183477600,3),(1112,194968800,4),(1112,215532000,3),(1112,226418400,4),(1112,246981600,3),(1112,257868000,4),(1112,278431200,3),(1112,289317600,4),(1112,309880800,3),(1112,320767200,4),(1112,341330400,3),(1112,352216800,4),(1112,372780000,3),(1112,384271200,4),(1112,404834400,3),(1112,415720800,4),(1112,436284000,3),(1112,447170400,4),(1112,467733600,3),(1112,478620000,4),(1112,499183200,3),(1112,510069600,4),(1112,530632800,3),(1112,541519200,4),(1112,562082400,3),(1112,573573600,4),(1112,594136800,3),(1112,605023200,4),(1112,623772000,3),(1112,637682400,4),(1112,655221600,3),(1112,669132000,4),(1112,686671200,3),(1112,700581600,4),(1112,718120800,3),(1112,732636000,4),(1112,749570400,3),(1112,764085600,4),(1112,781020000,3),(1112,795535200,4),(1112,812469600,3),(1112,826984800,4),(1112,844524000,3),(1112,858434400,4),(1112,875973600,3),(1112,889884000,4),(1112,907423200,3),(1112,921938400,4),(1112,938872800,3),(1112,953388000,4),(1112,970322400,3),(1112,984837600,4),(1112,1002376800,3),(1112,1016287200,4),(1112,1033826400,3),(1112,1047736800,4),(1112,1065276000,3),(1112,1079791200,4),(1112,1096725600,3),(1112,1111240800,4),(1112,1128175200,3),(1112,1142690400,4),(1112,1159624800,3),(1112,1174140000,4),(1112,1191074400,3),(1112,1207404000,4),(1112,1222524000,3),(1112,1238853600,4),(1112,1253973600,3),(1112,1270303200,4),(1112,1285423200,3),(1112,1301752800,4),(1112,1316872800,3),(1112,1333202400,4),(1112,1348927200,3),(1112,1365256800,4),(1112,1380376800,3),(1112,1396706400,4),(1112,1411826400,3),(1112,1428156000,4),(1112,1443276000,3),(1112,1459605600,4),(1112,1474725600,3),(1112,1491055200,4),(1112,1506175200,3),(1112,1522504800,4),(1112,1538229600,3),(1112,1554559200,4),(1112,1569679200,3),(1112,1586008800,4),(1112,1601128800,3),(1112,1617458400,4),(1112,1632578400,3),(1112,1648908000,4),(1112,1664028000,3),(1112,1680357600,4),(1112,1695477600,3),(1112,1712412000,4),(1112,1727532000,3),(1112,1743861600,4),(1112,1758981600,3),(1112,1775311200,4),(1112,1790431200,3),(1112,1806760800,4),(1112,1821880800,3),(1112,1838210400,4),(1112,1853330400,3),(1112,1869660000,4),(1112,1885384800,3),(1112,1901714400,4),(1112,1916834400,3),(1112,1933164000,4),(1112,1948284000,3),(1112,1964613600,4),(1112,1979733600,3),(1112,1996063200,4),(1112,2011183200,3),(1112,2027512800,4),(1112,2042632800,3),(1112,2058962400,4),(1112,2074687200,3),(1112,2091016800,4),(1112,2106136800,3),(1112,2122466400,4),(1112,2137586400,3),(1113,-757426500,3),(1113,152632800,1),(1113,162309600,2),(1113,183477600,1),(1113,194968800,2),(1113,215532000,1),(1113,226418400,2),(1113,246981600,1),(1113,257868000,2),(1113,278431200,1),(1113,289317600,2),(1113,309880800,1),(1113,320767200,2),(1113,341330400,1),(1113,352216800,2),(1113,372780000,1),(1113,384271200,2),(1113,404834400,1),(1113,415720800,2),(1113,436284000,1),(1113,447170400,2),(1113,467733600,1),(1113,478620000,2),(1113,499183200,1),(1113,510069600,2),(1113,530632800,1),(1113,541519200,2),(1113,562082400,1),(1113,573573600,2),(1113,594136800,1),(1113,605023200,2),(1113,623772000,1),(1113,637682400,2),(1113,655221600,1),(1113,669132000,2),(1113,686671200,1),(1113,700581600,2),(1113,718120800,1),(1113,732636000,2),(1113,749570400,1),(1113,764085600,2),(1113,781020000,1),(1113,795535200,2),(1113,812469600,1),(1113,826984800,2),(1113,844524000,1),(1113,858434400,2),(1113,875973600,1),(1113,889884000,2),(1113,907423200,1),(1113,921938400,2),(1113,938872800,1),(1113,953388000,2),(1113,970322400,1),(1113,984837600,2),(1113,1002376800,1),(1113,1016287200,2),(1113,1033826400,1),(1113,1047736800,2),(1113,1065276000,1),(1113,1079791200,2),(1113,1096725600,1),(1113,1111240800,2),(1113,1128175200,1),(1113,1142690400,2),(1113,1159624800,1),(1113,1174140000,2),(1113,1191074400,1),(1113,1207404000,2),(1113,1222524000,1),(1113,1238853600,2),(1113,1253973600,1),(1113,1270303200,2),(1113,1285423200,1),(1113,1301752800,2),(1113,1316872800,1),(1113,1333202400,2),(1113,1348927200,1),(1113,1365256800,2),(1113,1380376800,1),(1113,1396706400,2),(1113,1411826400,1),(1113,1428156000,2),(1113,1443276000,1),(1113,1459605600,2),(1113,1474725600,1),(1113,1491055200,2),(1113,1506175200,1),(1113,1522504800,2),(1113,1538229600,1),(1113,1554559200,2),(1113,1569679200,1),(1113,1586008800,2),(1113,1601128800,1),(1113,1617458400,2),(1113,1632578400,1),(1113,1648908000,2),(1113,1664028000,1),(1113,1680357600,2),(1113,1695477600,1),(1113,1712412000,2),(1113,1727532000,1),(1113,1743861600,2),(1113,1758981600,1),(1113,1775311200,2),(1113,1790431200,1),(1113,1806760800,2),(1113,1821880800,1),(1113,1838210400,2),(1113,1853330400,1),(1113,1869660000,2),(1113,1885384800,1),(1113,1901714400,2),(1113,1916834400,1),(1113,1933164000,2),(1113,1948284000,1),(1113,1964613600,2),(1113,1979733600,1),(1113,1996063200,2),(1113,2011183200,1),(1113,2027512800,2),(1113,2042632800,1),(1113,2058962400,2),(1113,2074687200,1),(1113,2091016800,2),(1113,2106136800,1),(1113,2122466400,2),(1113,2137586400,1),(1114,-1633273200,0),(1114,-1615132800,1),(1114,-1601823600,0),(1114,-1583683200,1),(1114,-1570374000,0),(1114,-1551628800,1),(1114,-1538924400,0),(1114,-1534089600,1),(1114,-880210800,2),(1114,-769395600,3),(1114,-765388800,1),(1114,-147884400,0),(1114,-131558400,1),(1114,-116434800,0),(1114,-100108800,1),(1114,-84380400,0),(1114,-68659200,1),(1114,-52930800,0),(1114,-37209600,1),(1114,-21481200,0),(1114,-5760000,1),(1114,9968400,0),(1114,25689600,1),(1114,41418000,0),(1114,57744000,1),(1114,73472400,0),(1114,89193600,1),(1114,104922000,0),(1114,120643200,1),(1114,126694800,0),(1114,152092800,1),(1114,162378000,0),(1114,183542400,1),(1114,199270800,0),(1114,215596800,1),(1114,230720400,0),(1114,247046400,1),(1114,262774800,0),(1114,278496000,1),(1114,294224400,0),(1114,309945600,1),(1114,325674000,0),(1114,341395200,1),(1114,357123600,0),(1114,372844800,1),(1114,388573200,0),(1114,404899200,1),(1114,420022800,0),(1114,436348800,1),(1114,452077200,0),(1114,467798400,1),(1114,483526800,0),(1114,499248000,1),(1114,514976400,0),(1114,530697600,1),(1114,544611600,0),(1114,562147200,1),(1114,576061200,0),(1114,594201600,1),(1114,607510800,0),(1114,625651200,1),(1114,638960400,0),(1114,657100800,1),(1114,671014800,0),(1114,688550400,1),(1114,702464400,0),(1114,720000000,1),(1114,733914000,0),(1114,752054400,1),(1114,765363600,0),(1114,783504000,1),(1114,796813200,0),(1114,814953600,1),(1114,828867600,0),(1114,846403200,1),(1114,860317200,0),(1114,877852800,1),(1114,891766800,0),(1114,909302400,1),(1114,923216400,0),(1114,941356800,1),(1114,954666000,0),(1114,972806400,1),(1114,986115600,0),(1114,1004256000,1),(1114,1018170000,0),(1114,1035705600,1),(1114,1049619600,0),(1114,1067155200,1),(1114,1081069200,0),(1114,1099209600,1),(1114,1112518800,0),(1114,1130659200,1),(1114,1143968400,0),(1114,1162108800,1),(1114,1173603600,0),(1114,1194163200,1),(1114,1205053200,0),(1114,1225612800,1),(1114,1236502800,0),(1114,1257062400,1),(1114,1268557200,0),(1114,1289116800,1),(1114,1300006800,0),(1114,1320566400,1),(1114,1331456400,0),(1114,1352016000,1),(1114,1362906000,0),(1114,1383465600,1),(1114,1394355600,0),(1114,1414915200,1),(1114,1425805200,0),(1114,1446364800,1),(1114,1457859600,0),(1114,1478419200,1),(1114,1489309200,0),(1114,1509868800,1),(1114,1520758800,0),(1114,1541318400,1),(1114,1552208400,0),(1114,1572768000,1),(1114,1583658000,0),(1114,1604217600,1),(1114,1615712400,0),(1114,1636272000,1),(1114,1647162000,0),(1114,1667721600,1),(1114,1678611600,0),(1114,1699171200,1),(1114,1710061200,0),(1114,1730620800,1),(1114,1741510800,0),(1114,1762070400,1),(1114,1772960400,0),(1114,1793520000,1),(1114,1805014800,0),(1114,1825574400,1),(1114,1836464400,0),(1114,1857024000,1),(1114,1867914000,0),(1114,1888473600,1),(1114,1899363600,0),(1114,1919923200,1),(1114,1930813200,0),(1114,1951372800,1),(1114,1962867600,0),(1114,1983427200,1),(1114,1994317200,0),(1114,2014876800,1),(1114,2025766800,0),(1114,2046326400,1),(1114,2057216400,0),(1114,2077776000,1),(1114,2088666000,0),(1114,2109225600,1),(1114,2120115600,0),(1114,2140675200,1),(1115,-933494400,0),(1115,-923130000,1),(1115,-908784000,0),(1115,-891594000,1),(1115,515520000,0),(1115,527007600,1),(1115,545155200,0),(1115,558457200,1),(1115,576604800,0),(1115,589906800,1),(1115,608659200,0),(1115,621961200,1),(1115,640108800,0),(1115,653410800,1),(1115,671558400,0),(1115,684860400,1),(1116,-1633269600,0),(1116,-1615129200,1),(1116,-1601820000,0),(1116,-1583679600,1),(1116,-880207200,2),(1116,-769395600,3),(1116,-765385200,1),(1116,-84376800,0),(1116,-68655600,1),(1116,-52927200,0),(1116,-37206000,1),(1116,-21477600,0),(1116,-5756400,1),(1116,9972000,0),(1116,25693200,1),(1116,41421600,0),(1116,57747600,1),(1116,73476000,0),(1116,89197200,1),(1116,104925600,0),(1116,120646800,1),(1116,126698400,0),(1116,152096400,1),(1116,162381600,0),(1116,183546000,1),(1116,199274400,0),(1116,215600400,1),(1116,230724000,0),(1116,247050000,1),(1116,262778400,0),(1116,278499600,1),(1116,294228000,0),(1116,309949200,1),(1116,325677600,0),(1116,341398800,1),(1116,357127200,0),(1116,372848400,1),(1116,388576800,0),(1116,404902800,1),(1116,420026400,0),(1116,436352400,1),(1116,452080800,0),(1116,467802000,1),(1116,483530400,0),(1116,499251600,1),(1116,514980000,0),(1116,530701200,1),(1116,544615200,0),(1116,562150800,1),(1116,576064800,0),(1116,594205200,1),(1116,607514400,0),(1116,625654800,1),(1116,638964000,0),(1116,657104400,1),(1116,671018400,0),(1116,688554000,1),(1116,702468000,0),(1116,720003600,1),(1116,733917600,0),(1116,752058000,1),(1116,765367200,0),(1116,783507600,1),(1116,796816800,0),(1116,814957200,1),(1116,828871200,0),(1116,846406800,1),(1116,860320800,0),(1116,877856400,1),(1116,891770400,0),(1116,909306000,1),(1116,923220000,0),(1116,941360400,1),(1116,954669600,0),(1116,972810000,1),(1116,986119200,0),(1116,1004259600,1),(1116,1018173600,0),(1116,1035709200,1),(1116,1049623200,0),(1116,1067158800,1),(1116,1081072800,0),(1116,1099213200,1),(1116,1112522400,0),(1116,1130662800,1),(1116,1143972000,0),(1116,1162112400,1),(1116,1173607200,0),(1116,1194166800,1),(1116,1205056800,0),(1116,1225616400,1),(1116,1236506400,0),(1116,1257066000,1),(1116,1268560800,0),(1116,1289120400,1),(1116,1300010400,0),(1116,1320570000,1),(1116,1331460000,0),(1116,1352019600,1),(1116,1362909600,0),(1116,1383469200,1),(1116,1394359200,0),(1116,1414918800,1),(1116,1425808800,0),(1116,1446368400,1),(1116,1457863200,0),(1116,1478422800,1),(1116,1489312800,0),(1116,1509872400,1),(1116,1520762400,0),(1116,1541322000,1),(1116,1552212000,0),(1116,1572771600,1),(1116,1583661600,0),(1116,1604221200,1),(1116,1615716000,0),(1116,1636275600,1),(1116,1647165600,0),(1116,1667725200,1),(1116,1678615200,0),(1116,1699174800,1),(1116,1710064800,0),(1116,1730624400,1),(1116,1741514400,0),(1116,1762074000,1),(1116,1772964000,0),(1116,1793523600,1),(1116,1805018400,0),(1116,1825578000,1),(1116,1836468000,0),(1116,1857027600,1),(1116,1867917600,0),(1116,1888477200,1),(1116,1899367200,0),(1116,1919926800,1),(1116,1930816800,0),(1116,1951376400,1),(1116,1962871200,0),(1116,1983430800,1),(1116,1994320800,0),(1116,2014880400,1),(1116,2025770400,0),(1116,2046330000,1),(1116,2057220000,0),(1116,2077779600,1),(1116,2088669600,0),(1116,2109229200,1),(1116,2120119200,0),(1116,2140678800,1),(1117,-1861878784,1),(1117,-631110600,3),(1117,1285498800,2),(1117,1301752800,3),(1117,1316872800,2),(1117,1325239200,5),(1117,1333202400,4),(1117,1348927200,5),(1117,1365256800,4),(1117,1380376800,5),(1117,1396706400,4),(1117,1411826400,5),(1117,1428156000,4),(1117,1443276000,5),(1117,1459605600,4),(1117,1474725600,5),(1117,1491055200,4),(1117,1506175200,5),(1117,1522504800,4),(1117,1538229600,5),(1117,1554559200,4),(1117,1569679200,5),(1117,1586008800,4),(1117,1601128800,5),(1117,1617458400,4),(1117,1632578400,5),(1117,1648908000,4),(1117,1664028000,5),(1117,1680357600,4),(1117,1695477600,5),(1117,1712412000,4),(1117,1727532000,5),(1117,1743861600,4),(1117,1758981600,5),(1117,1775311200,4),(1117,1790431200,5),(1117,1806760800,4),(1117,1821880800,5),(1117,1838210400,4),(1117,1853330400,5),(1117,1869660000,4),(1117,1885384800,5),(1117,1901714400,4),(1117,1916834400,5),(1117,1933164000,4),(1117,1948284000,5),(1117,1964613600,4),(1117,1979733600,5),(1117,1996063200,4),(1117,2011183200,5),(1117,2027512800,4),(1117,2042632800,5),(1117,2058962400,4),(1117,2074687200,5),(1117,2091016800,4),(1117,2106136800,5),(1117,2122466400,4),(1117,2137586400,5),(1118,-1330335000,0),(1118,-1320057000,1),(1118,-1300699800,2),(1118,-1287396000,1),(1118,-1269250200,2),(1118,-1255946400,1),(1118,-1237800600,2),(1118,-1224496800,1),(1118,-1206351000,2),(1118,-1192442400,1),(1118,-1174901400,2),(1118,-1160992800,1),(1118,-1143451800,2),(1118,-1125914400,1),(1118,-1112607000,2),(1118,-1094464800,1),(1118,-1081157400,2),(1118,-1063015200,1),(1118,-1049707800,2),(1118,-1031565600,1),(1118,-1018258200,2),(1118,-1000116000,1),(1118,-986808600,2),(1118,-968061600,1),(1118,-955359000,2),(1118,-936612000,1),(1118,-923304600,2),(1118,-757425600,5),(1118,152632800,3),(1118,162309600,4),(1118,183477600,3),(1118,194968800,4),(1118,215532000,3),(1118,226418400,4),(1118,246981600,3),(1118,257868000,4),(1118,278431200,3),(1118,289317600,4),(1118,309880800,3),(1118,320767200,4),(1118,341330400,3),(1118,352216800,4),(1118,372780000,3),(1118,384271200,4),(1118,404834400,3),(1118,415720800,4),(1118,436284000,3),(1118,447170400,4),(1118,467733600,3),(1118,478620000,4),(1118,499183200,3),(1118,510069600,4),(1118,530632800,3),(1118,541519200,4),(1118,562082400,3),(1118,573573600,4),(1118,594136800,3),(1118,605023200,4),(1118,623772000,3),(1118,637682400,4),(1118,655221600,3),(1118,669132000,4),(1118,686671200,3),(1118,700581600,4),(1118,718120800,3),(1118,732636000,4),(1118,749570400,3),(1118,764085600,4),(1118,781020000,3),(1118,795535200,4),(1118,812469600,3),(1118,826984800,4),(1118,844524000,3),(1118,858434400,4),(1118,875973600,3),(1118,889884000,4),(1118,907423200,3),(1118,921938400,4),(1118,938872800,3),(1118,953388000,4),(1118,970322400,3),(1118,984837600,4),(1118,1002376800,3),(1118,1016287200,4),(1118,1033826400,3),(1118,1047736800,4),(1118,1065276000,3),(1118,1079791200,4),(1118,1096725600,3),(1118,1111240800,4),(1118,1128175200,3),(1118,1142690400,4),(1118,1159624800,3),(1118,1174140000,4),(1118,1191074400,3),(1118,1207404000,4),(1118,1222524000,3),(1118,1238853600,4),(1118,1253973600,3),(1118,1270303200,4),(1118,1285423200,3),(1118,1301752800,4),(1118,1316872800,3),(1118,1333202400,4),(1118,1348927200,3),(1118,1365256800,4),(1118,1380376800,3),(1118,1396706400,4),(1118,1411826400,3),(1118,1428156000,4),(1118,1443276000,3),(1118,1459605600,4),(1118,1474725600,3),(1118,1491055200,4),(1118,1506175200,3),(1118,1522504800,4),(1118,1538229600,3),(1118,1554559200,4),(1118,1569679200,3),(1118,1586008800,4),(1118,1601128800,3),(1118,1617458400,4),(1118,1632578400,3),(1118,1648908000,4),(1118,1664028000,3),(1118,1680357600,4),(1118,1695477600,3),(1118,1712412000,4),(1118,1727532000,3),(1118,1743861600,4),(1118,1758981600,3),(1118,1775311200,4),(1118,1790431200,3),(1118,1806760800,4),(1118,1821880800,3),(1118,1838210400,4),(1118,1853330400,3),(1118,1869660000,4),(1118,1885384800,3),(1118,1901714400,4),(1118,1916834400,3),(1118,1933164000,4),(1118,1948284000,3),(1118,1964613600,4),(1118,1979733600,3),(1118,1996063200,4),(1118,2011183200,3),(1118,2027512800,4),(1118,2042632800,3),(1118,2058962400,4),(1118,2074687200,3),(1118,2091016800,4),(1118,2106136800,3),(1118,2122466400,4),(1118,2137586400,3),(1119,-868010400,1),(1119,-768906000,0),(1119,1419696000,2),(1120,-757426500,3),(1120,152632800,1),(1120,162309600,2),(1120,183477600,1),(1120,194968800,2),(1120,215532000,1),(1120,226418400,2),(1120,246981600,1),(1120,257868000,2),(1120,278431200,1),(1120,289317600,2),(1120,309880800,1),(1120,320767200,2),(1120,341330400,1),(1120,352216800,2),(1120,372780000,1),(1120,384271200,2),(1120,404834400,1),(1120,415720800,2),(1120,436284000,1),(1120,447170400,2),(1120,467733600,1),(1120,478620000,2),(1120,499183200,1),(1120,510069600,2),(1120,530632800,1),(1120,541519200,2),(1120,562082400,1),(1120,573573600,2),(1120,594136800,1),(1120,605023200,2),(1120,623772000,1),(1120,637682400,2),(1120,655221600,1),(1120,669132000,2),(1120,686671200,1),(1120,700581600,2),(1120,718120800,1),(1120,732636000,2),(1120,749570400,1),(1120,764085600,2),(1120,781020000,1),(1120,795535200,2),(1120,812469600,1),(1120,826984800,2),(1120,844524000,1),(1120,858434400,2),(1120,875973600,1),(1120,889884000,2),(1120,907423200,1),(1120,921938400,2),(1120,938872800,1),(1120,953388000,2),(1120,970322400,1),(1120,984837600,2),(1120,1002376800,1),(1120,1016287200,2),(1120,1033826400,1),(1120,1047736800,2),(1120,1065276000,1),(1120,1079791200,2),(1120,1096725600,1),(1120,1111240800,2),(1120,1128175200,1),(1120,1142690400,2),(1120,1159624800,1),(1120,1174140000,2),(1120,1191074400,1),(1120,1207404000,2),(1120,1222524000,1),(1120,1238853600,2),(1120,1253973600,1),(1120,1270303200,2),(1120,1285423200,1),(1120,1301752800,2),(1120,1316872800,1),(1120,1333202400,2),(1120,1348927200,1),(1120,1365256800,2),(1120,1380376800,1),(1120,1396706400,2),(1120,1411826400,1),(1120,1428156000,2),(1120,1443276000,1),(1120,1459605600,2),(1120,1474725600,1),(1120,1491055200,2),(1120,1506175200,1),(1120,1522504800,2),(1120,1538229600,1),(1120,1554559200,2),(1120,1569679200,1),(1120,1586008800,2),(1120,1601128800,1),(1120,1617458400,2),(1120,1632578400,1),(1120,1648908000,2),(1120,1664028000,1),(1120,1680357600,2),(1120,1695477600,1),(1120,1712412000,2),(1120,1727532000,1),(1120,1743861600,2),(1120,1758981600,1),(1120,1775311200,2),(1120,1790431200,1),(1120,1806760800,2),(1120,1821880800,1),(1120,1838210400,2),(1120,1853330400,1),(1120,1869660000,2),(1120,1885384800,1),(1120,1901714400,2),(1120,1916834400,1),(1120,1933164000,2),(1120,1948284000,1),(1120,1964613600,2),(1120,1979733600,1),(1120,1996063200,2),(1120,2011183200,1),(1120,2027512800,2),(1120,2042632800,1),(1120,2058962400,2),(1120,2074687200,1),(1120,2091016800,2),(1120,2106136800,1),(1120,2122466400,2),(1120,2137586400,1),(1122,-1178124152,3),(1122,-36619200,1),(1122,-23922000,2),(1122,-3355200,1),(1122,7527600,2),(1122,24465600,1),(1122,37767600,2),(1122,55915200,1),(1122,69217200,2),(1122,87969600,1),(1122,100666800,2),(1122,118209600,1),(1122,132116400,2),(1122,150868800,1),(1122,163566000,2),(1122,182318400,1),(1122,195620400,2),(1122,213768000,1),(1122,227070000,2),(1122,245217600,1),(1122,258519600,2),(1122,277272000,1),(1122,289969200,2),(1122,308721600,1),(1122,321418800,2),(1122,340171200,1),(1122,353473200,2),(1122,371620800,1),(1122,384922800,4),(1122,403070400,5),(1122,416372400,4),(1122,434520000,5),(1122,447822000,4),(1122,466574400,5),(1122,479271600,4),(1122,498024000,5),(1122,510721200,4),(1122,529473600,5),(1122,545194800,4),(1122,560923200,5),(1122,574225200,4),(1122,592372800,5),(1122,605674800,4),(1122,624427200,5),(1122,637124400,4),(1122,653457600,5),(1122,668574000,4),(1122,687326400,5),(1122,700628400,4),(1122,718776000,5),(1122,732078000,4),(1122,750225600,5),(1122,763527600,4),(1122,781675200,5),(1122,794977200,4),(1122,813729600,5),(1122,826426800,4),(1122,845179200,5),(1122,859690800,4),(1122,876628800,5),(1122,889930800,4),(1122,906868800,5),(1122,923194800,4),(1122,939528000,5),(1122,952830000,4),(1122,971582400,5),(1122,984279600,4),(1122,1003032000,5),(1122,1015729200,4),(1122,1034481600,5),(1122,1047178800,4),(1122,1065931200,5),(1122,1079233200,4),(1122,1097380800,5),(1122,1110682800,4),(1122,1128830400,5),(1122,1142132400,4),(1122,1160884800,5),(1122,1173582000,4),(1122,1192334400,5),(1122,1206846000,4),(1122,1223784000,5),(1122,1237086000,4),(1122,1255233600,5),(1122,1270350000,4),(1122,1286683200,5),(1122,1304823600,4),(1122,1313899200,5),(1122,1335668400,4),(1122,1346558400,5),(1122,1367118000,4),(1122,1378612800,5),(1122,1398567600,4),(1122,1410062400,5),(1122,1463281200,4),(1122,1471147200,5),(1122,1494730800,4),(1122,1502596800,5),(1122,1526180400,4),(1122,1534046400,5),(1122,1557630000,4),(1122,1565496000,5),(1122,1589079600,4),(1122,1596945600,5),(1122,1620529200,4),(1122,1629000000,5),(1122,1652583600,4),(1122,1660449600,5),(1122,1684033200,4),(1122,1691899200,5),(1122,1715482800,4),(1122,1723348800,5),(1122,1746932400,4),(1122,1754798400,5),(1122,1778382000,4),(1122,1786248000,5),(1122,1809831600,4),(1122,1818302400,5),(1122,1841886000,4),(1122,1849752000,5),(1122,1873335600,4),(1122,1881201600,5),(1122,1904785200,4),(1122,1912651200,5),(1122,1936234800,4),(1122,1944100800,5),(1122,1967684400,4),(1122,1976155200,5),(1122,1999738800,4),(1122,2007604800,5),(1122,2031188400,4),(1122,2039054400,5),(1122,2062638000,4),(1122,2070504000,5),(1122,2094087600,4),(1122,2101953600,5),(1122,2125537200,4),(1122,2133403200,5),(1123,-1829387596,2),(1123,433256400,1),(1123,448977600,2),(1123,467298000,1),(1123,480427200,2),(1123,496760400,1),(1123,511876800,2),(1123,528210000,1),(1123,543931200,2),(1123,559659600,1),(1123,575380800,2),(1123,591109200,1),(1123,606830400,2),(1123,622558800,1),(1123,638280000,2),(1123,654008400,1),(1123,669729600,2),(1123,686062800,1),(1123,696340800,2),(1123,719931600,1),(1123,727790400,2),(1124,307627200,1),(1124,788871600,2),(1125,1325242800,1),(1126,-1709985344,2),(1126,909842400,1),(1126,920124000,2),(1126,941896800,1),(1126,951573600,2),(1126,1259416800,1),(1126,1269698400,2),(1126,1287842400,1),(1126,1299333600,2),(1126,1319292000,1),(1126,1327154400,2),(1126,1350741600,1),(1126,1358604000,2),(1126,1382796000,1),(1126,1390050000,2),(1126,1414850400,1),(1126,1421503200,2),(1126,1446300000,1),(1126,1452952800,2),(1126,1478354400,1),(1126,1484402400,2),(1126,1509804000,1),(1126,1515852000,2),(1126,1541253600,1),(1126,1547906400,2),(1126,1572703200,1),(1126,1579356000,2),(1126,1604152800,1),(1126,1610805600,2),(1126,1636207200,1),(1126,1642255200,2),(1126,1667656800,1),(1126,1673704800,2),(1126,1699106400,1),(1126,1705154400,2),(1126,1730556000,1),(1126,1737208800,2),(1126,1762005600,1),(1126,1768658400,2),(1126,1793455200,1),(1126,1800108000,2),(1126,1825509600,1),(1126,1831557600,2),(1126,1856959200,1),(1126,1863007200,2),(1126,1888408800,1),(1126,1895061600,2),(1126,1919858400,1),(1126,1926511200,2),(1126,1951308000,1),(1126,1957960800,2),(1126,1983362400,1),(1126,1989410400,2),(1126,2014812000,1),(1126,2020860000,2),(1126,2046261600,1),(1126,2052309600,2),(1126,2077711200,1),(1126,2084364000,2),(1126,2109160800,1),(1126,2115813600,2),(1126,2140610400,1),(1126,2147263200,2),(1128,-1230746496,1),(1128,504939600,3),(1128,722930400,2),(1128,728888400,3),(1129,-1806678012,1),(1130,-1806748788,1),(1131,977493600,1),(1132,-1157283000,1),(1132,-1155436200,0),(1132,-880198200,1),(1132,-765376200,0),(1132,-712150200,2),(1133,-1157283000,1),(1133,-1155436200,0),(1133,-880198200,1),(1133,-765376200,0),(1133,-712150200,2),(1134,307622400,1),(1134,788868000,2),(1135,-7988400,1),(1135,915105600,0),(1136,-7988400,1),(1136,745848000,2),(1137,-7988400,1),(1138,-1806676920,1),(1139,-1861879032,1),(1140,-1545131260,1),(1140,-877347000,2),(1140,-800960400,1),(1140,294323400,3),(1141,-599575200,1),(1141,276089400,2),(1142,-599656320,1),(1142,152029800,2),(1142,162912600,1),(1142,1443882600,3),(1143,-1829387148,2),(1143,250002000,1),(1143,257342400,2),(1143,281451600,1),(1143,288878400,2),(1143,849366000,3),(1143,857228400,4),(1144,-1861879032,1),(1146,893665800,1),(1150,279714600,2),(1150,289387800,1),(1150,309952800,2),(1150,320837400,1),(1150,341402400,2),(1150,352287000,1),(1150,372852000,2),(1150,384341400,1),(1150,404906400,2),(1150,415791000,1),(1150,436356000,2),(1150,447240600,1),(1150,467805600,2),(1150,478690200,1),(1150,499255200,2),(1150,510139800,1),(1150,530704800,2),(1150,541589400,1),(1150,562154400,2),(1150,573643800,1),(1150,594208800,2),(1150,605093400,1),(1150,625658400,2),(1150,636543000,1),(1150,657108000,2),(1150,667992600,1),(1151,977493600,1),(1152,-1861879032,1),(1153,-1806674504,1),(1155,-915193200,1),(1155,939214800,2),(1155,953384400,3),(1155,973342800,4),(1155,980596800,1),(1155,1004792400,4),(1155,1012046400,1),(1155,1478350800,4),(1155,1484398800,1),(1160,-1717032240,2),(1160,-1693706400,1),(1160,-1680483600,2),(1160,-1663455600,3),(1160,-1650150000,4),(1160,-1632006000,3),(1160,-1618700400,7),(1160,-1600473600,5),(1160,-1587168000,6),(1160,-1501725600,2),(1160,-931734000,1),(1160,-857257200,4),(1160,-844556400,3),(1160,-828226800,4),(1160,-812502000,3),(1160,-796874400,1),(1160,-796608000,2),(1160,-778726800,1),(1160,-762660000,2),(1160,-748486800,3),(1160,-733273200,4),(1160,-715215600,3),(1160,-701910000,4),(1160,-684975600,3),(1160,-670460400,4),(1160,-654130800,3),(1160,-639010800,4),(1160,-397094400,3),(1160,-386812800,4),(1160,-371088000,3),(1160,-355363200,4),(1160,-334195200,3),(1160,-323308800,4),(1160,-307584000,3),(1160,-291859200,4),(1160,-271296000,3),(1160,-260409600,4),(1160,-239846400,3),(1160,-228960000,4),(1160,-208396800,3),(1160,-197510400,4),(1160,-176342400,3),(1160,-166060800,4),(1160,220921200,2),(1160,228873600,3),(1160,243993600,4),(1160,260323200,3),(1160,276048000,4),(1160,291772800,3),(1160,307497600,4),(1160,323827200,3),(1160,338947200,4),(1160,354672000,3),(1160,370396800,4),(1160,386121600,3),(1160,401846400,4),(1160,417571200,3),(1160,433296000,4),(1160,449020800,3),(1160,465350400,4),(1160,481075200,3),(1160,496800000,4),(1160,512524800,3),(1160,528249600,4),(1160,543974400,3),(1160,559699200,4),(1160,567990000,2),(1160,575427600,8),(1160,591152400,9),(1160,606877200,8),(1160,622602000,9),(1160,638326800,8),(1160,654656400,9),(1160,670381200,8),(1160,686106000,9),(1160,701830800,8),(1160,717555600,9),(1160,733280400,8),(1160,749005200,9),(1160,764730000,8),(1160,780454800,9),(1160,796179600,8),(1160,811904400,9),(1160,828234000,8),(1160,846378000,9),(1160,859683600,8),(1160,877827600,9),(1160,891133200,8),(1160,909277200,9),(1160,922582800,8),(1160,941331600,9),(1160,954032400,8),(1160,972781200,9),(1160,985482000,8),(1160,1004230800,9),(1160,1017536400,8),(1160,1035680400,9),(1160,1048986000,8),(1160,1067130000,9),(1160,1080435600,8),(1160,1099184400,9),(1160,1111885200,8),(1160,1130634000,9),(1160,1143334800,8),(1160,1162083600,9),(1160,1174784400,8),(1160,1193533200,9),(1160,1206838800,8),(1160,1224982800,9),(1160,1238288400,8),(1160,1256432400,9),(1160,1269738000,8),(1160,1288486800,9),(1160,1301187600,8),(1160,1319936400,9),(1160,1332637200,8),(1160,1351386000,9),(1160,1364691600,8),(1160,1382835600,9),(1160,1396141200,8),(1160,1414285200,9),(1160,1427590800,8),(1160,1445734800,9),(1160,1459040400,8),(1160,1477789200,9),(1160,1490490000,8),(1160,1509238800,9),(1160,1521939600,8),(1160,1540688400,9),(1160,1553994000,8),(1160,1572138000,9),(1160,1585443600,8),(1160,1603587600,9),(1160,1616893200,8),(1160,1635642000,9),(1160,1648342800,8),(1160,1667091600,9),(1160,1679792400,8),(1160,1698541200,9),(1160,1711846800,8),(1160,1729990800,9),(1160,1743296400,8),(1160,1761440400,9),(1160,1774746000,8),(1160,1792890000,9),(1160,1806195600,8),(1160,1824944400,9),(1160,1837645200,8),(1160,1856394000,9),(1160,1869094800,8),(1160,1887843600,9),(1160,1901149200,8),(1160,1919293200,9),(1160,1932598800,8),(1160,1950742800,9),(1160,1964048400,8),(1160,1982797200,9),(1160,1995498000,8),(1160,2014246800,9),(1160,2026947600,8),(1160,2045696400,9),(1160,2058397200,8),(1160,2077146000,9),(1160,2090451600,8),(1160,2108595600,9),(1160,2121901200,8),(1160,2140045200,9),(1161,-1830384000,6),(1161,-1689555600,1),(1161,-1677801600,2),(1161,-1667437200,3),(1161,-1647738000,4),(1161,-1635814800,3),(1161,-1616202000,4),(1161,-1604365200,3),(1161,-1584666000,4),(1161,-1572742800,3),(1161,-1553043600,4),(1161,-1541206800,3),(1161,-1521507600,4),(1161,-1442451600,3),(1161,-1426813200,4),(1161,-1379293200,3),(1161,-1364778000,4),(1161,-1348448400,3),(1161,-1333328400,4),(1161,-1316394000,3),(1161,-1301274000,4),(1161,-1284339600,3),(1161,-1269824400,4),(1161,-1221440400,3),(1161,-1206925200,4),(1161,-1191200400,3),(1161,-1175475600,4),(1161,-1127696400,3),(1161,-1111971600,4),(1161,-1096851600,3),(1161,-1080522000,4),(1161,-1063587600,3),(1161,-1049072400,4),(1161,-1033347600,3),(1161,-1017622800,4),(1161,-1002502800,3),(1161,-986173200,4),(1161,-969238800,3),(1161,-950490000,4),(1161,-942022800,3),(1161,-922669200,4),(1161,-906944400,3),(1161,-891133200,4),(1161,-877309200,3),(1161,-873684000,5),(1161,-864007200,3),(1161,-857955600,4),(1161,-845859600,3),(1161,-842839200,5),(1161,-831348000,3),(1161,-825901200,4),(1161,-814410000,3),(1161,-810784800,5),(1161,-799898400,3),(1161,-794451600,4),(1161,-782960400,3),(1161,-779335200,5),(1161,-768448800,3),(1161,-763002000,4),(1161,-749091600,3),(1161,-733366800,4),(1161,-717631200,3),(1161,-701906400,4),(1161,-686181600,3),(1161,-670456800,4),(1161,-654732000,3),(1161,-639007200,4),(1161,-591832800,3),(1161,-575503200,4),(1161,-559778400,3),(1161,-544053600,4),(1161,-528328800,3),(1161,-512604000,4),(1161,-496879200,3),(1161,-481154400,4),(1161,-465429600,3),(1161,-449704800,4),(1161,-433980000,3),(1161,-417650400,4),(1161,-401925600,3),(1161,-386200800,4),(1161,-370476000,3),(1161,-354751200,4),(1161,-339026400,3),(1161,-323301600,4),(1161,-307576800,3),(1161,-291852000,4),(1161,-276127200,3),(1161,-260402400,4),(1161,-244677600,3),(1161,-228348000,4),(1161,-212623200,3),(1161,-196898400,4),(1161,-181173600,3),(1161,-165448800,4),(1161,-149724000,3),(1161,-133999200,4),(1161,-118274400,7),(1161,212544000,2),(1161,228268800,3),(1161,243993600,4),(1161,260323200,3),(1161,276048000,4),(1161,291772800,3),(1161,307501200,4),(1161,323222400,3),(1161,338950800,4),(1161,354675600,3),(1161,370400400,4),(1161,386125200,3),(1161,401850000,4),(1161,417578400,3),(1161,433299600,4),(1161,449024400,3),(1161,465354000,4),(1161,481078800,3),(1161,496803600,4),(1161,512528400,3),(1161,528253200,4),(1161,543978000,3),(1161,559702800,4),(1161,575427600,3),(1161,591152400,4),(1161,606877200,3),(1161,622602000,4),(1161,638326800,3),(1161,654656400,4),(1161,670381200,3),(1161,686106000,4),(1161,701830800,3),(1161,717555600,8),(1161,733280400,9),(1161,749005200,8),(1161,764730000,9),(1161,780454800,8),(1161,796179600,9),(1161,811904400,8),(1161,828234000,10),(1161,846378000,6),(1161,859683600,10),(1161,877827600,6),(1161,891133200,10),(1161,909277200,6),(1161,922582800,10),(1161,941331600,6),(1161,954032400,10),(1161,972781200,6),(1161,985482000,10),(1161,1004230800,6),(1161,1017536400,10),(1161,1035680400,6),(1161,1048986000,10),(1161,1067130000,6),(1161,1080435600,10),(1161,1099184400,6),(1161,1111885200,10),(1161,1130634000,6),(1161,1143334800,10),(1161,1162083600,6),(1161,1174784400,10),(1161,1193533200,6),(1161,1206838800,10),(1161,1224982800,6),(1161,1238288400,10),(1161,1256432400,6),(1161,1269738000,10),(1161,1288486800,6),(1161,1301187600,10),(1161,1319936400,6),(1161,1332637200,10),(1161,1351386000,6),(1161,1364691600,10),(1161,1382835600,6),(1161,1396141200,10),(1161,1414285200,6),(1161,1427590800,10),(1161,1445734800,6),(1161,1459040400,10),(1161,1477789200,6),(1161,1490490000,10),(1161,1509238800,6),(1161,1521939600,10),(1161,1540688400,6),(1161,1553994000,10),(1161,1572138000,6),(1161,1585443600,10),(1161,1603587600,6),(1161,1616893200,10),(1161,1635642000,6),(1161,1648342800,10),(1161,1667091600,6),(1161,1679792400,10),(1161,1698541200,6),(1161,1711846800,10),(1161,1729990800,6),(1161,1743296400,10),(1161,1761440400,6),(1161,1774746000,10),(1161,1792890000,6),(1161,1806195600,10),(1161,1824944400,6),(1161,1837645200,10),(1161,1856394000,6),(1161,1869094800,10),(1161,1887843600,6),(1161,1901149200,10),(1161,1919293200,6),(1161,1932598800,10),(1161,1950742800,6),(1161,1964048400,10),(1161,1982797200,6),(1161,1995498000,10),(1161,2014246800,6),(1161,2026947600,10),(1161,2045696400,6),(1161,2058397200,10),(1161,2077146000,6),(1161,2090451600,10),(1161,2108595600,6),(1161,2121901200,10),(1161,2140045200,6),(1162,-1017820800,1),(1162,-766224000,0),(1162,-745833600,2),(1162,-733827600,0),(1162,-716889600,2),(1162,-699613200,0),(1162,-683884800,2),(1162,-670669200,0),(1162,-652348800,2),(1162,-639133200,0),(1162,-620812800,2),(1162,-607597200,0),(1162,-589276800,2),(1162,-576061200,0),(1162,-562924800,2),(1162,-541760400,0),(1162,-528710400,2),(1162,-510224400,0),(1162,-497174400,2),(1162,-478688400,0),(1162,-465638400,2),(1162,-449830800,0),(1162,-434016000,2),(1162,-418208400,0),(1162,-402480000,2),(1162,-386672400,0),(1162,-370944000,2),(1162,-355136400,0),(1162,-339408000,2),(1162,-323600400,0),(1162,-302515200,2),(1162,-291978000,0),(1162,-270979200,2),(1162,-260442000,0),(1162,133977600,2),(1162,149785200,0),(1162,165513600,2),(1162,181321200,0),(1162,299606400,2),(1162,307551600,0),(1163,-1948782472,1),(1163,-1830414600,2),(1163,-767350800,3),(1163,-498128400,1),(1163,-462702600,4),(1163,-451733400,1),(1163,-429784200,4),(1163,-418296600,1),(1163,-399544200,4),(1163,-387451800,1),(1163,-368094600,4),(1163,-356002200,1),(1163,-336645000,4),(1163,-324552600,1),(1163,-305195400,4),(1163,-293103000,1),(1163,-264933000,3),(1163,547578000,5),(1163,560883600,3),(1163,579027600,5),(1163,592333200,3),(1164,-2038200925,1),(1164,-1167634800,2),(1164,-1073028000,3),(1164,-894180000,4),(1164,-879665400,5),(1164,-767005200,4),(1164,378664200,6),(1165,-1869875816,2),(1165,-1693706400,1),(1165,-1680490800,2),(1165,-1570413600,1),(1165,-1552186800,2),(1165,-1538359200,1),(1165,-1522551600,2),(1165,-1507514400,1),(1165,-1490583600,2),(1165,-1440208800,1),(1165,-1428030000,2),(1165,-1409709600,1),(1165,-1396494000,2),(1165,-931140000,1),(1165,-922762800,2),(1165,-917834400,1),(1165,-892436400,2),(1165,-875844000,1),(1165,-857358000,2),(1165,-781063200,1),(1165,-764737200,2),(1165,-744343200,1),(1165,-733806000,2),(1165,-716436000,1),(1165,-701924400,2),(1165,-684986400,1),(1165,-670474800,2),(1165,-654141600,1),(1165,-639025200,2),(1165,-621828000,1),(1165,-606970800,2),(1165,-590032800,1),(1165,-575434800,2),(1165,-235620000,1),(1165,-228279600,2),(1165,-177732000,1),(1165,-165726000,2),(1165,10533600,1),(1165,23835600,2),(1165,41983200,1),(1165,55285200,2),(1165,74037600,1),(1165,87339600,2),(1165,107910000,1),(1165,121219200,2),(1165,133920000,1),(1165,152676000,2),(1165,165362400,1),(1165,183502800,2),(1165,202428000,1),(1165,215557200,2),(1165,228866400,1),(1165,245797200,2),(1165,260316000,1),(1165,277246800,3),(1165,308779200,4),(1165,323827200,3),(1165,340228800,4),(1165,354672000,3),(1165,371678400,4),(1165,386121600,3),(1165,403128000,4),(1165,428446800,3),(1165,433886400,4),(1165,482792400,1),(1165,496702800,2),(1165,512521200,5),(1165,528246000,6),(1165,543970800,5),(1165,559695600,6),(1165,575420400,5),(1165,591145200,6),(1165,606870000,5),(1165,622594800,6),(1165,638319600,5),(1165,654649200,6),(1165,670374000,5),(1165,686098800,6),(1165,701823600,5),(1165,717548400,6),(1165,733273200,5),(1165,748998000,6),(1165,764118000,5),(1165,780447600,6),(1165,796172400,5),(1165,811897200,6),(1165,828226800,5),(1165,846370800,6),(1165,859676400,5),(1165,877820400,6),(1165,891126000,5),(1165,909270000,6),(1165,922575600,5),(1165,941324400,6),(1165,954025200,5),(1165,972774000,6),(1165,985474800,5),(1165,1004223600,6),(1165,1017529200,5),(1165,1035673200,6),(1165,1048978800,5),(1165,1067122800,6),(1165,1080428400,5),(1165,1099177200,6),(1165,1111878000,5),(1165,1130626800,6),(1165,1143327600,5),(1165,1162076400,6),(1165,1167602400,2),(1165,1174784400,7),(1165,1193533200,8),(1165,1206838800,7),(1165,1224982800,8),(1165,1238288400,7),(1165,1256432400,8),(1165,1269738000,7),(1165,1288486800,8),(1165,1301274000,7),(1165,1319936400,8),(1165,1332637200,7),(1165,1351386000,8),(1165,1364691600,7),(1165,1382835600,8),(1165,1396227600,7),(1165,1414285200,8),(1165,1427590800,7),(1165,1446944400,8),(1165,1459040400,7),(1165,1473195600,4),(1167,-880200000,1),(1167,-769395600,2),(1167,-765378000,0),(1167,-86882400,3),(1167,-21470400,4),(1167,-5749200,3),(1167,9979200,4),(1167,25700400,3),(1167,41428800,4),(1167,57754800,3),(1167,73483200,4),(1167,89204400,3),(1167,104932800,4),(1167,120654000,3),(1167,126705600,4),(1167,152103600,3),(1167,162388800,4),(1167,183553200,3),(1167,199281600,4),(1167,215607600,3),(1167,230731200,4),(1167,247057200,3),(1167,262785600,4),(1167,278506800,3),(1167,294235200,4),(1167,309956400,3),(1167,325684800,4),(1167,341406000,3),(1167,357134400,4),(1167,372855600,3),(1167,388584000,4),(1167,404910000,3),(1167,420033600,4),(1167,436359600,5),(1167,439030800,7),(1167,452084400,6),(1167,467805600,7),(1167,483534000,6),(1167,499255200,7),(1167,514983600,6),(1167,530704800,7),(1167,544618800,6),(1167,562154400,7),(1167,576068400,6),(1167,594208800,7),(1167,607518000,6),(1167,625658400,7),(1167,638967600,6),(1167,657108000,7),(1167,671022000,6),(1167,688557600,7),(1167,702471600,6),(1167,720007200,7),(1167,733921200,6),(1167,752061600,7),(1167,765370800,6),(1167,783511200,7),(1167,796820400,6),(1167,814960800,7),(1167,828874800,6),(1167,846410400,7),(1167,860324400,6),(1167,877860000,7),(1167,891774000,6),(1167,909309600,7),(1167,923223600,6),(1167,941364000,7),(1167,954673200,6),(1167,972813600,7),(1167,986122800,6),(1167,1004263200,7),(1167,1018177200,6),(1167,1035712800,7),(1167,1049626800,6),(1167,1067162400,7),(1167,1081076400,6),(1167,1099216800,7),(1167,1112526000,6),(1167,1130666400,7),(1167,1143975600,6),(1167,1162116000,7),(1167,1173610800,6),(1167,1194170400,7),(1167,1205060400,6),(1167,1225620000,7),(1167,1236510000,6),(1167,1257069600,7),(1167,1268564400,6),(1167,1289124000,7),(1167,1300014000,6),(1167,1320573600,7),(1167,1331463600,6),(1167,1352023200,7),(1167,1362913200,6),(1167,1383472800,7),(1167,1394362800,6),(1167,1414922400,7),(1167,1425812400,6),(1167,1446372000,7),(1167,1457866800,6),(1167,1478426400,7),(1167,1489316400,6),(1167,1509876000,7),(1167,1520766000,6),(1167,1541325600,7),(1167,1552215600,6),(1167,1572775200,7),(1167,1583665200,6),(1167,1604224800,7),(1167,1615719600,6),(1167,1636279200,7),(1167,1647169200,6),(1167,1667728800,7),(1167,1678618800,6),(1167,1699178400,7),(1167,1710068400,6),(1167,1730628000,7),(1167,1741518000,6),(1167,1762077600,7),(1167,1772967600,6),(1167,1793527200,7),(1167,1805022000,6),(1167,1825581600,7),(1167,1836471600,6),(1167,1857031200,7),(1167,1867921200,6),(1167,1888480800,7),(1167,1899370800,6),(1167,1919930400,7),(1167,1930820400,6),(1167,1951380000,7),(1167,1962874800,6),(1167,1983434400,7),(1167,1994324400,6),(1167,2014884000,7),(1167,2025774000,6),(1167,2046333600,7),(1167,2057223600,6),(1167,2077783200,7),(1167,2088673200,6),(1167,2109232800,7),(1167,2120122800,6),(1167,2140682400,7),(1168,-880196400,1),(1168,-769395600,2),(1168,-765374400,0),(1168,-86878800,3),(1168,-21466800,4),(1168,-5745600,3),(1168,9982800,4),(1168,25704000,3),(1168,41432400,4),(1168,57758400,3),(1168,73486800,4),(1168,89208000,3),(1168,104936400,4),(1168,120657600,3),(1168,126709200,4),(1168,152107200,3),(1168,162392400,4),(1168,183556800,3),(1168,199285200,4),(1168,215611200,3),(1168,230734800,4),(1168,247060800,3),(1168,262789200,4),(1168,278510400,3),(1168,294238800,4),(1168,309960000,3),(1168,325688400,4),(1168,341409600,3),(1168,357138000,4),(1168,372859200,3),(1168,388587600,4),(1168,404913600,3),(1168,420037200,4),(1168,436363200,5),(1168,439034400,7),(1168,452088000,6),(1168,467809200,7),(1168,483537600,6),(1168,499258800,7),(1168,514987200,6),(1168,530708400,7),(1168,544622400,6),(1168,562158000,7),(1168,576072000,6),(1168,594212400,7),(1168,607521600,6),(1168,625662000,7),(1168,638971200,6),(1168,657111600,7),(1168,671025600,6),(1168,688561200,7),(1168,702475200,6),(1168,720010800,7),(1168,733924800,6),(1168,752065200,7),(1168,765374400,6),(1168,783514800,7),(1168,796824000,6),(1168,814964400,7),(1168,828878400,6),(1168,846414000,7),(1168,860328000,6),(1168,877863600,7),(1168,891777600,6),(1168,909313200,7),(1168,923227200,6),(1168,941367600,7),(1168,954676800,6),(1168,972817200,7),(1168,986126400,6),(1168,1004266800,7),(1168,1018180800,6),(1168,1035716400,7),(1168,1049630400,6),(1168,1067166000,7),(1168,1081080000,6),(1168,1099220400,7),(1168,1112529600,6),(1168,1130670000,7),(1168,1143979200,6),(1168,1162119600,7),(1168,1173614400,6),(1168,1194174000,7),(1168,1205064000,6),(1168,1225623600,7),(1168,1236513600,6),(1168,1257073200,7),(1168,1268568000,6),(1168,1289127600,7),(1168,1300017600,6),(1168,1320577200,7),(1168,1331467200,6),(1168,1352026800,7),(1168,1362916800,6),(1168,1383476400,7),(1168,1394366400,6),(1168,1414926000,7),(1168,1425816000,6),(1168,1446375600,7),(1168,1457870400,6),(1168,1478430000,7),(1168,1489320000,6),(1168,1509879600,7),(1168,1520769600,6),(1168,1541329200,7),(1168,1552219200,6),(1168,1572778800,7),(1168,1583668800,6),(1168,1604228400,7),(1168,1615723200,6),(1168,1636282800,7),(1168,1647172800,6),(1168,1667732400,7),(1168,1678622400,6),(1168,1699182000,7),(1168,1710072000,6),(1168,1730631600,7),(1168,1741521600,6),(1168,1762081200,7),(1168,1772971200,6),(1168,1793530800,7),(1168,1805025600,6),(1168,1825585200,7),(1168,1836475200,6),(1168,1857034800,7),(1168,1867924800,6),(1168,1888484400,7),(1168,1899374400,6),(1168,1919934000,7),(1168,1930824000,6),(1168,1951383600,7),(1168,1962878400,6),(1168,1983438000,7),(1168,1994328000,6),(1168,2014887600,7),(1168,2025777600,6),(1168,2046337200,7),(1168,2057227200,6),(1168,2077786800,7),(1168,2088676800,6),(1168,2109236400,7),(1168,2120126400,6),(1168,2140686000,7),(1169,-1633273200,0),(1169,-1615132800,1),(1169,-1601823600,0),(1169,-1583683200,1),(1169,-880210800,2),(1169,-820519140,1),(1169,-812653140,2),(1169,-796845540,1),(1169,-84380400,0),(1169,-68659200,1),(1170,-1633276800,0),(1170,-1615136400,1),(1170,-1601827200,0),(1170,-1583686800,1),(1170,-1563724800,0),(1170,-1551632400,1),(1170,-1538928000,0),(1170,-1520182800,1),(1170,-1504454400,0),(1170,-1491757200,1),(1170,-1473004800,0),(1170,-1459702800,1),(1170,-1441555200,0),(1170,-1428253200,1),(1170,-1410105600,0),(1170,-1396803600,1),(1170,-1378656000,0),(1170,-1365354000,1),(1170,-1347206400,0),(1170,-1333904400,1),(1170,-1315152000,0),(1170,-1301850000,1),(1170,-1283702400,0),(1170,-1270400400,1),(1170,-1252252800,0),(1170,-1238950800,1),(1170,-1220803200,0),(1170,-1207501200,1),(1170,-1189353600,0),(1170,-1176051600,1),(1170,-1157299200,0),(1170,-1144602000,1),(1170,-1125849600,0),(1170,-1112547600,1),(1170,-1094400000,0),(1170,-1081098000,1),(1170,-1067788800,2),(1170,-1045414800,1),(1170,-1031500800,0),(1170,-1018198800,1),(1170,-1000051200,0),(1170,-986749200,1),(1170,-967996800,0),(1170,-955299600,1),(1170,-936547200,0),(1170,-923245200,1),(1170,-905097600,0),(1170,-891795600,1),(1170,-880214400,3),(1170,-769395600,4),(1170,-765392400,1),(1170,-747244800,0),(1170,-733942800,1),(1170,-715795200,0),(1170,-702493200,1),(1170,-684345600,0),(1170,-671043600,1),(1170,-652896000,0),(1170,-639594000,1),(1170,-620841600,0),(1170,-608144400,1),(1170,-589392000,0),(1170,-576090000,1),(1170,-557942400,0),(1170,-544640400,1),(1170,-526492800,0),(1170,-513190800,1),(1170,-495043200,0),(1170,-481741200,1),(1170,-463593600,0),(1170,-447267600,1),(1170,-431539200,0),(1170,-415818000,1),(1170,-400089600,0),(1170,-384368400,1),(1170,-368640000,0),(1170,-352918800,1),(1170,-337190400,0),(1170,-321469200,1),(1170,-305740800,0),(1170,-289414800,1),(1170,-273686400,0),(1170,-257965200,1),(1170,-242236800,0),(1170,-226515600,1),(1170,-210787200,0),(1170,-195066000,1),(1170,-179337600,0),(1170,-163616400,1),(1170,-147888000,0),(1170,-131562000,1),(1170,-116438400,0),(1170,-100112400,1),(1170,-84384000,0),(1170,-68662800,1),(1170,-52934400,0),(1170,-37213200,1),(1170,-21484800,0),(1170,-5763600,1),(1170,9964800,0),(1170,25686000,1),(1170,41414400,0),(1170,57740400,1),(1170,73468800,0),(1170,89190000,1),(1170,104918400,0),(1170,120639600,1),(1170,126691200,0),(1170,152089200,1),(1170,162374400,0),(1170,183538800,1),(1170,199267200,0),(1170,215593200,1),(1170,230716800,0),(1170,247042800,1),(1170,262771200,0),(1170,278492400,1),(1170,294220800,0),(1170,309942000,1),(1170,325670400,0),(1170,341391600,1),(1170,357120000,0),(1170,372841200,1),(1170,388569600,0),(1170,404895600,1),(1170,420019200,0),(1170,436345200,1),(1170,452073600,0),(1170,467794800,1),(1170,483523200,0),(1170,499244400,1),(1170,514972800,0),(1170,530694000,1),(1170,544608000,0),(1170,562143600,1),(1170,576057600,0),(1170,594198000,1),(1170,607507200,0),(1170,625647600,1),(1170,638956800,0),(1170,657097200,1),(1170,671011200,0),(1170,688546800,1),(1170,702460800,0),(1170,719996400,1),(1170,733910400,0),(1170,752050800,1),(1170,765360000,0),(1170,783500400,1),(1170,796809600,0),(1170,814950000,1),(1170,828864000,0),(1170,846399600,1),(1170,860313600,0),(1170,877849200,1),(1170,891763200,0),(1170,909298800,1),(1170,923212800,0),(1170,941353200,1),(1170,954662400,0),(1170,972802800,1),(1170,986112000,0),(1170,1004252400,1),(1170,1018166400,0),(1170,1035702000,1),(1170,1049616000,0),(1170,1067151600,1),(1170,1081065600,0),(1170,1099206000,1),(1170,1112515200,0),(1170,1130655600,1),(1170,1143964800,0),(1170,1162105200,1),(1170,1173600000,0),(1170,1194159600,1),(1170,1205049600,0),(1170,1225609200,1),(1170,1236499200,0),(1170,1257058800,1),(1170,1268553600,0),(1170,1289113200,1),(1170,1300003200,0),(1170,1320562800,1),(1170,1331452800,0),(1170,1352012400,1),(1170,1362902400,0),(1170,1383462000,1),(1170,1394352000,0),(1170,1414911600,1),(1170,1425801600,0),(1170,1446361200,1),(1170,1457856000,0),(1170,1478415600,1),(1170,1489305600,0),(1170,1509865200,1),(1170,1520755200,0),(1170,1541314800,1),(1170,1552204800,0),(1170,1572764400,1),(1170,1583654400,0),(1170,1604214000,1),(1170,1615708800,0),(1170,1636268400,1),(1170,1647158400,0),(1170,1667718000,1),(1170,1678608000,0),(1170,1699167600,1),(1170,1710057600,0),(1170,1730617200,1),(1170,1741507200,0),(1170,1762066800,1),(1170,1772956800,0),(1170,1793516400,1),(1170,1805011200,0),(1170,1825570800,1),(1170,1836460800,0),(1170,1857020400,1),(1170,1867910400,0),(1170,1888470000,1),(1170,1899360000,0),(1170,1919919600,1),(1170,1930809600,0),(1170,1951369200,1),(1170,1962864000,0),(1170,1983423600,1),(1170,1994313600,0),(1170,2014873200,1),(1170,2025763200,0),(1170,2046322800,1),(1170,2057212800,0),(1170,2077772400,1),(1170,2088662400,0),(1170,2109222000,1),(1170,2120112000,0),(1170,2140671600,1),(1171,-1633276800,0),(1171,-1615136400,1),(1171,-1601827200,0),(1171,-1583686800,1),(1171,-900259200,0),(1171,-891795600,1),(1171,-880214400,2),(1171,-769395600,3),(1171,-765392400,1),(1171,-747244800,0),(1171,-733942800,1),(1171,-715795200,0),(1171,-702493200,1),(1171,-684345600,0),(1171,-671043600,1),(1171,-652896000,0),(1171,-639594000,1),(1171,-620841600,0),(1171,-608144400,1),(1171,-589392000,0),(1171,-576090000,1),(1171,-557942400,0),(1171,-544640400,1),(1171,-526492800,0),(1171,-513190800,1),(1171,-495043200,0),(1171,-481741200,1),(1171,-463593600,4),(1171,-386787600,1),(1171,-368640000,4),(1171,-21488400,5),(1171,-5767200,4),(1171,9961200,5),(1171,25682400,4),(1171,1143961200,5),(1171,1162101600,4),(1171,1173596400,5),(1171,1194156000,4),(1171,1205046000,5),(1171,1225605600,4),(1171,1236495600,5),(1171,1257055200,4),(1171,1268550000,5),(1171,1289109600,4),(1171,1299999600,5),(1171,1320559200,4),(1171,1331449200,5),(1171,1352008800,4),(1171,1362898800,5),(1171,1383458400,4),(1171,1394348400,5),(1171,1414908000,4),(1171,1425798000,5),(1171,1446357600,4),(1171,1457852400,5),(1171,1478412000,4),(1171,1489302000,5),(1171,1509861600,4),(1171,1520751600,5),(1171,1541311200,4),(1171,1552201200,5),(1171,1572760800,4),(1171,1583650800,5),(1171,1604210400,4),(1171,1615705200,5),(1171,1636264800,4),(1171,1647154800,5),(1171,1667714400,4),(1171,1678604400,5),(1171,1699164000,4),(1171,1710054000,5),(1171,1730613600,4),(1171,1741503600,5),(1171,1762063200,4),(1171,1772953200,5),(1171,1793512800,4),(1171,1805007600,5),(1171,1825567200,4),(1171,1836457200,5),(1171,1857016800,4),(1171,1867906800,5),(1171,1888466400,4),(1171,1899356400,5),(1171,1919916000,4),(1171,1930806000,5),(1171,1951365600,4),(1171,1962860400,5),(1171,1983420000,4),(1171,1994310000,5),(1171,2014869600,4),(1171,2025759600,5),(1171,2046319200,4),(1171,2057209200,5),(1171,2077768800,4),(1171,2088658800,5),(1171,2109218400,4),(1171,2120108400,5),(1171,2140668000,4),(1172,-1633280400,0),(1172,-1615140000,1),(1172,-1601830800,0),(1172,-1583690400,1),(1172,-1570381200,0),(1172,-1551636000,1),(1172,-1536512400,0),(1172,-1523210400,1),(1172,-1504458000,0),(1172,-1491760800,1),(1172,-1473008400,0),(1172,-1459706400,1),(1172,-1441558800,0),(1172,-1428256800,1),(1172,-1410109200,0),(1172,-1396807200,1),(1172,-1378659600,0),(1172,-1365357600,1),(1172,-1347210000,0),(1172,-1333908000,1),(1172,-1315155600,0),(1172,-1301853600,1),(1172,-1283706000,0),(1172,-1270404000,1),(1172,-1252256400,0),(1172,-1238954400,1),(1172,-1220806800,0),(1172,-1207504800,1),(1172,-1189357200,0),(1172,-1176055200,1),(1172,-1157302800,0),(1172,-1144605600,1),(1172,-1125853200,0),(1172,-1112551200,1),(1172,-1094403600,0),(1172,-1081101600,1),(1172,-1062954000,0),(1172,-1049652000,1),(1172,-1031504400,0),(1172,-1018202400,1),(1172,-1000054800,0),(1172,-986752800,1),(1172,-968000400,0),(1172,-955303200,1),(1172,-936550800,0),(1172,-923248800,1),(1172,-905101200,0),(1172,-891799200,1),(1172,-880218000,2),(1172,-769395600,3),(1172,-765396000,1),(1172,-747248400,0),(1172,-733946400,1),(1172,-715798800,0),(1172,-702496800,1),(1172,-684349200,0),(1172,-671047200,1),(1172,-652899600,0),(1172,-639597600,1),(1172,-620845200,0),(1172,-608148000,1),(1172,-589395600,0),(1172,-576093600,1),(1172,-557946000,0),(1172,-544644000,1),(1172,-526496400,0),(1172,-513194400,1),(1172,-495046800,0),(1172,-481744800,1),(1172,-463597200,0),(1172,-447271200,1),(1172,-431542800,0),(1172,-415821600,1),(1172,-400093200,0),(1172,-384372000,1),(1172,-368643600,0),(1172,-352922400,1),(1172,-337194000,0),(1172,-321472800,1),(1172,-305744400,0),(1172,-289418400,1),(1172,-273690000,0),(1172,-257968800,1),(1172,-242240400,0),(1172,-226519200,1),(1172,-210790800,0),(1172,-195069600,1),(1172,-179341200,0),(1172,-163620000,1),(1172,-147891600,0),(1172,-131565600,1),(1172,-116442000,0),(1172,-100116000,1),(1172,-84387600,0),(1172,-68666400,1),(1172,-52938000,0),(1172,-37216800,1),(1172,-21488400,0),(1172,-5767200,1),(1172,9961200,0),(1172,25682400,1),(1172,41410800,0),(1172,57736800,1),(1172,73465200,0),(1172,89186400,1),(1172,104914800,0),(1172,120636000,1),(1172,126687600,0),(1172,152085600,1),(1172,162370800,0),(1172,183535200,1),(1172,199263600,0),(1172,215589600,1),(1172,230713200,0),(1172,247039200,1),(1172,262767600,0),(1172,278488800,1),(1172,294217200,0),(1172,309938400,1),(1172,325666800,0),(1172,341388000,1),(1172,357116400,0),(1172,372837600,1),(1172,388566000,0),(1172,404892000,1),(1172,420015600,0),(1172,436341600,1),(1172,452070000,0),(1172,467791200,1),(1172,483519600,0),(1172,499240800,1),(1172,514969200,0),(1172,530690400,1),(1172,544604400,0),(1172,562140000,1),(1172,576054000,0),(1172,594194400,1),(1172,607503600,0),(1172,625644000,1),(1172,638953200,0),(1172,657093600,1),(1172,671007600,0),(1172,688543200,1),(1172,702457200,0),(1172,719992800,1),(1172,733906800,0),(1172,752047200,1),(1172,765356400,0),(1172,783496800,1),(1172,796806000,0),(1172,814946400,1),(1172,828860400,0),(1172,846396000,1),(1172,860310000,0),(1172,877845600,1),(1172,891759600,0),(1172,909295200,1),(1172,923209200,0),(1172,941349600,1),(1172,954658800,0),(1172,972799200,1),(1172,986108400,0),(1172,1004248800,1),(1172,1018162800,0),(1172,1035698400,1),(1172,1049612400,0),(1172,1067148000,1),(1172,1081062000,0),(1172,1099202400,1),(1172,1112511600,0),(1172,1130652000,1),(1172,1143961200,0),(1172,1162101600,1),(1172,1173596400,0),(1172,1194156000,1),(1172,1205046000,0),(1172,1225605600,1),(1172,1236495600,0),(1172,1257055200,1),(1172,1268550000,0),(1172,1289109600,1),(1172,1299999600,0),(1172,1320559200,1),(1172,1331449200,0),(1172,1352008800,1),(1172,1362898800,0),(1172,1383458400,1),(1172,1394348400,0),(1172,1414908000,1),(1172,1425798000,0),(1172,1446357600,1),(1172,1457852400,0),(1172,1478412000,1),(1172,1489302000,0),(1172,1509861600,1),(1172,1520751600,0),(1172,1541311200,1),(1172,1552201200,0),(1172,1572760800,1),(1172,1583650800,0),(1172,1604210400,1),(1172,1615705200,0),(1172,1636264800,1),(1172,1647154800,0),(1172,1667714400,1),(1172,1678604400,0),(1172,1699164000,1),(1172,1710054000,0),(1172,1730613600,1),(1172,1741503600,0),(1172,1762063200,1),(1172,1772953200,0),(1172,1793512800,1),(1172,1805007600,0),(1172,1825567200,1),(1172,1836457200,0),(1172,1857016800,1),(1172,1867906800,0),(1172,1888466400,1),(1172,1899356400,0),(1172,1919916000,1),(1172,1930806000,0),(1172,1951365600,1),(1172,1962860400,0),(1172,1983420000,1),(1172,1994310000,0),(1172,2014869600,1),(1172,2025759600,0),(1172,2046319200,1),(1172,2057209200,0),(1172,2077768800,1),(1172,2088658800,0),(1172,2109218400,1),(1172,2120108400,0),(1172,2140668000,1),(1173,-1157283000,1),(1173,-1155436200,0),(1173,-880198200,1),(1173,-765376200,0),(1173,-712150200,2),(1174,-1633276800,0),(1174,-1615136400,1),(1174,-1601827200,0),(1174,-1583686800,1),(1174,-880214400,2),(1174,-769395600,3),(1174,-765392400,1),(1174,-715795200,0),(1174,-702493200,1),(1174,-684345600,0),(1174,-671043600,1),(1174,-652896000,0),(1174,-639594000,1),(1174,-620841600,0),(1174,-608144400,1),(1174,-589392000,0),(1174,-576090000,1),(1174,-557942400,0),(1174,-544640400,1),(1174,-526492800,0),(1174,-513190800,1),(1174,-495043200,0),(1174,-481741200,1),(1174,-463593600,0),(1174,-447267600,1),(1174,-431539200,0),(1174,-415818000,1),(1174,-400089600,0),(1174,-386787600,1),(1174,-368640000,0),(1174,-355338000,1),(1174,-337190400,0),(1174,-321469200,1),(1174,-305740800,0),(1174,-289414800,1),(1174,-273686400,0),(1174,-257965200,1),(1174,-242236800,4),(1174,-195066000,1),(1174,-84384000,0),(1174,-68662800,1),(1174,-52934400,0),(1174,-37213200,1),(1174,-21484800,0),(1174,-5763600,1),(1174,9964800,0),(1174,25686000,1),(1174,41414400,0),(1174,57740400,1),(1174,73468800,0),(1174,89190000,1),(1174,104918400,0),(1174,120639600,1),(1174,126691200,0),(1174,152089200,1),(1174,162374400,0),(1174,183538800,1),(1174,199267200,0),(1174,215593200,1),(1174,230716800,0),(1174,247042800,1),(1174,262771200,0),(1174,278492400,1),(1174,294220800,0),(1174,309942000,1),(1174,325670400,0),(1174,341391600,1),(1174,357120000,0),(1174,372841200,1),(1174,388569600,0),(1174,404895600,1),(1174,420019200,0),(1174,436345200,1),(1174,452073600,0),(1174,467794800,1),(1174,483523200,0),(1174,499244400,1),(1174,514972800,0),(1174,530694000,1),(1174,544608000,0),(1174,562143600,1),(1174,576057600,0),(1174,594198000,1),(1174,607507200,0),(1174,625647600,1),(1174,638956800,0),(1174,657097200,1),(1174,671011200,0),(1174,688546800,4),(1174,1143961200,0),(1174,1162105200,1),(1174,1173600000,0),(1174,1194159600,1),(1174,1205049600,0),(1174,1225609200,1),(1174,1236499200,0),(1174,1257058800,1),(1174,1268553600,0),(1174,1289113200,1),(1174,1300003200,0),(1174,1320562800,1),(1174,1331452800,0),(1174,1352012400,1),(1174,1362902400,0),(1174,1383462000,1),(1174,1394352000,0),(1174,1414911600,1),(1174,1425801600,0),(1174,1446361200,1),(1174,1457856000,0),(1174,1478415600,1),(1174,1489305600,0),(1174,1509865200,1),(1174,1520755200,0),(1174,1541314800,1),(1174,1552204800,0),(1174,1572764400,1),(1174,1583654400,0),(1174,1604214000,1),(1174,1615708800,0),(1174,1636268400,1),(1174,1647158400,0),(1174,1667718000,1),(1174,1678608000,0),(1174,1699167600,1),(1174,1710057600,0),(1174,1730617200,1),(1174,1741507200,0),(1174,1762066800,1),(1174,1772956800,0),(1174,1793516400,1),(1174,1805011200,0),(1174,1825570800,1),(1174,1836460800,0),(1174,1857020400,1),(1174,1867910400,0),(1174,1888470000,1),(1174,1899360000,0),(1174,1919919600,1),(1174,1930809600,0),(1174,1951369200,1),(1174,1962864000,0),(1174,1983423600,1),(1174,1994313600,0),(1174,2014873200,1),(1174,2025763200,0),(1174,2046322800,1),(1174,2057212800,0),(1174,2077772400,1),(1174,2088662400,0),(1174,2109222000,1),(1174,2120112000,0),(1174,2140671600,1),(1175,-2051202469,1),(1175,-1724083200,2),(1175,-880218000,3),(1175,-769395600,4),(1175,-765396000,2),(1175,-684349200,5),(1175,-671047200,2),(1175,104914800,5),(1175,120636000,2),(1175,126687600,5),(1175,152085600,2),(1175,167814000,5),(1175,183535200,2),(1175,199263600,5),(1175,215589600,2),(1175,230713200,5),(1175,247039200,2),(1175,262767600,5),(1175,278488800,2),(1175,294217200,5),(1175,309938400,2),(1175,325666800,5),(1175,341388000,2),(1175,357116400,5),(1175,372837600,2),(1175,388566000,5),(1175,404892000,2),(1175,420015600,5),(1175,436341600,2),(1175,452070000,5),(1175,467791200,2),(1175,483519600,5),(1175,499240800,2),(1175,514969200,5),(1175,530690400,2),(1175,544604400,5),(1175,562140000,2),(1175,576054000,5),(1175,594194400,2),(1175,607503600,5),(1175,625644000,2),(1175,638953200,5),(1175,657093600,2),(1175,671007600,5),(1175,688543200,2),(1175,702457200,5),(1175,719992800,2),(1175,733906800,5),(1175,752047200,2),(1175,765356400,5),(1175,783496800,2),(1175,796806000,5),(1175,814946400,2),(1175,828860400,5),(1175,846396000,2),(1175,860310000,5),(1175,877845600,2),(1175,891759600,5),(1175,909295200,2),(1175,923209200,5),(1175,941349600,2),(1175,954658800,5),(1175,972799200,2),(1175,986108400,5),(1175,1004248800,2),(1175,1018162800,5),(1175,1035698400,2),(1175,1049612400,5),(1175,1067148000,2),(1175,1081062000,5),(1175,1099202400,2),(1175,1112511600,5),(1175,1130652000,2),(1175,1143961200,5),(1175,1162101600,2),(1175,1173596400,5),(1175,1194156000,2),(1175,1205046000,5),(1175,1225605600,2),(1175,1236495600,5),(1175,1257055200,2),(1175,1268550000,5),(1175,1289109600,2),(1175,1299999600,5),(1175,1320559200,2),(1175,1331449200,5),(1175,1352008800,2),(1175,1362898800,5),(1175,1383458400,2),(1175,1394348400,5),(1175,1414908000,2),(1175,1425798000,5),(1175,1446357600,2),(1175,1457852400,5),(1175,1478412000,2),(1175,1489302000,5),(1175,1509861600,2),(1175,1520751600,5),(1175,1541311200,2),(1175,1552201200,5),(1175,1572760800,2),(1175,1583650800,5),(1175,1604210400,2),(1175,1615705200,5),(1175,1636264800,2),(1175,1647154800,5),(1175,1667714400,2),(1175,1678604400,5),(1175,1699164000,2),(1175,1710054000,5),(1175,1730613600,2),(1175,1741503600,5),(1175,1762063200,2),(1175,1772953200,5),(1175,1793512800,2),(1175,1805007600,5),(1175,1825567200,2),(1175,1836457200,5),(1175,1857016800,2),(1175,1867906800,5),(1175,1888466400,2),(1175,1899356400,5),(1175,1919916000,2),(1175,1930806000,5),(1175,1951365600,2),(1175,1962860400,5),(1175,1983420000,2),(1175,1994310000,5),(1175,2014869600,2),(1175,2025759600,5),(1175,2046319200,2),(1175,2057209200,5),(1175,2077768800,2),(1175,2088658800,5),(1175,2109218400,2),(1175,2120108400,5),(1175,2140668000,2),(1176,-1633273200,0),(1176,-1615132800,1),(1176,-1601823600,0),(1176,-1583683200,1),(1176,-1570374000,0),(1176,-1551628800,1),(1176,-1538924400,0),(1176,-1534089600,1),(1176,-880210800,2),(1176,-769395600,3),(1176,-765388800,1),(1176,-147884400,0),(1176,-131558400,1),(1176,-116434800,0),(1176,-100108800,1),(1176,-84380400,0),(1176,-68659200,1),(1176,-52930800,0),(1176,-37209600,1),(1176,-21481200,0),(1176,-5760000,1),(1176,9968400,0),(1176,25689600,1),(1176,41418000,0),(1176,57744000,1),(1176,73472400,0),(1176,89193600,1),(1176,104922000,0),(1176,120643200,1),(1176,126694800,0),(1176,152092800,1),(1176,162378000,0),(1176,183542400,1),(1176,199270800,0),(1176,215596800,1),(1176,230720400,0),(1176,247046400,1),(1176,262774800,0),(1176,278496000,1),(1176,294224400,0),(1176,309945600,1),(1176,325674000,0),(1176,341395200,1),(1176,357123600,0),(1176,372844800,1),(1176,388573200,0),(1176,404899200,1),(1176,420022800,0),(1176,436348800,1),(1176,452077200,0),(1176,467798400,1),(1176,483526800,0),(1176,499248000,1),(1176,514976400,0),(1176,530697600,1),(1176,544611600,0),(1176,562147200,1),(1176,576061200,0),(1176,594201600,1),(1176,607510800,0),(1176,625651200,1),(1176,638960400,0),(1176,657100800,1),(1176,671014800,0),(1176,688550400,1),(1176,702464400,0),(1176,720000000,1),(1176,733914000,0),(1176,752054400,1),(1176,765363600,0),(1176,783504000,1),(1176,796813200,0),(1176,814953600,1),(1176,828867600,0),(1176,846403200,1),(1176,860317200,0),(1176,877852800,1),(1176,891766800,0),(1176,909302400,1),(1176,923216400,0),(1176,941356800,1),(1176,954666000,0),(1176,972806400,1),(1176,986115600,0),(1176,1004256000,1),(1176,1018170000,0),(1176,1035705600,1),(1176,1049619600,0),(1176,1067155200,1),(1176,1081069200,0),(1176,1099209600,1),(1176,1112518800,0),(1176,1130659200,1),(1176,1143968400,0),(1176,1162108800,1),(1176,1173603600,0),(1176,1194163200,1),(1176,1205053200,0),(1176,1225612800,1),(1176,1236502800,0),(1176,1257062400,1),(1176,1268557200,0),(1176,1289116800,1),(1176,1300006800,0),(1176,1320566400,1),(1176,1331456400,0),(1176,1352016000,1),(1176,1362906000,0),(1176,1383465600,1),(1176,1394355600,0),(1176,1414915200,1),(1176,1425805200,0),(1176,1446364800,1),(1176,1457859600,0),(1176,1478419200,1),(1176,1489309200,0),(1176,1509868800,1),(1176,1520758800,0),(1176,1541318400,1),(1176,1552208400,0),(1176,1572768000,1),(1176,1583658000,0),(1176,1604217600,1),(1176,1615712400,0),(1176,1636272000,1),(1176,1647162000,0),(1176,1667721600,1),(1176,1678611600,0),(1176,1699171200,1),(1176,1710061200,0),(1176,1730620800,1),(1176,1741510800,0),(1176,1762070400,1),(1176,1772960400,0),(1176,1793520000,1),(1176,1805014800,0),(1176,1825574400,1),(1176,1836464400,0),(1176,1857024000,1),(1176,1867914000,0),(1176,1888473600,1),(1176,1899363600,0),(1176,1919923200,1),(1176,1930813200,0),(1176,1951372800,1),(1176,1962867600,0),(1176,1983427200,1),(1176,1994317200,0),(1176,2014876800,1),(1176,2025766800,0),(1176,2046326400,1),(1176,2057216400,0),(1176,2077776000,1),(1176,2088666000,0),(1176,2109225600,1),(1176,2120115600,0),(1176,2140675200,1),(1177,-1633269600,0),(1177,-1615129200,1),(1177,-1601820000,0),(1177,-1583679600,1),(1177,-880207200,2),(1177,-769395600,3),(1177,-765385200,1),(1177,-687967140,0),(1177,-662655600,1),(1177,-620838000,0),(1177,-608137200,1),(1177,-589388400,0),(1177,-576082800,1),(1177,-557938800,0),(1177,-544633200,1),(1177,-526489200,0),(1177,-513183600,1),(1177,-495039600,0),(1177,-481734000,1),(1177,-463590000,0),(1177,-450284400,1),(1177,-431535600,0),(1177,-418230000,1),(1177,-400086000,0),(1177,-386780400,1),(1177,-368636400,0),(1177,-355330800,1),(1177,-337186800,0),(1177,-323881200,1),(1177,-305737200,0),(1177,-292431600,1),(1177,-273682800,0),(1177,-260982000,1),(1177,-242233200,0),(1177,-226508400,1),(1177,-210783600,0),(1177,-195058800,1),(1177,-179334000,0),(1177,-163609200,1),(1177,-147884400,0),(1177,-131554800,1),(1177,-116434800,0),(1177,-100105200,1),(1177,-84376800,0),(1177,-68655600,1),(1177,-52927200,0),(1177,-37206000,1),(1177,-21477600,0),(1177,-5756400,1),(1177,9972000,0),(1177,25693200,1),(1177,41421600,0),(1177,57747600,1),(1177,73476000,0),(1177,89197200,1),(1177,104925600,0),(1177,120646800,1),(1177,126698400,0),(1177,152096400,1),(1177,162381600,0),(1177,183546000,1),(1177,199274400,0),(1177,215600400,1),(1177,230724000,0),(1177,247050000,1),(1177,262778400,0),(1177,278499600,1),(1177,294228000,0),(1177,309949200,1),(1177,325677600,0),(1177,341398800,1),(1177,357127200,0),(1177,372848400,1),(1177,388576800,0),(1177,404902800,1),(1177,420026400,0),(1177,436352400,1),(1177,452080800,0),(1177,467802000,1),(1177,483530400,0),(1177,499251600,1),(1177,514980000,0),(1177,530701200,1),(1177,544615200,0),(1177,562150800,1),(1177,576064800,0),(1177,594205200,1),(1177,607514400,0),(1177,625654800,1),(1177,638964000,0),(1177,657104400,1),(1177,671018400,0),(1177,688554000,1),(1177,702468000,0),(1177,720003600,1),(1177,733917600,0),(1177,752058000,1),(1177,765367200,0),(1177,783507600,1),(1177,796816800,0),(1177,814957200,1),(1177,828871200,0),(1177,846406800,1),(1177,860320800,0),(1177,877856400,1),(1177,891770400,0),(1177,909306000,1),(1177,923220000,0),(1177,941360400,1),(1177,954669600,0),(1177,972810000,1),(1177,986119200,0),(1177,1004259600,1),(1177,1018173600,0),(1177,1035709200,1),(1177,1049623200,0),(1177,1067158800,1),(1177,1081072800,0),(1177,1099213200,1),(1177,1112522400,0),(1177,1130662800,1),(1177,1143972000,0),(1177,1162112400,1),(1177,1173607200,0),(1177,1194166800,1),(1177,1205056800,0),(1177,1225616400,1),(1177,1236506400,0),(1177,1257066000,1),(1177,1268560800,0),(1177,1289120400,1),(1177,1300010400,0),(1177,1320570000,1),(1177,1331460000,0),(1177,1352019600,1),(1177,1362909600,0),(1177,1383469200,1),(1177,1394359200,0),(1177,1414918800,1),(1177,1425808800,0),(1177,1446368400,1),(1177,1457863200,0),(1177,1478422800,1),(1177,1489312800,0),(1177,1509872400,1),(1177,1520762400,0),(1177,1541322000,1),(1177,1552212000,0),(1177,1572771600,1),(1177,1583661600,0),(1177,1604221200,1),(1177,1615716000,0),(1177,1636275600,1),(1177,1647165600,0),(1177,1667725200,1),(1177,1678615200,0),(1177,1699174800,1),(1177,1710064800,0),(1177,1730624400,1),(1177,1741514400,0),(1177,1762074000,1),(1177,1772964000,0),(1177,1793523600,1),(1177,1805018400,0),(1177,1825578000,1),(1177,1836468000,0),(1177,1857027600,1),(1177,1867917600,0),(1177,1888477200,1),(1177,1899367200,0),(1177,1919926800,1),(1177,1930816800,0),(1177,1951376400,1),(1177,1962871200,0),(1177,1983430800,1),(1177,1994320800,0),(1177,2014880400,1),(1177,2025770400,0),(1177,2046330000,1),(1177,2057220000,0),(1177,2077779600,1),(1177,2088669600,0),(1177,2109229200,1),(1177,2120119200,0),(1177,2140678800,1),(1178,-1633269600,0),(1178,-1615129200,1),(1178,-1601820000,0),(1178,-1583679600,1),(1178,-880207200,2),(1178,-769395600,3),(1178,-765385200,1),(1178,-687967140,0),(1178,-662655600,1),(1178,-620838000,0),(1178,-608137200,1),(1178,-589388400,0),(1178,-576082800,1),(1178,-557938800,0),(1178,-544633200,1),(1178,-526489200,0),(1178,-513183600,1),(1178,-495039600,0),(1178,-481734000,1),(1178,-463590000,0),(1178,-450284400,1),(1178,-431535600,0),(1178,-418230000,1),(1178,-400086000,0),(1178,-386780400,1),(1178,-368636400,0),(1178,-355330800,1),(1178,-337186800,0),(1178,-323881200,1),(1178,-305737200,0),(1178,-292431600,1),(1178,-273682800,0),(1178,-260982000,1),(1178,-242233200,0),(1178,-226508400,1),(1178,-210783600,0),(1178,-195058800,1),(1178,-179334000,0),(1178,-163609200,1),(1178,-147884400,0),(1178,-131554800,1),(1178,-116434800,0),(1178,-100105200,1),(1178,-84376800,0),(1178,-68655600,1),(1178,-52927200,0),(1178,-37206000,1),(1178,-21477600,0),(1178,-5756400,1),(1178,9972000,0),(1178,25693200,1),(1178,41421600,0),(1178,57747600,1),(1178,73476000,0),(1178,89197200,1),(1178,104925600,0),(1178,120646800,1),(1178,126698400,0),(1178,152096400,1),(1178,162381600,0),(1178,183546000,1),(1178,199274400,0),(1178,215600400,1),(1178,230724000,0),(1178,247050000,1),(1178,262778400,0),(1178,278499600,1),(1178,294228000,0),(1178,309949200,1),(1178,325677600,0),(1178,341398800,1),(1178,357127200,0),(1178,372848400,1),(1178,388576800,0),(1178,404902800,1),(1178,420026400,0),(1178,436352400,1),(1178,452080800,0),(1178,467802000,1),(1178,483530400,0),(1178,499251600,1),(1178,514980000,0),(1178,530701200,1),(1178,544615200,0),(1178,562150800,1),(1178,576064800,0),(1178,594205200,1),(1178,607514400,0),(1178,625654800,1),(1178,638964000,0),(1178,657104400,1),(1178,671018400,0),(1178,688554000,1),(1178,702468000,0),(1178,720003600,1),(1178,733917600,0),(1178,752058000,1),(1178,765367200,0),(1178,783507600,1),(1178,796816800,0),(1178,814957200,1),(1178,828871200,0),(1178,846406800,1),(1178,860320800,0),(1178,877856400,1),(1178,891770400,0),(1178,909306000,1),(1178,923220000,0),(1178,941360400,1),(1178,954669600,0),(1178,972810000,1),(1178,986119200,0),(1178,1004259600,1),(1178,1018173600,0),(1178,1035709200,1),(1178,1049623200,0),(1178,1067158800,1),(1178,1081072800,0),(1178,1099213200,1),(1178,1112522400,0),(1178,1130662800,1),(1178,1143972000,0),(1178,1162112400,1),(1178,1173607200,0),(1178,1194166800,1),(1178,1205056800,0),(1178,1225616400,1),(1178,1236506400,0),(1178,1257066000,1),(1178,1268560800,0),(1178,1289120400,1),(1178,1300010400,0),(1178,1320570000,1),(1178,1331460000,0),(1178,1352019600,1),(1178,1362909600,0),(1178,1383469200,1),(1178,1394359200,0),(1178,1414918800,1),(1178,1425808800,0),(1178,1446368400,1),(1178,1457863200,0),(1178,1478422800,1),(1178,1489312800,0),(1178,1509872400,1),(1178,1520762400,0),(1178,1541322000,1),(1178,1552212000,0),(1178,1572771600,1),(1178,1583661600,0),(1178,1604221200,1),(1178,1615716000,0),(1178,1636275600,1),(1178,1647165600,0),(1178,1667725200,1),(1178,1678615200,0),(1178,1699174800,1),(1178,1710064800,0),(1178,1730624400,1),(1178,1741514400,0),(1178,1762074000,1),(1178,1772964000,0),(1178,1793523600,1),(1178,1805018400,0),(1178,1825578000,1),(1178,1836468000,0),(1178,1857027600,1),(1178,1867917600,0),(1178,1888477200,1),(1178,1899367200,0),(1178,1919926800,1),(1178,1930816800,0),(1178,1951376400,1),(1178,1962871200,0),(1178,1983430800,1),(1178,1994320800,0),(1178,2014880400,1),(1178,2025770400,0),(1178,2046330000,1),(1178,2057220000,0),(1178,2077779600,1),(1178,2088669600,0),(1178,2109229200,1),(1178,2120119200,0),(1178,2140678800,1),(1179,-1861879032,1),(1182,-1688265017,2),(1182,-1656819079,1),(1182,-1641353479,2),(1182,-1627965079,3),(1182,-1618716679,1),(1182,-1596429079,3),(1182,-1593820800,4),(1182,-1589860800,5),(1182,-1542427200,6),(1182,-1539493200,7),(1182,-1525323600,6),(1182,-1522728000,5),(1182,-1491188400,8),(1182,-1247536800,5),(1182,354920400,6),(1182,370728000,5),(1182,386456400,6),(1182,402264000,5),(1182,417992400,6),(1182,433800000,5),(1182,449614800,6),(1182,465346800,9),(1182,481071600,10),(1182,496796400,9),(1182,512521200,10),(1182,528246000,9),(1182,543970800,10),(1182,559695600,9),(1182,575420400,10),(1182,591145200,9),(1182,606870000,10),(1182,622594800,9),(1182,638319600,10),(1182,654649200,9),(1182,670374000,11),(1182,686102400,12),(1182,695779200,9),(1182,701823600,10),(1182,717548400,9),(1182,733273200,10),(1182,748998000,9),(1182,764722800,10),(1182,780447600,9),(1182,796172400,10),(1182,811897200,9),(1182,828226800,10),(1182,846370800,9),(1182,859676400,10),(1182,877820400,9),(1182,891126000,10),(1182,909270000,9),(1182,922575600,10),(1182,941324400,9),(1182,954025200,10),(1182,972774000,9),(1182,985474800,10),(1182,1004223600,9),(1182,1017529200,10),(1182,1035673200,9),(1182,1048978800,10),(1182,1067122800,9),(1182,1080428400,10),(1182,1099177200,9),(1182,1111878000,10),(1182,1130626800,9),(1182,1143327600,10),(1182,1162076400,9),(1182,1174777200,10),(1182,1193526000,9),(1182,1206831600,10),(1182,1224975600,9),(1182,1238281200,10),(1182,1256425200,9),(1182,1269730800,10),(1182,1288479600,9),(1182,1301180400,13),(1182,1414274400,9),(1183,228877200,0),(1183,243997200,1),(1183,260326800,0),(1183,276051600,1),(1183,291776400,0),(1183,307501200,1),(1183,323830800,0),(1183,338950800,1),(1183,354675600,0),(1183,370400400,1),(1183,386125200,0),(1183,401850000,1),(1183,417574800,0),(1183,433299600,1),(1183,449024400,0),(1183,465354000,1),(1183,481078800,0),(1183,496803600,1),(1183,512528400,0),(1183,528253200,1),(1183,543978000,0),(1183,559702800,1),(1183,575427600,0),(1183,591152400,1),(1183,606877200,0),(1183,622602000,1),(1183,638326800,0),(1183,654656400,1),(1183,670381200,0),(1183,686106000,1),(1183,701830800,0),(1183,717555600,1),(1183,733280400,0),(1183,749005200,1),(1183,764730000,0),(1183,780454800,1),(1183,796179600,0),(1183,811904400,1),(1183,828234000,0),(1183,846378000,1),(1183,859683600,0),(1183,877827600,1),(1183,891133200,0),(1183,909277200,1),(1183,922582800,0),(1183,941331600,1),(1183,954032400,0),(1183,972781200,1),(1183,985482000,0),(1183,1004230800,1),(1183,1017536400,0),(1183,1035680400,1),(1183,1048986000,0),(1183,1067130000,1),(1183,1080435600,0),(1183,1099184400,1),(1183,1111885200,0),(1183,1130634000,1),(1183,1143334800,0),(1183,1162083600,1),(1183,1174784400,0),(1183,1193533200,1),(1183,1206838800,0),(1183,1224982800,1),(1183,1238288400,0),(1183,1256432400,1),(1183,1269738000,0),(1183,1288486800,1),(1183,1301187600,0),(1183,1319936400,1),(1183,1332637200,0),(1183,1351386000,1),(1183,1364691600,0),(1183,1382835600,1),(1183,1396141200,0),(1183,1414285200,1),(1183,1427590800,0),(1183,1445734800,1),(1183,1459040400,0),(1183,1477789200,1),(1183,1490490000,0),(1183,1509238800,1),(1183,1521939600,0),(1183,1540688400,1),(1183,1553994000,0),(1183,1572138000,1),(1183,1585443600,0),(1183,1603587600,1),(1183,1616893200,0),(1183,1635642000,1),(1183,1648342800,0),(1183,1667091600,1),(1183,1679792400,0),(1183,1698541200,1),(1183,1711846800,0),(1183,1729990800,1),(1183,1743296400,0),(1183,1761440400,1),(1183,1774746000,0),(1183,1792890000,1),(1183,1806195600,0),(1183,1824944400,1),(1183,1837645200,0),(1183,1856394000,1),(1183,1869094800,0),(1183,1887843600,1),(1183,1901149200,0),(1183,1919293200,1),(1183,1932598800,0),(1183,1950742800,1),(1183,1964048400,0),(1183,1982797200,1),(1183,1995498000,0),(1183,2014246800,1),(1183,2026947600,0),(1183,2045696400,1),(1183,2058397200,0),(1183,2077146000,1),(1183,2090451600,0),(1183,2108595600,1),(1183,2121901200,0),(1183,2140045200,1),(1185,-1633280400,0),(1185,-1615140000,1),(1185,-1601830800,0),(1185,-1583690400,1),(1185,-1570381200,0),(1185,-1551636000,1),(1185,-1536512400,0),(1185,-1523210400,1),(1185,-1504458000,0),(1185,-1491760800,1),(1185,-1473008400,0),(1185,-1459706400,1),(1185,-1441558800,0),(1185,-1428256800,1),(1185,-1410109200,0),(1185,-1396807200,1),(1185,-1378659600,0),(1185,-1365357600,1),(1185,-1347210000,0),(1185,-1333908000,1),(1185,-1315155600,0),(1185,-1301853600,1),(1185,-1283706000,0),(1185,-1270404000,1),(1185,-1252256400,0),(1185,-1238954400,1),(1185,-1220806800,0),(1185,-1207504800,1),(1185,-1189357200,0),(1185,-1176055200,1),(1185,-1157302800,0),(1185,-1144605600,1),(1185,-1125853200,0),(1185,-1112551200,1),(1185,-1094403600,0),(1185,-1081101600,1),(1185,-1062954000,0),(1185,-1049652000,1),(1185,-1031504400,0),(1185,-1018202400,1),(1185,-1000054800,0),(1185,-986752800,1),(1185,-968000400,0),(1185,-955303200,1),(1185,-936550800,0),(1185,-923248800,1),(1185,-905101200,0),(1185,-891799200,1),(1185,-880218000,2),(1185,-769395600,3),(1185,-765396000,1),(1185,-747248400,0),(1185,-733946400,1),(1185,-715798800,0),(1185,-702496800,1),(1185,-684349200,0),(1185,-671047200,1),(1185,-652899600,0),(1185,-639597600,1),(1185,-620845200,0),(1185,-608148000,1),(1185,-589395600,0),(1185,-576093600,1),(1185,-557946000,0),(1185,-544644000,1),(1185,-526496400,0),(1185,-513194400,1),(1185,-495046800,0),(1185,-481744800,1),(1185,-463597200,0),(1185,-447271200,1),(1185,-431542800,0),(1185,-415821600,1),(1185,-400093200,0),(1185,-384372000,1),(1185,-368643600,0),(1185,-352922400,1),(1185,-337194000,0),(1185,-321472800,1),(1185,-305744400,0),(1185,-289418400,1),(1185,-273690000,0),(1185,-257968800,1),(1185,-242240400,0),(1185,-226519200,1),(1185,-210790800,0),(1185,-195069600,1),(1185,-179341200,0),(1185,-163620000,1),(1185,-147891600,0),(1185,-131565600,1),(1185,-116442000,0),(1185,-100116000,1),(1185,-84387600,0),(1185,-68666400,1),(1185,-52938000,0),(1185,-37216800,1),(1185,-21488400,0),(1185,-5767200,1),(1185,9961200,0),(1185,25682400,1),(1185,41410800,0),(1185,57736800,1),(1185,73465200,0),(1185,89186400,1),(1185,104914800,0),(1185,120636000,1),(1185,126687600,0),(1185,152085600,1),(1185,162370800,0),(1185,183535200,1),(1185,199263600,0),(1185,215589600,1),(1185,230713200,0),(1185,247039200,1),(1185,262767600,0),(1185,278488800,1),(1185,294217200,0),(1185,309938400,1),(1185,325666800,0),(1185,341388000,1),(1185,357116400,0),(1185,372837600,1),(1185,388566000,0),(1185,404892000,1),(1185,420015600,0),(1185,436341600,1),(1185,452070000,0),(1185,467791200,1),(1185,483519600,0),(1185,499240800,1),(1185,514969200,0),(1185,530690400,1),(1185,544604400,0),(1185,562140000,1),(1185,576054000,0),(1185,594194400,1),(1185,607503600,0),(1185,625644000,1),(1185,638953200,0),(1185,657093600,1),(1185,671007600,0),(1185,688543200,1),(1185,702457200,0),(1185,719992800,1),(1185,733906800,0),(1185,752047200,1),(1185,765356400,0),(1185,783496800,1),(1185,796806000,0),(1185,814946400,1),(1185,828860400,0),(1185,846396000,1),(1185,860310000,0),(1185,877845600,1),(1185,891759600,0),(1185,909295200,1),(1185,923209200,0),(1185,941349600,1),(1185,954658800,0),(1185,972799200,1),(1185,986108400,0),(1185,1004248800,1),(1185,1018162800,0),(1185,1035698400,1),(1185,1049612400,0),(1185,1067148000,1),(1185,1081062000,0),(1185,1099202400,1),(1185,1112511600,0),(1185,1130652000,1),(1185,1143961200,0),(1185,1162101600,1),(1185,1173596400,0),(1185,1194156000,1),(1185,1205046000,0),(1185,1225605600,1),(1185,1236495600,0),(1185,1257055200,1),(1185,1268550000,0),(1185,1289109600,1),(1185,1299999600,0),(1185,1320559200,1),(1185,1331449200,0),(1185,1352008800,1),(1185,1362898800,0),(1185,1383458400,1),(1185,1394348400,0),(1185,1414908000,1),(1185,1425798000,0),(1185,1446357600,1),(1185,1457852400,0),(1185,1478412000,1),(1185,1489302000,0),(1185,1509861600,1),(1185,1520751600,0),(1185,1541311200,1),(1185,1552201200,0),(1185,1572760800,1),(1185,1583650800,0),(1185,1604210400,1),(1185,1615705200,0),(1185,1636264800,1),(1185,1647154800,0),(1185,1667714400,1),(1185,1678604400,0),(1185,1699164000,1),(1185,1710054000,0),(1185,1730613600,1),(1185,1741503600,0),(1185,1762063200,1),(1185,1772953200,0),(1185,1793512800,1),(1185,1805007600,0),(1185,1825567200,1),(1185,1836457200,0),(1185,1857016800,1),(1185,1867906800,0),(1185,1888466400,1),(1185,1899356400,0),(1185,1919916000,1),(1185,1930806000,0),(1185,1951365600,1),(1185,1962860400,0),(1185,1983420000,1),(1185,1994310000,0),(1185,2014869600,1),(1185,2025759600,0),(1185,2046319200,1),(1185,2057209200,0),(1185,2077768800,1),(1185,2088658800,0),(1185,2109218400,1),(1185,2120108400,0),(1185,2140668000,1),(1186,-1830383032,1),(1187,-1640995148,2),(1187,-1556841600,1),(1187,-1546388400,2),(1187,-1525305600,1),(1187,-1514852400,2),(1187,-1493769600,1),(1187,-1483316400,2),(1187,-1462233600,1),(1187,-1451780400,2),(1187,-1430611200,1),(1187,-1420158000,2),(1187,-1399075200,1),(1187,-1388622000,2),(1187,-1367539200,1),(1187,-1357086000,2),(1187,-1336003200,1),(1187,-1325550000,2),(1187,-1304380800,1),(1187,-1293927600,2),(1187,-1272844800,1),(1187,-1262391600,2),(1187,-1241308800,1),(1187,-1230855600,2),(1187,-1209772800,1),(1187,-1199319600,2),(1187,-1178150400,1),(1187,-1167697200,2),(1187,-1146614400,1),(1187,-1136161200,2),(1187,-1115078400,1),(1187,-1104625200,2),(1187,-1083542400,1),(1187,-1073089200,2),(1187,-1051920000,1),(1187,-1041466800,2),(1187,-1020384000,1),(1187,-1009930800,2),(1187,-988848000,1),(1187,-978394800,2),(1187,-957312000,1),(1187,-946858800,2),(1187,-925689600,1),(1187,-915236400,2),(1187,-894153600,1),(1187,-883700400,2),(1187,-862617600,1),(1187,-852164400,2),(1188,-1309746436,1),(1188,-1262314800,2),(1188,-946780200,3),(1188,-315629100,1),(1189,-1855958961,3),(1189,-1689814800,1),(1189,-1680397200,2),(1189,-1665363600,1),(1189,-1648342800,2),(1189,-1635123600,1),(1189,-1616893200,2),(1189,-1604278800,1),(1189,-1585443600,2),(1189,-1574038800,1),(1189,-1552266000,2),(1189,-1539997200,1),(1189,-1531443600,2),(1189,-956365200,1),(1189,-950486400,3),(1189,-942012000,5),(1189,-812502000,4),(1189,-796262400,5),(1189,-781052400,4),(1189,-766630800,5),(1189,-733280400,3),(1189,-439430400,5),(1189,-212029200,3),(1189,41468400,1),(1189,54774000,2),(1189,231724806,6),(1189,246236406,5),(1189,259545607,4),(1189,275274007,5),(1189,309740408,3),(1189,325468809,6),(1189,341802009,3),(1189,357523209,5),(1190,-1309746436,1),(1190,-1262314800,2),(1190,-946780200,3),(1190,-315629100,1),(1191,-1309746436,1),(1191,-1262314800,2),(1191,-946780200,3),(1191,-315629100,1),(1192,-1830383032,1),(1193,-1588464816,1),(1194,-1830383032,1),(1195,-1830380400,1),(1195,157770004,2),(1196,-2109291020,1),(1197,-1588464816,1),(1198,-2109291020,1),(1199,-929844000,0),(1199,-923108400,1),(1199,-906170400,0),(1199,-892868400,1),(1199,-875844000,0),(1199,-857790000,1),(1199,-844308000,0),(1199,-825822000,1),(1199,-812685600,0),(1199,-794199600,1),(1199,-779853600,0),(1199,-762663600,1),(1199,-399088800,0),(1199,-386650800,1),(1199,-368330400,0),(1199,-355114800,1),(1199,-336790800,0),(1199,-323654400,1),(1199,-305168400,0),(1199,-292032000,1),(1199,-273632400,0),(1199,-260496000,1),(1199,-242096400,0),(1199,-228960000,1),(1199,-210560400,0),(1199,-197424000,1),(1199,-178938000,0),(1199,-165801600,1),(1199,-147402000,0),(1199,-134265600,1),(1199,-115866000,0),(1199,-102643200,1),(1199,-84330000,0),(1199,-71107200,1),(1199,-52707600,0),(1199,-39484800,1),(1199,-21171600,0),(1199,-7948800,1),(1199,10364400,0),(1199,23587200,1),(1199,41900400,0),(1199,55123200,1),(1199,73522800,0),(1199,86745601,1),(1199,105058802,0),(1199,118281602,1),(1199,136594803,0),(1199,149817603,1),(1199,168130804,0),(1199,181353604,1),(1199,199753205,0),(1199,212976005,1),(1199,231289206,0),(1199,244512006,1),(1199,262825207,0),(1199,276048007,1),(1199,294361208,0),(1199,307584008,1),(1199,325983609,0),(1199,339206409,1),(1199,357519609,0),(1199,370742410,1),(1199,396399611,0),(1199,402278411,1),(1199,426812412,0),(1199,433814412,1),(1199,452214012,0),(1199,465436812,1),(1199,483750012,0),(1199,496972813,1),(1199,515286013,0),(1199,528508813,1),(1199,546822013,0),(1199,560044813,1),(1199,578444414,0),(1199,591667214,1),(1199,610412414,0),(1199,623203214,1),(1199,641516415,0),(1199,654739215,1),(1199,673052416,0),(1199,686275216,1),(1199,704674816,0),(1199,717897617,1),(1199,736210817,0),(1199,749433618,1),(1199,767746818,0),(1199,780969619,1),(1199,799020019,2),(1199,812322019,1),(1199,830469620,2),(1199,843771620,1),(1199,861919220,2),(1199,875221221,1),(1199,893368821,2),(1199,906670821,1),(1199,925423222,2),(1199,938725222,1),(1199,956872822,2),(1199,970174822,1),(1199,988322422,2),(1199,1001624422,1),(1199,1019772022,2),(1199,1033074022,1),(1199,1051221622,2),(1199,1064523622,1),(1199,1083276022,2),(1199,1096578022,1),(1199,1114725622,2),(1199,1128027622,1),(1199,1146175223,2),(1199,1158872423,1),(1199,1177624823,2),(1199,1189112423,1),(1199,1209074423,2),(1199,1219957223,1),(1199,1240524024,2),(1199,1250802024,1),(1199,1272578424,2),(1199,1281474024,1),(1199,1284069624,0),(1199,1285880424,1),(1199,1400191225,0),(1199,1403816425,1),(1199,1406844025,0),(1199,1411678825,1),(1200,-1773012580,2),(1200,-956361600,1),(1200,-950490000,2),(1200,-942019200,1),(1200,-761187600,2),(1200,-617241600,1),(1200,-605149200,2),(1200,-81432000,1),(1200,-71110800,2),(1200,141264003,1),(1200,147222003,2),(1200,199756805,1),(1200,207702005,2),(1200,231292806,1),(1200,244249206,2),(1200,265507207,1),(1200,271033207,2),(1200,448243212,3),(1200,504918013,2),(1200,1212278423,1),(1200,1220223623,2),(1200,1243814424,1),(1200,1250809224,2),(1200,1272758424,1),(1200,1281222024,2),(1200,1301788824,1),(1200,1312066824,2),(1200,1335664824,1),(1200,1342749625,2),(1200,1345428025,1),(1200,1348970425,2),(1200,1367114425,1),(1200,1373162425,2),(1200,1376100025,1),(1200,1382839225,2),(1200,1396144825,1),(1200,1403920825,2),(1200,1406944825,1),(1200,1414288825,2),(1200,1427594425,1),(1200,1434247225,2),(1200,1437271226,1),(1200,1445738426,2),(1200,1459044026,1),(1200,1465092026,2),(1200,1468116026,1),(1200,1477792826,2),(1200,1490493627,1),(1200,1495332027,2),(1200,1498960827,1),(1200,1509242427,2),(1200,1521943227,1),(1200,1526176827,2),(1200,1529200827,1),(1200,1540692027,2),(1200,1553997627,1),(1200,1557021627,2),(1200,1560045627,1),(1200,1572141627,2),(1200,1585447227,1),(1200,1587261627,2),(1200,1590285627,1),(1200,1603591227,2),(1200,1616896827,1),(1200,1618106427,2),(1200,1621130427,1),(1200,1635645627,2),(1200,1651975227,1),(1200,1667095227,2),(1200,1682215227,1),(1200,1698544827,2),(1200,1713060027,1),(1200,1729994427,2),(1200,1743904827,1),(1200,1761444027,2),(1200,1774749627,1),(1200,1792893627,2),(1200,1806199227,1),(1200,1824948027,2),(1200,1837648827,1),(1200,1856397627,2),(1200,1869098427,1),(1200,1887847227,2),(1200,1901152827,1),(1200,1919296827,2),(1200,1932602427,1),(1200,1950746427,2),(1200,1964052027,1),(1200,1982800827,2),(1200,1995501627,1),(1200,2014250427,2),(1200,2026951227,1),(1200,2045700027,2),(1200,2058400827,1),(1200,2077149627,2),(1200,2090455227,1),(1200,2107994427,2),(1200,2121904827,1),(1200,2138234427,2),(1201,-1630112400,1),(1201,-1616810400,0),(1201,-1442451600,1),(1201,-1427673600,2),(1201,-1379293200,1),(1201,-1364774400,2),(1201,-1348448400,1),(1201,-1333324800,2),(1201,-1316390400,1),(1201,-1301270400,2),(1201,-1293840000,0),(1201,-81432000,1),(1201,-71110800,0),(1201,141264003,1),(1201,147222003,0),(1201,199756805,1),(1201,207702005,0),(1201,231292806,1),(1201,244249206,0),(1201,265507207,1),(1201,271033207,0),(1201,448243212,3),(1201,512528413,4),(1201,528253213,5),(1201,543978013,4),(1201,559702813,5),(1201,575427614,4),(1201,591152414,5),(1201,606877214,4),(1201,622602014,5),(1201,638326815,4),(1201,654656415,5),(1201,670381216,4),(1201,686106016,5),(1201,701830816,4),(1201,717555617,5),(1201,733280417,4),(1201,749005218,5),(1201,764730018,4),(1201,780454819,5),(1201,796179619,4),(1201,811904419,5),(1201,828234020,4),(1201,846378020,5),(1201,859683620,4),(1201,877827621,5),(1201,891133221,4),(1201,909277221,5),(1201,922582822,4),(1201,941331622,5),(1201,954032422,4),(1201,972781222,5),(1201,985482022,4),(1201,1004230822,5),(1201,1017536422,4),(1201,1035680422,5),(1201,1048986022,4),(1201,1067130022,5),(1201,1080435622,4),(1201,1099184422,5),(1201,1111885222,4),(1201,1130634022,5),(1201,1143334823,4),(1201,1162083623,5),(1201,1174784423,4),(1201,1193533223,5),(1201,1206838823,4),(1201,1224982823,5),(1201,1238288424,4),(1201,1256432424,5),(1201,1269738024,4),(1201,1288486824,5),(1201,1301187624,4),(1201,1319936424,5),(1201,1332637224,4),(1201,1351386025,5),(1201,1364691625,4),(1201,1382835625,5),(1201,1396141225,4),(1201,1414285225,5),(1201,1427590825,4),(1201,1445734826,5),(1201,1459040426,4),(1201,1477789226,5),(1201,1490490027,4),(1201,1509238827,5),(1201,1521939627,4),(1201,1540688427,5),(1201,1553994027,4),(1201,1572138027,5),(1201,1585443627,4),(1201,1603587627,5),(1201,1616893227,4),(1201,1635642027,5),(1201,1648342827,4),(1201,1667091627,5),(1201,1679792427,4),(1201,1698541227,5),(1201,1711846827,4),(1201,1729990827,5),(1201,1743296427,4),(1201,1761440427,5),(1201,1774746027,4),(1201,1792890027,5),(1201,1806195627,4),(1201,1824944427,5),(1201,1837645227,4),(1201,1856394027,5),(1201,1869094827,4),(1201,1887843627,5),(1201,1901149227,4),(1201,1919293227,5),(1201,1932598827,4),(1201,1950742827,5),(1201,1964048427,4),(1201,1982797227,5),(1201,1995498027,4),(1201,2014246827,5),(1201,2026947627,4),(1201,2045696427,5),(1201,2058397227,4),(1201,2077146027,5),(1201,2090451627,4),(1201,2108595627,5),(1201,2121901227,4),(1201,2140045227,5),(1202,-1830383032,1),(1203,-1830383032,1),(1204,-1309746436,1),(1204,-1262314800,2),(1204,-946780200,3),(1204,-315629100,1),(1205,-1309746436,1),(1205,-1262314800,2),(1205,-946780200,3),(1205,-315629100,1),(1206,-1588464816,1),(1207,-1136070432,1),(1207,198291605,3),(1207,199756805,2),(1207,207702005,3),(1207,231292806,2),(1207,244249206,3),(1207,265507207,2),(1207,271033207,3),(1207,1212278423,2),(1207,1220223623,3),(1207,1243814424,2),(1207,1250809224,3),(1207,1272758424,2),(1207,1281222024,3),(1207,1301788824,2),(1207,1312066824,3),(1207,1335664824,2),(1207,1342749625,3),(1207,1345428025,2),(1207,1348970425,3),(1207,1367114425,2),(1207,1373162425,3),(1207,1376100025,2),(1207,1382839225,3),(1207,1396144825,2),(1207,1403920825,3),(1207,1406944825,2),(1207,1414288825,3),(1207,1427594425,2),(1207,1434247225,3),(1207,1437271226,2),(1207,1445738426,3),(1207,1459044026,2),(1207,1465092026,3),(1207,1468116026,2),(1207,1477792826,3),(1207,1490493627,2),(1207,1495332027,3),(1207,1498960827,2),(1207,1509242427,3),(1207,1521943227,2),(1207,1526176827,3),(1207,1529200827,2),(1207,1540692027,3),(1207,1553997627,2),(1207,1557021627,3),(1207,1560045627,2),(1207,1572141627,3),(1207,1585447227,2),(1207,1587261627,3),(1207,1590285627,2),(1207,1603591227,3),(1207,1616896827,2),(1207,1618106427,3),(1207,1621130427,2),(1207,1635645627,3),(1207,1651975227,2),(1207,1667095227,3),(1207,1682215227,2),(1207,1698544827,3),(1207,1713060027,2),(1207,1729994427,3),(1207,1743904827,2),(1207,1761444027,3),(1207,1774749627,2),(1207,1792893627,3),(1207,1806199227,2),(1207,1824948027,3),(1207,1837648827,2),(1207,1856397627,3),(1207,1869098427,2),(1207,1887847227,3),(1207,1901152827,2),(1207,1919296827,3),(1207,1932602427,2),(1207,1950746427,3),(1207,1964052027,2),(1207,1982800827,3),(1207,1995501627,2),(1207,2014250427,3),(1207,2026951227,2),(1207,2045700027,3),(1207,2058400827,2),(1207,2077149627,3),(1207,2090455227,2),(1207,2107994427,3),(1207,2121904827,2),(1207,2138234427,3),(1208,-1830383032,1),(1209,-2109291020,1),(1210,-2109291020,1),(1211,-2109288600,2),(1211,-860976000,1),(1211,-845254800,2),(1211,-829526400,1),(1211,-813805200,2),(1212,-1230775588,2),(1212,10360800,1),(1212,24786000,2),(1212,41810400,1),(1212,56322000,2),(1212,73432800,1),(1212,87944401,2),(1212,104882402,1),(1212,119480402,2),(1212,136332003,1),(1212,151016403,2),(1212,167781604,1),(1212,182552404,2),(1212,199231205,1),(1212,214174805,2),(1212,230680806,1),(1212,245710806,2),(1212,262735207,1),(1212,277246807,2),(1212,294184808,1),(1212,308782808,2),(1212,325634409,1),(1212,340405209,2),(1212,357084009,1),(1212,371941210,2),(1212,388533610,1),(1212,403477211,2),(1212,419983211,1),(1212,435013212,2),(1212,452037612,1),(1212,466635612,2),(1212,483487212,1),(1212,498171613,2),(1212,947930422,3),(1213,-1309746436,1),(1213,-1262314800,2),(1213,-946780200,3),(1213,-315629100,1),(1214,-1230775808,2),(1214,10360800,1),(1214,24786000,2),(1214,41810400,1),(1214,56322000,2),(1214,73432800,1),(1214,87944401,2),(1214,104882402,1),(1214,119480402,2),(1214,136332003,1),(1214,151016403,2),(1214,167781604,1),(1214,182552404,2),(1214,199231205,1),(1214,214174805,2),(1214,230680806,1),(1214,245710806,2),(1214,262735207,1),(1214,277246807,2),(1214,294184808,1),(1214,308782808,2),(1214,325634409,1),(1214,340405209,2),(1214,357084009,1),(1214,371941210,2),(1214,388533610,1),(1214,403477211,2),(1214,419983211,1),(1214,435013212,2),(1214,452037612,1),(1214,466635612,2),(1214,483487212,1),(1214,498171613,2),(1214,947930422,3),(1214,1509483627,2),(1215,-2109291020,1),(1216,-1588464816,1),(1217,-1588464816,1),(1218,-1588464816,1),(1219,-1830383032,1),(1220,-1588464816,1),(1221,-2109291020,1),(1222,-2109291020,1),(1223,-1588464816,1),(1224,-2109291020,1),(1225,-2109288600,2),(1225,-860976000,1),(1225,-845254800,2),(1225,-829526400,1),(1225,-813805200,2),(1226,-2109288600,2),(1226,-860976000,1),(1226,-845254800,2),(1226,-829526400,1),(1226,-813805200,2),(1227,-1309746436,1),(1227,-1262314800,2),(1227,-946780200,3),(1227,-315629100,1),(1228,-1604359012,1),(1228,63593070,2),(1229,-1309746436,1),(1229,-1262314800,2),(1229,-946780200,3),(1229,-315629100,1),(1230,-1830387612,1),(1230,308703608,2),(1230,321314409,1),(1231,-1588464816,1),(1232,-1830383032,1),(1233,-1830383032,1),(1234,-1588464816,1),(1235,-1830384000,1),(1235,1514768427,2),(1236,-1830383032,1),(1237,-1577926364,2),(1237,-574902000,1),(1237,-568087200,2),(1237,-512175600,1),(1237,-504928800,2),(1237,-449888400,1),(1237,-441856800,2),(1237,-347158800,3),(1237,378684010,2),(1237,386463610,1),(1237,402271211,2),(1237,417999611,1),(1237,433807212,2),(1237,449622012,1),(1237,465429612,2),(1237,481590012,1),(1237,496965613,2),(1237,512953213,1),(1237,528674413,2),(1237,544230013,1),(1237,560037613,2),(1237,575852414,1),(1237,591660014,2),(1237,607388414,1),(1237,623196014,2),(1237,641775615,3),(1237,844034420,2),(1237,860108420,1),(1237,875916021,3),(1237,1352505625,2),(1237,1364515225,1),(1237,1382659225,3),(1238,-1855958961,3),(1238,-969242400,1),(1238,-950493600,2),(1238,-941940000,1),(1238,-891136800,3),(1238,-877827600,4),(1238,-857257200,3),(1238,-844556400,4),(1238,-842918400,3),(1238,-842223600,4),(1238,-828230400,3),(1238,-812502000,4),(1238,-796269600,3),(1238,-781052400,4),(1238,-766634400,3),(1238,231202806,1),(1238,243903606,2),(1238,262825207,1),(1238,276044407,2),(1238,581122814,1),(1238,591145214,2),(1238,606870014,1),(1238,622594814,2),(1238,641516415,1),(1238,654649215,2),(1238,1114902022,1),(1238,1128038422,2),(1238,1143334823,1),(1238,1162083623,2),(1238,1174784423,1),(1238,1193533223,2),(1238,1206838823,1),(1238,1224982823,2),(1239,-2109288600,1),(1239,-860976000,2),(1239,-845254800,1),(1239,637970415,3),(1239,764200818,4),(1239,778640419,5),(1239,796780819,4),(1239,810090019,5),(1239,828835220,4),(1239,841539620,5),(1239,860284820,4),(1239,873594021,5),(1239,891734421,4),(1239,905043621,5),(1239,923184022,4),(1239,936493222,5),(1239,954633622,4),(1239,967942822,5),(1239,986083222,4),(1239,999392422,5),(1239,1018137622,4),(1239,1030842022,5),(1239,1049587222,4),(1239,1062896422,5),(1239,1081036822,4),(1239,1094346022,5),(1239,1112486422,4),(1239,1125795622,5),(1239,1143936023,4),(1239,1157245223,5),(1239,1175385623,4),(1239,1188694823,5),(1239,1207440023,4),(1239,1220749223,5),(1239,1238889624,4),(1239,1252198824,5),(1239,1270339224,4),(1239,1283648424,5),(1239,1301788824,4),(1239,1315098024,5),(1239,1333238424,4),(1239,1346547625,5),(1239,1365292825,4),(1239,1377997225,5),(1239,1396742425,4),(1239,1410051625,5),(1239,1428192025,4),(1239,1441501226,5),(1239,1459641626,4),(1239,1472950826,5),(1239,1491091227,4),(1239,1504400427,5),(1239,1508796027,3),(1240,-880196400,1),(1240,-769395600,2),(1240,-765374400,0),(1240,-86878800,3),(1240,-21466800,4),(1240,-5745600,3),(1240,9982800,4),(1240,25704000,3),(1240,41432400,4),(1240,57758400,3),(1240,73486800,4),(1240,89208001,3),(1240,104936402,4),(1240,120657602,3),(1240,126709203,4),(1240,152107203,3),(1240,162392404,4),(1240,183556804,3),(1240,199285205,4),(1240,215611205,3),(1240,230734806,4),(1240,247060806,3),(1240,262789207,4),(1240,278510407,3),(1240,294238808,4),(1240,309960008,3),(1240,325688409,4),(1240,341409609,3),(1240,357138009,4),(1240,372859210,3),(1240,388587610,4),(1240,404913611,3),(1240,420037211,4),(1240,436363212,5),(1240,439034412,7),(1240,452088012,6),(1240,467809212,7),(1240,483537612,6),(1240,499258813,7),(1240,514987213,6),(1240,530708413,7),(1240,544622413,6),(1240,562158013,7),(1240,576072014,6),(1240,594212414,7),(1240,607521614,6),(1240,625662014,7),(1240,638971215,6),(1240,657111615,7),(1240,671025616,6),(1240,688561216,7),(1240,702475216,6),(1240,720010817,7),(1240,733924817,6),(1240,752065218,7),(1240,765374418,6),(1240,783514819,7),(1240,796824019,6),(1240,814964419,7),(1240,828878420,6),(1240,846414020,7),(1240,860328020,6),(1240,877863621,7),(1240,891777621,6),(1240,909313221,7),(1240,923227222,6),(1240,941367622,7),(1240,954676822,6),(1240,972817222,7),(1240,986126422,6),(1240,1004266822,7),(1240,1018180822,6),(1240,1035716422,7),(1240,1049630422,6),(1240,1067166022,7),(1240,1081080022,6),(1240,1099220422,7),(1240,1112529622,6),(1240,1130670022,7),(1240,1143979223,6),(1240,1162119623,7),(1240,1173614423,6),(1240,1194174023,7),(1240,1205064023,6),(1240,1225623623,7),(1240,1236513624,6),(1240,1257073224,7),(1240,1268568024,6),(1240,1289127624,7),(1240,1300017624,6),(1240,1320577224,7),(1240,1331467224,6),(1240,1352026825,7),(1240,1362916825,6),(1240,1383476425,7),(1240,1394366425,6),(1240,1414926025,7),(1240,1425816025,6),(1240,1446375626,7),(1240,1457870426,6),(1240,1478430026,7),(1240,1489320027,6),(1240,1509879627,7),(1240,1520769627,6),(1240,1541329227,7),(1240,1552219227,6),(1240,1572778827,7),(1240,1583668827,6),(1240,1604228427,7),(1240,1615723227,6),(1240,1636282827,7),(1240,1647172827,6),(1240,1667732427,7),(1240,1678622427,6),(1240,1699182027,7),(1240,1710072027,6),(1240,1730631627,7),(1240,1741521627,6),(1240,1762081227,7),(1240,1772971227,6),(1240,1793530827,7),(1240,1805025627,6),(1240,1825585227,7),(1240,1836475227,6),(1240,1857034827,7),(1240,1867924827,6),(1240,1888484427,7),(1240,1899374427,6),(1240,1919934027,7),(1240,1930824027,6),(1240,1951383627,7),(1240,1962878427,6),(1240,1983438027,7),(1240,1994328027,6),(1240,2014887627,7),(1240,2025777627,6),(1240,2046337227,7),(1240,2057227227,6),(1240,2077786827,7),(1240,2088676827,6),(1240,2109236427,7),(1240,2120126427,6),(1240,2140686027,7),(1241,-880200000,1),(1241,-769395600,2),(1241,-765378000,0),(1241,-86882400,3),(1241,-21470400,4),(1241,-5749200,3),(1241,9979200,4),(1241,25700400,3),(1241,41428800,4),(1241,57754800,3),(1241,73483200,4),(1241,89204401,3),(1241,104932802,4),(1241,120654002,3),(1241,126705603,4),(1241,152103603,3),(1241,162388804,4),(1241,183553204,3),(1241,199281605,4),(1241,215607605,3),(1241,230731206,4),(1241,247057206,3),(1241,262785607,4),(1241,278506807,3),(1241,294235208,4),(1241,309956408,3),(1241,325684809,4),(1241,341406009,3),(1241,357134409,4),(1241,372855610,3),(1241,388584010,4),(1241,404910011,3),(1241,420033611,4),(1241,436359612,5),(1241,439030812,7),(1241,452084412,6),(1241,467805612,7),(1241,483534012,6),(1241,499255213,7),(1241,514983613,6),(1241,530704813,7),(1241,544618813,6),(1241,562154413,7),(1241,576068414,6),(1241,594208814,7),(1241,607518014,6),(1241,625658414,7),(1241,638967615,6),(1241,657108015,7),(1241,671022016,6),(1241,688557616,7),(1241,702471616,6),(1241,720007217,7),(1241,733921217,6),(1241,752061618,7),(1241,765370818,6),(1241,783511219,7),(1241,796820419,6),(1241,814960819,7),(1241,828874820,6),(1241,846410420,7),(1241,860324420,6),(1241,877860021,7),(1241,891774021,6),(1241,909309621,7),(1241,923223622,6),(1241,941364022,7),(1241,954673222,6),(1241,972813622,7),(1241,986122822,6),(1241,1004263222,7),(1241,1018177222,6),(1241,1035712822,7),(1241,1049626822,6),(1241,1067162422,7),(1241,1081076422,6),(1241,1099216822,7),(1241,1112526022,6),(1241,1130666422,7),(1241,1143975623,6),(1241,1162116023,7),(1241,1173610823,6),(1241,1194170423,7),(1241,1205060423,6),(1241,1225620023,7),(1241,1236510024,6),(1241,1257069624,7),(1241,1268564424,6),(1241,1289124024,7),(1241,1300014024,6),(1241,1320573624,7),(1241,1331463624,6),(1241,1352023225,7),(1241,1362913225,6),(1241,1383472825,7),(1241,1394362825,6),(1241,1414922425,7),(1241,1425812425,6),(1241,1446372026,7),(1241,1457866826,6),(1241,1478426426,7),(1241,1489316427,6),(1241,1509876027,7),(1241,1520766027,6),(1241,1541325627,7),(1241,1552215627,6),(1241,1572775227,7),(1241,1583665227,6),(1241,1604224827,7),(1241,1615719627,6),(1241,1636279227,7),(1241,1647169227,6),(1241,1667728827,7),(1241,1678618827,6),(1241,1699178427,7),(1241,1710068427,6),(1241,1730628027,7),(1241,1741518027,6),(1241,1762077627,7),(1241,1772967627,6),(1241,1793527227,7),(1241,1805022027,6),(1241,1825581627,7),(1241,1836471627,6),(1241,1857031227,7),(1241,1867921227,6),(1241,1888480827,7),(1241,1899370827,6),(1241,1919930427,7),(1241,1930820427,6),(1241,1951380027,7),(1241,1962874827,6),(1241,1983434427,7),(1241,1994324427,6),(1241,2014884027,7),(1241,2025774027,6),(1241,2046333627,7),(1241,2057223627,6),(1241,2077783227,7),(1241,2088673227,6),(1241,2109232827,7),(1241,2120122827,6),(1241,2140682427,7),(1242,-1825098836,1),(1243,-1825098836,1),(1244,-1767214032,2),(1244,-1206957600,1),(1244,-1191362400,2),(1244,-1175374800,1),(1244,-1159826400,2),(1244,-633819600,1),(1244,-622069200,2),(1244,-602283600,1),(1244,-591832800,2),(1244,-570747600,1),(1244,-560210400,2),(1244,-539125200,1),(1244,-531352800,2),(1244,-191365200,1),(1244,-184197600,2),(1244,-155163600,1),(1244,-150069600,2),(1244,-128898000,1),(1244,-121125600,2),(1244,-99954000,1),(1244,-89589600,2),(1244,-68418000,1),(1244,-57967200,2),(1244,499748413,1),(1244,511236013,2),(1244,530593213,1),(1244,540266413,2),(1244,562129213,1),(1244,571197614,2),(1244,592974014,1),(1244,602042414,2),(1244,624423614,1),(1244,634701615,2),(1244,813726019,1),(1244,824004020,2),(1244,844570820,1),(1244,856058420,2),(1244,876106821,1),(1244,888717621,2),(1244,908074821,1),(1244,919562422,2),(1244,938919622,1),(1244,951616822,2),(1244,970974022,1),(1244,982461622,2),(1244,1003028422,1),(1244,1013911222,2),(1244,1036292422,1),(1244,1045360822,2),(1244,1350788425,1),(1244,1361066425,2),(1245,-1567453392,1),(1245,-1233432000,2),(1245,-1222981200,1),(1245,-1205956800,2),(1245,-1194037200,1),(1245,-1172865600,2),(1245,-1162501200,1),(1245,-1141329600,2),(1245,-1130965200,1),(1245,-1109793600,2),(1245,-1099429200,1),(1245,-1078257600,2),(1245,-1067806800,1),(1245,-1046635200,2),(1245,-1036270800,1),(1245,-1015099200,2),(1245,-1004734800,1),(1245,-983563200,2),(1245,-973198800,1),(1245,-952027200,2),(1245,-941576400,1),(1245,-931032000,2),(1245,-900882000,1),(1245,-890337600,2),(1245,-833749200,1),(1245,-827265600,2),(1245,-752274000,1),(1245,-733780800,2),(1245,-197326800,1),(1245,-190843200,2),(1245,-184194000,1),(1245,-164491200,2),(1245,-152658000,1),(1245,-132955200,2),(1245,-121122000,1),(1245,-101419200,2),(1245,-86821200,1),(1245,-71092800,2),(1245,-54766800,1),(1245,-39038400,2),(1245,-23317200,1),(1245,-7588800,4),(1245,128142003,3),(1245,136605603,4),(1245,596948414,3),(1245,605066414,4),(1245,624423614,3),(1245,636516015,4),(1245,656478015,3),(1245,667965616,4),(1245,687927616,3),(1245,699415216,4),(1245,719377217,3),(1245,731469617,4),(1245,938919622,2),(1245,952052422,4),(1245,1198983623,3),(1245,1205632823,4),(1245,1224385223,3),(1245,1237082424,4),(1246,-1567453392,1),(1246,-1233432000,2),(1246,-1222981200,1),(1246,-1205956800,2),(1246,-1194037200,1),(1246,-1172865600,2),(1246,-1162501200,1),(1246,-1141329600,2),(1246,-1130965200,1),(1246,-1109793600,2),(1246,-1099429200,1),(1246,-1078257600,2),(1246,-1067806800,1),(1246,-1046635200,2),(1246,-1036270800,1),(1246,-1015099200,2),(1246,-1004734800,1),(1246,-983563200,2),(1246,-973198800,1),(1246,-952027200,2),(1246,-941576400,1),(1246,-931032000,2),(1246,-900882000,1),(1246,-890337600,2),(1246,-833749200,1),(1246,-827265600,2),(1246,-752274000,1),(1246,-733780800,2),(1246,-197326800,1),(1246,-190843200,2),(1246,-184194000,1),(1246,-164491200,2),(1246,-152658000,1),(1246,-132955200,2),(1246,-121122000,1),(1246,-101419200,2),(1246,-86821200,1),(1246,-71092800,2),(1246,-54766800,1),(1246,-39038400,2),(1246,-23317200,1),(1246,-7588800,4),(1246,128142003,3),(1246,136605603,4),(1246,596948414,3),(1246,605066414,4),(1246,624423614,3),(1246,636516015,4),(1246,656478015,3),(1246,667965616,1),(1246,687931216,3),(1246,699415216,4),(1246,719377217,3),(1246,731469617,4),(1246,938919622,2),(1246,952052422,4),(1246,1086058822,1),(1246,1087704022,4),(1246,1198983623,3),(1246,1205632823,4),(1247,-1567453392,1),(1247,-1233432000,2),(1247,-1222981200,1),(1247,-1205956800,2),(1247,-1194037200,1),(1247,-1172865600,2),(1247,-1162501200,1),(1247,-1141329600,2),(1247,-1130965200,1),(1247,-1109793600,2),(1247,-1099429200,1),(1247,-1078257600,2),(1247,-1067806800,1),(1247,-1046635200,2),(1247,-1036270800,1),(1247,-1015099200,2),(1247,-1004734800,1),(1247,-983563200,2),(1247,-973198800,1),(1247,-952027200,2),(1247,-941576400,1),(1247,-931032000,2),(1247,-900882000,1),(1247,-890337600,2),(1247,-833749200,1),(1247,-827265600,2),(1247,-752274000,1),(1247,-733780800,2),(1247,-197326800,1),(1247,-190843200,2),(1247,-184194000,1),(1247,-164491200,2),(1247,-152658000,1),(1247,-132955200,2),(1247,-121122000,1),(1247,-101419200,2),(1247,-86821200,1),(1247,-71092800,2),(1247,-54766800,1),(1247,-39038400,2),(1247,-23317200,1),(1247,-7588800,4),(1247,128142003,3),(1247,136605603,4),(1247,596948414,3),(1247,605066414,4),(1247,624423614,3),(1247,636516015,4),(1247,656478015,3),(1247,667965616,1),(1247,687931216,3),(1247,699415216,4),(1247,719377217,3),(1247,731469617,4),(1247,938919622,2),(1247,952052422,4),(1247,1086058822,1),(1247,1087704022,4),(1247,1198983623,3),(1247,1205632823,4),(1248,-1567453392,1),(1248,-1233432000,2),(1248,-1222981200,1),(1248,-1205956800,2),(1248,-1194037200,1),(1248,-1172865600,2),(1248,-1162501200,1),(1248,-1141329600,2),(1248,-1130965200,1),(1248,-1109793600,2),(1248,-1099429200,1),(1248,-1078257600,2),(1248,-1067806800,1),(1248,-1046635200,2),(1248,-1036270800,1),(1248,-1015099200,2),(1248,-1004734800,1),(1248,-983563200,2),(1248,-973198800,1),(1248,-952027200,2),(1248,-941576400,1),(1248,-931032000,2),(1248,-900882000,1),(1248,-890337600,2),(1248,-833749200,1),(1248,-827265600,2),(1248,-752274000,1),(1248,-733780800,2),(1248,-197326800,1),(1248,-190843200,2),(1248,-184194000,1),(1248,-164491200,2),(1248,-152658000,1),(1248,-132955200,2),(1248,-121122000,1),(1248,-101419200,2),(1248,-86821200,1),(1248,-71092800,2),(1248,-54766800,1),(1248,-39038400,2),(1248,-23317200,1),(1248,-7588800,4),(1248,128142003,3),(1248,136605603,4),(1248,596948414,3),(1248,605066414,4),(1248,624423614,3),(1248,636516015,4),(1248,656478015,3),(1248,667965616,1),(1248,687931216,3),(1248,699415216,4),(1248,719377217,3),(1248,731469617,4),(1248,938919622,2),(1248,952052422,4),(1248,1198983623,3),(1248,1205632823,4),(1248,1224385223,3),(1248,1237082424,4),(1249,-1567453392,1),(1249,-1233432000,2),(1249,-1222981200,1),(1249,-1205956800,2),(1249,-1194037200,1),(1249,-1172865600,2),(1249,-1162501200,1),(1249,-1141329600,2),(1249,-1130965200,1),(1249,-1109793600,2),(1249,-1099429200,1),(1249,-1078257600,2),(1249,-1067806800,1),(1249,-1046635200,2),(1249,-1036270800,1),(1249,-1015099200,2),(1249,-1004734800,1),(1249,-983563200,2),(1249,-973198800,1),(1249,-952027200,2),(1249,-941576400,1),(1249,-931032000,2),(1249,-900882000,1),(1249,-890337600,2),(1249,-833749200,1),(1249,-827265600,2),(1249,-752274000,1),(1249,-733780800,2),(1249,-197326800,1),(1249,-190843200,2),(1249,-184194000,1),(1249,-164491200,2),(1249,-152658000,1),(1249,-132955200,2),(1249,-121122000,1),(1249,-101419200,2),(1249,-86821200,1),(1249,-71092800,2),(1249,-54766800,1),(1249,-39038400,2),(1249,-23317200,1),(1249,-7588800,4),(1249,128142003,3),(1249,136605603,4),(1249,596948414,3),(1249,605066414,4),(1249,624423614,3),(1249,636516015,1),(1249,657086415,2),(1249,669178816,1),(1249,686721616,3),(1249,699415216,4),(1249,719377217,3),(1249,731469617,4),(1249,938919622,2),(1249,952052422,4),(1249,1198983623,3),(1249,1205632823,4),(1250,-1567453392,1),(1250,-1233432000,2),(1250,-1222981200,1),(1250,-1205956800,2),(1250,-1194037200,1),(1250,-1172865600,2),(1250,-1162501200,1),(1250,-1141329600,2),(1250,-1130965200,1),(1250,-1109793600,2),(1250,-1099429200,1),(1250,-1078257600,2),(1250,-1067806800,1),(1250,-1046635200,2),(1250,-1036270800,1),(1250,-1015099200,2),(1250,-1004734800,1),(1250,-983563200,2),(1250,-973198800,1),(1250,-952027200,2),(1250,-941576400,1),(1250,-931032000,2),(1250,-900882000,1),(1250,-890337600,2),(1250,-833749200,1),(1250,-827265600,2),(1250,-752274000,1),(1250,-733780800,2),(1250,-197326800,1),(1250,-190843200,2),(1250,-184194000,1),(1250,-164491200,2),(1250,-152658000,1),(1250,-132955200,2),(1250,-121122000,1),(1250,-101419200,2),(1250,-86821200,1),(1250,-71092800,2),(1250,-54766800,1),(1250,-39038400,2),(1250,-23317200,1),(1250,-7588800,4),(1250,128142003,3),(1250,136605603,4),(1250,596948414,3),(1250,605066414,4),(1250,624423614,3),(1250,636516015,4),(1250,656478015,3),(1250,667792816,1),(1250,673588816,4),(1250,687927616,3),(1250,699415216,4),(1250,719377217,3),(1250,731469617,4),(1250,938919622,2),(1250,952052422,4),(1250,1086058822,1),(1250,1087704022,4),(1250,1198983623,3),(1250,1205632823,4),(1251,-1567453392,1),(1251,-1233432000,2),(1251,-1222981200,1),(1251,-1205956800,2),(1251,-1194037200,1),(1251,-1172865600,2),(1251,-1162501200,1),(1251,-1141329600,2),(1251,-1130965200,1),(1251,-1109793600,2),(1251,-1099429200,1),(1251,-1078257600,2),(1251,-1067806800,1),(1251,-1046635200,2),(1251,-1036270800,1),(1251,-1015099200,2),(1251,-1004734800,1),(1251,-983563200,2),(1251,-973198800,1),(1251,-952027200,2),(1251,-941576400,1),(1251,-931032000,2),(1251,-900882000,1),(1251,-890337600,2),(1251,-833749200,1),(1251,-827265600,2),(1251,-752274000,1),(1251,-733780800,2),(1251,-197326800,1),(1251,-190843200,2),(1251,-184194000,1),(1251,-164491200,2),(1251,-152658000,1),(1251,-132955200,2),(1251,-121122000,1),(1251,-101419200,2),(1251,-86821200,1),(1251,-71092800,2),(1251,-54766800,1),(1251,-39038400,2),(1251,-23317200,1),(1251,-7588800,4),(1251,128142003,3),(1251,136605603,4),(1251,596948414,3),(1251,605066414,4),(1251,624423614,3),(1251,636516015,1),(1251,655963215,2),(1251,667796416,1),(1251,687499216,2),(1251,699418816,1),(1251,719380817,3),(1251,731469617,4),(1251,938919622,2),(1251,952052422,4),(1251,1085281222,1),(1251,1096171222,4),(1251,1198983623,3),(1251,1205632823,4),(1252,-1567453392,1),(1252,-1233432000,2),(1252,-1222981200,1),(1252,-1205956800,2),(1252,-1194037200,1),(1252,-1172865600,2),(1252,-1162501200,1),(1252,-1141329600,2),(1252,-1130965200,1),(1252,-1109793600,2),(1252,-1099429200,1),(1252,-1078257600,2),(1252,-1067806800,1),(1252,-1046635200,2),(1252,-1036270800,1),(1252,-1015099200,2),(1252,-1004734800,1),(1252,-983563200,2),(1252,-973198800,1),(1252,-952027200,2),(1252,-941576400,1),(1252,-931032000,2),(1252,-900882000,1),(1252,-890337600,2),(1252,-833749200,1),(1252,-827265600,2),(1252,-752274000,1),(1252,-733780800,2),(1252,-197326800,1),(1252,-190843200,2),(1252,-184194000,1),(1252,-164491200,2),(1252,-152658000,1),(1252,-132955200,2),(1252,-121122000,1),(1252,-101419200,2),(1252,-86821200,1),(1252,-71092800,2),(1252,-54766800,1),(1252,-39038400,2),(1252,-23317200,1),(1252,-7588800,4),(1252,128142003,3),(1252,136605603,4),(1252,596948414,3),(1252,605066414,4),(1252,624423614,3),(1252,636516015,4),(1252,656478015,3),(1252,667965616,4),(1252,687927616,3),(1252,699415216,4),(1252,719377217,3),(1252,731469617,4),(1252,938919622,2),(1252,952052422,4),(1252,1086058822,1),(1252,1087704022,4),(1252,1198983623,3),(1252,1205632823,4),(1253,-1567453392,1),(1253,-1233432000,2),(1253,-1222981200,1),(1253,-1205956800,2),(1253,-1194037200,1),(1253,-1172865600,2),(1253,-1162501200,1),(1253,-1141329600,2),(1253,-1130965200,1),(1253,-1109793600,2),(1253,-1099429200,1),(1253,-1078257600,2),(1253,-1067806800,1),(1253,-1046635200,2),(1253,-1036270800,1),(1253,-1015099200,2),(1253,-1004734800,1),(1253,-983563200,2),(1253,-973198800,1),(1253,-952027200,2),(1253,-941576400,1),(1253,-931032000,2),(1253,-900882000,1),(1253,-890337600,2),(1253,-833749200,1),(1253,-827265600,2),(1253,-752274000,1),(1253,-733780800,2),(1253,-197326800,1),(1253,-190843200,2),(1253,-184194000,1),(1253,-164491200,2),(1253,-152658000,1),(1253,-132955200,2),(1253,-121122000,1),(1253,-101419200,2),(1253,-86821200,1),(1253,-71092800,2),(1253,-54766800,1),(1253,-39038400,2),(1253,-23317200,1),(1253,-7588800,4),(1253,128142003,3),(1253,136605603,4),(1253,596948414,3),(1253,605066414,4),(1253,624423614,3),(1253,636516015,4),(1253,656478015,3),(1253,667965616,1),(1253,687931216,3),(1253,699415216,4),(1253,719377217,3),(1253,731469617,4),(1253,938919622,2),(1253,952052422,4),(1253,1198983623,3),(1253,1205632823,4),(1254,-1567453392,1),(1254,-1233432000,2),(1254,-1222981200,1),(1254,-1205956800,2),(1254,-1194037200,1),(1254,-1172865600,2),(1254,-1162501200,1),(1254,-1141329600,2),(1254,-1130965200,1),(1254,-1109793600,2),(1254,-1099429200,1),(1254,-1078257600,2),(1254,-1067806800,1),(1254,-1046635200,2),(1254,-1036270800,1),(1254,-1015099200,2),(1254,-1004734800,1),(1254,-983563200,2),(1254,-973198800,1),(1254,-952027200,2),(1254,-941576400,1),(1254,-931032000,2),(1254,-900882000,1),(1254,-890337600,2),(1254,-833749200,1),(1254,-827265600,2),(1254,-752274000,1),(1254,-733780800,2),(1254,-197326800,1),(1254,-190843200,2),(1254,-184194000,1),(1254,-164491200,2),(1254,-152658000,1),(1254,-132955200,2),(1254,-121122000,1),(1254,-101419200,2),(1254,-86821200,1),(1254,-71092800,2),(1254,-54766800,1),(1254,-39038400,2),(1254,-23317200,1),(1254,-7588800,4),(1254,128142003,3),(1254,136605603,4),(1254,596948414,3),(1254,605066414,4),(1254,624423614,3),(1254,636516015,4),(1254,656478015,3),(1254,667792816,1),(1254,673588816,4),(1254,687927616,3),(1254,699415216,4),(1254,719377217,3),(1254,731469617,4),(1254,938919622,2),(1254,952052422,4),(1254,1085972422,1),(1254,1090728022,4),(1254,1198983623,3),(1254,1205632823,4),(1255,-1567453392,1),(1255,-1233432000,2),(1255,-1222981200,1),(1255,-1205956800,2),(1255,-1194037200,1),(1255,-1172865600,2),(1255,-1162501200,1),(1255,-1141329600,2),(1255,-1130965200,1),(1255,-1109793600,2),(1255,-1099429200,1),(1255,-1078257600,2),(1255,-1067806800,1),(1255,-1046635200,2),(1255,-1036270800,1),(1255,-1015099200,2),(1255,-1004734800,1),(1255,-983563200,2),(1255,-973198800,1),(1255,-952027200,2),(1255,-941576400,1),(1255,-931032000,2),(1255,-900882000,1),(1255,-890337600,2),(1255,-833749200,1),(1255,-827265600,2),(1255,-752274000,1),(1255,-733780800,2),(1255,-197326800,1),(1255,-190843200,2),(1255,-184194000,1),(1255,-164491200,2),(1255,-152658000,1),(1255,-132955200,2),(1255,-121122000,1),(1255,-101419200,2),(1255,-86821200,1),(1255,-71092800,2),(1255,-54766800,1),(1255,-39038400,2),(1255,-23317200,1),(1255,-7588800,4),(1255,128142003,3),(1255,136605603,4),(1255,596948414,3),(1255,605066414,4),(1255,624423614,3),(1255,637380015,1),(1255,655963215,2),(1255,667796416,1),(1255,675748816,4),(1255,938919622,2),(1255,952052422,4),(1255,1085972422,1),(1255,1090728022,4),(1255,1198983623,3),(1255,1200880823,2),(1255,1205031623,1),(1255,1223784023,2),(1255,1236481224,1),(1255,1255233624,4),(1256,-1567453392,1),(1256,-1233432000,2),(1256,-1222981200,1),(1256,-1205956800,2),(1256,-1194037200,1),(1256,-1172865600,2),(1256,-1162501200,1),(1256,-1141329600,2),(1256,-1130965200,1),(1256,-1109793600,2),(1256,-1099429200,1),(1256,-1078257600,2),(1256,-1067806800,1),(1256,-1046635200,2),(1256,-1036270800,1),(1256,-1015099200,2),(1256,-1004734800,1),(1256,-983563200,2),(1256,-973198800,1),(1256,-952027200,2),(1256,-941576400,1),(1256,-931032000,2),(1256,-900882000,1),(1256,-890337600,2),(1256,-833749200,1),(1256,-827265600,2),(1256,-752274000,1),(1256,-733780800,2),(1256,-197326800,1),(1256,-190843200,2),(1256,-184194000,1),(1256,-164491200,2),(1256,-152658000,1),(1256,-132955200,2),(1256,-121122000,1),(1256,-101419200,2),(1256,-86821200,1),(1256,-71092800,2),(1256,-54766800,1),(1256,-39038400,2),(1256,-23317200,1),(1256,-7588800,4),(1256,128142003,3),(1256,136605603,4),(1256,596948414,3),(1256,605066414,4),(1256,624423614,3),(1256,636516015,4),(1256,656478015,3),(1256,667965616,1),(1256,687931216,3),(1256,699415216,4),(1256,719377217,3),(1256,731469617,4),(1256,938919622,2),(1256,952052422,4),(1256,1086058822,1),(1256,1087099222,4),(1256,1198983623,3),(1256,1205632823,4),(1256,1224385223,3),(1256,1237082424,4),(1257,-1567453392,1),(1257,-1233432000,2),(1257,-1222981200,1),(1257,-1205956800,2),(1257,-1194037200,1),(1257,-1172865600,2),(1257,-1162501200,1),(1257,-1141329600,2),(1257,-1130965200,1),(1257,-1109793600,2),(1257,-1099429200,1),(1257,-1078257600,2),(1257,-1067806800,1),(1257,-1046635200,2),(1257,-1036270800,1),(1257,-1015099200,2),(1257,-1004734800,1),(1257,-983563200,2),(1257,-973198800,1),(1257,-952027200,2),(1257,-941576400,1),(1257,-931032000,2),(1257,-900882000,1),(1257,-890337600,2),(1257,-833749200,1),(1257,-827265600,2),(1257,-752274000,1),(1257,-733780800,2),(1257,-197326800,1),(1257,-190843200,2),(1257,-184194000,1),(1257,-164491200,2),(1257,-152658000,1),(1257,-132955200,2),(1257,-121122000,1),(1257,-101419200,2),(1257,-86821200,1),(1257,-71092800,2),(1257,-54766800,1),(1257,-39038400,2),(1257,-23317200,1),(1257,-7588800,4),(1257,128142003,3),(1257,136605603,4),(1257,596948414,3),(1257,605066414,4),(1257,624423614,3),(1257,636516015,4),(1257,656478015,3),(1257,667965616,4),(1257,687927616,3),(1257,699415216,4),(1257,719377217,3),(1257,731469617,4),(1257,938919622,2),(1257,952052422,4),(1257,1085886022,1),(1257,1087704022,4),(1257,1198983623,3),(1257,1205632823,4),(1258,-1826738653,1),(1258,-157750200,2),(1259,-1206389360,1),(1259,86760001,2),(1259,134017203,1),(1259,181368004,3),(1259,194497205,1),(1259,212990405,3),(1259,226033206,1),(1259,244526406,3),(1259,257569207,1),(1259,276062407,3),(1259,291783608,1),(1259,307598408,3),(1259,323406009,1),(1259,339220809,3),(1259,354942009,1),(1259,370756810,3),(1259,386478010,1),(1259,402292811,3),(1259,418014011,1),(1259,433828812,3),(1259,449636412,1),(1259,465451212,3),(1259,481172412,1),(1259,496987213,3),(1259,512708413,1),(1259,528523213,3),(1259,544244413,1),(1259,560059213,3),(1259,575866814,1),(1259,591681614,3),(1259,607402814,1),(1259,625032014,3),(1259,638938815,1),(1259,654753615,3),(1259,670474816,1),(1259,686721616,3),(1259,699418816,1),(1259,718257617,3),(1259,733546817,1),(1259,749448018,3),(1259,762318018,1),(1259,780984019,3),(1259,793767619,1),(1259,812520019,3),(1259,825649220,1),(1259,844574420,3),(1259,856666820,1),(1259,876024021,3),(1259,888721221,1),(1259,907473621,3),(1259,920775622,1),(1259,938923222,3),(1259,952225222,1),(1259,970372822,3),(1259,983674822,1),(1259,1002427222,3),(1259,1018148422,1),(1259,1030852822,3),(1259,1049598022,1),(1259,1062907222,3),(1259,1081047622,1),(1259,1097985622,3),(1259,1110682822,1),(1259,1129435222,3),(1259,1142132423,1),(1259,1160884823,3),(1259,1173582023,1),(1259,1192939223,3),(1259,1205031623,1),(1259,1224388823,3),(1259,1236481224,1),(1259,1255838424,3),(1259,1270954824,1),(1259,1286078424,3),(1259,1302404424,1),(1259,1317528024,3),(1259,1333854024,1),(1259,1349582425,3),(1259,1364094025,1),(1259,1381032025,3),(1259,1395543625,1),(1259,1412481625,3),(1259,1426993225,1),(1259,1443931226,3),(1259,1459047626,1),(1259,1475380826,3),(1259,1490497227,1),(1259,1506830427,3),(1259,1521946827,1),(1259,1538884827,3),(1259,1553396427,1),(1259,1570334427,3),(1259,1584846027,1),(1259,1601784027,3),(1259,1616900427,1),(1259,1633233627,3),(1259,1648350027,1),(1259,1664683227,3),(1259,1679799627,1),(1259,1696132827,3),(1259,1711249227,1),(1259,1728187227,3),(1259,1742698827,1),(1259,1759636827,3),(1259,1774148427,1),(1259,1791086427,3),(1259,1806202827,1),(1259,1822536027,3),(1259,1837652427,1),(1259,1853985627,3),(1259,1869102027,1),(1259,1886040027,3),(1259,1900551627,1),(1259,1917489627,3),(1259,1932001227,1),(1259,1948939227,3),(1259,1964055627,1),(1259,1980388827,3),(1259,1995505227,1),(1259,2011838427,3),(1259,2026954827,1),(1259,2043288027,3),(1259,2058404427,1),(1259,2075342427,3),(1259,2089854027,1),(1259,2106792027,3),(1259,2121303627,1),(1259,2138241627,3),(1260,-1632067200,0),(1260,-1615136400,1),(1260,-923248800,0),(1260,-880214400,2),(1260,-769395600,3),(1260,-765392400,4),(1261,-880196400,1),(1261,-769395600,2),(1261,-765374400,0),(1261,-86878800,3),(1261,-21466800,4),(1261,-5745600,3),(1261,9982800,4),(1261,25704000,3),(1261,41432400,4),(1261,57758400,3),(1261,73486800,4),(1261,89208001,3),(1261,104936402,4),(1261,120657602,3),(1261,126709203,4),(1261,152107203,3),(1261,162392404,4),(1261,183556804,3),(1261,199285205,4),(1261,215611205,3),(1261,230734806,4),(1261,247060806,3),(1261,262789207,4),(1261,278510407,3),(1261,294238808,4),(1261,309960008,3),(1261,325688409,4),(1261,341409609,3),(1261,357138009,4),(1261,372859210,3),(1261,388587610,4),(1261,404913611,3),(1261,420037211,4),(1261,436363212,5),(1261,439034412,7),(1261,452088012,6),(1261,467809212,7),(1261,483537612,6),(1261,499258813,7),(1261,514987213,6),(1261,530708413,7),(1261,544622413,6),(1261,562158013,7),(1261,576072014,6),(1261,594212414,7),(1261,607521614,6),(1261,625662014,7),(1261,638971215,6),(1261,657111615,7),(1261,671025616,6),(1261,688561216,7),(1261,702475216,6),(1261,720010817,7),(1261,733924817,6),(1261,752065218,7),(1261,765374418,6),(1261,783514819,7),(1261,796824019,6),(1261,814964419,7),(1261,828878420,6),(1261,846414020,7),(1261,860328020,6),(1261,877863621,7),(1261,891777621,6),(1261,909313221,7),(1261,923227222,6),(1261,941367622,7),(1261,954676822,6),(1261,972817222,7),(1261,986126422,6),(1261,1004266822,7),(1261,1018180822,6),(1261,1035716422,7),(1261,1049630422,6),(1261,1067166022,7),(1261,1081080022,6),(1261,1099220422,7),(1261,1112529622,6),(1261,1130670022,7),(1261,1143979223,6),(1261,1162119623,7),(1261,1173614423,6),(1261,1194174023,7),(1261,1205064023,6),(1261,1225623623,7),(1261,1236513624,6),(1261,1257073224,7),(1261,1268568024,6),(1261,1289127624,7),(1261,1300017624,6),(1261,1320577224,7),(1261,1331467224,6),(1261,1352026825,7),(1261,1362916825,6),(1261,1383476425,7),(1261,1394366425,6),(1261,1414926025,7),(1261,1425816025,6),(1261,1446375626,7),(1261,1457870426,6),(1261,1478430026,7),(1261,1489320027,6),(1261,1509879627,7),(1261,1520769627,6),(1261,1541329227,7),(1261,1552219227,6),(1261,1572778827,7),(1261,1583668827,6),(1261,1604228427,7),(1261,1615723227,6),(1261,1636282827,7),(1261,1647172827,6),(1261,1667732427,7),(1261,1678622427,6),(1261,1699182027,7),(1261,1710072027,6),(1261,1730631627,7),(1261,1741521627,6),(1261,1762081227,7),(1261,1772971227,6),(1261,1793530827,7),(1261,1805025627,6),(1261,1825585227,7),(1261,1836475227,6),(1261,1857034827,7),(1261,1867924827,6),(1261,1888484427,7),(1261,1899374427,6),(1261,1919934027,7),(1261,1930824027,6),(1261,1951383627,7),(1261,1962878427,6),(1261,1983438027,7),(1261,1994328027,6),(1261,2014887627,7),(1261,2025777627,6),(1261,2046337227,7),(1261,2057227227,6),(1261,2077786827,7),(1261,2088676827,6),(1261,2109236427,7),(1261,2120126427,6),(1261,2140686027,7),(1262,-1767216356,2),(1262,-1206957600,1),(1262,-1191362400,2),(1262,-1175374800,1),(1262,-1159826400,2),(1262,-633819600,1),(1262,-622069200,2),(1262,-602283600,1),(1262,-591832800,2),(1262,-570747600,1),(1262,-560210400,2),(1262,-539125200,1),(1262,-531352800,2),(1262,-191365200,1),(1262,-184197600,2),(1262,-155163600,1),(1262,-150069600,2),(1262,-128898000,1),(1262,-121125600,2),(1262,-99954000,1),(1262,-89589600,2),(1262,-68418000,1),(1262,-57967200,2),(1262,499748413,1),(1262,511236013,2),(1262,530593213,1),(1262,540266413,2),(1262,562129213,1),(1262,571197614,2),(1262,592974014,1),(1262,602042414,2),(1262,624423614,1),(1262,634701615,2),(1262,656478015,1),(1262,666756016,2),(1262,687927616,1),(1262,697600816,2),(1262,719982017,1),(1262,728445617,2),(1262,750826818,1),(1262,761709618,2),(1262,782276419,1),(1262,793159219,2),(1262,813726019,1),(1262,824004020,2),(1262,844570820,1),(1262,856058420,2),(1262,876106821,1),(1262,888717621,2),(1262,908074821,1),(1262,919562422,2),(1262,938919622,1),(1262,951616822,2),(1262,970974022,1),(1262,982461622,2),(1262,1003028422,1),(1262,1013911222,2),(1262,1036292422,1),(1262,1045360822,2),(1262,1318734024,1),(1262,1330221624,2),(1263,-1514739600,1),(1263,-1343066400,2),(1263,-1234807200,1),(1263,-1220292000,2),(1263,-1207159200,1),(1263,-1191344400,2),(1263,-873828000,1),(1263,-661539600,3),(1263,28800,1),(1263,828867620,4),(1263,846403220,1),(1263,860317220,4),(1263,877852821,1),(1263,891766821,4),(1263,909302421,1),(1263,923216422,4),(1263,941356822,1),(1263,954666022,4),(1263,972806422,1),(1263,989139622,4),(1263,1001836822,1),(1263,1018170022,4),(1263,1035705622,1),(1263,1049619622,4),(1263,1067155222,1),(1263,1081069222,4),(1263,1099209622,1),(1263,1112518822,4),(1263,1130659222,1),(1263,1143968423,4),(1263,1162108823,1),(1263,1175418023,4),(1263,1193558423,1),(1263,1207472423,4),(1263,1225008023,1),(1263,1238922024,4),(1263,1256457624,1),(1263,1270371624,5),(1263,1288508424,2),(1263,1301817624,5),(1263,1319958024,2),(1263,1333267224,5),(1263,1351407625,2),(1263,1365321625,5),(1263,1382857225,2),(1263,1396771225,5),(1263,1414306825,2),(1263,1428220825,5),(1263,1445756426,2),(1263,1459670426,5),(1263,1477810826,2),(1263,1491120027,5),(1263,1509260427,2),(1263,1522569627,5),(1263,1540710027,2),(1263,1554624027,5),(1263,1572159627,2),(1263,1586073627,5),(1263,1603609227,2),(1263,1617523227,5),(1263,1635663627,2),(1263,1648972827,5),(1263,1667113227,2),(1263,1680422427,5),(1263,1698562827,2),(1263,1712476827,5),(1263,1730012427,2),(1263,1743926427,5),(1263,1761462027,2),(1263,1775376027,5),(1263,1792911627,2),(1263,1806825627,5),(1263,1824966027,2),(1263,1838275227,5),(1263,1856415627,2),(1263,1869724827,5),(1263,1887865227,2),(1263,1901779227,5),(1263,1919314827,2),(1263,1933228827,5),(1263,1950764427,2),(1263,1964678427,5),(1263,1982818827,2),(1263,1996128027,5),(1263,2014268427,2),(1263,2027577627,5),(1263,2045718027,2),(1263,2059027227,5),(1263,2077167627,2),(1263,2091081627,5),(1263,2108617227,2),(1263,2122531227,5),(1263,2140066827,2),(1264,-1451678491,1),(1264,-1199217691,3),(1264,234943206,2),(1264,244616406,3),(1264,261554407,2),(1264,276066007,3),(1264,293004008,2),(1264,307515608,3),(1264,325058409,2),(1264,338706009,3),(1265,-1767213964,2),(1265,-1206957600,1),(1265,-1191362400,2),(1265,-1175374800,1),(1265,-1159826400,2),(1265,-633819600,1),(1265,-622069200,2),(1265,-602283600,1),(1265,-591832800,2),(1265,-570747600,1),(1265,-560210400,2),(1265,-539125200,1),(1265,-531352800,2),(1265,-191365200,1),(1265,-184197600,2),(1265,-155163600,1),(1265,-150069600,2),(1265,-128898000,1),(1265,-121125600,2),(1265,-99954000,1),(1265,-89589600,2),(1265,-68418000,1),(1265,-57967200,2),(1265,499748413,1),(1265,511236013,2),(1265,530593213,1),(1265,540266413,2),(1265,562129213,1),(1265,571197614,2),(1266,-1822500432,2),(1266,-1616954400,1),(1266,-1606069800,2),(1266,-1585504800,1),(1266,-1574015400,2),(1266,-1554055200,1),(1266,-1542565800,2),(1266,-1522605600,1),(1266,-1511116200,2),(1266,-1490551200,1),(1266,-1479666600,2),(1266,-1459101600,1),(1266,-1448217000,2),(1266,-1427652000,1),(1266,-1416162600,2),(1266,-1396202400,1),(1266,-1384713000,2),(1266,-1364752800,1),(1266,-1353263400,2),(1266,-1333303200,1),(1266,-1321813800,2),(1266,-1301248800,1),(1266,-1290364200,2),(1266,-1269799200,1),(1266,-1258914600,2),(1266,-1238349600,1),(1266,-1226860200,2),(1266,-1206900000,1),(1266,-1195410600,2),(1266,-1175450400,1),(1266,-1163961000,2),(1266,-1143396000,1),(1266,-1132511400,2),(1266,-1111946400,1),(1266,-1101061800,2),(1266,-1080496800,1),(1266,-1069612200,2),(1266,-1049047200,1),(1266,-1037557800,2),(1266,-1017597600,1),(1266,-1006108200,2),(1266,-986148000,1),(1266,-974658600,2),(1266,-954093600,1),(1266,-943209000,2),(1266,-922644000,1),(1266,-911759400,2),(1266,-891194400,1),(1266,-879705000,2),(1266,-859744800,1),(1266,-848255400,2),(1266,123919202,3),(1266,129618003,2),(1266,409039211,3),(1266,413874011,2),(1267,-1632074400,0),(1267,-1615143600,1),(1267,-880221600,2),(1267,-769395600,3),(1267,-765399600,1),(1268,-1767211040,2),(1268,-1206954000,1),(1268,-1191358800,2),(1268,-1175371200,1),(1268,-1159822800,2),(1268,-633816000,1),(1268,-622065600,2),(1268,-602280000,1),(1268,-591829200,2),(1268,-570744000,1),(1268,-560206800,2),(1268,-539121600,1),(1268,-531349200,2),(1268,-191361600,1),(1268,-184194000,2),(1268,-155160000,1),(1268,-150066000,2),(1268,-128894400,1),(1268,-121122000,2),(1268,-99950400,1),(1268,-89586000,2),(1268,-68414400,1),(1268,-57963600,2),(1268,499752013,1),(1268,511239613,2),(1268,530596813,1),(1268,540270013,2),(1268,562132813,1),(1268,571201214,2),(1268,938923222,1),(1268,951620422,2),(1268,970977622,1),(1268,971578822,2),(1269,-1739041424,2),(1269,704869216,1),(1269,733896017,2),(1270,-1633269600,0),(1270,-1615129200,1),(1270,-1601820000,0),(1270,-1583679600,1),(1270,-1471788000,4),(1270,-880210800,2),(1270,-769395600,3),(1270,-765388800,4),(1270,-84380400,5),(1270,-68659200,4),(1270,-52930800,5),(1270,-37209600,4),(1270,-21481200,5),(1270,-5760000,4),(1270,9968400,5),(1270,25689600,4),(1270,41418000,5),(1270,57744000,4),(1270,73472400,5),(1270,89193601,4),(1270,104922002,5),(1270,120643202,4),(1270,129114003,5),(1270,152092803,4),(1270,162378004,5),(1270,183542404,4),(1270,199270805,5),(1270,215596805,4),(1270,230720406,5),(1270,247046406,4),(1270,262774807,5),(1270,278496007,4),(1270,294224408,5),(1270,309945608,4),(1270,325674009,5),(1270,341395209,4),(1270,357123609,5),(1270,372844810,4),(1270,388573210,5),(1270,404899211,4),(1270,420022811,5),(1270,436348812,4),(1270,452077212,5),(1270,467798412,4),(1270,483526812,5),(1270,499248013,4),(1270,514976413,5),(1270,530697613,4),(1270,544611613,5),(1270,562147213,4),(1270,576061214,5),(1270,594201614,4),(1270,607510814,5),(1270,625651214,4),(1270,638960415,5),(1270,657100815,4),(1270,671014816,5),(1270,688550416,4),(1270,702464416,5),(1270,720000017,4),(1270,733914017,5),(1270,752054418,4),(1270,765363618,5),(1270,783504019,4),(1270,796813219,5),(1270,814953619,4),(1270,828867620,5),(1270,846403220,4),(1270,860317220,5),(1270,877852821,4),(1270,891766821,5),(1270,909302421,4),(1270,923216422,5),(1270,941356822,4),(1270,954666022,5),(1270,972806422,4),(1270,986115622,5),(1270,1004256022,4),(1270,1018170022,5),(1270,1035705622,4),(1270,1049619622,5),(1270,1067155222,4),(1270,1081069222,5),(1270,1099209622,4),(1270,1112518822,5),(1270,1130659222,4),(1270,1143968423,5),(1270,1162108823,4),(1270,1173603623,5),(1270,1194163223,4),(1270,1205053223,5),(1270,1225612823,4),(1270,1236502824,5),(1270,1257062424,4),(1270,1268557224,5),(1270,1289116824,4),(1270,1300006824,5),(1270,1320566424,4),(1270,1331456424,5),(1270,1352016025,4),(1270,1362906025,5),(1270,1383465625,4),(1270,1394355625,5),(1270,1414915225,4),(1270,1425805225,5),(1270,1446364826,4),(1270,1457859626,5),(1270,1478419226,4),(1270,1489309227,5),(1270,1509868827,4),(1270,1520758827,5),(1270,1541318427,4),(1270,1552208427,5),(1270,1572768027,4),(1270,1583658027,5),(1270,1604217627,4),(1270,1615712427,5),(1270,1636272027,4),(1270,1647162027,5),(1270,1667721627,4),(1270,1678611627,5),(1270,1699171227,4),(1270,1710061227,5),(1270,1730620827,4),(1270,1741510827,5),(1270,1762070427,4),(1270,1772960427,5),(1270,1793520027,4),(1270,1805014827,5),(1270,1825574427,4),(1270,1836464427,5),(1270,1857024027,4),(1270,1867914027,5),(1270,1888473627,4),(1270,1899363627,5),(1270,1919923227,4),(1270,1930813227,5),(1270,1951372827,4),(1270,1962867627,5),(1270,1983427227,4),(1270,1994317227,5),(1270,2014876827,4),(1270,2025766827,5),(1270,2046326427,4),(1270,2057216427,5),(1270,2077776027,4),(1270,2088666027,5),(1270,2109225627,4),(1270,2120115627,5),(1270,2140675227,4),(1271,-1567453392,1),(1271,-1233432000,2),(1271,-1222981200,1),(1271,-1205956800,2),(1271,-1194037200,1),(1271,-1172865600,2),(1271,-1162501200,1),(1271,-1141329600,2),(1271,-1130965200,1),(1271,-1109793600,2),(1271,-1099429200,1),(1271,-1078257600,2),(1271,-1067806800,1),(1271,-1046635200,2),(1271,-1036270800,1),(1271,-1015099200,2),(1271,-1004734800,1),(1271,-983563200,2),(1271,-973198800,1),(1271,-952027200,2),(1271,-941576400,1),(1271,-931032000,2),(1271,-900882000,1),(1271,-890337600,2),(1271,-833749200,1),(1271,-827265600,2),(1271,-752274000,1),(1271,-733780800,2),(1271,-197326800,1),(1271,-190843200,2),(1271,-184194000,1),(1271,-164491200,2),(1271,-152658000,1),(1271,-132955200,2),(1271,-121122000,1),(1271,-101419200,2),(1271,-86821200,1),(1271,-71092800,2),(1271,-54766800,1),(1271,-39038400,2),(1271,-23317200,1),(1271,-7588800,4),(1271,128142003,3),(1271,136605603,4),(1271,596948414,3),(1271,605066414,4),(1271,624423614,3),(1271,636516015,4),(1271,656478015,3),(1271,667965616,4),(1271,687927616,3),(1271,699415216,4),(1271,719377217,3),(1271,731469617,4),(1271,938919622,2),(1271,952052422,4),(1271,1198983623,3),(1271,1205632823,4),(1271,1224385223,3),(1271,1237082424,4),(1272,-1577923200,3),(1272,-880210800,1),(1272,-769395600,2),(1272,-765388800,3),(1272,-147891600,4),(1272,-131562000,3),(1272,325674009,5),(1272,341395209,3),(1272,357123609,5),(1272,372844810,3),(1272,388573210,5),(1272,404899211,3),(1272,420022811,5),(1272,436348812,3),(1272,452077212,5),(1272,467798412,3),(1272,483526812,5),(1272,499248013,3),(1272,514976413,5),(1272,530697613,3),(1272,544611613,5),(1272,562147213,3),(1272,576061214,5),(1272,594201614,3),(1272,607510814,5),(1272,625651214,3),(1272,638960415,5),(1272,657100815,3),(1272,671014816,5),(1272,688550416,3),(1272,702464416,5),(1272,720000017,3),(1272,733914017,5),(1272,752054418,3),(1272,765363618,5),(1272,783504019,3),(1272,796813219,5),(1272,814953619,3),(1272,828867620,5),(1272,846403220,3),(1272,860317220,5),(1272,877852821,3),(1272,891766821,5),(1272,909302421,3),(1272,923216422,5),(1272,941356822,7),(1272,954662422,6),(1272,972802822,8),(1272,973400422,7),(1272,986115622,5),(1272,1004256022,3),(1272,1018170022,5),(1272,1035705622,3),(1272,1049619622,5),(1272,1067155222,3),(1272,1081069222,5),(1272,1099209622,3),(1272,1112518822,5),(1272,1130659222,3),(1272,1143968423,5),(1272,1162108823,3),(1272,1173603623,5),(1272,1194163223,3),(1272,1205053223,5),(1272,1225612823,3),(1272,1236502824,5),(1272,1257062424,3),(1272,1268557224,5),(1272,1289116824,3),(1272,1300006824,5),(1272,1320566424,3),(1272,1331456424,5),(1272,1352016025,3),(1272,1362906025,5),(1272,1383465625,3),(1272,1394355625,5),(1272,1414915225,3),(1272,1425805225,5),(1272,1446364826,3),(1272,1457859626,5),(1272,1478419226,3),(1272,1489309227,5),(1272,1509868827,3),(1272,1520758827,5),(1272,1541318427,3),(1272,1552208427,5),(1272,1572768027,3),(1272,1583658027,5),(1272,1604217627,3),(1272,1615712427,5),(1272,1636272027,3),(1272,1647162027,5),(1272,1667721627,3),(1272,1678611627,5),(1272,1699171227,3),(1272,1710061227,5),(1272,1730620827,3),(1272,1741510827,5),(1272,1762070427,3),(1272,1772960427,5),(1272,1793520027,3),(1272,1805014827,5),(1272,1825574427,3),(1272,1836464427,5),(1272,1857024027,3),(1272,1867914027,5),(1272,1888473627,3),(1272,1899363627,5),(1272,1919923227,3),(1272,1930813227,5),(1272,1951372827,3),(1272,1962867627,5),(1272,1983427227,3),(1272,1994317227,5),(1272,2014876827,3),(1272,2025766827,5),(1272,2046326427,3),(1272,2057216427,5),(1272,2077776027,3),(1272,2088666027,5),(1272,2109225627,3),(1272,2120115627,5),(1272,2140675227,3),(1273,-1767212492,2),(1273,-1206954000,1),(1273,-1191358800,2),(1273,-1175371200,1),(1273,-1159822800,2),(1273,-633816000,1),(1273,-622065600,2),(1273,-602280000,1),(1273,-591829200,2),(1273,-570744000,1),(1273,-560206800,2),(1273,-539121600,1),(1273,-531349200,2),(1273,-191361600,1),(1273,-184194000,2),(1273,-155160000,1),(1273,-150066000,2),(1273,-128894400,1),(1273,-121122000,2),(1273,-99950400,1),(1273,-89586000,2),(1273,-68414400,1),(1273,-57963600,2),(1273,499752013,1),(1273,511239613,2),(1273,530596813,1),(1273,540270013,2),(1273,562132813,1),(1273,571201214,2),(1273,592977614,1),(1273,602046014,2),(1273,624427214,1),(1273,634705215,2),(1273,656481615,1),(1273,666759616,2),(1273,687931216,1),(1273,697604416,2),(1273,719985617,1),(1273,728449217,2),(1273,750830418,1),(1273,761713218,2),(1273,782280019,1),(1273,793162819,2),(1273,813729619,1),(1273,824007620,2),(1273,844574420,1),(1273,856062020,2),(1273,876110421,1),(1273,888721221,2),(1273,908078421,1),(1273,919566022,2),(1273,938923222,1),(1273,951620422,2),(1273,970977622,1),(1273,982465222,2),(1273,1003032022,1),(1273,1013914822,2),(1273,1036296022,1),(1273,1045364422,2),(1273,1066536022,1),(1273,1076814022,2),(1273,1099368022,1),(1273,1108868422,2),(1273,1129435222,1),(1273,1140318023,2),(1273,1162699223,1),(1273,1172372423,2),(1273,1192334423,1),(1273,1203217223,2),(1273,1224388823,1),(1273,1234666824,2),(1273,1255838424,1),(1273,1266721224,2),(1273,1287288024,1),(1273,1298170824,2),(1273,1318737624,1),(1273,1330225224,2),(1273,1350792025,1),(1273,1361070025,2),(1273,1382241625,1),(1273,1392519625,2),(1273,1413691225,1),(1273,1424574025,2),(1273,1445140826,1),(1273,1456023626,2),(1273,1476590426,1),(1273,1487473227,2),(1273,1508040027,1),(1273,1518922827,2),(1273,1541304027,1),(1273,1550372427,2),(1273,1572753627,1),(1273,1581822027,2),(1273,1604203227,1),(1273,1613876427,2),(1273,1636257627,1),(1273,1645326027,2),(1273,1667707227,1),(1273,1677380427,2),(1273,1699156827,1),(1273,1708225227,2),(1273,1730606427,1),(1273,1739674827,2),(1273,1762056027,1),(1273,1771729227,2),(1273,1793505627,1),(1273,1803178827,2),(1273,1825560027,1),(1273,1834628427,2),(1273,1857009627,1),(1273,1866078027,2),(1273,1888459227,1),(1273,1897527627,2),(1273,1919908827,1),(1273,1928977227,2),(1273,1951358427,1),(1273,1960426827,2),(1273,1983412827,1),(1273,1992481227,2),(1273,2014862427,1),(1273,2024535627,2),(1273,2046312027,1),(1273,2055380427,2),(1273,2077761627,1),(1273,2086830027,2),(1273,2109211227,1),(1273,2118884427,2),(1273,2140660827,1),(1274,-1514743200,1),(1274,377935210,3),(1274,828860420,2),(1274,846396020,3),(1274,860310020,2),(1274,877845621,3),(1274,891759621,2),(1274,902037621,4),(1274,909298821,1),(1274,923212822,4),(1274,941353222,1),(1274,954662422,4),(1274,972802822,1),(1274,989136022,4),(1274,1001833222,1),(1274,1018166422,4),(1274,1035702022,1),(1274,1049616022,4),(1274,1067151622,1),(1274,1081065622,4),(1274,1099206022,1),(1274,1112515222,4),(1274,1130655622,1),(1274,1143964823,4),(1274,1162105223,1),(1274,1175414423,4),(1274,1193554823,1),(1274,1207468823,4),(1274,1225004423,1),(1274,1238918424,4),(1274,1256454024,1),(1274,1270368024,4),(1274,1288508424,1),(1274,1301817624,4),(1274,1319958024,1),(1274,1333267224,4),(1274,1351407625,1),(1274,1365321625,4),(1274,1382857225,1),(1274,1396771225,4),(1274,1414306825,1),(1274,1422777625,3),(1275,-1826739140,1),(1275,-157750200,2),(1275,1197183623,1),(1275,1462086026,2),(1276,-1567453392,1),(1276,-1233432000,2),(1276,-1222981200,1),(1276,-1205956800,2),(1276,-1194037200,1),(1276,-1172865600,2),(1276,-1162501200,1),(1276,-1141329600,2),(1276,-1130965200,1),(1276,-1109793600,2),(1276,-1099429200,1),(1276,-1078257600,2),(1276,-1067806800,1),(1276,-1046635200,2),(1276,-1036270800,1),(1276,-1015099200,2),(1276,-1004734800,1),(1276,-983563200,2),(1276,-973198800,1),(1276,-952027200,2),(1276,-941576400,1),(1276,-931032000,2),(1276,-900882000,1),(1276,-890337600,2),(1276,-833749200,1),(1276,-827265600,2),(1276,-752274000,1),(1276,-733780800,2),(1276,-197326800,1),(1276,-190843200,2),(1276,-184194000,1),(1276,-164491200,2),(1276,-152658000,1),(1276,-132955200,2),(1276,-121122000,1),(1276,-101419200,2),(1276,-86821200,1),(1276,-71092800,2),(1276,-54766800,1),(1276,-39038400,2),(1276,-23317200,1),(1276,-7588800,4),(1276,128142003,3),(1276,136605603,4),(1276,596948414,3),(1276,605066414,4),(1276,624423614,3),(1276,636516015,4),(1276,656478015,3),(1276,667965616,1),(1276,687931216,3),(1276,699415216,4),(1276,719377217,3),(1276,731469617,4),(1276,938919622,2),(1276,952052422,4),(1276,1086058822,1),(1276,1087704022,4),(1276,1198983623,3),(1276,1205632823,4),(1277,-1846269040,1),(1277,-71092800,2),(1278,-1946918424,1),(1279,-1633276800,0),(1279,-1615136400,1),(1279,-1601827200,0),(1279,-1583686800,1),(1279,-1563724800,0),(1279,-1551632400,1),(1279,-1538928000,0),(1279,-1520182800,1),(1279,-1504454400,0),(1279,-1491757200,1),(1279,-1473004800,0),(1279,-1459702800,1),(1279,-1441555200,0),(1279,-1428253200,1),(1279,-1410105600,0),(1279,-1396803600,1),(1279,-1378656000,0),(1279,-1365354000,1),(1279,-1347206400,0),(1279,-1333904400,1),(1279,-1315152000,0),(1279,-1301850000,1),(1279,-1283702400,0),(1279,-1270400400,1),(1279,-1252252800,0),(1279,-1238950800,1),(1279,-1220803200,0),(1279,-1207501200,1),(1279,-1189353600,0),(1279,-1176051600,1),(1279,-1157299200,0),(1279,-1144602000,1),(1279,-1125849600,0),(1279,-1112547600,1),(1279,-1094400000,0),(1279,-1081098000,1),(1279,-1067788800,2),(1279,-1045414800,1),(1279,-1031500800,0),(1279,-1018198800,1),(1279,-1000051200,0),(1279,-986749200,1),(1279,-967996800,0),(1279,-955299600,1),(1279,-936547200,0),(1279,-923245200,1),(1279,-905097600,0),(1279,-891795600,1),(1279,-880214400,3),(1279,-769395600,4),(1279,-765392400,1),(1279,-747244800,0),(1279,-733942800,1),(1279,-715795200,0),(1279,-702493200,1),(1279,-684345600,0),(1279,-671043600,1),(1279,-652896000,0),(1279,-639594000,1),(1279,-620841600,0),(1279,-608144400,1),(1279,-589392000,0),(1279,-576090000,1),(1279,-557942400,0),(1279,-544640400,1),(1279,-526492800,0),(1279,-513190800,1),(1279,-495043200,0),(1279,-481741200,1),(1279,-463593600,0),(1279,-447267600,1),(1279,-431539200,0),(1279,-415818000,1),(1279,-400089600,0),(1279,-384368400,1),(1279,-368640000,0),(1279,-352918800,1),(1279,-337190400,0),(1279,-321469200,1),(1279,-305740800,0),(1279,-289414800,1),(1279,-273686400,0),(1279,-257965200,1),(1279,-242236800,0),(1279,-226515600,1),(1279,-210787200,0),(1279,-195066000,1),(1279,-179337600,0),(1279,-163616400,1),(1279,-147888000,0),(1279,-131562000,1),(1279,-116438400,0),(1279,-100112400,1),(1279,-84384000,0),(1279,-68662800,1),(1279,-52934400,0),(1279,-37213200,1),(1279,-21484800,0),(1279,-5763600,1),(1279,9964800,0),(1279,25686000,1),(1279,41414400,0),(1279,57740400,1),(1279,73468800,0),(1279,89190001,1),(1279,104918402,0),(1279,120639602,1),(1279,126691203,0),(1279,152089203,1),(1279,162374404,0),(1279,183538804,1),(1279,199267205,0),(1279,215593205,1),(1279,230716806,0),(1279,247042806,1),(1279,262771207,0),(1279,278492407,1),(1279,294220808,0),(1279,309942008,1),(1279,325670409,0),(1279,341391609,1),(1279,357120009,0),(1279,372841210,1),(1279,388569610,0),(1279,404895611,1),(1279,420019211,0),(1279,436345212,1),(1279,452073612,0),(1279,467794812,1),(1279,483523212,0),(1279,499244413,1),(1279,514972813,0),(1279,530694013,1),(1279,544608013,0),(1279,562143613,1),(1279,576057614,0),(1279,594198014,1),(1279,607507214,0),(1279,625647614,1),(1279,638956815,0),(1279,657097215,1),(1279,671011216,0),(1279,688546816,1),(1279,702460816,0),(1279,719996417,1),(1279,733910417,0),(1279,752050818,1),(1279,765360018,0),(1279,783500419,1),(1279,796809619,0),(1279,814950019,1),(1279,828864020,0),(1279,846399620,1),(1279,860313620,0),(1279,877849221,1),(1279,891763221,0),(1279,909298821,1),(1279,923212822,0),(1279,941353222,1),(1279,954662422,0),(1279,972802822,1),(1279,986112022,0),(1279,1004252422,1),(1279,1018166422,0),(1279,1035702022,1),(1279,1049616022,0),(1279,1067151622,1),(1279,1081065622,0),(1279,1099206022,1),(1279,1112515222,0),(1279,1130655622,1),(1279,1143964823,0),(1279,1162105223,1),(1279,1173600023,0),(1279,1194159623,1),(1279,1205049623,0),(1279,1225609223,1),(1279,1236499224,0),(1279,1257058824,1),(1279,1268553624,0),(1279,1289113224,1),(1279,1300003224,0),(1279,1320562824,1),(1279,1331452824,0),(1279,1352012425,1),(1279,1362902425,0),(1279,1383462025,1),(1279,1394352025,0),(1279,1414911625,1),(1279,1425801625,0),(1279,1446361226,1),(1279,1457856026,0),(1279,1478415626,1),(1279,1489305627,0),(1279,1509865227,1),(1279,1520755227,0),(1279,1541314827,1),(1279,1552204827,0),(1279,1572764427,1),(1279,1583654427,0),(1279,1604214027,1),(1279,1615708827,0),(1279,1636268427,1),(1279,1647158427,0),(1279,1667718027,1),(1279,1678608027,0),(1279,1699167627,1),(1279,1710057627,0),(1279,1730617227,1),(1279,1741507227,0),(1279,1762066827,1),(1279,1772956827,0),(1279,1793516427,1),(1279,1805011227,0),(1279,1825570827,1),(1279,1836460827,0),(1279,1857020427,1),(1279,1867910427,0),(1279,1888470027,1),(1279,1899360027,0),(1279,1919919627,1),(1279,1930809627,0),(1279,1951369227,1),(1279,1962864027,0),(1279,1983423627,1),(1279,1994313627,0),(1279,2014873227,1),(1279,2025763227,0),(1279,2046322827,1),(1279,2057212827,0),(1279,2077772427,1),(1279,2088662427,0),(1279,2109222027,1),(1279,2120112027,0),(1279,2140671627,1),(1280,-1514739600,1),(1280,-1343066400,2),(1280,-1234807200,1),(1280,-1220292000,2),(1280,-1207159200,1),(1280,-1191344400,2),(1280,828864020,3),(1280,846399620,2),(1280,860313620,3),(1280,877849221,2),(1280,891766821,4),(1280,909302421,1),(1280,923216422,4),(1280,941356822,1),(1280,954666022,4),(1280,972806422,1),(1280,989139622,4),(1280,1001836822,1),(1280,1018170022,4),(1280,1035705622,1),(1280,1049619622,4),(1280,1067155222,1),(1280,1081069222,4),(1280,1099209622,1),(1280,1112518822,4),(1280,1130659222,1),(1280,1143968423,4),(1280,1162108823,1),(1280,1175418023,4),(1280,1193558423,1),(1280,1207472423,4),(1280,1225008023,1),(1280,1238922024,4),(1280,1256457624,1),(1280,1270371624,4),(1280,1288512024,1),(1280,1301821224,4),(1280,1319961624,1),(1280,1333270824,4),(1280,1351411225,1),(1280,1365325225,4),(1280,1382860825,1),(1280,1396774825,4),(1280,1414310425,1),(1280,1428224425,4),(1280,1445760026,1),(1280,1459674026,4),(1280,1477814426,1),(1280,1491123627,4),(1280,1509264027,1),(1280,1522573227,4),(1280,1540713627,1),(1280,1554627627,4),(1280,1572163227,1),(1280,1586077227,4),(1280,1603612827,1),(1280,1617526827,4),(1280,1635667227,1),(1280,1648976427,4),(1280,1667116827,1),(1280,1680426027,4),(1280,1698566427,1),(1280,1712480427,4),(1280,1730016027,1),(1280,1743930027,4),(1280,1761465627,1),(1280,1775379627,4),(1280,1792915227,1),(1280,1806829227,4),(1280,1824969627,1),(1280,1838278827,4),(1280,1856419227,1),(1280,1869728427,4),(1280,1887868827,1),(1280,1901782827,4),(1280,1919318427,1),(1280,1933232427,4),(1280,1950768027,1),(1280,1964682027,4),(1280,1982822427,1),(1280,1996131627,4),(1280,2014272027,1),(1280,2027581227,4),(1280,2045721627,1),(1280,2059030827,4),(1280,2077171227,1),(1280,2091085227,4),(1280,2108620827,1),(1280,2122534827,4),(1280,2140070427,1),(1281,-1632067200,0),(1281,-1615136400,1),(1281,-923248800,0),(1281,-880214400,2),(1281,-769395600,3),(1281,-765392400,4),(1282,-1567453392,1),(1282,-1233432000,2),(1282,-1222981200,1),(1282,-1205956800,2),(1282,-1194037200,1),(1282,-1172865600,2),(1282,-1162501200,1),(1282,-1141329600,2),(1282,-1130965200,1),(1282,-1109793600,2),(1282,-1099429200,1),(1282,-1078257600,2),(1282,-1067806800,1),(1282,-1046635200,2),(1282,-1036270800,1),(1282,-1015099200,2),(1282,-1004734800,1),(1282,-983563200,2),(1282,-973198800,1),(1282,-952027200,2),(1282,-941576400,1),(1282,-931032000,2),(1282,-900882000,1),(1282,-890337600,2),(1282,-833749200,1),(1282,-827265600,2),(1282,-752274000,1),(1282,-733780800,2),(1282,-197326800,1),(1282,-190843200,2),(1282,-184194000,1),(1282,-164491200,2),(1282,-152658000,1),(1282,-132955200,2),(1282,-121122000,1),(1282,-101419200,2),(1282,-86821200,1),(1282,-71092800,2),(1282,-54766800,1),(1282,-39038400,2),(1282,-23317200,1),(1282,-7588800,4),(1282,128142003,3),(1282,136605603,4),(1282,596948414,3),(1282,605066414,4),(1282,624423614,3),(1282,636516015,4),(1282,656478015,3),(1282,667965616,1),(1282,687931216,3),(1282,699415216,4),(1282,719377217,3),(1282,731469617,4),(1282,938919622,2),(1282,952052422,4),(1282,1198983623,3),(1282,1205632823,4),(1282,1224385223,3),(1282,1237082424,4),(1283,-1545071027,2),(1283,288770408,1),(1283,297234008,2),(1283,320220009,1),(1283,328683609,2),(1283,664264816,1),(1283,678344416,2),(1283,695714416,1),(1283,700635616,2),(1284,-1680454800,1),(1284,-1627833600,0),(1285,-1767212140,2),(1285,-1206954000,1),(1285,-1191358800,2),(1285,-1175371200,1),(1285,-1159822800,2),(1285,-633816000,1),(1285,-622065600,2),(1285,-602280000,1),(1285,-591829200,2),(1285,-570744000,1),(1285,-560206800,2),(1285,-539121600,1),(1285,-531349200,2),(1285,-191361600,1),(1285,-184194000,2),(1285,-155160000,1),(1285,-150066000,2),(1285,-128894400,1),(1285,-121122000,2),(1285,-99950400,1),(1285,-89586000,2),(1285,-68414400,1),(1285,-57963600,2),(1285,499752013,1),(1285,511239613,2),(1285,530596813,1),(1285,540270013,2),(1285,562132813,1),(1285,571201214,2),(1285,592977614,1),(1285,602046014,2),(1285,624427214,1),(1285,634705215,2),(1285,656481615,1),(1285,666759616,2),(1285,687931216,1),(1285,697604416,2),(1285,719985617,1),(1285,728449217,2),(1285,750830418,1),(1285,761713218,2),(1285,782280019,1),(1285,793162819,2),(1285,813729619,1),(1285,824007620,2),(1285,844574420,1),(1285,856062020,2),(1285,876110421,1),(1285,888721221,2),(1285,908078421,1),(1285,919566022,2),(1285,938923222,1),(1285,951620422,2),(1285,970977622,1),(1285,982465222,2),(1285,1003032022,1),(1285,1013914822,2),(1285,1036296022,1),(1285,1045364422,2),(1285,1099368022,1),(1285,1108868422,2),(1285,1129435222,1),(1285,1140318023,2),(1285,1162699223,1),(1285,1172372423,2),(1285,1192334423,1),(1285,1203217223,2),(1285,1224388823,1),(1285,1234666824,2),(1285,1255838424,1),(1285,1266721224,2),(1285,1287288024,1),(1285,1298170824,2),(1285,1318737624,1),(1285,1330225224,2),(1285,1350792025,1),(1285,1361070025,2),(1285,1382241625,1),(1285,1392519625,2),(1285,1413691225,1),(1285,1424574025,2),(1285,1445140826,1),(1285,1456023626,2),(1285,1476590426,1),(1285,1487473227,2),(1285,1508040027,1),(1285,1518922827,2),(1285,1541304027,1),(1285,1550372427,2),(1285,1572753627,1),(1285,1581822027,2),(1285,1604203227,1),(1285,1613876427,2),(1285,1636257627,1),(1285,1645326027,2),(1285,1667707227,1),(1285,1677380427,2),(1285,1699156827,1),(1285,1708225227,2),(1285,1730606427,1),(1285,1739674827,2),(1285,1762056027,1),(1285,1771729227,2),(1285,1793505627,1),(1285,1803178827,2),(1285,1825560027,1),(1285,1834628427,2),(1285,1857009627,1),(1285,1866078027,2),(1285,1888459227,1),(1285,1897527627,2),(1285,1919908827,1),(1285,1928977227,2),(1285,1951358427,1),(1285,1960426827,2),(1285,1983412827,1),(1285,1992481227,2),(1285,2014862427,1),(1285,2024535627,2),(1285,2046312027,1),(1285,2055380427,2),(1285,2077761627,1),(1285,2086830027,2),(1285,2109211227,1),(1285,2118884427,2),(1285,2140660827,1),(1286,-1826738653,1),(1286,-157750200,2),(1287,-1686091520,1),(1287,323845209,4),(1287,338950809,2),(1287,354675609,3),(1287,370400410,2),(1287,386125210,3),(1287,401850011,2),(1287,417574811,3),(1287,433299612,2),(1287,449024412,3),(1287,465354012,2),(1287,481078812,3),(1287,496803613,2),(1287,512528413,3),(1287,528253213,2),(1287,543978013,3),(1287,559702813,2),(1287,575427614,3),(1287,591152414,2),(1287,606877214,3),(1287,622602014,2),(1287,638326815,3),(1287,654656415,2),(1287,670381216,3),(1287,686106016,2),(1287,701830816,3),(1287,717555617,2),(1287,733280417,3),(1287,749005218,2),(1287,764730018,3),(1287,780454819,2),(1287,796179619,3),(1287,811904419,2),(1287,820465220,5),(1288,-1632056400,0),(1288,-1615125600,1),(1288,-1596978000,0),(1288,-1583164800,1),(1288,-880203600,2),(1288,-769395600,3),(1288,-765381600,1),(1288,-147884400,4),(1288,-131554800,1),(1288,120646802,5),(1288,325677609,6),(1288,341398809,5),(1288,357127209,6),(1288,372848410,5),(1288,388576810,6),(1288,404902811,5),(1288,420026411,6),(1288,436352412,5),(1288,452080812,6),(1288,467802012,5),(1288,483530412,6),(1288,499251613,5),(1288,514980013,6),(1288,530701213,5),(1288,544615213,6),(1288,562150813,5),(1288,576064814,6),(1288,594205214,5),(1288,607514414,6),(1288,625654814,5),(1288,638964015,6),(1288,657104415,5),(1288,671018416,6),(1288,688554016,5),(1288,702468016,6),(1288,720003617,5),(1288,733917617,6),(1288,752058018,5),(1288,765367218,6),(1288,783507619,5),(1288,796816819,6),(1288,814957219,5),(1288,828871220,6),(1288,846406820,5),(1288,860320820,6),(1288,877856421,5),(1288,891770421,6),(1288,909306021,5),(1288,923220022,6),(1288,941360422,5),(1288,954669622,6),(1288,972810022,5),(1288,986119222,6),(1288,1004259622,5),(1288,1018173622,6),(1288,1035709222,5),(1288,1049623222,6),(1288,1067158822,5),(1288,1081072822,6),(1288,1099213222,5),(1288,1112522422,6),(1288,1130662822,5),(1288,1143972023,6),(1288,1162112423,5),(1288,1173607223,6),(1288,1194166823,5),(1288,1205056823,6),(1288,1225616423,5),(1288,1236506424,6),(1288,1257066024,5),(1288,1268560824,6),(1288,1289120424,5),(1288,1300010424,6),(1288,1320570024,5),(1288,1331460024,6),(1288,1352019625,5),(1288,1362909625,6),(1288,1383469225,5),(1288,1394359225,6),(1288,1414918825,5),(1288,1425808825,6),(1288,1446368426,5),(1288,1457863226,6),(1288,1478422826,5),(1288,1489312827,6),(1288,1509872427,5),(1288,1520762427,6),(1288,1541322027,5),(1288,1552212027,6),(1288,1572771627,5),(1288,1583661627,6),(1288,1604221227,5),(1288,1615716027,6),(1288,1636275627,5),(1288,1647165627,6),(1288,1667725227,5),(1288,1678615227,6),(1288,1699174827,5),(1288,1710064827,6),(1288,1730624427,5),(1288,1741514427,6),(1288,1762074027,5),(1288,1772964027,6),(1288,1793523627,5),(1288,1805018427,6),(1288,1825578027,5),(1288,1836468027,6),(1288,1857027627,5),(1288,1867917627,6),(1288,1888477227,5),(1288,1899367227,6),(1288,1919926827,5),(1288,1930816827,6),(1288,1951376427,5),(1288,1962871227,6),(1288,1983430827,5),(1288,1994320827,6),(1288,2014880427,5),(1288,2025770427,6),(1288,2046330027,5),(1288,2057220027,6),(1288,2077779627,5),(1288,2088669627,6),(1288,2109229227,5),(1288,2120119227,6),(1288,2140678827,5),(1289,-1632060000,0),(1289,-1615129200,1),(1289,-880207200,2),(1289,-769395600,3),(1289,-765385200,1),(1289,-715788000,0),(1289,-702486000,1),(1289,-684338400,0),(1289,-671036400,1),(1289,-652888800,0),(1289,-639586800,1),(1289,-620834400,0),(1289,-608137200,1),(1289,-589384800,0),(1289,-576082800,1),(1289,-557935200,0),(1289,-544633200,1),(1289,-526485600,0),(1289,-513183600,1),(1289,-495036000,0),(1289,-481734000,1),(1289,-463586400,0),(1289,-450284400,1),(1289,-431532000,0),(1289,-418230000,1),(1289,-400082400,0),(1289,-386780400,1),(1289,-368632800,0),(1289,-355330800,1),(1289,-337183200,0),(1289,-323881200,1),(1289,-305733600,0),(1289,-292431600,1),(1289,-273679200,0),(1289,-260982000,1),(1289,-242229600,0),(1289,-226508400,1),(1289,-210780000,0),(1289,-195058800,1),(1289,-179330400,0),(1289,-163609200,1),(1289,-147880800,0),(1289,-131554800,1),(1289,-116431200,0),(1289,-100105200,1),(1289,-84376800,0),(1289,-68655600,1),(1289,-52927200,0),(1289,-37206000,1),(1289,-21477600,0),(1289,-5756400,1),(1289,9972000,0),(1289,25693200,1),(1289,41421600,0),(1289,57747600,1),(1289,73476000,0),(1289,84013201,4),(1290,-1633273200,0),(1290,-1615132800,1),(1290,-1601823600,0),(1290,-1583683200,1),(1290,-1570374000,0),(1290,-1551628800,1),(1290,-1538924400,0),(1290,-1534089600,1),(1290,-880210800,2),(1290,-769395600,3),(1290,-765388800,1),(1290,-147884400,0),(1290,-131558400,1),(1290,-116434800,0),(1290,-100108800,1),(1290,-84380400,0),(1290,-68659200,1),(1290,-52930800,0),(1290,-37209600,1),(1290,-21481200,0),(1290,-5760000,1),(1290,9968400,0),(1290,25689600,1),(1290,41418000,0),(1290,57744000,1),(1290,73472400,0),(1290,89193601,1),(1290,104922002,0),(1290,120643202,1),(1290,126694803,0),(1290,152092803,1),(1290,162378004,0),(1290,183542404,1),(1290,199270805,0),(1290,215596805,1),(1290,230720406,0),(1290,247046406,1),(1290,262774807,0),(1290,278496007,1),(1290,294224408,0),(1290,309945608,1),(1290,325674009,0),(1290,341395209,1),(1290,357123609,0),(1290,372844810,1),(1290,388573210,0),(1290,404899211,1),(1290,420022811,0),(1290,436348812,1),(1290,452077212,0),(1290,467798412,1),(1290,483526812,0),(1290,499248013,1),(1290,514976413,0),(1290,530697613,1),(1290,544611613,0),(1290,562147213,1),(1290,576061214,0),(1290,594201614,1),(1290,607510814,0),(1290,625651214,1),(1290,638960415,0),(1290,657100815,1),(1290,671014816,0),(1290,688550416,1),(1290,702464416,0),(1290,720000017,1),(1290,733914017,0),(1290,752054418,1),(1290,765363618,0),(1290,783504019,1),(1290,796813219,0),(1290,814953619,1),(1290,828867620,0),(1290,846403220,1),(1290,860317220,0),(1290,877852821,1),(1290,891766821,0),(1290,909302421,1),(1290,923216422,0),(1290,941356822,1),(1290,954666022,0),(1290,972806422,1),(1290,986115622,0),(1290,1004256022,1),(1290,1018170022,0),(1290,1035705622,1),(1290,1049619622,0),(1290,1067155222,1),(1290,1081069222,0),(1290,1099209622,1),(1290,1112518822,0),(1290,1130659222,1),(1290,1143968423,0),(1290,1162108823,1),(1290,1173603623,0),(1290,1194163223,1),(1290,1205053223,0),(1290,1225612823,1),(1290,1236502824,0),(1290,1257062424,1),(1290,1268557224,0),(1290,1289116824,1),(1290,1300006824,0),(1290,1320566424,1),(1290,1331456424,0),(1290,1352016025,1),(1290,1362906025,0),(1290,1383465625,1),(1290,1394355625,0),(1290,1414915225,1),(1290,1425805225,0),(1290,1446364826,1),(1290,1457859626,0),(1290,1478419226,1),(1290,1489309227,0),(1290,1509868827,1),(1290,1520758827,0),(1290,1541318427,1),(1290,1552208427,0),(1290,1572768027,1),(1290,1583658027,0),(1290,1604217627,1),(1290,1615712427,0),(1290,1636272027,1),(1290,1647162027,0),(1290,1667721627,1),(1290,1678611627,0),(1290,1699171227,1),(1290,1710061227,0),(1290,1730620827,1),(1290,1741510827,0),(1290,1762070427,1),(1290,1772960427,0),(1290,1793520027,1),(1290,1805014827,0),(1290,1825574427,1),(1290,1836464427,0),(1290,1857024027,1),(1290,1867914027,0),(1290,1888473627,1),(1290,1899363627,0),(1290,1919923227,1),(1290,1930813227,0),(1290,1951372827,1),(1290,1962867627,0),(1290,1983427227,1),(1290,1994317227,0),(1290,2014876827,1),(1290,2025766827,0),(1290,2046326427,1),(1290,2057216427,0),(1290,2077776027,1),(1290,2088666027,0),(1290,2109225627,1),(1290,2120115627,0),(1290,2140675227,1),(1291,-2051202469,1),(1291,-1724083200,2),(1291,-880218000,3),(1291,-769395600,4),(1291,-765396000,2),(1291,-684349200,5),(1291,-671047200,2),(1291,104914802,5),(1291,120636002,2),(1291,126687603,5),(1291,152085603,2),(1291,167814004,5),(1291,183535204,2),(1291,199263605,5),(1291,215589605,2),(1291,230713206,5),(1291,247039206,2),(1291,262767607,5),(1291,278488807,2),(1291,294217208,5),(1291,309938408,2),(1291,325666809,5),(1291,341388009,2),(1291,357116409,5),(1291,372837610,2),(1291,388566010,5),(1291,404892011,2),(1291,420015611,5),(1291,436341612,2),(1291,452070012,5),(1291,467791212,2),(1291,483519612,5),(1291,499240813,2),(1291,514969213,5),(1291,530690413,2),(1291,544604413,5),(1291,562140013,2),(1291,576054014,5),(1291,594194414,2),(1291,607503614,5),(1291,625644014,2),(1291,638953215,5),(1291,657093615,2),(1291,671007616,5),(1291,688543216,2),(1291,702457216,5),(1291,719992817,2),(1291,733906817,5),(1291,752047218,2),(1291,765356418,5),(1291,783496819,2),(1291,796806019,5),(1291,814946419,2),(1291,828860420,5),(1291,846396020,2),(1291,860310020,5),(1291,877845621,2),(1291,891759621,5),(1291,909295221,2),(1291,923209222,5),(1291,941349622,2),(1291,954658822,5),(1291,972799222,2),(1291,986108422,5),(1291,1004248822,2),(1291,1018162822,5),(1291,1035698422,2),(1291,1049612422,5),(1291,1067148022,2),(1291,1081062022,5),(1291,1099202422,2),(1291,1112511622,5),(1291,1130652022,2),(1291,1143961223,5),(1291,1162101623,2),(1291,1173596423,5),(1291,1194156023,2),(1291,1205046023,5),(1291,1225605623,2),(1291,1236495624,5),(1291,1257055224,2),(1291,1268550024,5),(1291,1289109624,2),(1291,1299999624,5),(1291,1320559224,2),(1291,1331449224,5),(1291,1352008825,2),(1291,1362898825,5),(1291,1383458425,2),(1291,1394348425,5),(1291,1414908025,2),(1291,1425798025,5),(1291,1446357626,2),(1291,1457852426,5),(1291,1478412026,2),(1291,1489302027,5),(1291,1509861627,2),(1291,1520751627,5),(1291,1541311227,2),(1291,1552201227,5),(1291,1572760827,2),(1291,1583650827,5),(1291,1604210427,2),(1291,1615705227,5),(1291,1636264827,2),(1291,1647154827,5),(1291,1667714427,2),(1291,1678604427,5),(1291,1699164027,2),(1291,1710054027,5),(1291,1730613627,2),(1291,1741503627,5),(1291,1762063227,2),(1291,1772953227,5),(1291,1793512827,2),(1291,1805007627,5),(1291,1825567227,2),(1291,1836457227,5),(1291,1857016827,2),(1291,1867906827,5),(1291,1888466427,2),(1291,1899356427,5),(1291,1919916027,2),(1291,1930806027,5),(1291,1951365627,2),(1291,1962860427,5),(1291,1983420027,2),(1291,1994310027,5),(1291,2014869627,2),(1291,2025759627,5),(1291,2046319227,2),(1291,2057209227,5),(1291,2077768827,2),(1291,2088658827,5),(1291,2109218427,2),(1291,2120108427,5),(1291,2140668027,2),(1292,-1825098836,1),(1293,-1998663968,2),(1293,-1632063600,1),(1293,-1615132800,2),(1293,-1600614000,1),(1293,-1596816000,2),(1293,-1567954800,1),(1293,-1551628800,2),(1293,-1536505200,1),(1293,-1523203200,2),(1293,-1504450800,1),(1293,-1491753600,2),(1293,-1473001200,1),(1293,-1459699200,2),(1293,-880210800,3),(1293,-769395600,4),(1293,-765388800,2),(1293,-715791600,1),(1293,-702489600,2),(1293,-84380400,1),(1293,-68659200,2),(1293,-21481200,1),(1293,-5760000,2),(1293,73472400,1),(1293,89193601,2),(1293,104922002,1),(1293,120643202,2),(1293,136371603,1),(1293,152092803,2),(1293,167821204,1),(1293,183542404,2),(1293,199270805,1),(1293,215596805,2),(1293,230720406,1),(1293,247046406,2),(1293,262774807,1),(1293,278496007,2),(1293,294224408,1),(1293,309945608,2),(1293,325674009,1),(1293,341395209,2),(1293,357123609,1),(1293,372844810,2),(1293,388573210,1),(1293,404899211,2),(1293,420022811,1),(1293,436348812,2),(1293,452077212,1),(1293,467798412,2),(1293,483526812,1),(1293,499248013,2),(1293,514976413,1),(1293,530697613,2),(1293,544611613,1),(1293,562147213,2),(1293,576061214,1),(1293,594201614,2),(1293,607510814,1),(1293,625651214,2),(1293,638960415,1),(1293,657100815,2),(1293,671014816,1),(1293,688550416,2),(1293,702464416,1),(1293,720000017,2),(1293,733914017,1),(1293,752054418,2),(1293,765363618,1),(1293,783504019,2),(1293,796813219,1),(1293,814953619,2),(1293,828867620,1),(1293,846403220,2),(1293,860317220,1),(1293,877852821,2),(1293,891766821,1),(1293,909302421,2),(1293,923216422,1),(1293,941356822,2),(1293,954666022,1),(1293,972806422,2),(1293,986115622,1),(1293,1004256022,2),(1293,1018170022,1),(1293,1035705622,2),(1293,1049619622,1),(1293,1067155222,2),(1293,1081069222,1),(1293,1099209622,2),(1293,1112518822,1),(1293,1130659222,2),(1293,1143968423,1),(1293,1162108823,2),(1293,1173603623,1),(1293,1194163223,2),(1293,1205053223,1),(1293,1225612823,2),(1293,1236502824,1),(1293,1257062424,2),(1293,1268557224,1),(1293,1289116824,2),(1293,1300006824,1),(1293,1320566424,2),(1293,1331456424,1),(1293,1352016025,2),(1293,1362906025,1),(1293,1383465625,2),(1293,1394355625,1),(1293,1414915225,2),(1293,1425805225,1),(1293,1446364826,2),(1293,1457859626,1),(1293,1478419226,2),(1293,1489309227,1),(1293,1509868827,2),(1293,1520758827,1),(1293,1541318427,2),(1293,1552208427,1),(1293,1572768027,2),(1293,1583658027,1),(1293,1604217627,2),(1293,1615712427,1),(1293,1636272027,2),(1293,1647162027,1),(1293,1667721627,2),(1293,1678611627,1),(1293,1699171227,2),(1293,1710061227,1),(1293,1730620827,2),(1293,1741510827,1),(1293,1762070427,2),(1293,1772960427,1),(1293,1793520027,2),(1293,1805014827,1),(1293,1825574427,2),(1293,1836464427,1),(1293,1857024027,2),(1293,1867914027,1),(1293,1888473627,2),(1293,1899363627,1),(1293,1919923227,2),(1293,1930813227,1),(1293,1951372827,2),(1293,1962867627,1),(1293,1983427227,2),(1293,1994317227,1),(1293,2014876827,2),(1293,2025766827,1),(1293,2046326427,2),(1293,2057216427,1),(1293,2077776027,2),(1293,2088666027,1),(1293,2109225627,2),(1293,2120115627,1),(1293,2140675227,2),(1294,-1767208832,2),(1294,-1206950400,1),(1294,-1191355200,2),(1294,-1175367600,1),(1294,-1159819200,2),(1294,-633812400,1),(1294,-622062000,2),(1294,-602276400,1),(1294,-591825600,2),(1294,-570740400,1),(1294,-560203200,2),(1294,-539118000,1),(1294,-531345600,2),(1294,-191358000,1),(1294,-184190400,2),(1294,-155156400,1),(1294,-150062400,2),(1294,-128890800,1),(1294,-121118400,2),(1294,-99946800,1),(1294,-89582400,2),(1294,-68410800,1),(1294,-57960000,2),(1294,499755613,1),(1294,511243213,2),(1294,530600413,1),(1294,540273613,2),(1294,562136413,1),(1294,571204814,2),(1294,750834018,1),(1294,761716818,2),(1294,1214283623,3),(1294,1384056025,2),(1295,-1546279392,2),(1295,547020013,1),(1295,559717213,2),(1295,578469614,1),(1295,591166814,2),(1296,-1514736000,1),(1296,-1451667600,2),(1296,-1343062800,1),(1296,-1234803600,2),(1296,-1222963200,3),(1296,-1207242000,2),(1296,-873820800,4),(1296,-769395600,5),(1296,-761677200,2),(1296,-686073600,3),(1296,-661539600,2),(1296,-495039600,3),(1296,-481734000,2),(1296,-463590000,3),(1296,-450284400,2),(1296,-431535600,3),(1296,-418230000,2),(1296,-400086000,3),(1296,-386780400,2),(1296,-368636400,3),(1296,-355330800,2),(1296,-337186800,3),(1296,-323881200,2),(1296,-305737200,3),(1296,-292431600,2),(1296,199274405,3),(1296,215600405,2),(1296,230724006,3),(1296,247050006,2),(1296,262778407,3),(1296,278499607,2),(1296,294228008,3),(1296,309949208,2),(1296,325677609,3),(1296,341398809,2),(1296,357127209,3),(1296,372848410,2),(1296,388576810,3),(1296,404902811,2),(1296,420026411,3),(1296,436352412,2),(1296,452080812,3),(1296,467802012,2),(1296,483530412,3),(1296,499251613,2),(1296,514980013,3),(1296,530701213,2),(1296,544615213,3),(1296,562150813,2),(1296,576064814,3),(1296,594205214,2),(1296,607514414,3),(1296,625654814,2),(1296,638964015,3),(1296,657104415,2),(1296,671018416,3),(1296,688554016,2),(1296,702468016,3),(1296,720003617,2),(1296,733917617,3),(1296,752058018,2),(1296,765367218,3),(1296,783507619,2),(1296,796816819,3),(1296,814957219,2),(1296,828871220,3),(1296,846406820,2),(1296,860320820,3),(1296,877856421,2),(1296,891770421,3),(1296,909306021,2),(1296,923220022,3),(1296,941360422,2),(1296,954669622,3),(1296,972810022,2),(1296,986119222,3),(1296,1004259622,2),(1296,1018173622,3),(1296,1035709222,2),(1296,1049623222,3),(1296,1067158822,2),(1296,1081072822,3),(1296,1099213222,2),(1296,1112522422,3),(1296,1130662822,2),(1296,1143972023,3),(1296,1162112423,2),(1296,1175421623,3),(1296,1193562023,2),(1296,1207476023,3),(1296,1225011623,2),(1296,1238925624,3),(1296,1256461224,2),(1296,1268560824,3),(1296,1289120424,2),(1296,1300010424,3),(1296,1320570024,2),(1296,1331460024,3),(1296,1352019625,2),(1296,1362909625,3),(1296,1383469225,2),(1296,1394359225,3),(1296,1414918825,2),(1296,1425808825,3),(1296,1446368426,2),(1296,1457863226,3),(1296,1478422826,2),(1296,1489312827,3),(1296,1509872427,2),(1296,1520762427,3),(1296,1541322027,2),(1296,1552212027,3),(1296,1572771627,2),(1296,1583661627,3),(1296,1604221227,2),(1296,1615716027,3),(1296,1636275627,2),(1296,1647165627,3),(1296,1667725227,2),(1296,1678615227,3),(1296,1699174827,2),(1296,1710064827,3),(1296,1730624427,2),(1296,1741514427,3),(1296,1762074027,2),(1296,1772964027,3),(1296,1793523627,2),(1296,1805018427,3),(1296,1825578027,2),(1296,1836468027,3),(1296,1857027627,2),(1296,1867917627,3),(1296,1888477227,2),(1296,1899367227,3),(1296,1919926827,2),(1296,1930816827,3),(1296,1951376427,2),(1296,1962871227,3),(1296,1983430827,2),(1296,1994320827,3),(1296,2014880427,2),(1296,2025770427,3),(1296,2046330027,2),(1296,2057220027,3),(1296,2077779627,2),(1296,2088669627,3),(1296,2109229227,2),(1296,2120119227,3),(1296,2140678827,2),(1297,-1632060000,0),(1297,-1615129200,1),(1297,-880207200,2),(1297,-769395600,3),(1297,-765385200,1),(1297,-715788000,0),(1297,-702486000,1),(1297,-684338400,0),(1297,-671036400,1),(1297,-652888800,0),(1297,-639586800,1),(1297,-620834400,0),(1297,-608137200,1),(1297,-589384800,0),(1297,-576082800,1),(1297,-557935200,0),(1297,-544633200,1),(1297,-526485600,0),(1297,-513183600,1),(1297,-495036000,0),(1297,-481734000,1),(1297,-463586400,0),(1297,-450284400,1),(1297,-431532000,0),(1297,-418230000,1),(1297,-400082400,0),(1297,-386780400,1),(1297,-368632800,0),(1297,-355330800,1),(1297,-337183200,0),(1297,-323881200,1),(1297,-305733600,0),(1297,-292431600,1),(1297,-273679200,0),(1297,-260982000,1),(1297,-242229600,0),(1297,-226508400,1),(1297,-210780000,0),(1297,-195058800,1),(1297,-179330400,0),(1297,-163609200,1),(1297,-147880800,0),(1297,-131554800,1),(1297,-116431200,0),(1297,-100105200,1),(1297,-84376800,0),(1297,-68655600,1),(1297,-52927200,0),(1297,-37206000,1),(1297,-21477600,0),(1297,-5756400,1),(1297,9972000,0),(1297,25693200,1),(1297,41421600,0),(1297,57747600,1),(1297,73476000,0),(1297,89197201,1),(1297,104925602,0),(1297,120646802,1),(1297,136375203,0),(1297,152096403,1),(1297,167824804,0),(1297,183546004,1),(1297,199274405,0),(1297,215600405,1),(1297,230724006,0),(1297,247050006,1),(1297,262778407,0),(1297,278499607,1),(1297,294228008,0),(1297,309949208,1),(1297,325677609,0),(1297,341398809,1),(1297,357127209,0),(1297,372848410,1),(1297,388576810,0),(1297,404902811,1),(1297,420026411,0),(1297,436352412,1),(1297,452080812,0),(1297,467802012,1),(1297,483530412,0),(1297,499251613,1),(1297,514980013,0),(1297,530701213,1),(1297,544615213,0),(1297,562150813,1),(1297,576064814,0),(1297,594205214,1),(1297,607514414,0),(1297,625654814,1),(1297,638964015,0),(1297,657104415,1),(1297,671018416,0),(1297,688554016,1),(1297,702468016,0),(1297,720003617,1),(1297,733917617,0),(1297,752058018,1),(1297,765367218,0),(1297,783507619,1),(1297,796816819,0),(1297,814957219,1),(1297,828871220,0),(1297,846406820,1),(1297,860320820,0),(1297,877856421,1),(1297,891770421,0),(1297,909306021,1),(1297,923220022,0),(1297,941360422,1),(1297,954669622,0),(1297,972810022,1),(1297,986119222,0),(1297,1004259622,1),(1297,1018173622,0),(1297,1035709222,1),(1297,1049623222,0),(1297,1067158822,1),(1297,1081072822,0),(1297,1099213222,1),(1297,1112522422,0),(1297,1130662822,1),(1297,1143972023,0),(1297,1162112423,1),(1297,1173607223,0),(1297,1194166823,1),(1297,1205056823,0),(1297,1225616423,1),(1297,1236506424,0),(1297,1257066024,1),(1297,1268560824,0),(1297,1289120424,1),(1297,1300010424,0),(1297,1320570024,1),(1297,1331460024,0),(1297,1352019625,1),(1297,1362909625,0),(1297,1383469225,1),(1297,1394359225,0),(1297,1414918825,1),(1297,1425808825,4),(1298,-1633276800,0),(1298,-1615136400,1),(1298,-1601827200,0),(1298,-1583686800,1),(1298,-900259200,0),(1298,-891795600,1),(1298,-880214400,2),(1298,-769395600,3),(1298,-765392400,1),(1298,-747244800,0),(1298,-733942800,1),(1298,-715795200,0),(1298,-702493200,1),(1298,-684345600,0),(1298,-671043600,1),(1298,-652896000,0),(1298,-639594000,1),(1298,-620841600,0),(1298,-608144400,1),(1298,-589392000,0),(1298,-576090000,1),(1298,-557942400,0),(1298,-544640400,1),(1298,-526492800,0),(1298,-513190800,1),(1298,-495043200,0),(1298,-481741200,1),(1298,-463593600,4),(1298,-386787600,1),(1298,-368640000,4),(1298,-21488400,5),(1298,-5767200,4),(1298,9961200,5),(1298,25682400,4),(1298,1143961223,5),(1298,1162101623,4),(1298,1173596423,5),(1298,1194156023,4),(1298,1205046023,5),(1298,1225605623,4),(1298,1236495624,5),(1298,1257055224,4),(1298,1268550024,5),(1298,1289109624,4),(1298,1299999624,5),(1298,1320559224,4),(1298,1331449224,5),(1298,1352008825,4),(1298,1362898825,5),(1298,1383458425,4),(1298,1394348425,5),(1298,1414908025,4),(1298,1425798025,5),(1298,1446357626,4),(1298,1457852426,5),(1298,1478412026,4),(1298,1489302027,5),(1298,1509861627,4),(1298,1520751627,5),(1298,1541311227,4),(1298,1552201227,5),(1298,1572760827,4),(1298,1583650827,5),(1298,1604210427,4),(1298,1615705227,5),(1298,1636264827,4),(1298,1647154827,5),(1298,1667714427,4),(1298,1678604427,5),(1298,1699164027,4),(1298,1710054027,5),(1298,1730613627,4),(1298,1741503627,5),(1298,1762063227,4),(1298,1772953227,5),(1298,1793512827,4),(1298,1805007627,5),(1298,1825567227,4),(1298,1836457227,5),(1298,1857016827,4),(1298,1867906827,5),(1298,1888466427,4),(1298,1899356427,5),(1298,1919916027,4),(1298,1930806027,5),(1298,1951365627,4),(1298,1962860427,5),(1298,1983420027,4),(1298,1994310027,5),(1298,2014869627,4),(1298,2025759627,5),(1298,2046319227,4),(1298,2057209227,5),(1298,2077768827,4),(1298,2088658827,5),(1298,2109218427,4),(1298,2120108427,5),(1298,2140668027,4),(1299,-1767216360,2),(1299,-1206957600,1),(1299,-1191362400,2),(1299,-1175374800,1),(1299,-1159826400,2),(1299,-633819600,1),(1299,-622069200,2),(1299,-602283600,1),(1299,-591832800,2),(1299,-570747600,1),(1299,-560210400,2),(1299,-539125200,1),(1299,-531352800,2),(1299,-191365200,1),(1299,-184197600,2),(1299,-155163600,1),(1299,-150069600,2),(1299,-128898000,1),(1299,-121125600,2),(1299,-99954000,1),(1299,-89589600,2),(1299,-68418000,1),(1299,-57967200,2),(1299,499748413,1),(1299,511236013,2),(1299,530593213,1),(1299,540266413,2),(1299,562129213,1),(1299,571197614,2),(1299,592974014,1),(1299,602042414,2),(1299,624423614,1),(1299,634701615,2),(1299,938919622,1),(1299,951616822,2),(1299,970974022,1),(1299,972180022,2),(1299,1003028422,1),(1299,1013911222,2),(1300,-2131646412,2),(1300,-1632074400,1),(1300,-1615143600,2),(1300,-880221600,3),(1300,-769395600,4),(1300,-765399600,2),(1300,-526500000,1),(1300,-513198000,2),(1300,73461600,1),(1300,89182801,2),(1300,104911202,1),(1300,120632402,2),(1300,136360803,1),(1300,152082003,2),(1300,167810404,1),(1300,183531604,2),(1300,199260005,1),(1300,215586005,2),(1300,230709606,1),(1300,247035606,2),(1300,262764007,1),(1300,278485207,2),(1300,294213608,1),(1300,309934808,2),(1300,325663209,1),(1300,341384409,2),(1300,357112809,1),(1300,372834010,2),(1300,388562410,1),(1300,404888411,2),(1300,420012011,1),(1300,436338012,2),(1300,452066412,1),(1300,467787612,2),(1300,483516012,1),(1300,499237213,2),(1300,514965613,1),(1300,530686813,2),(1300,544600813,1),(1300,562136413,2),(1300,576050414,1),(1300,594190814,2),(1300,607500014,1),(1300,625640414,2),(1300,638949615,1),(1300,657090015,2),(1300,671004016,1),(1300,688539616,2),(1300,702453616,1),(1300,719989217,2),(1300,733903217,1),(1300,752043618,2),(1300,765352818,1),(1300,783493219,2),(1300,796802419,1),(1300,814942819,2),(1300,828856820,1),(1300,846392420,2),(1300,860306420,1),(1300,877842021,2),(1300,891756021,1),(1300,909291621,2),(1300,923205622,1),(1300,941346022,2),(1300,954655222,1),(1300,972795622,2),(1300,986104822,1),(1300,1004245222,2),(1300,1018159222,1),(1300,1035694822,2),(1300,1049608822,1),(1300,1067144422,2),(1300,1081058422,1),(1300,1099198822,2),(1300,1112508022,1),(1300,1130648422,2),(1300,1143957623,1),(1300,1162098023,2),(1300,1173592823,1),(1300,1194152423,2),(1300,1205042423,1),(1300,1225602023,2),(1300,1236492024,1),(1300,1257051624,2),(1300,1268546424,1),(1300,1289106024,2),(1300,1299996024,1),(1300,1320555624,2),(1300,1331445624,1),(1300,1352005225,2),(1300,1362895225,1),(1300,1383454825,2),(1300,1394344825,1),(1300,1414904425,2),(1300,1425794425,1),(1300,1446354026,2),(1300,1457848826,1),(1300,1478408426,2),(1300,1489298427,1),(1300,1509858027,2),(1300,1520748027,1),(1300,1541307627,2),(1300,1552197627,1),(1300,1572757227,2),(1300,1583647227,1),(1300,1604206827,2),(1300,1615701627,1),(1300,1636261227,2),(1300,1647151227,1),(1300,1667710827,2),(1300,1678600827,1),(1300,1699160427,2),(1300,1710050427,1),(1300,1730610027,2),(1300,1741500027,1),(1300,1762059627,2),(1300,1772949627,1),(1300,1793509227,2),(1300,1805004027,1),(1300,1825563627,2),(1300,1836453627,1),(1300,1857013227,2),(1300,1867903227,1),(1300,1888462827,2),(1300,1899352827,1),(1300,1919912427,2),(1300,1930802427,1),(1300,1951362027,2),(1300,1962856827,1),(1300,1983416427,2),(1300,1994306427,1),(1300,2014866027,2),(1300,2025756027,1),(1300,2046315627,2),(1300,2057205627,1),(1300,2077765227,2),(1300,2088655227,1),(1300,2109214827,2),(1300,2120104827,1),(1300,2140664427,2),(1301,-1686083584,1),(1301,323845209,4),(1301,338950809,2),(1301,354675609,3),(1301,370400410,2),(1301,386125210,3),(1301,401850011,2),(1301,417574811,3),(1301,433299612,2),(1301,449024412,3),(1301,465354012,2),(1301,481078812,3),(1301,496803613,2),(1301,512528413,3),(1301,528253213,2),(1301,543978013,3),(1301,559702813,2),(1301,575427614,3),(1301,591152414,2),(1301,606877214,3),(1301,622602014,2),(1301,638326815,3),(1301,654656415,2),(1301,670381216,3),(1301,686106016,2),(1301,701830816,3),(1301,717555617,2),(1301,733280417,3),(1301,749005218,2),(1301,764730018,3),(1301,780454819,2),(1301,796179619,3),(1301,811904419,2),(1301,828234020,3),(1301,846378020,2),(1301,859683620,3),(1301,877827621,2),(1301,891133221,3),(1301,909277221,2),(1301,922582822,3),(1301,941331622,2),(1301,954032422,3),(1301,972781222,2),(1301,985482022,3),(1301,1004230822,2),(1301,1017536422,3),(1301,1035680422,2),(1301,1048986022,3),(1301,1067130022,2),(1301,1080435622,3),(1301,1099184422,2),(1301,1111885222,3),(1301,1130634022,2),(1301,1143334823,3),(1301,1162083623,2),(1301,1174784423,3),(1301,1193533223,2),(1301,1206838823,3),(1301,1224982823,2),(1301,1238288424,3),(1301,1256432424,2),(1301,1269738024,3),(1301,1288486824,2),(1301,1301187624,3),(1301,1319936424,2),(1301,1332637224,3),(1301,1351386025,2),(1301,1364691625,3),(1301,1382835625,2),(1301,1396141225,3),(1301,1414285225,2),(1301,1427590825,3),(1301,1445734826,2),(1301,1459040426,3),(1301,1477789226,2),(1301,1490490027,3),(1301,1509238827,2),(1301,1521939627,3),(1301,1540688427,2),(1301,1553994027,3),(1301,1572138027,2),(1301,1585443627,3),(1301,1603587627,2),(1301,1616893227,3),(1301,1635642027,2),(1301,1648342827,3),(1301,1667091627,2),(1301,1679792427,3),(1301,1698541227,2),(1301,1711846827,3),(1301,1729990827,2),(1301,1743296427,3),(1301,1761440427,2),(1301,1774746027,3),(1301,1792890027,2),(1301,1806195627,3),(1301,1824944427,2),(1301,1837645227,3),(1301,1856394027,2),(1301,1869094827,3),(1301,1887843627,2),(1301,1901149227,3),(1301,1919293227,2),(1301,1932598827,3),(1301,1950742827,2),(1301,1964048427,3),(1301,1982797227,2),(1301,1995498027,3),(1301,2014246827,2),(1301,2026947627,3),(1301,2045696427,2),(1301,2058397227,3),(1301,2077146027,2),(1301,2090451627,3),(1301,2108595627,2),(1301,2121901227,3),(1301,2140045227,2),(1302,-1632076148,1),(1302,-1615145348,0),(1302,-1096921748,2),(1302,-1061670600,3),(1302,-1048973400,2),(1302,-1030221000,3),(1302,-1017523800,2),(1302,-998771400,3),(1302,-986074200,2),(1302,-966717000,3),(1302,-954624600,2),(1302,-935267400,3),(1302,-922570200,2),(1302,-903817800,3),(1302,-891120600,2),(1302,-872368200,5),(1302,-769395600,4),(1302,-765401400,2),(1302,-746044200,3),(1302,-733347000,2),(1302,-714594600,3),(1302,-701897400,2),(1302,-683145000,3),(1302,-670447800,2),(1302,-651695400,3),(1302,-638998200,2),(1302,-619641000,3),(1302,-606943800,2),(1302,-589401000,3),(1302,-576099000,2),(1302,-557951400,3),(1302,-544649400,2),(1302,-526501800,3),(1302,-513199800,2),(1302,-495052200,3),(1302,-481750200,2),(1302,-463602600,3),(1302,-450300600,2),(1302,-431548200,3),(1302,-418246200,2),(1302,-400098600,3),(1302,-386796600,2),(1302,-368649000,3),(1302,-355347000,2),(1302,-337199400,3),(1302,-323897400,2),(1302,-305749800,3),(1302,-289423800,2),(1302,-273695400,3),(1302,-257974200,2),(1302,-242245800,3),(1302,-226524600,2),(1302,-210796200,3),(1302,-195075000,2),(1302,-179346600,3),(1302,-163625400,2),(1302,-147897000,3),(1302,-131571000,2),(1302,-119903400,7),(1302,-116445600,6),(1302,-100119600,7),(1302,-84391200,6),(1302,-68670000,7),(1302,-52941600,6),(1302,-37220400,7),(1302,-21492000,6),(1302,-5770800,7),(1302,9957600,6),(1302,25678800,7),(1302,41407200,6),(1302,57733200,7),(1302,73461600,6),(1302,89182801,7),(1302,104911202,6),(1302,120632402,7),(1302,136360803,6),(1302,152082003,7),(1302,167810404,6),(1302,183531604,7),(1302,199260005,6),(1302,215586005,7),(1302,230709606,6),(1302,247035606,7),(1302,262764007,6),(1302,278485207,7),(1302,294213608,6),(1302,309934808,7),(1302,325663209,6),(1302,341384409,7),(1302,357112809,6),(1302,372834010,7),(1302,388562410,6),(1302,404888411,7),(1302,420012011,6),(1302,436338012,7),(1302,452066412,6),(1302,467787612,7),(1302,483516012,6),(1302,499237213,7),(1302,514965613,6),(1302,530686813,7),(1302,544593673,6),(1302,562129273,7),(1302,576043274,8),(1302,594180074,7),(1302,607492874,6),(1302,625633274,7),(1302,638942475,6),(1302,657082875,7),(1302,670996876,6),(1302,688532476,7),(1302,702446476,6),(1302,719982077,7),(1302,733896077,6),(1302,752036478,7),(1302,765345678,6),(1302,783486079,7),(1302,796795279,6),(1302,814935679,7),(1302,828849680,6),(1302,846385280,7),(1302,860299280,6),(1302,877834881,7),(1302,891748881,6),(1302,909284481,7),(1302,923198482,6),(1302,941338882,7),(1302,954648082,6),(1302,972788482,7),(1302,986097682,6),(1302,1004238082,7),(1302,1018152082,6),(1302,1035687682,7),(1302,1049601682,6),(1302,1067137282,7),(1302,1081051282,6),(1302,1099191682,7),(1302,1112500882,6),(1302,1130641282,7),(1302,1143950483,6),(1302,1162090883,7),(1302,1173585683,6),(1302,1194145283,7),(1302,1205035283,6),(1302,1225594883,7),(1302,1236484884,6),(1302,1257044484,7),(1302,1268539284,6),(1302,1289098884,7),(1302,1299988884,6),(1302,1320555624,7),(1302,1331445624,6),(1302,1352005225,7),(1302,1362895225,6),(1302,1383454825,7),(1302,1394344825,6),(1302,1414904425,7),(1302,1425794425,6),(1302,1446354026,7),(1302,1457848826,6),(1302,1478408426,7),(1302,1489298427,6),(1302,1509858027,7),(1302,1520748027,6),(1302,1541307627,7),(1302,1552197627,6),(1302,1572757227,7),(1302,1583647227,6),(1302,1604206827,7),(1302,1615701627,6),(1302,1636261227,7),(1302,1647151227,6),(1302,1667710827,7),(1302,1678600827,6),(1302,1699160427,7),(1302,1710050427,6),(1302,1730610027,7),(1302,1741500027,6),(1302,1762059627,7),(1302,1772949627,6),(1302,1793509227,7),(1302,1805004027,6),(1302,1825563627,7),(1302,1836453627,6),(1302,1857013227,7),(1302,1867903227,6),(1302,1888462827,7),(1302,1899352827,6),(1302,1919912427,7),(1302,1930802427,6),(1302,1951362027,7),(1302,1962856827,6),(1302,1983416427,7),(1302,1994306427,6),(1302,2014866027,7),(1302,2025756027,6),(1302,2046315627,7),(1302,2057205627,6),(1302,2077765227,7),(1302,2088655227,6),(1302,2109214827,7),(1302,2120104827,6),(1302,2140664427,7),(1303,-1827687170,1),(1303,294217208,2),(1303,309938408,1),(1303,325666809,2),(1303,341388009,1),(1303,357116409,2),(1303,372837610,1),(1303,388566010,2),(1303,404892011,1),(1303,420015611,2),(1303,436341612,1),(1303,452070012,2),(1303,467791212,1),(1303,483519612,2),(1303,499240813,1),(1303,514969213,2),(1303,530690413,1),(1303,544604413,2),(1303,562140013,1),(1303,576054014,2),(1303,594194414,1),(1303,607503614,2),(1303,625644014,1),(1303,638953215,2),(1303,657093615,1),(1303,671007616,2),(1303,688543216,1),(1303,702457216,2),(1303,719992817,1),(1303,733906817,2),(1303,752047218,1),(1303,765356418,2),(1303,783496819,1),(1303,796806019,2),(1303,814946419,1),(1303,828860420,2),(1303,846396020,1),(1303,860310020,2),(1303,877845621,1),(1303,891759621,2),(1303,909295221,1),(1303,923209222,2),(1303,941349622,1),(1303,954658822,2),(1303,972799222,1),(1303,986108422,2),(1303,1004248822,1),(1303,1018162822,2),(1303,1035698422,1),(1303,1049612422,2),(1303,1067148022,1),(1303,1081062022,2),(1303,1099202422,1),(1303,1112511622,2),(1303,1130652022,1),(1303,1143961223,2),(1303,1162101623,1),(1303,1173596423,2),(1303,1194156023,1),(1303,1205046023,2),(1303,1225605623,1),(1303,1236495624,2),(1303,1257055224,1),(1303,1268550024,2),(1303,1289109624,1),(1303,1299999624,2),(1303,1320559224,1),(1303,1331449224,2),(1303,1352008825,1),(1303,1362898825,2),(1303,1383458425,1),(1303,1394348425,2),(1303,1414908025,1),(1303,1425798025,2),(1303,1446357626,3),(1303,1520751627,2),(1303,1541311227,1),(1303,1552201227,2),(1303,1572760827,1),(1303,1583650827,2),(1303,1604210427,1),(1303,1615705227,2),(1303,1636264827,1),(1303,1647154827,2),(1303,1667714427,1),(1303,1678604427,2),(1303,1699164027,1),(1303,1710054027,2),(1303,1730613627,1),(1303,1741503627,2),(1303,1762063227,1),(1303,1772953227,2),(1303,1793512827,1),(1303,1805007627,2),(1303,1825567227,1),(1303,1836457227,2),(1303,1857016827,1),(1303,1867906827,2),(1303,1888466427,1),(1303,1899356427,2),(1303,1919916027,1),(1303,1930806027,2),(1303,1951365627,1),(1303,1962860427,2),(1303,1983420027,1),(1303,1994310027,2),(1303,2014869627,1),(1303,2025759627,2),(1303,2046319227,1),(1303,2057209227,2),(1303,2077768827,1),(1303,2088658827,2),(1303,2109218427,1),(1303,2120108427,2),(1303,2140668027,1),(1304,-1825098836,1),(1305,-1825098836,1),(1306,-1617040676,2),(1306,123055202,1),(1306,130914003,2),(1306,422344811,1),(1306,433054812,2),(1306,669708016,1),(1306,684219616,2),(1306,1146376823,1),(1306,1159678823,2),(1307,-1230749160,2),(1307,722926817,1),(1307,728884817,2),(1308,-1730578040,1),(1308,176010304,2),(1308,662698816,3),(1309,-2131645536,2),(1309,-1696276800,1),(1309,-1680469200,2),(1309,-1632074400,1),(1309,-1615143600,2),(1309,-1566763200,1),(1309,-1557090000,2),(1309,-1535486400,1),(1309,-1524949200,2),(1309,-1504468800,1),(1309,-1493413200,2),(1309,-1472414400,1),(1309,-1461963600,2),(1309,-1440964800,1),(1309,-1429390800,2),(1309,-1409515200,1),(1309,-1396731600,2),(1309,-1376856000,1),(1309,-1366491600,2),(1309,-1346616000,1),(1309,-1333832400,2),(1309,-1313956800,1),(1309,-1303678800,2),(1309,-1282507200,1),(1309,-1272661200,2),(1309,-1251057600,1),(1309,-1240088400,2),(1309,-1219608000,1),(1309,-1207429200,2),(1309,-1188763200,1),(1309,-1175979600,2),(1309,-1157313600,1),(1309,-1143925200,2),(1309,-1124049600,1),(1309,-1113771600,2),(1309,-1091390400,1),(1309,-1081026000,2),(1309,-1059854400,1),(1309,-1050786000,2),(1309,-1030910400,1),(1309,-1018126800,2),(1309,-999460800,1),(1309,-986677200,2),(1309,-965592000,1),(1309,-955227600,2),(1309,-935956800,1),(1309,-923173200,2),(1309,-904507200,1),(1309,-891723600,2),(1309,-880221600,3),(1309,-769395600,4),(1309,-765399600,2),(1309,-747252000,1),(1309,-733950000,2),(1309,-715802400,1),(1309,-702500400,2),(1309,-684352800,1),(1309,-671050800,2),(1309,-652903200,1),(1309,-639601200,2),(1309,-589399200,1),(1309,-576097200,2),(1309,-557949600,1),(1309,-544647600,2),(1309,-526500000,1),(1309,-513198000,2),(1309,-495050400,1),(1309,-481748400,2),(1309,-431546400,1),(1309,-418244400,2),(1309,-400096800,1),(1309,-386794800,2),(1309,-368647200,1),(1309,-355345200,2),(1309,-337197600,1),(1309,-323895600,2),(1309,-242244000,1),(1309,-226522800,2),(1309,-210794400,1),(1309,-195073200,2),(1309,-179344800,1),(1309,-163623600,2),(1309,-147895200,1),(1309,-131569200,2),(1309,-116445600,1),(1309,-100119600,2),(1309,-84391200,1),(1309,-68670000,2),(1309,-52941600,1),(1309,-37220400,2),(1309,-21492000,1),(1309,-5770800,2),(1309,9957600,1),(1309,25678800,2),(1309,41407200,1),(1309,57733200,2),(1309,73461600,1),(1309,89182801,2),(1309,104911202,1),(1309,120632402,2),(1309,136360803,1),(1309,152082003,2),(1309,167810404,1),(1309,183531604,2),(1309,199260005,1),(1309,215586005,2),(1309,230709606,1),(1309,247035606,2),(1309,262764007,1),(1309,278485207,2),(1309,294213608,1),(1309,309934808,2),(1309,325663209,1),(1309,341384409,2),(1309,357112809,1),(1309,372834010,2),(1309,388562410,1),(1309,404888411,2),(1309,420012011,1),(1309,436338012,2),(1309,452066412,1),(1309,467787612,2),(1309,483516012,1),(1309,499237213,2),(1309,514965613,1),(1309,530686813,2),(1309,544600813,1),(1309,562136413,2),(1309,576050414,1),(1309,594190814,2),(1309,607500014,1),(1309,625640414,2),(1309,638949615,1),(1309,657090015,2),(1309,671004016,1),(1309,688539616,2),(1309,702453616,1),(1309,719989217,2),(1309,733903217,1),(1309,752043618,2),(1309,765352818,1),(1309,783493219,2),(1309,796802419,1),(1309,814942819,2),(1309,828856820,1),(1309,846392420,2),(1309,860306420,1),(1309,877842021,2),(1309,891756021,1),(1309,909291621,2),(1309,923205622,1),(1309,941346022,2),(1309,954655222,1),(1309,972795622,2),(1309,986104822,1),(1309,1004245222,2),(1309,1018159222,1),(1309,1035694822,2),(1309,1049608822,1),(1309,1067144422,2),(1309,1081058422,1),(1309,1099198822,2),(1309,1112508022,1),(1309,1130648422,2),(1309,1143957623,1),(1309,1162098023,2),(1309,1173592823,1),(1309,1194152423,2),(1309,1205042423,1),(1309,1225602023,2),(1309,1236492024,1),(1309,1257051624,2),(1309,1268546424,1),(1309,1289106024,2),(1309,1299996024,1),(1309,1320555624,2),(1309,1331445624,1),(1309,1352005225,2),(1309,1362895225,1),(1309,1383454825,2),(1309,1394344825,1),(1309,1414904425,2),(1309,1425794425,1),(1309,1446354026,2),(1309,1457848826,1),(1309,1478408426,2),(1309,1489298427,1),(1309,1509858027,2),(1309,1520748027,1),(1309,1541307627,2),(1309,1552197627,1),(1309,1572757227,2),(1309,1583647227,1),(1309,1604206827,2),(1309,1615701627,1),(1309,1636261227,2),(1309,1647151227,1),(1309,1667710827,2),(1309,1678600827,1),(1309,1699160427,2),(1309,1710050427,1),(1309,1730610027,2),(1309,1741500027,1),(1309,1762059627,2),(1309,1772949627,1),(1309,1793509227,2),(1309,1805004027,1),(1309,1825563627,2),(1309,1836453627,1),(1309,1857013227,2),(1309,1867903227,1),(1309,1888462827,2),(1309,1899352827,1),(1309,1919912427,2),(1309,1930802427,1),(1309,1951362027,2),(1309,1962856827,1),(1309,1983416427,2),(1309,1994306427,1),(1309,2014866027,2),(1309,2025756027,1),(1309,2046315627,2),(1309,2057205627,1),(1309,2077765227,2),(1309,2088655227,1),(1309,2109214827,2),(1309,2120104827,1),(1309,2140664427,2),(1310,-1402813824,2),(1310,-1311534000,1),(1310,-1300996800,2),(1310,-933534000,1),(1310,-925675200,2),(1310,-902084400,1),(1310,-893620800,2),(1310,-870030000,1),(1310,-862171200,2),(1310,-775681200,1),(1310,-767822400,2),(1310,-744231600,1),(1310,-736372800,2),(1310,-144702000,1),(1310,-134251200,2),(1310,-113425200,1),(1310,-102542400,2),(1310,-86295600,1),(1310,-72907200,2),(1310,-54154800,1),(1310,-41457600,2),(1310,-21495600,1),(1310,-5774400,2),(1310,9954000,1),(1310,25675200,2),(1310,41403600,1),(1310,57729600,2),(1310,73458000,1),(1310,87364801,2),(1310,104907602,1),(1310,118900802,2),(1310,136357203,1),(1310,150436803,2),(1310,167806804,1),(1310,183528004,2),(1310,199256405,1),(1310,215582405,2),(1310,230706006,1),(1310,247032006,2),(1310,263365207,1),(1310,276667207,2),(1310,290581208,1),(1310,308721608,2),(1310,322030809,1),(1310,340171209,2),(1310,358318809,1),(1310,371620810,2),(1310,389768410,1),(1310,403070411,2),(1310,421218011,1),(1310,434520012,2),(1310,452667612,1),(1310,466574412,2),(1310,484117212,1),(1310,498024013,2),(1310,511333213,1),(1310,529473613,2),(1310,542782813,1),(1310,560923213,2),(1310,574837214,1),(1310,592372814,2),(1310,606286814,1),(1310,623822414,2),(1310,638946015,1),(1310,655876815,2),(1310,671000416,1),(1310,687330016,3),(1310,702450016,1),(1310,718779617,3),(1310,733899617,1),(1310,750229218,3),(1310,765349218,1),(1310,781678819,3),(1310,796798819,1),(1310,813128419,3),(1310,828853220,1),(1310,844578020,3),(1310,860302820,1),(1310,876632421,3),(1310,891147621,4),(1310,909291621,3),(1310,922597222,4),(1310,941346022,3),(1310,954651622,4),(1310,972795622,3),(1310,986101222,4),(1310,1004245222,3),(1310,1018155622,4),(1310,1035694822,3),(1310,1049605222,4),(1310,1067144422,3),(1310,1080450022,4),(1310,1162098023,3),(1310,1173589223,4),(1310,1193547623,3),(1310,1205643623,4),(1310,1224997223,3),(1310,1236488424,4),(1310,1256446824,3),(1310,1268542824,4),(1310,1288501224,3),(1310,1300597224,4),(1310,1321160424,3),(1310,1333256424,4),(1310,1352005225,3),(1310,1362891625,4),(1310,1383454825,3),(1310,1394341225,4),(1310,1414904425,3),(1310,1425790825,4),(1310,1446354026,3),(1310,1457845226,4),(1310,1478408426,3),(1310,1489294827,4),(1310,1509858027,3),(1310,1520744427,4),(1310,1541307627,3),(1310,1552194027,4),(1310,1572757227,3),(1310,1583643627,4),(1310,1604206827,3),(1310,1615698027,4),(1310,1636261227,3),(1310,1647147627,4),(1310,1667710827,3),(1310,1678597227,4),(1310,1699160427,3),(1310,1710046827,4),(1310,1730610027,3),(1310,1741496427,4),(1310,1762059627,3),(1310,1772946027,4),(1310,1793509227,3),(1310,1805000427,4),(1310,1825563627,3),(1310,1836450027,4),(1310,1857013227,3),(1310,1867899627,4),(1310,1888462827,3),(1310,1899349227,4),(1310,1919912427,3),(1310,1930798827,4),(1310,1951362027,3),(1310,1962853227,4),(1310,1983416427,3),(1310,1994302827,4),(1310,2014866027,3),(1310,2025752427,4),(1310,2046315627,3),(1310,2057202027,4),(1310,2077765227,3),(1310,2088651627,4),(1310,2109214827,3),(1310,2120101227,4),(1310,2140664427,3),(1311,-1514739600,1),(1311,-1343066400,2),(1311,-1234807200,1),(1311,-1220292000,2),(1311,-1207159200,1),(1311,-1191344400,2),(1311,-873828000,1),(1311,-661539600,3),(1311,28800,1),(1311,828867620,4),(1311,846403220,1),(1311,860317220,4),(1311,877852821,1),(1311,891766821,4),(1311,909302421,1),(1312,-1633276800,0),(1312,-1615136400,1),(1312,-1601827200,0),(1312,-1583686800,1),(1312,-900259200,0),(1312,-891795600,1),(1312,-880214400,2),(1312,-769395600,3),(1312,-765392400,1),(1312,-747244800,0),(1312,-733942800,1),(1312,-715795200,0),(1312,-702493200,1),(1312,-684345600,0),(1312,-671043600,1),(1312,-652896000,0),(1312,-639594000,1),(1312,-620841600,0),(1312,-608144400,1),(1312,-589392000,0),(1312,-576090000,1),(1312,-557942400,0),(1312,-544640400,1),(1312,-526492800,0),(1312,-513190800,1),(1312,-495043200,0),(1312,-481741200,1),(1312,-463593600,4),(1312,-386787600,1),(1312,-368640000,4),(1312,-21488400,5),(1312,-5767200,4),(1312,9961200,5),(1312,25682400,4),(1312,1143961223,5),(1312,1162101623,4),(1312,1173596423,5),(1312,1194156023,4),(1312,1205046023,5),(1312,1225605623,4),(1312,1236495624,5),(1312,1257055224,4),(1312,1268550024,5),(1312,1289109624,4),(1312,1299999624,5),(1312,1320559224,4),(1312,1331449224,5),(1312,1352008825,4),(1312,1362898825,5),(1312,1383458425,4),(1312,1394348425,5),(1312,1414908025,4),(1312,1425798025,5),(1312,1446357626,4),(1312,1457852426,5),(1312,1478412026,4),(1312,1489302027,5),(1312,1509861627,4),(1312,1520751627,5),(1312,1541311227,4),(1312,1552201227,5),(1312,1572760827,4),(1312,1583650827,5),(1312,1604210427,4),(1312,1615705227,5),(1312,1636264827,4),(1312,1647154827,5),(1312,1667714427,4),(1312,1678604427,5),(1312,1699164027,4),(1312,1710054027,5),(1312,1730613627,4),(1312,1741503627,5),(1312,1762063227,4),(1312,1772953227,5),(1312,1793512827,4),(1312,1805007627,5),(1312,1825567227,4),(1312,1836457227,5),(1312,1857016827,4),(1312,1867906827,5),(1312,1888466427,4),(1312,1899356427,5),(1312,1919916027,4),(1312,1930806027,5),(1312,1951365627,4),(1312,1962860427,5),(1312,1983420027,4),(1312,1994310027,5),(1312,2014869627,4),(1312,2025759627,5),(1312,2046319227,4),(1312,2057209227,5),(1312,2077768827,4),(1312,2088658827,5),(1312,2109218427,4),(1312,2120108427,5),(1312,2140668027,4),(1313,-1633276800,0),(1313,-1615136400,1),(1313,-1601827200,0),(1313,-1583686800,1),(1313,-880214400,2),(1313,-769395600,3),(1313,-765392400,1),(1313,-715795200,0),(1313,-702493200,1),(1313,-684345600,0),(1313,-671043600,1),(1313,-652896000,0),(1313,-639594000,1),(1313,-620841600,0),(1313,-608144400,1),(1313,-589392000,0),(1313,-576090000,1),(1313,-557942400,0),(1313,-544640400,1),(1313,-526492800,0),(1313,-513190800,1),(1313,-495043200,0),(1313,-481741200,1),(1313,-463593600,0),(1313,-447267600,1),(1313,-431539200,0),(1313,-415818000,1),(1313,-400089600,0),(1313,-386787600,1),(1313,-368640000,0),(1313,-355338000,1),(1313,-337190400,0),(1313,-321469200,1),(1313,-305740800,0),(1313,-289414800,1),(1313,-273686400,0),(1313,-257965200,1),(1313,-242236800,4),(1313,-195066000,1),(1313,-84384000,0),(1313,-68662800,1),(1313,-52934400,0),(1313,-37213200,1),(1313,-21484800,0),(1313,-5763600,1),(1313,9964800,0),(1313,25686000,1),(1313,41414400,0),(1313,57740400,1),(1313,73468800,0),(1313,89190001,1),(1313,104918402,0),(1313,120639602,1),(1313,126691203,0),(1313,152089203,1),(1313,162374404,0),(1313,183538804,1),(1313,199267205,0),(1313,215593205,1),(1313,230716806,0),(1313,247042806,1),(1313,262771207,0),(1313,278492407,1),(1313,294220808,0),(1313,309942008,1),(1313,325670409,0),(1313,341391609,1),(1313,357120009,0),(1313,372841210,1),(1313,388569610,0),(1313,404895611,1),(1313,420019211,0),(1313,436345212,1),(1313,452073612,0),(1313,467794812,1),(1313,483523212,0),(1313,499244413,1),(1313,514972813,0),(1313,530694013,1),(1313,544608013,0),(1313,562143613,1),(1313,576057614,0),(1313,594198014,1),(1313,607507214,0),(1313,625647614,1),(1313,638956815,0),(1313,657097215,1),(1313,671011216,0),(1313,688546816,4),(1313,1143961223,0),(1313,1162105223,1),(1313,1173600023,0),(1313,1194159623,1),(1313,1205049623,0),(1313,1225609223,1),(1313,1236499224,0),(1313,1257058824,1),(1313,1268553624,0),(1313,1289113224,1),(1313,1300003224,0),(1313,1320562824,1),(1313,1331452824,0),(1313,1352012425,1),(1313,1362902425,0),(1313,1383462025,1),(1313,1394352025,0),(1313,1414911625,1),(1313,1425801625,0),(1313,1446361226,1),(1313,1457856026,0),(1313,1478415626,1),(1313,1489305627,0),(1313,1509865227,1),(1313,1520755227,0),(1313,1541314827,1),(1313,1552204827,0),(1313,1572764427,1),(1313,1583654427,0),(1313,1604214027,1),(1313,1615708827,0),(1313,1636268427,1),(1313,1647158427,0),(1313,1667718027,1),(1313,1678608027,0),(1313,1699167627,1),(1313,1710057627,0),(1313,1730617227,1),(1313,1741507227,0),(1313,1762066827,1),(1313,1772956827,0),(1313,1793516427,1),(1313,1805011227,0),(1313,1825570827,1),(1313,1836460827,0),(1313,1857020427,1),(1313,1867910427,0),(1313,1888470027,1),(1313,1899360027,0),(1313,1919919627,1),(1313,1930809627,0),(1313,1951369227,1),(1313,1962864027,0),(1313,1983423627,1),(1313,1994313627,0),(1313,2014873227,1),(1313,2025763227,0),(1313,2046322827,1),(1313,2057212827,0),(1313,2077772427,1),(1313,2088662427,0),(1313,2109222027,1),(1313,2120112027,0),(1313,2140671627,1),(1314,-1633276800,0),(1314,-1615136400,1),(1314,-1601827200,0),(1314,-1583686800,1),(1314,-880214400,2),(1314,-769395600,3),(1314,-765392400,1),(1314,-589392000,0),(1314,-576090000,1),(1314,-495043200,0),(1314,-481741200,1),(1314,-463593600,0),(1314,-450291600,1),(1314,-431539200,0),(1314,-418237200,1),(1314,-400089600,0),(1314,-386787600,1),(1314,-368640000,0),(1314,-355338000,1),(1314,-337190400,0),(1314,-323888400,1),(1314,-305740800,0),(1314,-292438800,1),(1314,-273686400,4),(1314,-21488400,5),(1314,-5767200,4),(1314,9961200,5),(1314,25682400,4),(1314,41410800,5),(1314,57736800,4),(1314,73465200,5),(1314,89186401,4),(1314,104914802,5),(1314,120636002,4),(1314,126687603,0),(1314,152089203,4),(1314,162370804,5),(1314,183535204,4),(1314,1143961223,5),(1314,1162101623,4),(1314,1173596423,5),(1314,1194156023,4),(1314,1205046023,5),(1314,1225605623,4),(1314,1236495624,5),(1314,1257055224,4),(1314,1268550024,5),(1314,1289109624,4),(1314,1299999624,5),(1314,1320559224,4),(1314,1331449224,5),(1314,1352008825,4),(1314,1362898825,5),(1314,1383458425,4),(1314,1394348425,5),(1314,1414908025,4),(1314,1425798025,5),(1314,1446357626,4),(1314,1457852426,5),(1314,1478412026,4),(1314,1489302027,5),(1314,1509861627,4),(1314,1520751627,5),(1314,1541311227,4),(1314,1552201227,5),(1314,1572760827,4),(1314,1583650827,5),(1314,1604210427,4),(1314,1615705227,5),(1314,1636264827,4),(1314,1647154827,5),(1314,1667714427,4),(1314,1678604427,5),(1314,1699164027,4),(1314,1710054027,5),(1314,1730613627,4),(1314,1741503627,5),(1314,1762063227,4),(1314,1772953227,5),(1314,1793512827,4),(1314,1805007627,5),(1314,1825567227,4),(1314,1836457227,5),(1314,1857016827,4),(1314,1867906827,5),(1314,1888466427,4),(1314,1899356427,5),(1314,1919916027,4),(1314,1930806027,5),(1314,1951365627,4),(1314,1962860427,5),(1314,1983420027,4),(1314,1994310027,5),(1314,2014869627,4),(1314,2025759627,5),(1314,2046319227,4),(1314,2057209227,5),(1314,2077768827,4),(1314,2088658827,5),(1314,2109218427,4),(1314,2120108427,5),(1314,2140668027,4),(1315,-1633276800,0),(1315,-1615136400,1),(1315,-1601827200,0),(1315,-1583686800,1),(1315,-880214400,2),(1315,-769395600,3),(1315,-765392400,1),(1315,-462996000,0),(1315,-450291600,1),(1315,-431539200,0),(1315,-418237200,1),(1315,-400089600,0),(1315,-386787600,1),(1315,-368640000,0),(1315,-355338000,1),(1315,-337190400,0),(1315,-323888400,1),(1315,-305740800,0),(1315,-292438800,1),(1315,-273686400,0),(1315,-257965200,1),(1315,-242236800,0),(1315,-226515600,1),(1315,-210787200,0),(1315,-195066000,1),(1315,-179337600,0),(1315,-163616400,1),(1315,-147888000,4),(1315,-100112400,1),(1315,-84384000,0),(1315,-68662800,1),(1315,-52934400,0),(1315,-37213200,1),(1315,-21484800,0),(1315,-5763600,1),(1315,9964800,0),(1315,25686000,1),(1315,41414400,0),(1315,57740400,1),(1315,73468800,0),(1315,89190001,1),(1315,104918402,0),(1315,120639602,1),(1315,126691203,0),(1315,152089203,1),(1315,162374404,0),(1315,183538804,1),(1315,199267205,0),(1315,215593205,1),(1315,230716806,0),(1315,247042806,4),(1315,1143961223,0),(1315,1162105223,1),(1315,1173600023,0),(1315,1194159623,4),(1315,1205046023,5),(1315,1225605623,4),(1315,1236495624,5),(1315,1257055224,4),(1315,1268550024,5),(1315,1289109624,4),(1315,1299999624,5),(1315,1320559224,4),(1315,1331449224,5),(1315,1352008825,4),(1315,1362898825,5),(1315,1383458425,4),(1315,1394348425,5),(1315,1414908025,4),(1315,1425798025,5),(1315,1446357626,4),(1315,1457852426,5),(1315,1478412026,4),(1315,1489302027,5),(1315,1509861627,4),(1315,1520751627,5),(1315,1541311227,4),(1315,1552201227,5),(1315,1572760827,4),(1315,1583650827,5),(1315,1604210427,4),(1315,1615705227,5),(1315,1636264827,4),(1315,1647154827,5),(1315,1667714427,4),(1315,1678604427,5),(1315,1699164027,4),(1315,1710054027,5),(1315,1730613627,4),(1315,1741503627,5),(1315,1762063227,4),(1315,1772953227,5),(1315,1793512827,4),(1315,1805007627,5),(1315,1825567227,4),(1315,1836457227,5),(1315,1857016827,4),(1315,1867906827,5),(1315,1888466427,4),(1315,1899356427,5),(1315,1919916027,4),(1315,1930806027,5),(1315,1951365627,4),(1315,1962860427,5),(1315,1983420027,4),(1315,1994310027,5),(1315,2014869627,4),(1315,2025759627,5),(1315,2046319227,4),(1315,2057209227,5),(1315,2077768827,4),(1315,2088658827,5),(1315,2109218427,4),(1315,2120108427,5),(1315,2140668027,4),(1316,-1633276800,0),(1316,-1615136400,1),(1316,-1601827200,0),(1316,-1583686800,1),(1316,-880214400,2),(1316,-769395600,3),(1316,-765392400,1),(1316,-747244800,0),(1316,-733942800,1),(1316,-526492800,0),(1316,-513190800,1),(1316,-495043200,0),(1316,-481741200,1),(1316,-462996000,0),(1316,-450291600,1),(1316,-431539200,0),(1316,-418237200,1),(1316,-400089600,0),(1316,-386787600,1),(1316,-368640000,0),(1316,-355338000,1),(1316,-337190400,0),(1316,-323888400,1),(1316,-305740800,0),(1316,-289414800,1),(1316,-273686400,0),(1316,-260989200,1),(1316,-242236800,0),(1316,-226515600,1),(1316,-210787200,0),(1316,-195066000,1),(1316,-179337600,4),(1316,-21488400,5),(1316,-5767200,4),(1316,9961200,5),(1316,25682400,4),(1316,1143961223,0),(1316,1162105223,1),(1316,1173600023,0),(1316,1194159623,1),(1316,1205049623,0),(1316,1225609223,1),(1316,1236499224,0),(1316,1257058824,1),(1316,1268553624,0),(1316,1289113224,1),(1316,1300003224,0),(1316,1320562824,1),(1316,1331452824,0),(1316,1352012425,1),(1316,1362902425,0),(1316,1383462025,1),(1316,1394352025,0),(1316,1414911625,1),(1316,1425801625,0),(1316,1446361226,1),(1316,1457856026,0),(1316,1478415626,1),(1316,1489305627,0),(1316,1509865227,1),(1316,1520755227,0),(1316,1541314827,1),(1316,1552204827,0),(1316,1572764427,1),(1316,1583654427,0),(1316,1604214027,1),(1316,1615708827,0),(1316,1636268427,1),(1316,1647158427,0),(1316,1667718027,1),(1316,1678608027,0),(1316,1699167627,1),(1316,1710057627,0),(1316,1730617227,1),(1316,1741507227,0),(1316,1762066827,1),(1316,1772956827,0),(1316,1793516427,1),(1316,1805011227,0),(1316,1825570827,1),(1316,1836460827,0),(1316,1857020427,1),(1316,1867910427,0),(1316,1888470027,1),(1316,1899360027,0),(1316,1919919627,1),(1316,1930809627,0),(1316,1951369227,1),(1316,1962864027,0),(1316,1983423627,1),(1316,1994313627,0),(1316,2014873227,1),(1316,2025763227,0),(1316,2046322827,1),(1316,2057212827,0),(1316,2077772427,1),(1316,2088662427,0),(1316,2109222027,1),(1316,2120112027,0),(1316,2140671627,1),(1317,-1633276800,0),(1317,-1615136400,1),(1317,-1601827200,0),(1317,-1583686800,1),(1317,-880214400,2),(1317,-769395600,3),(1317,-765392400,1),(1317,-495043200,4),(1317,-21488400,5),(1317,-5767200,4),(1317,9961200,5),(1317,25682400,4),(1317,41410800,5),(1317,57736800,4),(1317,73465200,5),(1317,89186401,4),(1317,1143961223,5),(1317,1162101623,4),(1317,1173596423,5),(1317,1194156023,4),(1317,1205046023,5),(1317,1225605623,4),(1317,1236495624,5),(1317,1257055224,4),(1317,1268550024,5),(1317,1289109624,4),(1317,1299999624,5),(1317,1320559224,4),(1317,1331449224,5),(1317,1352008825,4),(1317,1362898825,5),(1317,1383458425,4),(1317,1394348425,5),(1317,1414908025,4),(1317,1425798025,5),(1317,1446357626,4),(1317,1457852426,5),(1317,1478412026,4),(1317,1489302027,5),(1317,1509861627,4),(1317,1520751627,5),(1317,1541311227,4),(1317,1552201227,5),(1317,1572760827,4),(1317,1583650827,5),(1317,1604210427,4),(1317,1615705227,5),(1317,1636264827,4),(1317,1647154827,5),(1317,1667714427,4),(1317,1678604427,5),(1317,1699164027,4),(1317,1710054027,5),(1317,1730613627,4),(1317,1741503627,5),(1317,1762063227,4),(1317,1772953227,5),(1317,1793512827,4),(1317,1805007627,5),(1317,1825567227,4),(1317,1836457227,5),(1317,1857016827,4),(1317,1867906827,5),(1317,1888466427,4),(1317,1899356427,5),(1317,1919916027,4),(1317,1930806027,5),(1317,1951365627,4),(1317,1962860427,5),(1317,1983420027,4),(1317,1994310027,5),(1317,2014869627,4),(1317,2025759627,5),(1317,2046319227,4),(1317,2057209227,5),(1317,2077768827,4),(1317,2088658827,5),(1317,2109218427,4),(1317,2120108427,5),(1317,2140668027,4),(1318,-1633276800,0),(1318,-1615136400,1),(1318,-1601827200,0),(1318,-1583686800,1),(1318,-880214400,2),(1318,-769395600,3),(1318,-765392400,1),(1318,-747244800,0),(1318,-733942800,1),(1318,-526492800,0),(1318,-513190800,1),(1318,-495043200,0),(1318,-481741200,1),(1318,-462996000,0),(1318,-450291600,1),(1318,-431539200,0),(1318,-418237200,1),(1318,-400089600,0),(1318,-386787600,1),(1318,-368640000,0),(1318,-355338000,1),(1318,-337190400,0),(1318,-323888400,1),(1318,-305740800,0),(1318,-289414800,1),(1318,-273686400,0),(1318,-260989200,1),(1318,-242236800,0),(1318,-226515600,1),(1318,-210787200,0),(1318,-195066000,1),(1318,-179337600,4),(1318,-21488400,5),(1318,-5767200,4),(1318,9961200,5),(1318,25682400,4),(1318,1143961223,0),(1318,1162105223,1),(1318,1173600023,0),(1318,1194159623,4),(1318,1205046023,5),(1318,1225605623,4),(1318,1236495624,5),(1318,1257055224,4),(1318,1268550024,5),(1318,1289109624,4),(1318,1299999624,5),(1318,1320559224,4),(1318,1331449224,5),(1318,1352008825,4),(1318,1362898825,5),(1318,1383458425,4),(1318,1394348425,5),(1318,1414908025,4),(1318,1425798025,5),(1318,1446357626,4),(1318,1457852426,5),(1318,1478412026,4),(1318,1489302027,5),(1318,1509861627,4),(1318,1520751627,5),(1318,1541311227,4),(1318,1552201227,5),(1318,1572760827,4),(1318,1583650827,5),(1318,1604210427,4),(1318,1615705227,5),(1318,1636264827,4),(1318,1647154827,5),(1318,1667714427,4),(1318,1678604427,5),(1318,1699164027,4),(1318,1710054027,5),(1318,1730613627,4),(1318,1741503627,5),(1318,1762063227,4),(1318,1772953227,5),(1318,1793512827,4),(1318,1805007627,5),(1318,1825567227,4),(1318,1836457227,5),(1318,1857016827,4),(1318,1867906827,5),(1318,1888466427,4),(1318,1899356427,5),(1318,1919916027,4),(1318,1930806027,5),(1318,1951365627,4),(1318,1962860427,5),(1318,1983420027,4),(1318,1994310027,5),(1318,2014869627,4),(1318,2025759627,5),(1318,2046319227,4),(1318,2057209227,5),(1318,2077768827,4),(1318,2088658827,5),(1318,2109218427,4),(1318,2120108427,5),(1318,2140668027,4),(1319,-1633276800,0),(1319,-1615136400,1),(1319,-1601827200,0),(1319,-1583686800,1),(1319,-880214400,2),(1319,-769395600,3),(1319,-765392400,1),(1319,-747244800,0),(1319,-733942800,1),(1319,-715795200,0),(1319,-702493200,1),(1319,-684345600,0),(1319,-671043600,1),(1319,-652896000,0),(1319,-639594000,1),(1319,-620841600,0),(1319,-608144400,1),(1319,-589392000,0),(1319,-576090000,1),(1319,-557942400,0),(1319,-544640400,1),(1319,-526492800,0),(1319,-513190800,1),(1319,-495043200,0),(1319,-481741200,1),(1319,-463593600,0),(1319,-447267600,1),(1319,-431539200,0),(1319,-415818000,1),(1319,-400089600,0),(1319,-386787600,1),(1319,-368640000,0),(1319,-355338000,1),(1319,-337190400,0),(1319,-323888400,1),(1319,-305740800,0),(1319,-292438800,1),(1319,-273686400,4),(1319,-21488400,5),(1319,-5767200,4),(1319,9961200,5),(1319,25682400,4),(1319,1143961223,0),(1319,1162105223,1),(1319,1173600023,5),(1319,1194156023,4),(1319,1205046023,5),(1319,1225605623,4),(1319,1236495624,5),(1319,1257055224,4),(1319,1268550024,5),(1319,1289109624,4),(1319,1299999624,5),(1319,1320559224,4),(1319,1331449224,5),(1319,1352008825,4),(1319,1362898825,5),(1319,1383458425,4),(1319,1394348425,5),(1319,1414908025,4),(1319,1425798025,5),(1319,1446357626,4),(1319,1457852426,5),(1319,1478412026,4),(1319,1489302027,5),(1319,1509861627,4),(1319,1520751627,5),(1319,1541311227,4),(1319,1552201227,5),(1319,1572760827,4),(1319,1583650827,5),(1319,1604210427,4),(1319,1615705227,5),(1319,1636264827,4),(1319,1647154827,5),(1319,1667714427,4),(1319,1678604427,5),(1319,1699164027,4),(1319,1710054027,5),(1319,1730613627,4),(1319,1741503627,5),(1319,1762063227,4),(1319,1772953227,5),(1319,1793512827,4),(1319,1805007627,5),(1319,1825567227,4),(1319,1836457227,5),(1319,1857016827,4),(1319,1867906827,5),(1319,1888466427,4),(1319,1899356427,5),(1319,1919916027,4),(1319,1930806027,5),(1319,1951365627,4),(1319,1962860427,5),(1319,1983420027,4),(1319,1994310027,5),(1319,2014869627,4),(1319,2025759627,5),(1319,2046319227,4),(1319,2057209227,5),(1319,2077768827,4),(1319,2088658827,5),(1319,2109218427,4),(1319,2120108427,5),(1319,2140668027,4),(1320,-1633276800,0),(1320,-1615136400,1),(1320,-1601827200,0),(1320,-1583686800,1),(1320,-900259200,0),(1320,-891795600,1),(1320,-880214400,2),(1320,-769395600,3),(1320,-765392400,1),(1320,-747244800,0),(1320,-733942800,1),(1320,-715795200,0),(1320,-702493200,1),(1320,-684345600,0),(1320,-671043600,1),(1320,-652896000,0),(1320,-639594000,1),(1320,-620841600,0),(1320,-608144400,1),(1320,-589392000,0),(1320,-576090000,1),(1320,-557942400,0),(1320,-544640400,1),(1320,-526492800,0),(1320,-513190800,1),(1320,-495043200,0),(1320,-481741200,1),(1320,-463593600,4),(1320,-386787600,1),(1320,-368640000,4),(1320,-21488400,5),(1320,-5767200,4),(1320,9961200,5),(1320,25682400,4),(1320,1143961223,5),(1320,1162101623,4),(1320,1173596423,5),(1320,1194156023,4),(1320,1205046023,5),(1320,1225605623,4),(1320,1236495624,5),(1320,1257055224,4),(1320,1268550024,5),(1320,1289109624,4),(1320,1299999624,5),(1320,1320559224,4),(1320,1331449224,5),(1320,1352008825,4),(1320,1362898825,5),(1320,1383458425,4),(1320,1394348425,5),(1320,1414908025,4),(1320,1425798025,5),(1320,1446357626,4),(1320,1457852426,5),(1320,1478412026,4),(1320,1489302027,5),(1320,1509861627,4),(1320,1520751627,5),(1320,1541311227,4),(1320,1552201227,5),(1320,1572760827,4),(1320,1583650827,5),(1320,1604210427,4),(1320,1615705227,5),(1320,1636264827,4),(1320,1647154827,5),(1320,1667714427,4),(1320,1678604427,5),(1320,1699164027,4),(1320,1710054027,5),(1320,1730613627,4),(1320,1741503627,5),(1320,1762063227,4),(1320,1772953227,5),(1320,1793512827,4),(1320,1805007627,5),(1320,1825567227,4),(1320,1836457227,5),(1320,1857016827,4),(1320,1867906827,5),(1320,1888466427,4),(1320,1899356427,5),(1320,1919916027,4),(1320,1930806027,5),(1320,1951365627,4),(1320,1962860427,5),(1320,1983420027,4),(1320,1994310027,5),(1320,2014869627,4),(1320,2025759627,5),(1320,2046319227,4),(1320,2057209227,5),(1320,2077768827,4),(1320,2088658827,5),(1320,2109218427,4),(1320,2120108427,5),(1320,2140668027,4),(1321,-536457600,2),(1321,-147888000,1),(1321,-131558400,2),(1321,294228008,3),(1321,325674009,4),(1321,341395209,3),(1321,357123609,4),(1321,372844810,3),(1321,388573210,4),(1321,404899211,3),(1321,420022811,4),(1321,436348812,3),(1321,452077212,4),(1321,467798412,3),(1321,483526812,4),(1321,499248013,3),(1321,514976413,4),(1321,530697613,3),(1321,544611613,4),(1321,562147213,3),(1321,576061214,4),(1321,594201614,3),(1321,607510814,4),(1321,625651214,3),(1321,638960415,4),(1321,657100815,3),(1321,671014816,4),(1321,688550416,3),(1321,702464416,4),(1321,720000017,3),(1321,733914017,4),(1321,752054418,3),(1321,765363618,4),(1321,783504019,3),(1321,796813219,4),(1321,814953619,3),(1321,828867620,4),(1321,846403220,3),(1321,860317220,4),(1321,877852821,3),(1321,891766821,4),(1321,909302421,3),(1321,923216422,4),(1321,941356822,3),(1321,954666022,4),(1321,972806422,3),(1321,986115622,4),(1321,1004256022,3),(1321,1018170022,4),(1321,1035705622,3),(1321,1049619622,4),(1321,1067155222,3),(1321,1081069222,4),(1321,1099209622,3),(1321,1112518822,4),(1321,1130659222,3),(1321,1143968423,4),(1321,1162108823,3),(1321,1173603623,4),(1321,1194163223,3),(1321,1205053223,4),(1321,1225612823,3),(1321,1236502824,4),(1321,1257062424,3),(1321,1268557224,4),(1321,1289116824,3),(1321,1300006824,4),(1321,1320566424,3),(1321,1331456424,4),(1321,1352016025,3),(1321,1362906025,4),(1321,1383465625,3),(1321,1394355625,4),(1321,1414915225,3),(1321,1425805225,4),(1321,1446364826,3),(1321,1457859626,4),(1321,1478419226,3),(1321,1489309227,4),(1321,1509868827,3),(1321,1520758827,4),(1321,1541318427,3),(1321,1552208427,4),(1321,1572768027,3),(1321,1583658027,4),(1321,1604217627,3),(1321,1615712427,4),(1321,1636272027,3),(1321,1647162027,4),(1321,1667721627,3),(1321,1678611627,4),(1321,1699171227,3),(1321,1710061227,4),(1321,1730620827,3),(1321,1741510827,4),(1321,1762070427,3),(1321,1772960427,4),(1321,1793520027,3),(1321,1805014827,4),(1321,1825574427,3),(1321,1836464427,4),(1321,1857024027,3),(1321,1867914027,4),(1321,1888473627,3),(1321,1899363627,4),(1321,1919923227,3),(1321,1930813227,4),(1321,1951372827,3),(1321,1962867627,4),(1321,1983427227,3),(1321,1994317227,4),(1321,2014876827,3),(1321,2025766827,4),(1321,2046326427,3),(1321,2057216427,4),(1321,2077776027,3),(1321,2088666027,4),(1321,2109225627,3),(1321,2120115627,4),(1321,2140675227,3),(1322,-865296000,5),(1322,-769395600,1),(1322,-765396000,2),(1322,-147898800,3),(1322,-131569200,2),(1322,325666809,4),(1322,341388009,2),(1322,357116409,4),(1322,372837610,2),(1322,388566010,4),(1322,404892011,2),(1322,420015611,4),(1322,436341612,2),(1322,452070012,4),(1322,467791212,2),(1322,483519612,4),(1322,499240813,2),(1322,514969213,4),(1322,530690413,2),(1322,544604413,4),(1322,562140013,2),(1322,576054014,4),(1322,594194414,2),(1322,607503614,4),(1322,625644014,2),(1322,638953215,4),(1322,657093615,2),(1322,671007616,4),(1322,688543216,2),(1322,702457216,4),(1322,719992817,2),(1322,733906817,4),(1322,752047218,2),(1322,765356418,4),(1322,783496819,2),(1322,796806019,4),(1322,814946419,2),(1322,828860420,4),(1322,846396020,2),(1322,860310020,4),(1322,877845621,2),(1322,891759621,4),(1322,909295221,2),(1322,923209222,4),(1322,941349622,6),(1322,954662422,7),(1322,972802822,2),(1322,986108422,4),(1322,1004248822,2),(1322,1018162822,4),(1322,1035698422,2),(1322,1049612422,4),(1322,1067148022,2),(1322,1081062022,4),(1322,1099202422,2),(1322,1112511622,4),(1322,1130652022,2),(1322,1143961223,4),(1322,1162101623,2),(1322,1173596423,4),(1322,1194156023,2),(1322,1205046023,4),(1322,1225605623,2),(1322,1236495624,4),(1322,1257055224,2),(1322,1268550024,4),(1322,1289109624,2),(1322,1299999624,4),(1322,1320559224,2),(1322,1331449224,4),(1322,1352008825,2),(1322,1362898825,4),(1322,1383458425,2),(1322,1394348425,4),(1322,1414908025,2),(1322,1425798025,4),(1322,1446357626,2),(1322,1457852426,4),(1322,1478412026,2),(1322,1489302027,4),(1322,1509861627,2),(1322,1520751627,4),(1322,1541311227,2),(1322,1552201227,4),(1322,1572760827,2),(1322,1583650827,4),(1322,1604210427,2),(1322,1615705227,4),(1322,1636264827,2),(1322,1647154827,4),(1322,1667714427,2),(1322,1678604427,4),(1322,1699164027,2),(1322,1710054027,4),(1322,1730613627,2),(1322,1741503627,4),(1322,1762063227,2),(1322,1772953227,4),(1322,1793512827,2),(1322,1805007627,4),(1322,1825567227,2),(1322,1836457227,4),(1322,1857016827,2),(1322,1867906827,4),(1322,1888466427,2),(1322,1899356427,4),(1322,1919916027,2),(1322,1930806027,4),(1322,1951365627,2),(1322,1962860427,4),(1322,1983420027,2),(1322,1994310027,4),(1322,2014869627,2),(1322,2025759627,4),(1322,2046319227,2),(1322,2057209227,4),(1322,2077768827,2),(1322,2088658827,4),(1322,2109218427,2),(1322,2120108427,4),(1322,2140668027,2),(1323,-1827687170,1),(1323,126687603,2),(1323,152085603,1),(1323,162370804,2),(1323,183535204,1),(1323,199263605,2),(1323,215589605,1),(1323,230713206,2),(1323,247039206,1),(1323,262767607,2),(1323,278488807,1),(1323,294217208,2),(1323,309938408,1),(1323,325666809,2),(1323,341388009,1),(1323,357116409,2),(1323,372837610,1),(1323,388566010,2),(1323,404892011,1),(1323,420015611,2),(1323,436341612,1),(1324,-1567453392,1),(1324,-1233432000,2),(1324,-1222981200,1),(1324,-1205956800,2),(1324,-1194037200,1),(1324,-1172865600,2),(1324,-1162501200,1),(1324,-1141329600,2),(1324,-1130965200,1),(1324,-1109793600,2),(1324,-1099429200,1),(1324,-1078257600,2),(1324,-1067806800,1),(1324,-1046635200,2),(1324,-1036270800,1),(1324,-1015099200,2),(1324,-1004734800,1),(1324,-983563200,2),(1324,-973198800,1),(1324,-952027200,2),(1324,-941576400,1),(1324,-931032000,2),(1324,-900882000,1),(1324,-890337600,2),(1324,-833749200,1),(1324,-827265600,2),(1324,-752274000,1),(1324,-733780800,2),(1324,-197326800,1),(1324,-190843200,2),(1324,-184194000,1),(1324,-164491200,2),(1324,-152658000,1),(1324,-132955200,2),(1324,-121122000,1),(1324,-101419200,2),(1324,-86821200,1),(1324,-71092800,2),(1324,-54766800,1),(1324,-39038400,2),(1324,-23317200,1),(1324,-7588800,4),(1324,128142003,3),(1324,136605603,4),(1324,596948414,3),(1324,605066414,4),(1324,624423614,3),(1324,636516015,1),(1324,657086415,2),(1324,669178816,1),(1324,686721616,3),(1324,699415216,4),(1324,719377217,3),(1324,731469617,4),(1324,938919622,2),(1324,952052422,4),(1324,1198983623,3),(1324,1205632823,4),(1325,-880207200,1),(1325,-769395600,2),(1325,-765385200,0),(1325,-21477600,3),(1325,-5756400,0),(1325,9972000,3),(1325,25693200,0),(1325,41421600,3),(1325,57747600,0),(1325,73476000,3),(1325,89197201,0),(1325,104925602,3),(1325,120646802,0),(1325,126698403,3),(1325,152096403,0),(1325,162381604,3),(1325,183546004,0),(1325,199274405,3),(1325,215600405,0),(1325,230724006,3),(1325,247050006,0),(1325,262778407,3),(1325,278499607,0),(1325,294228008,3),(1325,309949208,0),(1325,325677609,4),(1325,341402409,0),(1325,357127209,3),(1325,372848410,0),(1325,388576810,3),(1325,404902811,0),(1325,420026411,3),(1325,436352412,5),(1325,439030812,7),(1325,452084412,6),(1325,467805612,7),(1325,483534012,6),(1325,499255213,7),(1325,514983613,6),(1325,530704813,7),(1325,544618813,6),(1325,562154413,7),(1325,576068414,6),(1325,594208814,7),(1325,607518014,6),(1325,625658414,7),(1325,638967615,6),(1325,657108015,7),(1325,671022016,6),(1325,688557616,7),(1325,702471616,6),(1325,720007217,7),(1325,733921217,6),(1325,752061618,7),(1325,765370818,6),(1325,783511219,7),(1325,796820419,6),(1325,814960819,7),(1325,828874820,6),(1325,846410420,7),(1325,860324420,6),(1325,877860021,7),(1325,891774021,6),(1325,909309621,7),(1325,923223622,6),(1325,941364022,7),(1325,954673222,6),(1325,972813622,7),(1325,986122822,6),(1325,1004263222,7),(1325,1018177222,6),(1325,1035712822,7),(1325,1049626822,6),(1325,1067162422,7),(1325,1081076422,6),(1325,1099216822,7),(1325,1112526022,6),(1325,1130666422,7),(1325,1143975623,6),(1325,1162116023,7),(1325,1173610823,6),(1325,1194170423,7),(1325,1205060423,6),(1325,1225620023,7),(1325,1236510024,6),(1325,1257069624,7),(1325,1268564424,6),(1325,1289124024,7),(1325,1300014024,6),(1325,1320573624,7),(1325,1331463624,6),(1325,1352023225,7),(1325,1362913225,6),(1325,1383472825,7),(1325,1394362825,6),(1325,1414922425,7),(1325,1425812425,6),(1325,1446372026,7),(1325,1457866826,6),(1325,1478426426,7),(1325,1489316427,6),(1325,1509876027,7),(1325,1520766027,6),(1325,1541325627,7),(1325,1552215627,6),(1325,1572775227,7),(1325,1583665227,6),(1325,1604224827,7),(1325,1615719627,6),(1325,1636279227,7),(1325,1647169227,6),(1325,1667728827,7),(1325,1678618827,6),(1325,1699178427,7),(1325,1710068427,6),(1325,1730628027,7),(1325,1741518027,6),(1325,1762077627,7),(1325,1772967627,6),(1325,1793527227,7),(1325,1805022027,6),(1325,1825581627,7),(1325,1836471627,6),(1325,1857031227,7),(1325,1867921227,6),(1325,1888480827,7),(1325,1899370827,6),(1325,1919930427,7),(1325,1930820427,6),(1325,1951380027,7),(1325,1962874827,6),(1325,1983434427,7),(1325,1994324427,6),(1325,2014884027,7),(1325,2025774027,6),(1325,2046333627,7),(1325,2057223627,6),(1325,2077783227,7),(1325,2088673227,6),(1325,2109232827,7),(1325,2120122827,6),(1325,2140682427,7),(1326,-1633276800,0),(1326,-1615136400,1),(1326,-1601827200,0),(1326,-1583686800,1),(1326,-1535904000,0),(1326,-1525280400,1),(1326,-905097600,0),(1326,-891795600,1),(1326,-880214400,2),(1326,-769395600,3),(1326,-765392400,1),(1326,-757360800,0),(1326,-744224400,1),(1326,-715795200,0),(1326,-608144400,1),(1326,-589392000,0),(1326,-576090000,1),(1326,-557942400,0),(1326,-544640400,1),(1326,-526492800,0),(1326,-513190800,1),(1326,-495043200,0),(1326,-481741200,1),(1326,-463593600,0),(1326,-450291600,1),(1326,-431539200,0),(1326,-415818000,1),(1326,-400089600,0),(1326,-384368400,1),(1326,-368640000,0),(1326,-352918800,1),(1326,-337190400,0),(1326,-321469200,1),(1326,-305740800,0),(1326,-289414800,1),(1326,-273686400,0),(1326,-266432400,4),(1326,-52938000,5),(1326,-37216800,4),(1326,-21488400,5),(1326,-5767200,4),(1326,9961200,5),(1326,25682400,4),(1326,41410800,5),(1326,57736800,4),(1326,73465200,5),(1326,89186401,4),(1326,104914802,5),(1326,120636002,4),(1326,126687603,0),(1326,152089203,4),(1326,162370804,5),(1326,183535204,4),(1326,199263605,5),(1326,215589605,4),(1326,230713206,5),(1326,247039206,4),(1326,262767607,5),(1326,278488807,4),(1326,294217208,5),(1326,309938408,4),(1326,325666809,5),(1326,341388009,4),(1326,357116409,5),(1326,372837610,4),(1326,388566010,5),(1326,404892011,4),(1326,420015611,5),(1326,436341612,4),(1326,452070012,5),(1326,467791212,4),(1326,483519612,5),(1326,499240813,4),(1326,514969213,5),(1326,530690413,4),(1326,544604413,5),(1326,562140013,4),(1326,576054014,5),(1326,594194414,4),(1326,607503614,5),(1326,625644014,4),(1326,638953215,5),(1326,657093615,4),(1326,671007616,5),(1326,688543216,4),(1326,702457216,5),(1326,719992817,4),(1326,733906817,5),(1326,752047218,4),(1326,765356418,5),(1326,783496819,4),(1326,796806019,5),(1326,814946419,4),(1326,828860420,5),(1326,846396020,4),(1326,860310020,5),(1326,877845621,4),(1326,891759621,5),(1326,909295221,4),(1326,923209222,5),(1326,941349622,4),(1326,954658822,5),(1326,972799222,4),(1326,986108422,5),(1326,1004248822,4),(1326,1018162822,5),(1326,1035698422,4),(1326,1049612422,5),(1326,1067148022,4),(1326,1081062022,5),(1326,1099202422,4),(1326,1112511622,5),(1326,1130652022,4),(1326,1143961223,5),(1326,1162101623,4),(1326,1173596423,5),(1326,1194156023,4),(1326,1205046023,5),(1326,1225605623,4),(1326,1236495624,5),(1326,1257055224,4),(1326,1268550024,5),(1326,1289109624,4),(1326,1299999624,5),(1326,1320559224,4),(1326,1331449224,5),(1326,1352008825,4),(1326,1362898825,5),(1326,1383458425,4),(1326,1394348425,5),(1326,1414908025,4),(1326,1425798025,5),(1326,1446357626,4),(1326,1457852426,5),(1326,1478412026,4),(1326,1489302027,5),(1326,1509861627,4),(1326,1520751627,5),(1326,1541311227,4),(1326,1552201227,5),(1326,1572760827,4),(1326,1583650827,5),(1326,1604210427,4),(1326,1615705227,5),(1326,1636264827,4),(1326,1647154827,5),(1326,1667714427,4),(1326,1678604427,5),(1326,1699164027,4),(1326,1710054027,5),(1326,1730613627,4),(1326,1741503627,5),(1326,1762063227,4),(1326,1772953227,5),(1326,1793512827,4),(1326,1805007627,5),(1326,1825567227,4),(1326,1836457227,5),(1326,1857016827,4),(1326,1867906827,5),(1326,1888466427,4),(1326,1899356427,5),(1326,1919916027,4),(1326,1930806027,5),(1326,1951365627,4),(1326,1962860427,5),(1326,1983420027,4),(1326,1994310027,5),(1326,2014869627,4),(1326,2025759627,5),(1326,2046319227,4),(1326,2057209227,5),(1326,2077768827,4),(1326,2088658827,5),(1326,2109218427,4),(1326,2120108427,5),(1326,2140668027,4),(1327,-1633276800,0),(1327,-1615136400,1),(1327,-1601827200,0),(1327,-1583686800,1),(1327,-880214400,2),(1327,-769395600,3),(1327,-765392400,1),(1327,-52934400,0),(1327,-37213200,1),(1327,-21484800,0),(1327,-5763600,1),(1327,9964800,0),(1327,25686000,1),(1327,41414400,0),(1327,57740400,1),(1327,73468800,0),(1327,89190001,1),(1327,104918402,0),(1327,120639602,1),(1327,126691203,0),(1327,152089203,1),(1327,162374404,0),(1327,183538804,1),(1327,199267205,0),(1327,215593205,1),(1327,230716806,0),(1327,247042806,1),(1327,262771207,0),(1327,278492407,1),(1327,294220808,0),(1327,309942008,1),(1327,325670409,0),(1327,341391609,1),(1327,357120009,0),(1327,372841210,1),(1327,388569610,0),(1327,404895611,1),(1327,420019211,0),(1327,436345212,1),(1327,452073612,0),(1327,467794812,1),(1327,483523212,0),(1327,499244413,1),(1327,514972813,0),(1327,530694013,1),(1327,544608013,0),(1327,562143613,1),(1327,576057614,0),(1327,594198014,1),(1327,607507214,0),(1327,625647614,1),(1327,638956815,0),(1327,657097215,1),(1327,671011216,0),(1327,688546816,1),(1327,702460816,0),(1327,719996417,1),(1327,733910417,0),(1327,752050818,1),(1327,765360018,0),(1327,783500419,1),(1327,796809619,0),(1327,814950019,1),(1327,828864020,0),(1327,846399620,1),(1327,860313620,0),(1327,877849221,1),(1327,891763221,0),(1327,909298821,1),(1327,923212822,0),(1327,941353222,1),(1327,954662422,0),(1327,972802822,5),(1327,986108422,4),(1327,1004248822,5),(1327,1018162822,4),(1327,1035698422,5),(1327,1049612422,4),(1327,1067148022,5),(1327,1081062022,4),(1327,1099202422,5),(1327,1112511622,4),(1327,1130652022,5),(1327,1143961223,4),(1327,1162101623,5),(1327,1173596423,4),(1327,1194156023,5),(1327,1205046023,4),(1327,1225605623,5),(1327,1236495624,4),(1327,1257055224,5),(1327,1268550024,4),(1327,1289109624,5),(1327,1299999624,4),(1327,1320559224,5),(1327,1331449224,4),(1327,1352008825,5),(1327,1362898825,4),(1327,1383458425,5),(1327,1394348425,4),(1327,1414908025,5),(1327,1425798025,4),(1327,1446357626,5),(1327,1457852426,4),(1327,1478412026,5),(1327,1489302027,4),(1327,1509861627,5),(1327,1520751627,4),(1327,1541311227,5),(1327,1552201227,4),(1327,1572760827,5),(1327,1583650827,4),(1327,1604210427,5),(1327,1615705227,4),(1327,1636264827,5),(1327,1647154827,4),(1327,1667714427,5),(1327,1678604427,4),(1327,1699164027,5),(1327,1710054027,4),(1327,1730613627,5),(1327,1741503627,4),(1327,1762063227,5),(1327,1772953227,4),(1327,1793512827,5),(1327,1805007627,4),(1327,1825567227,5),(1327,1836457227,4),(1327,1857016827,5),(1327,1867906827,4),(1327,1888466427,5),(1327,1899356427,4),(1327,1919916027,5),(1327,1930806027,4),(1327,1951365627,5),(1327,1962860427,4),(1327,1983420027,5),(1327,1994310027,4),(1327,2014869627,5),(1327,2025759627,4),(1327,2046319227,5),(1327,2057209227,4),(1327,2077768827,5),(1327,2088658827,4),(1327,2109218427,5),(1327,2120108427,4),(1327,2140668027,5),(1328,-1633276800,0),(1328,-1615136400,1),(1328,-1601827200,0),(1328,-1583686800,1),(1328,-880214400,2),(1328,-769395600,3),(1328,-765392400,1),(1328,-715795200,0),(1328,-702493200,1),(1328,-684345600,0),(1328,-671043600,1),(1328,-652896000,0),(1328,-639594000,1),(1328,-620841600,0),(1328,-608144400,1),(1328,-589392000,0),(1328,-576090000,1),(1328,-557942400,0),(1328,-544640400,1),(1328,-526492800,0),(1328,-513190800,1),(1328,-495043200,0),(1328,-481741200,1),(1328,-463593600,0),(1328,-447267600,1),(1328,-431539200,0),(1328,-415818000,1),(1328,-400089600,0),(1328,-386787600,1),(1328,-368640000,0),(1328,-355338000,1),(1328,-337190400,0),(1328,-321469200,1),(1328,-305740800,0),(1328,-289414800,1),(1328,-273686400,0),(1328,-257965200,1),(1328,-242236800,4),(1328,-195066000,1),(1328,-84384000,0),(1328,-68662800,1),(1328,-52934400,0),(1328,-37213200,1),(1328,-21484800,0),(1328,-5763600,1),(1328,9964800,0),(1328,25686000,1),(1328,41414400,0),(1328,57740400,1),(1328,73468800,0),(1328,89190001,1),(1328,104918402,0),(1328,120639602,1),(1328,126691203,0),(1328,152089203,1),(1328,162374404,0),(1328,183538804,1),(1328,199267205,0),(1328,215593205,1),(1328,230716806,0),(1328,247042806,1),(1328,262771207,0),(1328,278492407,1),(1328,294220808,0),(1328,309942008,1),(1328,325670409,0),(1328,341391609,1),(1328,357120009,0),(1328,372841210,1),(1328,388569610,0),(1328,404895611,1),(1328,420019211,0),(1328,436345212,1),(1328,452073612,0),(1328,467794812,1),(1328,483523212,0),(1328,499244413,1),(1328,514972813,0),(1328,530694013,1),(1328,544608013,0),(1328,562143613,1),(1328,576057614,0),(1328,594198014,1),(1328,607507214,0),(1328,625647614,1),(1328,638956815,0),(1328,657097215,1),(1328,671011216,0),(1328,688546816,4),(1328,1143961223,0),(1328,1162105223,1),(1328,1173600023,0),(1328,1194159623,1),(1328,1205049623,0),(1328,1225609223,1),(1328,1236499224,0),(1328,1257058824,1),(1328,1268553624,0),(1328,1289113224,1),(1328,1300003224,0),(1328,1320562824,1),(1328,1331452824,0),(1328,1352012425,1),(1328,1362902425,0),(1328,1383462025,1),(1328,1394352025,0),(1328,1414911625,1),(1328,1425801625,0),(1328,1446361226,1),(1328,1457856026,0),(1328,1478415626,1),(1328,1489305627,0),(1328,1509865227,1),(1328,1520755227,0),(1328,1541314827,1),(1328,1552204827,0),(1328,1572764427,1),(1328,1583654427,0),(1328,1604214027,1),(1328,1615708827,0),(1328,1636268427,1),(1328,1647158427,0),(1328,1667718027,1),(1328,1678608027,0),(1328,1699167627,1),(1328,1710057627,0),(1328,1730617227,1),(1328,1741507227,0),(1328,1762066827,1),(1328,1772956827,0),(1328,1793516427,1),(1328,1805011227,0),(1328,1825570827,1),(1328,1836460827,0),(1328,1857020427,1),(1328,1867910427,0),(1328,1888470027,1),(1328,1899360027,0),(1328,1919919627,1),(1328,1930809627,0),(1328,1951369227,1),(1328,1962864027,0),(1328,1983423627,1),(1328,1994313627,0),(1328,2014873227,1),(1328,2025763227,0),(1328,2046322827,1),(1328,2057212827,0),(1328,2077772427,1),(1328,2088662427,0),(1328,2109222027,1),(1328,2120112027,0),(1328,2140671627,1),(1329,-1826738653,1),(1329,-157750200,2),(1330,-1205954844,1),(1330,-1192307244,2),(1331,-1938538284,2),(1331,-1009825200,1),(1331,-1002052800,2),(1331,-986756400,1),(1331,-971035200,2),(1331,-955306800,1),(1331,-939585600,2),(1331,504939613,1),(1331,512712013,2),(1331,536475613,1),(1331,544248013,2),(1331,631170015,1),(1331,638942415,2),(1331,757400418,1),(1331,765172818,2),(1332,-1633269600,0),(1332,-1615129200,1),(1332,-1601820000,0),(1332,-1583679600,1),(1332,-880207200,2),(1332,-769395600,3),(1332,-765385200,1),(1332,-687967140,0),(1332,-662655600,1),(1332,-620838000,0),(1332,-608137200,1),(1332,-589388400,0),(1332,-576082800,1),(1332,-557938800,0),(1332,-544633200,1),(1332,-526489200,0),(1332,-513183600,1),(1332,-495039600,0),(1332,-481734000,1),(1332,-463590000,0),(1332,-450284400,1),(1332,-431535600,0),(1332,-418230000,1),(1332,-400086000,0),(1332,-386780400,1),(1332,-368636400,0),(1332,-355330800,1),(1332,-337186800,0),(1332,-323881200,1),(1332,-305737200,0),(1332,-292431600,1),(1332,-273682800,0),(1332,-260982000,1),(1332,-242233200,0),(1332,-226508400,1),(1332,-210783600,0),(1332,-195058800,1),(1332,-179334000,0),(1332,-163609200,1),(1332,-147884400,0),(1332,-131554800,1),(1332,-116434800,0),(1332,-100105200,1),(1332,-84376800,0),(1332,-68655600,1),(1332,-52927200,0),(1332,-37206000,1),(1332,-21477600,0),(1332,-5756400,1),(1332,9972000,0),(1332,25693200,1),(1332,41421600,0),(1332,57747600,1),(1332,73476000,0),(1332,89197201,1),(1332,104925602,0),(1332,120646802,1),(1332,126698403,0),(1332,152096403,1),(1332,162381604,0),(1332,183546004,1),(1332,199274405,0),(1332,215600405,1),(1332,230724006,0),(1332,247050006,1),(1332,262778407,0),(1332,278499607,1),(1332,294228008,0),(1332,309949208,1),(1332,325677609,0),(1332,341398809,1),(1332,357127209,0),(1332,372848410,1),(1332,388576810,0),(1332,404902811,1),(1332,420026411,0),(1332,436352412,1),(1332,452080812,0),(1332,467802012,1),(1332,483530412,0),(1332,499251613,1),(1332,514980013,0),(1332,530701213,1),(1332,544615213,0),(1332,562150813,1),(1332,576064814,0),(1332,594205214,1),(1332,607514414,0),(1332,625654814,1),(1332,638964015,0),(1332,657104415,1),(1332,671018416,0),(1332,688554016,1),(1332,702468016,0),(1332,720003617,1),(1332,733917617,0),(1332,752058018,1),(1332,765367218,0),(1332,783507619,1),(1332,796816819,0),(1332,814957219,1),(1332,828871220,0),(1332,846406820,1),(1332,860320820,0),(1332,877856421,1),(1332,891770421,0),(1332,909306021,1),(1332,923220022,0),(1332,941360422,1),(1332,954669622,0),(1332,972810022,1),(1332,986119222,0),(1332,1004259622,1),(1332,1018173622,0),(1332,1035709222,1),(1332,1049623222,0),(1332,1067158822,1),(1332,1081072822,0),(1332,1099213222,1),(1332,1112522422,0),(1332,1130662822,1),(1332,1143972023,0),(1332,1162112423,1),(1332,1173607223,0),(1332,1194166823,1),(1332,1205056823,0),(1332,1225616423,1),(1332,1236506424,0),(1332,1257066024,1),(1332,1268560824,0),(1332,1289120424,1),(1332,1300010424,0),(1332,1320570024,1),(1332,1331460024,0),(1332,1352019625,1),(1332,1362909625,0),(1332,1383469225,1),(1332,1394359225,0),(1332,1414918825,1),(1332,1425808825,0),(1332,1446368426,1),(1332,1457863226,0),(1332,1478422826,1),(1332,1489312827,0),(1332,1509872427,1),(1332,1520762427,0),(1332,1541322027,1),(1332,1552212027,0),(1332,1572771627,1),(1332,1583661627,0),(1332,1604221227,1),(1332,1615716027,0),(1332,1636275627,1),(1332,1647165627,0),(1332,1667725227,1),(1332,1678615227,0),(1332,1699174827,1),(1332,1710064827,0),(1332,1730624427,1),(1332,1741514427,0),(1332,1762074027,1),(1332,1772964027,0),(1332,1793523627,1),(1332,1805018427,0),(1332,1825578027,1),(1332,1836468027,0),(1332,1857027627,1),(1332,1867917627,0),(1332,1888477227,1),(1332,1899367227,0),(1332,1919926827,1),(1332,1930816827,0),(1332,1951376427,1),(1332,1962871227,0),(1332,1983430827,1),(1332,1994320827,0),(1332,2014880427,1),(1332,2025770427,0),(1332,2046330027,1),(1332,2057220027,0),(1332,2077779627,1),(1332,2088669627,0),(1332,2109229227,1),(1332,2120119227,0),(1332,2140678827,1),(1333,-1633276800,0),(1333,-1615136400,1),(1333,-1601827200,0),(1333,-1583686800,1),(1333,-1535904000,0),(1333,-1525280400,1),(1333,-905097600,0),(1333,-891795600,1),(1333,-880214400,2),(1333,-769395600,3),(1333,-765392400,1),(1333,-757360800,0),(1333,-744224400,1),(1333,-715795200,0),(1333,-608144400,1),(1333,-589392000,0),(1333,-576090000,1),(1333,-557942400,0),(1333,-544640400,1),(1333,-526492800,0),(1333,-513190800,1),(1333,-495043200,0),(1333,-481741200,1),(1333,-463593600,0),(1333,-450291600,1),(1333,-431539200,0),(1333,-415818000,1),(1333,-400089600,0),(1333,-384368400,1),(1333,-368640000,0),(1333,-352918800,1),(1333,-337190400,0),(1333,-321469200,1),(1333,-305740800,0),(1333,-289414800,1),(1333,-273686400,0),(1333,-266432400,4),(1333,-52938000,5),(1333,-37216800,4),(1333,-21488400,5),(1333,-5767200,4),(1333,9961200,5),(1333,25682400,4),(1333,41410800,5),(1333,57736800,4),(1333,73465200,5),(1333,89186401,4),(1333,104914802,5),(1333,120636002,4),(1333,126687603,0),(1333,152089203,4),(1333,162370804,5),(1333,183535204,4),(1333,199263605,5),(1333,215589605,4),(1333,230713206,5),(1333,247039206,4),(1333,262767607,5),(1333,278488807,4),(1333,294217208,5),(1333,309938408,4),(1333,325666809,5),(1333,341388009,4),(1333,357116409,5),(1333,372837610,4),(1333,388566010,5),(1333,404892011,4),(1333,420015611,5),(1333,436341612,4),(1333,452070012,5),(1333,467791212,4),(1333,483519612,5),(1333,499240813,4),(1333,514969213,5),(1333,530690413,4),(1333,544604413,5),(1333,562140013,4),(1333,576054014,5),(1333,594194414,4),(1333,607503614,5),(1333,625644014,4),(1333,638953215,5),(1333,657093615,4),(1333,671007616,5),(1333,688543216,4),(1333,702457216,5),(1333,719992817,4),(1333,733906817,5),(1333,752047218,4),(1333,765356418,5),(1333,783496819,4),(1333,796806019,5),(1333,814946419,4),(1333,828860420,5),(1333,846396020,4),(1333,860310020,5),(1333,877845621,4),(1333,891759621,5),(1333,909295221,4),(1333,923209222,5),(1333,941349622,4),(1333,954658822,5),(1333,972799222,4),(1333,986108422,5),(1333,1004248822,4),(1333,1018162822,5),(1333,1035698422,4),(1333,1049612422,5),(1333,1067148022,4),(1333,1081062022,5),(1333,1099202422,4),(1333,1112511622,5),(1333,1130652022,4),(1333,1143961223,5),(1333,1162101623,4),(1333,1173596423,5),(1333,1194156023,4),(1333,1205046023,5),(1333,1225605623,4),(1333,1236495624,5),(1333,1257055224,4),(1333,1268550024,5),(1333,1289109624,4),(1333,1299999624,5),(1333,1320559224,4),(1333,1331449224,5),(1333,1352008825,4),(1333,1362898825,5),(1333,1383458425,4),(1333,1394348425,5),(1333,1414908025,4),(1333,1425798025,5),(1333,1446357626,4),(1333,1457852426,5),(1333,1478412026,4),(1333,1489302027,5),(1333,1509861627,4),(1333,1520751627,5),(1333,1541311227,4),(1333,1552201227,5),(1333,1572760827,4),(1333,1583650827,5),(1333,1604210427,4),(1333,1615705227,5),(1333,1636264827,4),(1333,1647154827,5),(1333,1667714427,4),(1333,1678604427,5),(1333,1699164027,4),(1333,1710054027,5),(1333,1730613627,4),(1333,1741503627,5),(1333,1762063227,4),(1333,1772953227,5),(1333,1793512827,4),(1333,1805007627,5),(1333,1825567227,4),(1333,1836457227,5),(1333,1857016827,4),(1333,1867906827,5),(1333,1888466427,4),(1333,1899356427,5),(1333,1919916027,4),(1333,1930806027,5),(1333,1951365627,4),(1333,1962860427,5),(1333,1983420027,4),(1333,1994310027,5),(1333,2014869627,4),(1333,2025759627,5),(1333,2046319227,4),(1333,2057209227,5),(1333,2077768827,4),(1333,2088658827,5),(1333,2109218427,4),(1333,2120108427,5),(1333,2140668027,4),(1334,-1826738653,1),(1334,-157750200,2),(1335,-1767217028,2),(1335,-1206957600,1),(1335,-1191362400,2),(1335,-1175374800,1),(1335,-1159826400,2),(1335,-633819600,1),(1335,-622069200,2),(1335,-602283600,1),(1335,-591832800,2),(1335,-570747600,1),(1335,-560210400,2),(1335,-539125200,1),(1335,-531352800,2),(1335,-191365200,1),(1335,-184197600,2),(1335,-155163600,1),(1335,-150069600,2),(1335,-128898000,1),(1335,-121125600,2),(1335,-99954000,1),(1335,-89589600,2),(1335,-68418000,1),(1335,-57967200,2),(1335,499748413,1),(1335,511236013,2),(1335,530593213,1),(1335,540266413,2),(1335,562129213,1),(1335,571197614,2),(1335,592974014,1),(1335,602042414,2),(1335,624423614,1),(1335,634701615,2),(1335,813726019,1),(1335,824004020,2),(1335,938919622,1),(1335,951616822,2),(1335,970974022,1),(1335,972180022,2),(1335,1003028422,1),(1335,1013911222,2),(1336,-1121105688,1),(1336,105084002,2),(1336,161758804,1),(1336,290584808,3),(1336,299134808,1),(1336,322034409,3),(1336,330584409,1),(1336,694260016,2),(1336,717310817,1),(1336,725868017,2),(1336,852094820,1),(1336,1113112822,3),(1336,1128229222,1),(1336,1146384023,3),(1336,1159682423,1),(1337,-1767211196,2),(1337,-1206954000,1),(1337,-1191358800,2),(1337,-1175371200,1),(1337,-1159822800,2),(1337,-633816000,1),(1337,-622065600,2),(1337,-602280000,1),(1337,-591829200,2),(1337,-570744000,1),(1337,-560206800,2),(1337,-539121600,1),(1337,-531349200,2),(1337,-191361600,1),(1337,-184194000,2),(1337,-155160000,1),(1337,-150066000,2),(1337,-128894400,1),(1337,-121122000,2),(1337,-99950400,1),(1337,-89586000,2),(1337,-68414400,1),(1337,-57963600,2),(1337,499752013,1),(1337,511239613,2),(1337,530596813,1),(1337,540270013,2),(1337,562132813,1),(1337,571201214,2),(1337,750830418,1),(1337,761713218,2),(1338,-1825098836,1),(1339,-1851537340,1),(1339,323841609,2),(1339,338958009,1),(1340,-1514743200,1),(1340,576057614,2),(1340,594198014,1),(1340,828864020,2),(1340,846399620,1),(1340,860313620,2),(1340,877849221,1),(1340,891763221,2),(1340,909298821,1),(1340,923212822,2),(1340,941353222,1),(1340,954662422,2),(1340,972802822,1),(1340,989136022,2),(1340,1001833222,1),(1340,1018166422,2),(1340,1035702022,1),(1340,1049616022,2),(1340,1067151622,1),(1340,1081065622,2),(1340,1099206022,1),(1340,1112515222,2),(1340,1130655622,1),(1340,1143964823,2),(1340,1162105223,1),(1340,1175414423,2),(1340,1193554823,1),(1340,1207468823,2),(1340,1225004423,1),(1340,1238918424,2),(1340,1256454024,1),(1340,1268553624,2),(1340,1289113224,1),(1340,1300003224,2),(1340,1320562824,1),(1340,1331452824,2),(1340,1352012425,1),(1340,1362902425,2),(1340,1383462025,1),(1340,1394352025,2),(1340,1414911625,1),(1340,1425801625,2),(1340,1446361226,1),(1340,1457856026,2),(1340,1478415626,1),(1340,1489305627,2),(1340,1509865227,1),(1340,1520755227,2),(1340,1541314827,1),(1340,1552204827,2),(1340,1572764427,1),(1340,1583654427,2),(1340,1604214027,1),(1340,1615708827,2),(1340,1636268427,1),(1340,1647158427,2),(1340,1667718027,1),(1340,1678608027,2),(1340,1699167627,1),(1340,1710057627,2),(1340,1730617227,1),(1340,1741507227,2),(1340,1762066827,1),(1340,1772956827,2),(1340,1793516427,1),(1340,1805011227,2),(1340,1825570827,1),(1340,1836460827,2),(1340,1857020427,1),(1340,1867910427,2),(1340,1888470027,1),(1340,1899360027,2),(1340,1919919627,1),(1340,1930809627,2),(1340,1951369227,1),(1340,1962864027,2),(1340,1983423627,1),(1340,1994313627,2),(1340,2014873227,1),(1340,2025763227,2),(1340,2046322827,1),(1340,2057212827,2),(1340,2077772427,1),(1340,2088662427,2),(1340,2109222027,1),(1340,2120112027,2),(1340,2140671627,1),(1341,-1514739600,1),(1341,-1343066400,2),(1341,-1234807200,1),(1341,-1220292000,2),(1341,-1207159200,1),(1341,-1191344400,2),(1341,-873828000,1),(1341,-661539600,3),(1341,28800,1),(1341,828867620,4),(1341,846403220,1),(1341,860317220,4),(1341,877852821,1),(1341,891766821,4),(1341,909302421,1),(1341,923216422,4),(1341,941356822,1),(1341,954666022,4),(1341,972806422,1),(1341,989139622,4),(1341,1001836822,1),(1341,1018170022,4),(1341,1035705622,1),(1341,1049619622,4),(1341,1067155222,1),(1341,1081069222,4),(1341,1099209622,1),(1341,1112518822,4),(1341,1130659222,1),(1341,1143968423,4),(1341,1162108823,1),(1341,1175418023,4),(1341,1193558423,1),(1341,1207472423,4),(1341,1225008023,1),(1341,1238922024,4),(1341,1256457624,1),(1341,1270371624,4),(1341,1288512024,1),(1341,1301821224,4),(1341,1319961624,1),(1341,1333270824,4),(1341,1351411225,1),(1341,1365325225,4),(1341,1382860825,1),(1341,1396774825,4),(1341,1414310425,1),(1341,1428224425,4),(1341,1445760026,1),(1341,1459674026,4),(1341,1477814426,1),(1341,1491123627,4),(1341,1509264027,1),(1341,1522573227,4),(1341,1540713627,1),(1341,1554627627,4),(1341,1572163227,1),(1341,1586077227,4),(1341,1603612827,1),(1341,1617526827,4),(1341,1635667227,1),(1341,1648976427,4),(1341,1667116827,1),(1341,1680426027,4),(1341,1698566427,1),(1341,1712480427,4),(1341,1730016027,1),(1341,1743930027,4),(1341,1761465627,1),(1341,1775379627,4),(1341,1792915227,1),(1341,1806829227,4),(1341,1824969627,1),(1341,1838278827,4),(1341,1856419227,1),(1341,1869728427,4),(1341,1887868827,1),(1341,1901782827,4),(1341,1919318427,1),(1341,1933232427,4),(1341,1950768027,1),(1341,1964682027,4),(1341,1982822427,1),(1341,1996131627,4),(1341,2014272027,1),(1341,2027581227,4),(1341,2045721627,1),(1341,2059030827,4),(1341,2077171227,1),(1341,2091085227,4),(1341,2108620827,1),(1341,2122534827,4),(1341,2140070427,1),(1342,-1567453392,1),(1342,-1233432000,2),(1342,-1222981200,1),(1342,-1205956800,2),(1342,-1194037200,1),(1342,-1172865600,2),(1342,-1162501200,1),(1342,-1141329600,2),(1342,-1130965200,1),(1342,-1109793600,2),(1342,-1099429200,1),(1342,-1078257600,2),(1342,-1067806800,1),(1342,-1046635200,2),(1342,-1036270800,1),(1342,-1015099200,2),(1342,-1004734800,1),(1342,-983563200,2),(1342,-973198800,1),(1342,-952027200,2),(1342,-941576400,1),(1342,-931032000,2),(1342,-900882000,1),(1342,-890337600,2),(1342,-833749200,1),(1342,-827265600,2),(1342,-752274000,1),(1342,-733780800,2),(1342,-197326800,1),(1342,-190843200,2),(1342,-184194000,1),(1342,-164491200,2),(1342,-152658000,1),(1342,-132955200,2),(1342,-121122000,1),(1342,-101419200,2),(1342,-86821200,1),(1342,-71092800,2),(1342,-54766800,1),(1342,-39038400,2),(1342,-23317200,1),(1342,-7588800,4),(1342,128142003,3),(1342,136605603,4),(1342,596948414,3),(1342,605066414,4),(1342,624423614,3),(1342,636516015,1),(1342,655963215,2),(1342,667796416,1),(1342,687499216,2),(1342,699418816,1),(1342,719380817,3),(1342,731469617,4),(1342,938919622,2),(1342,952052422,4),(1342,1085281222,1),(1342,1096171222,4),(1342,1198983623,3),(1342,1205632823,4),(1343,-1633276800,0),(1343,-1615136400,1),(1343,-1601827200,0),(1343,-1583686800,1),(1343,-880214400,2),(1343,-769395600,3),(1343,-765392400,1),(1343,-747244800,0),(1343,-733942800,1),(1343,-116438400,0),(1343,-100112400,1),(1343,-21484800,4),(1343,104914802,0),(1343,120639602,1),(1343,126691203,0),(1343,152089203,1),(1343,162374404,0),(1343,183538804,1),(1343,199267205,0),(1343,215593205,1),(1343,230716806,0),(1343,247042806,1),(1343,262771207,0),(1343,278492407,1),(1343,294220808,0),(1343,309942008,1),(1343,325670409,0),(1343,341391609,1),(1343,357120009,0),(1343,372841210,1),(1343,388569610,0),(1343,404895611,1),(1343,420019211,0),(1343,436345212,1),(1343,452073612,0),(1343,467794812,1),(1343,483523212,0),(1343,499244413,1),(1343,514972813,0),(1343,530694013,1),(1343,544608013,0),(1343,562143613,1),(1343,576057614,0),(1343,594198014,1),(1343,607507214,0),(1343,625647614,1),(1343,638956815,0),(1343,657097215,1),(1343,671011216,0),(1343,688546816,1),(1343,702460816,0),(1343,719996417,1),(1343,733910417,0),(1343,752050818,1),(1343,765360018,0),(1343,783500419,1),(1343,796809619,0),(1343,814950019,1),(1343,828864020,0),(1343,846399620,1),(1343,860313620,0),(1343,877849221,1),(1343,891763221,0),(1343,909298821,1),(1343,923212822,0),(1343,941353222,1),(1343,954662422,0),(1343,972802822,1),(1343,986112022,0),(1343,1004252422,1),(1343,1018166422,0),(1343,1035702022,1),(1343,1049616022,0),(1343,1067151622,1),(1343,1081065622,0),(1343,1099206022,1),(1343,1112515222,0),(1343,1130655622,1),(1343,1143964823,0),(1343,1162105223,1),(1343,1173600023,0),(1343,1194159623,1),(1343,1205049623,0),(1343,1225609223,1),(1343,1236499224,0),(1343,1257058824,1),(1343,1268553624,0),(1343,1289113224,1),(1343,1300003224,0),(1343,1320562824,1),(1343,1331452824,0),(1343,1352012425,1),(1343,1362902425,0),(1343,1383462025,1),(1343,1394352025,0),(1343,1414911625,1),(1343,1425801625,0),(1343,1446361226,1),(1343,1457856026,0),(1343,1478415626,1),(1343,1489305627,0),(1343,1509865227,1),(1343,1520755227,0),(1343,1541314827,1),(1343,1552204827,0),(1343,1572764427,1),(1343,1583654427,0),(1343,1604214027,1),(1343,1615708827,0),(1343,1636268427,1),(1343,1647158427,0),(1343,1667718027,1),(1343,1678608027,0),(1343,1699167627,1),(1343,1710057627,0),(1343,1730617227,1),(1343,1741507227,0),(1343,1762066827,1),(1343,1772956827,0),(1343,1793516427,1),(1343,1805011227,0),(1343,1825570827,1),(1343,1836460827,0),(1343,1857020427,1),(1343,1867910427,0),(1343,1888470027,1),(1343,1899360027,0),(1343,1919919627,1),(1343,1930809627,0),(1343,1951369227,1),(1343,1962864027,0),(1343,1983423627,1),(1343,1994313627,0),(1343,2014873227,1),(1343,2025763227,0),(1343,2046322827,1),(1343,2057212827,0),(1343,2077772427,1),(1343,2088662427,0),(1343,2109222027,1),(1343,2120112027,0),(1343,2140671627,1),(1344,-1514743200,1),(1344,377935210,2),(1344,407653211,1),(1344,828864020,3),(1344,846399620,1),(1344,860313620,3),(1344,877849221,1),(1344,891763221,3),(1344,909298821,1),(1344,923212822,3),(1344,941353222,1),(1344,954662422,3),(1344,972802822,1),(1344,989136022,3),(1344,1001833222,1),(1344,1018166422,3),(1344,1035702022,1),(1344,1049616022,3),(1344,1067151622,1),(1344,1081065622,3),(1344,1099206022,1),(1344,1112515222,3),(1344,1130655622,1),(1344,1143964823,3),(1344,1162105223,1),(1344,1175414423,3),(1344,1193554823,1),(1344,1207468823,3),(1344,1225004423,1),(1344,1238918424,3),(1344,1256454024,1),(1344,1270368024,3),(1344,1288508424,1),(1344,1301817624,3),(1344,1319958024,1),(1344,1333267224,3),(1344,1351407625,1),(1344,1365321625,3),(1344,1382857225,1),(1344,1396771225,3),(1344,1414306825,1),(1344,1428220825,3),(1344,1445756426,1),(1344,1459670426,3),(1344,1477810826,1),(1344,1491120027,3),(1344,1509260427,1),(1344,1522569627,3),(1344,1540710027,1),(1344,1554624027,3),(1344,1572159627,1),(1344,1586073627,3),(1344,1603609227,1),(1344,1617523227,3),(1344,1635663627,1),(1344,1648972827,3),(1344,1667113227,1),(1344,1680422427,3),(1344,1698562827,1),(1344,1712476827,3),(1344,1730012427,1),(1344,1743926427,3),(1344,1761462027,1),(1344,1775376027,3),(1344,1792911627,1),(1344,1806825627,3),(1344,1824966027,1),(1344,1838275227,3),(1344,1856415627,1),(1344,1869724827,3),(1344,1887865227,1),(1344,1901779227,3),(1344,1919314827,1),(1344,1933228827,3),(1344,1950764427,1),(1344,1964678427,3),(1344,1982818827,1),(1344,1996128027,3),(1344,2014268427,1),(1344,2027577627,3),(1344,2045718027,1),(1344,2059027227,3),(1344,2077167627,1),(1344,2091081627,3),(1344,2108617227,1),(1344,2122531227,3),(1344,2140066827,1),(1345,-880207200,1),(1345,-769395600,2),(1345,-765385200,0),(1345,-21477600,3),(1345,-5756400,0),(1345,9972000,3),(1345,25693200,0),(1345,41421600,3),(1345,57747600,0),(1345,73476000,3),(1345,89197201,0),(1345,104925602,3),(1345,120646802,0),(1345,126698403,3),(1345,152096403,0),(1345,162381604,3),(1345,183546004,0),(1345,199274405,3),(1345,215600405,0),(1345,230724006,3),(1345,247050006,0),(1345,262778407,3),(1345,278499607,0),(1345,294228008,3),(1345,309949208,0),(1345,325677609,3),(1345,341398809,0),(1345,357127209,3),(1345,372848410,0),(1345,388576810,3),(1345,404902811,0),(1345,420026411,3),(1345,436352412,0),(1345,1446372026,4),(1345,1457866826,5),(1345,1478426426,4),(1345,1489316427,5),(1345,1509876027,4),(1345,1520766027,5),(1345,1541325627,4),(1345,1552215627,5),(1345,1572775227,4),(1345,1583665227,5),(1345,1604224827,4),(1345,1615719627,5),(1345,1636279227,4),(1345,1647169227,5),(1345,1667728827,4),(1345,1678618827,5),(1345,1699178427,4),(1345,1710068427,5),(1345,1730628027,4),(1345,1741518027,5),(1345,1762077627,4),(1345,1772967627,5),(1345,1793527227,4),(1345,1805022027,5),(1345,1825581627,4),(1345,1836471627,5),(1345,1857031227,4),(1345,1867921227,5),(1345,1888480827,4),(1345,1899370827,5),(1345,1919930427,4),(1345,1930820427,5),(1345,1951380027,4),(1345,1962874827,5),(1345,1983434427,4),(1345,1994324427,5),(1345,2014884027,4),(1345,2025774027,5),(1345,2046333627,4),(1345,2057223627,5),(1345,2077783227,4),(1345,2088673227,5),(1345,2109232827,4),(1345,2120122827,5),(1345,2140682427,4),(1346,-1514739600,1),(1346,-1343066400,2),(1346,-1234807200,1),(1346,-1220292000,2),(1346,-1207159200,1),(1346,-1191344400,2),(1346,-975261600,3),(1346,-963169200,2),(1346,-917114400,3),(1346,-907354800,2),(1346,-821901600,4),(1346,-810068400,2),(1346,-627501600,3),(1346,-612990000,2),(1346,828864020,3),(1346,846399620,2),(1346,860313620,3),(1346,877849221,2),(1346,891763221,3),(1346,909298821,2),(1346,923212822,3),(1346,941353222,2),(1346,954662422,3),(1346,972802822,2),(1346,989136022,3),(1346,1001833222,2),(1346,1018166422,3),(1346,1035702022,2),(1346,1049616022,3),(1346,1067151622,2),(1346,1081065622,3),(1346,1099206022,2),(1346,1112515222,3),(1346,1130655622,2),(1346,1143964823,3),(1346,1162105223,2),(1346,1175414423,3),(1346,1193554823,2),(1346,1207468823,3),(1346,1225004423,2),(1346,1238918424,3),(1346,1256454024,2),(1346,1270368024,3),(1346,1288508424,2),(1346,1301817624,3),(1346,1319958024,2),(1346,1333267224,3),(1346,1351407625,2),(1346,1365321625,3),(1346,1382857225,2),(1346,1396771225,3),(1346,1414306825,2),(1346,1428220825,3),(1346,1445756426,2),(1346,1459670426,3),(1346,1477810826,2),(1346,1491120027,3),(1346,1509260427,2),(1346,1522569627,3),(1346,1540710027,2),(1346,1554624027,3),(1346,1572159627,2),(1346,1586073627,3),(1346,1603609227,2),(1346,1617523227,3),(1346,1635663627,2),(1346,1648972827,3),(1346,1667113227,2),(1346,1680422427,3),(1346,1698562827,2),(1346,1712476827,3),(1346,1730012427,2),(1346,1743926427,3),(1346,1761462027,2),(1346,1775376027,3),(1346,1792911627,2),(1346,1806825627,3),(1346,1824966027,2),(1346,1838275227,3),(1346,1856415627,2),(1346,1869724827,3),(1346,1887865227,2),(1346,1901779227,3),(1346,1919314827,2),(1346,1933228827,3),(1346,1950764427,2),(1346,1964678427,3),(1346,1982818827,2),(1346,1996128027,3),(1346,2014268427,2),(1346,2027577627,3),(1346,2045718027,2),(1346,2059027227,3),(1346,2077167627,2),(1346,2091081627,3),(1346,2108617227,2),(1346,2122531227,3),(1346,2140066827,2),(1347,-1850328920,1),(1347,326001609,2),(1347,544597213,3),(1347,562132813,2),(1347,576046814,3),(1347,594187214,2),(1347,607496414,3),(1347,625636814,2),(1347,638946015,3),(1347,657086415,2),(1347,671000416,3),(1347,688536016,2),(1347,702450016,3),(1347,719985617,2),(1347,733899617,3),(1347,752040018,2),(1347,765349218,3),(1347,783489619,2),(1347,796798819,3),(1347,814939219,2),(1347,828853220,3),(1347,846388820,2),(1347,860302820,3),(1347,877838421,2),(1347,891752421,3),(1347,909288021,2),(1347,923202022,3),(1347,941342422,2),(1347,954651622,3),(1347,972792022,2),(1347,986101222,3),(1347,1004241622,2),(1347,1018155622,3),(1347,1035691222,2),(1347,1049605222,3),(1347,1067140822,2),(1347,1081054822,3),(1347,1099195222,2),(1347,1112504422,3),(1347,1130644822,2),(1347,1143954023,3),(1347,1162094423,2),(1347,1173589223,3),(1347,1194148823,2),(1347,1205038823,3),(1347,1225598423,2),(1347,1236488424,3),(1347,1257048024,2),(1347,1268542824,3),(1347,1289102424,2),(1347,1299992424,3),(1347,1320552024,2),(1347,1331442024,3),(1347,1352001625,2),(1347,1362891625,3),(1347,1383451225,2),(1347,1394341225,3),(1347,1414900825,2),(1347,1425790825,3),(1347,1446350426,2),(1347,1457845226,3),(1347,1478404826,2),(1347,1489294827,3),(1347,1509854427,2),(1347,1520744427,3),(1347,1541304027,2),(1347,1552194027,3),(1347,1572753627,2),(1347,1583643627,3),(1347,1604203227,2),(1347,1615698027,3),(1347,1636257627,2),(1347,1647147627,3),(1347,1667707227,2),(1347,1678597227,3),(1347,1699156827,2),(1347,1710046827,3),(1347,1730606427,2),(1347,1741496427,3),(1347,1762056027,2),(1347,1772946027,3),(1347,1793505627,2),(1347,1805000427,3),(1347,1825560027,2),(1347,1836450027,3),(1347,1857009627,2),(1347,1867899627,3),(1347,1888459227,2),(1347,1899349227,3),(1347,1919908827,2),(1347,1930798827,3),(1347,1951358427,2),(1347,1962853227,3),(1347,1983412827,2),(1347,1994302827,3),(1347,2014862427,2),(1347,2025752427,3),(1347,2046312027,2),(1347,2057202027,3),(1347,2077761627,2),(1347,2088651627,3),(1347,2109211227,2),(1347,2120101227,3),(1347,2140660827,2),(1348,-2131642800,2),(1348,-1632074400,1),(1348,-1615143600,2),(1348,-1153681200,1),(1348,-1145822400,2),(1348,-1122231600,1),(1348,-1114372800,2),(1348,-1090782000,1),(1348,-1082923200,2),(1348,-1059332400,1),(1348,-1051473600,2),(1348,-1027882800,1),(1348,-1020024000,2),(1348,-996433200,1),(1348,-988574400,2),(1348,-965674800,1),(1348,-955396800,2),(1348,-934743600,1),(1348,-923947200,2),(1348,-904503600,1),(1348,-891892800,2),(1348,-880221600,3),(1348,-769395600,4),(1348,-765399600,2),(1348,-747252000,1),(1348,-733950000,2),(1348,-715802400,1),(1348,-702500400,2),(1348,-684352800,1),(1348,-671050800,2),(1348,-652903200,1),(1348,-639601200,2),(1348,-620848800,1),(1348,-608151600,2),(1348,-589399200,1),(1348,-576097200,2),(1348,-557949600,1),(1348,-544647600,2),(1348,-526500000,1),(1348,-513198000,2),(1348,-495050400,1),(1348,-481748400,2),(1348,-463600800,1),(1348,-450298800,2),(1348,-431546400,1),(1348,-418244400,2),(1348,-400096800,1),(1348,-384375600,2),(1348,-368647200,1),(1348,-352926000,2),(1348,-337197600,1),(1348,-321476400,2),(1348,-305748000,1),(1348,-289422000,2),(1348,-273693600,1),(1348,-257972400,2),(1348,-242244000,1),(1348,-226522800,2),(1348,-210794400,1),(1348,-195073200,2),(1348,-179344800,1),(1348,-163623600,2),(1348,-147895200,1),(1348,-131569200,2),(1348,-116445600,1),(1348,-100119600,2),(1348,-84391200,1),(1348,-68670000,2),(1348,-52941600,1),(1348,-37220400,2),(1348,-21492000,1),(1348,-5770800,2),(1348,9957600,1),(1348,25678800,2),(1348,41407200,1),(1348,57733200,2),(1348,73461600,1),(1348,89182801,2),(1348,136360803,1),(1348,152082003,2),(1348,167810404,1),(1348,183531604,2),(1348,199260005,1),(1348,215586005,2),(1348,230709606,1),(1348,247035606,2),(1348,262764007,1),(1348,278485207,2),(1348,294213608,1),(1348,309934808,2),(1348,325663209,1),(1348,341384409,2),(1348,357112809,1),(1348,372834010,2),(1348,388562410,1),(1348,404888411,2),(1348,420012011,1),(1348,436338012,2),(1348,452066412,1),(1348,467787612,2),(1348,483516012,1),(1348,499237213,2),(1348,514965613,1),(1348,530686813,2),(1348,544600813,1),(1348,562136413,2),(1348,576050414,1),(1348,594190814,2),(1348,607500014,1),(1348,625640414,2),(1348,638949615,1),(1348,657090015,2),(1348,671004016,1),(1348,688539616,2),(1348,702453616,1),(1348,719989217,2),(1348,733896077,1),(1348,752036478,2),(1348,765345678,1),(1348,783486079,2),(1348,796795279,1),(1348,814935679,2),(1348,828849680,1),(1348,846385280,2),(1348,860299280,1),(1348,877834881,2),(1348,891748881,1),(1348,909284481,2),(1348,923198482,1),(1348,941338882,2),(1348,954648082,1),(1348,972788482,2),(1348,986097682,1),(1348,1004238082,2),(1348,1018152082,1),(1348,1035687682,2),(1348,1049601682,1),(1348,1067137282,2),(1348,1081051282,1),(1348,1099191682,2),(1348,1112500882,1),(1348,1130641282,2),(1348,1143950483,1),(1348,1162090883,2),(1348,1173592823,1),(1348,1194152423,2),(1348,1205042423,1),(1348,1225602023,2),(1348,1236492024,1),(1348,1257051624,2),(1348,1268546424,1),(1348,1289106024,2),(1348,1299996024,1),(1348,1320555624,2),(1348,1331445624,1),(1348,1352005225,2),(1348,1362895225,1),(1348,1383454825,2),(1348,1394344825,1),(1348,1414904425,2),(1348,1425794425,1),(1348,1446354026,2),(1348,1457848826,1),(1348,1478408426,2),(1348,1489298427,1),(1348,1509858027,2),(1348,1520748027,1),(1348,1541307627,2),(1348,1552197627,1),(1348,1572757227,2),(1348,1583647227,1),(1348,1604206827,2),(1348,1615701627,1),(1348,1636261227,2),(1348,1647151227,1),(1348,1667710827,2),(1348,1678600827,1),(1348,1699160427,2),(1348,1710050427,1),(1348,1730610027,2),(1348,1741500027,1),(1348,1762059627,2),(1348,1772949627,1),(1348,1793509227,2),(1348,1805004027,1),(1348,1825563627,2),(1348,1836453627,1),(1348,1857013227,2),(1348,1867903227,1),(1348,1888462827,2),(1348,1899352827,1),(1348,1919912427,2),(1348,1930802427,1),(1348,1951362027,2),(1348,1962856827,1),(1348,1983416427,2),(1348,1994306427,1),(1348,2014866027,2),(1348,2025756027,1),(1348,2046315627,2),(1348,2057205627,1),(1348,2077765227,2),(1348,2088655227,1),(1348,2109214827,2),(1348,2120104827,1),(1348,2140664427,2),(1349,-1514743200,1),(1349,576057614,2),(1349,594198014,1),(1349,828864020,2),(1349,846399620,1),(1349,860313620,2),(1349,877849221,1),(1349,891763221,2),(1349,909298821,1),(1349,923212822,2),(1349,941353222,1),(1349,954662422,2),(1349,972802822,1),(1349,989136022,2),(1349,1001833222,1),(1349,1018166422,2),(1349,1035702022,1),(1349,1049616022,2),(1349,1067151622,1),(1349,1081065622,2),(1349,1099206022,1),(1349,1112515222,2),(1349,1130655622,1),(1349,1143964823,2),(1349,1162105223,1),(1349,1175414423,2),(1349,1193554823,1),(1349,1207468823,2),(1349,1225004423,1),(1349,1238918424,2),(1349,1256454024,1),(1349,1270368024,2),(1349,1288508424,1),(1349,1301817624,2),(1349,1319958024,1),(1349,1333267224,2),(1349,1351407625,1),(1349,1365321625,2),(1349,1382857225,1),(1349,1396771225,2),(1349,1414306825,1),(1349,1428220825,2),(1349,1445756426,1),(1349,1459670426,2),(1349,1477810826,1),(1349,1491120027,2),(1349,1509260427,1),(1349,1522569627,2),(1349,1540710027,1),(1349,1554624027,2),(1349,1572159627,1),(1349,1586073627,2),(1349,1603609227,1),(1349,1617523227,2),(1349,1635663627,1),(1349,1648972827,2),(1349,1667113227,1),(1349,1680422427,2),(1349,1698562827,1),(1349,1712476827,2),(1349,1730012427,1),(1349,1743926427,2),(1349,1761462027,1),(1349,1775376027,2),(1349,1792911627,1),(1349,1806825627,2),(1349,1824966027,1),(1349,1838275227,2),(1349,1856415627,1),(1349,1869724827,2),(1349,1887865227,1),(1349,1901779227,2),(1349,1919314827,1),(1349,1933228827,2),(1349,1950764427,1),(1349,1964678427,2),(1349,1982818827,1),(1349,1996128027,2),(1349,2014268427,1),(1349,2027577627,2),(1349,2045718027,1),(1349,2059027227,2),(1349,2077167627,1),(1349,2091081627,2),(1349,2108617227,1),(1349,2122531227,2),(1349,2140066827,1),(1350,-1942690509,1),(1350,-1567455309,2),(1350,-1459627200,4),(1350,-1443819600,3),(1350,-1428006600,4),(1350,-1412283600,3),(1350,-1396470600,4),(1350,-1380747600,3),(1350,-1141590600,4),(1350,-1128286800,3),(1350,-1110141000,4),(1350,-1096837200,3),(1350,-1078691400,4),(1350,-1065387600,3),(1350,-1047241800,4),(1350,-1033938000,3),(1350,-1015187400,4),(1350,-1002488400,3),(1350,-983737800,4),(1350,-971038800,3),(1350,-954707400,4),(1350,-938984400,3),(1350,-920838600,4),(1350,-907534800,3),(1350,-896819400,4),(1350,-853621200,6),(1350,-845847000,5),(1350,-334789200,6),(1350,-319671000,5),(1350,-314226000,7),(1350,-309996000,5),(1350,-149720400,7),(1350,-134604000,5),(1350,-50446800,6),(1350,-34205400,5),(1350,9860400,7),(1350,14176800,5),(1350,72846000,7),(1350,80100001,5),(1350,127278003,8),(1350,132111003,6),(1350,147234603,5),(1350,156913203,7),(1350,165376804,5),(1350,219812405,7),(1350,226461606,5),(1350,250052406,7),(1350,257911207,5),(1350,282711607,7),(1350,289360808,5),(1350,294202808,7),(1350,322020009,5),(1350,566449213,7),(1350,573012014,5),(1350,597812414,7),(1350,605066414,5),(1350,625633214,7),(1350,635911215,5),(1350,656478015,7),(1350,667965616,5),(1350,688532416,7),(1350,699415216,5),(1350,719377217,7),(1350,730864817,5),(1350,1095562822,7),(1350,1111896022,5),(1350,1128834022,7),(1350,1142136023,5),(1350,1159678823,7),(1350,1173585623,5),(1350,1191733223,7),(1350,1205035223,5),(1350,1223182823,7),(1350,1236484824,5),(1350,1254632424,7),(1350,1268539224,5),(1350,1286082024,7),(1350,1299988824,5),(1350,1317531624,7),(1350,1331438424,5),(1350,1349586025,7),(1350,1362888025,5),(1350,1381035625,7),(1350,1394337625,5),(1350,1412485225,7),(1350,1425787225,5),(1351,-1632070800,0),(1351,-1615140000,1),(1351,-1601753400,0),(1351,-1583697600,1),(1351,-1567357200,0),(1351,-1554667200,1),(1351,-1534698000,0),(1351,-1524074400,1),(1351,-1503248400,0),(1351,-1492365600,1),(1351,-1471798800,0),(1351,-1460916000,1),(1351,-1440954000,0),(1351,-1428861600,1),(1351,-1409504400,0),(1351,-1397412000,1),(1351,-1378054800,0),(1351,-1365962400,1),(1351,-1346605200,0),(1351,-1333908000,1),(1351,-1315155600,0),(1351,-1301853600,1),(1351,-1283706000,0),(1351,-1270404000,1),(1351,-1252256400,0),(1351,-1238954400,1),(1351,-1220806800,0),(1351,-1207504800,1),(1351,-1188752400,0),(1351,-1176055200,1),(1351,-1157302800,0),(1351,-1144000800,1),(1351,-1125853200,0),(1351,-1112551200,1),(1351,-1094403600,0),(1351,-1081101600,1),(1351,-1062954000,0),(1351,-1049652000,1),(1351,-1031504400,0),(1351,-1018202400,1),(1351,-1000054800,0),(1351,-986752800,1),(1351,-968000400,0),(1351,-955303200,1),(1351,-936550800,0),(1351,-880218000,2),(1351,-769395600,3),(1351,-765396000,1),(1351,-747248400,0),(1351,-733946400,1),(1351,-715806000,0),(1351,-702504000,1),(1351,-684356400,0),(1351,-671054400,1),(1351,-652906800,0),(1351,-634161600,1),(1351,-620845200,0),(1351,-602704800,1),(1351,-589395600,0),(1351,-576093600,1),(1351,-557946000,0),(1351,-544644000,1),(1351,-526496400,0),(1351,-513194400,1),(1351,-495046800,0),(1351,-481744800,1),(1351,-463597200,0),(1351,-450295200,1),(1351,-431542800,0),(1351,-418240800,1),(1351,-400093200,0),(1351,-384372000,1),(1351,-368643600,0),(1351,-352922400,1),(1351,-337194000,0),(1351,-321472800,1),(1351,-305744400,0),(1351,-289418400,1),(1351,-273690000,0),(1351,-257968800,1),(1351,-242240400,0),(1351,-226519200,1),(1351,-210790800,0),(1351,-195069600,1),(1351,-179341200,0),(1351,-163620000,1),(1351,-147891600,0),(1351,-131565600,1),(1351,-116442000,0),(1351,-100116000,1),(1351,-84387600,0),(1351,-68666400,1),(1351,-52938000,0),(1351,-37216800,1),(1351,-21488400,0),(1351,-5767200,1),(1351,9961200,0),(1351,25682400,1),(1351,41410800,0),(1351,57736800,1),(1351,73465200,0),(1351,89186401,1),(1351,104914802,0),(1351,120636002,1),(1351,136364403,0),(1351,152085603,1),(1351,167814004,0),(1351,183535204,1),(1351,199263605,0),(1351,215589605,1),(1351,230713206,0),(1351,247039206,1),(1351,262767607,0),(1351,278488807,1),(1351,294217208,0),(1351,309938408,1),(1351,325666809,0),(1351,341388009,1),(1351,357116409,0),(1351,372837610,1),(1351,388566010,0),(1351,404892011,1),(1351,420015611,0),(1351,436341612,1),(1351,452070012,0),(1351,467791212,1),(1351,483519612,0),(1351,499240813,1),(1351,514969213,0),(1351,530690413,1),(1351,544604413,0),(1351,562140013,1),(1351,576054014,0),(1351,594194414,1),(1351,607503614,0),(1351,625644014,1),(1351,638953215,0),(1351,657093615,1),(1351,671007616,0),(1351,688543216,1),(1351,702457216,0),(1351,719992817,1),(1351,733906817,0),(1351,752047218,1),(1351,765356418,0),(1351,783496819,1),(1351,796806019,0),(1351,814946419,1),(1351,828860420,0),(1351,846396020,1),(1351,860310020,0),(1351,877845621,1),(1351,891759621,0),(1351,909295221,1),(1351,923209222,0),(1351,941349622,1),(1351,954658822,0),(1351,972799222,1),(1351,986108422,0),(1351,1004248822,1),(1351,1018162822,0),(1351,1035698422,1),(1351,1049612422,0),(1351,1067148022,1),(1351,1081062022,0),(1351,1099202422,1),(1351,1112511622,0),(1351,1130652022,1),(1351,1143961223,0),(1351,1162101623,1),(1351,1173596423,0),(1351,1194156023,1),(1351,1205046023,0),(1351,1225605623,1),(1351,1236495624,0),(1351,1257055224,1),(1351,1268550024,0),(1351,1289109624,1),(1351,1299999624,0),(1351,1320559224,1),(1351,1331449224,0),(1351,1352008825,1),(1351,1362898825,0),(1351,1383458425,1),(1351,1394348425,0),(1351,1414908025,1),(1351,1425798025,0),(1351,1446357626,1),(1351,1457852426,0),(1351,1478412026,1),(1351,1489302027,0),(1351,1509861627,1),(1351,1520751627,0),(1351,1541311227,1),(1351,1552201227,0),(1351,1572760827,1),(1351,1583650827,0),(1351,1604210427,1),(1351,1615705227,0),(1351,1636264827,1),(1351,1647154827,0),(1351,1667714427,1),(1351,1678604427,0),(1351,1699164027,1),(1351,1710054027,0),(1351,1730613627,1),(1351,1741503627,0),(1351,1762063227,1),(1351,1772953227,0),(1351,1793512827,1),(1351,1805007627,0),(1351,1825567227,1),(1351,1836457227,0),(1351,1857016827,1),(1351,1867906827,0),(1351,1888466427,1),(1351,1899356427,0),(1351,1919916027,1),(1351,1930806027,0),(1351,1951365627,1),(1351,1962860427,0),(1351,1983420027,1),(1351,1994310027,0),(1351,2014869627,1),(1351,2025759627,0),(1351,2046319227,1),(1351,2057209227,0),(1351,2077768827,1),(1351,2088658827,0),(1351,2109218427,1),(1351,2120108427,0),(1351,2140668027,1),(1352,-1825098836,1),(1353,-1825095030,2),(1353,-179341200,1),(1353,-163620000,2),(1353,-147891600,1),(1353,-131565600,2),(1353,-116442000,1),(1353,-100116000,2),(1353,-84387600,1),(1353,-68666400,2),(1353,-52938000,1),(1353,-37216800,2),(1353,-21488400,1),(1353,-5767200,2),(1353,9961200,1),(1353,25682400,2),(1353,41410800,1),(1353,57736800,2),(1353,73465200,1),(1353,89186401,2),(1353,104914802,1),(1353,120636002,2),(1353,136364403,1),(1353,152085603,2),(1353,167814004,1),(1353,183535204,2),(1353,199263605,1),(1353,215589605,2),(1353,230713206,1),(1353,247039206,2),(1353,262767607,1),(1353,278488807,2),(1353,294217208,1),(1353,309938408,2),(1353,325666809,1),(1353,341388009,2),(1353,357116409,1),(1353,372837610,2),(1353,388566010,1),(1353,404892011,2),(1353,420015611,1),(1353,436341612,2),(1353,452070012,1),(1353,467791212,2),(1353,483519612,1),(1353,499240813,2),(1353,514969213,1),(1353,530690413,2),(1353,544604413,1),(1353,562140013,2),(1353,576054014,1),(1353,594194414,2),(1353,607503614,1),(1353,625644014,2),(1353,638953215,1),(1353,657093615,2),(1353,671007616,1),(1353,688543216,2),(1353,702457216,1),(1353,719992817,2),(1353,733906817,1),(1353,752047218,2),(1353,765356418,1),(1353,783496819,2),(1353,796806019,1),(1353,814946419,2),(1353,828860420,1),(1353,846396020,2),(1353,860310020,1),(1353,877845621,2),(1353,891759621,1),(1353,909295221,2),(1353,923209222,1),(1353,941349622,2),(1353,954658822,1),(1353,972799222,2),(1353,986108422,1),(1353,1004248822,2),(1353,1018162822,1),(1353,1035698422,2),(1353,1049612422,1),(1353,1067148022,2),(1353,1081062022,1),(1353,1099202422,2),(1353,1112511622,1),(1353,1130652022,2),(1353,1143961223,1),(1353,1162101623,2),(1353,1173596423,1),(1353,1194156023,2),(1353,1205046023,1),(1353,1225605623,2),(1353,1236495624,1),(1353,1257055224,2),(1353,1268550024,1),(1353,1289109624,2),(1353,1299999624,1),(1353,1320559224,2),(1353,1331449224,1),(1353,1352008825,2),(1353,1362898825,1),(1353,1383458425,2),(1353,1394348425,1),(1353,1414908025,2),(1353,1425798025,1),(1353,1446357626,2),(1353,1457852426,1),(1353,1478412026,2),(1353,1489302027,1),(1353,1509861627,2),(1353,1520751627,1),(1353,1541311227,2),(1353,1552201227,1),(1353,1572760827,2),(1353,1583650827,1),(1353,1604210427,2),(1353,1615705227,1),(1353,1636264827,2),(1353,1647154827,1),(1353,1667714427,2),(1353,1678604427,1),(1353,1699164027,2),(1353,1710054027,1),(1353,1730613627,2),(1353,1741503627,1),(1353,1762063227,2),(1353,1772953227,1),(1353,1793512827,2),(1353,1805007627,1),(1353,1825567227,2),(1353,1836457227,1),(1353,1857016827,2),(1353,1867906827,1),(1353,1888466427,2),(1353,1899356427,1),(1353,1919916027,2),(1353,1930806027,1),(1353,1951365627,2),(1353,1962860427,1),(1353,1983420027,2),(1353,1994310027,1),(1353,2014869627,2),(1353,2025759627,1),(1353,2046319227,2),(1353,2057209227,1),(1353,2077768827,2),(1353,2088658827,1),(1353,2109218427,2),(1353,2120108427,1),(1353,2140668027,2),(1354,-1633280400,0),(1354,-1615140000,1),(1354,-1601830800,0),(1354,-1583690400,1),(1354,-1570381200,0),(1354,-1551636000,1),(1354,-1536512400,0),(1354,-1523210400,1),(1354,-1504458000,0),(1354,-1491760800,1),(1354,-1473008400,0),(1354,-1459706400,1),(1354,-1441558800,0),(1354,-1428256800,1),(1354,-1410109200,0),(1354,-1396807200,1),(1354,-1378659600,0),(1354,-1365357600,1),(1354,-1347210000,0),(1354,-1333908000,1),(1354,-1315155600,0),(1354,-1301853600,1),(1354,-1283706000,0),(1354,-1270404000,1),(1354,-1252256400,0),(1354,-1238954400,1),(1354,-1220806800,0),(1354,-1207504800,1),(1354,-1189357200,0),(1354,-1176055200,1),(1354,-1157302800,0),(1354,-1144605600,1),(1354,-1125853200,0),(1354,-1112551200,1),(1354,-1094403600,0),(1354,-1081101600,1),(1354,-1062954000,0),(1354,-1049652000,1),(1354,-1031504400,0),(1354,-1018202400,1),(1354,-1000054800,0),(1354,-986752800,1),(1354,-968000400,0),(1354,-955303200,1),(1354,-936550800,0),(1354,-923248800,1),(1354,-905101200,0),(1354,-891799200,1),(1354,-880218000,2),(1354,-769395600,3),(1354,-765396000,1),(1354,-747248400,0),(1354,-733946400,1),(1354,-715798800,0),(1354,-702496800,1),(1354,-684349200,0),(1354,-671047200,1),(1354,-652899600,0),(1354,-639597600,1),(1354,-620845200,0),(1354,-608148000,1),(1354,-589395600,0),(1354,-576093600,1),(1354,-557946000,0),(1354,-544644000,1),(1354,-526496400,0),(1354,-513194400,1),(1354,-495046800,0),(1354,-481744800,1),(1354,-463597200,0),(1354,-447271200,1),(1354,-431542800,0),(1354,-415821600,1),(1354,-400093200,0),(1354,-384372000,1),(1354,-368643600,0),(1354,-352922400,1),(1354,-337194000,0),(1354,-321472800,1),(1354,-305744400,0),(1354,-289418400,1),(1354,-273690000,0),(1354,-257968800,1),(1354,-242240400,0),(1354,-226519200,1),(1354,-210790800,0),(1354,-195069600,1),(1354,-179341200,0),(1354,-163620000,1),(1354,-147891600,0),(1354,-131565600,1),(1354,-116442000,0),(1354,-100116000,1),(1354,-84387600,0),(1354,-68666400,1),(1354,-52938000,0),(1354,-37216800,1),(1354,-21488400,0),(1354,-5767200,1),(1354,9961200,0),(1354,25682400,1),(1354,41410800,0),(1354,57736800,1),(1354,73465200,0),(1354,89186401,1),(1354,104914802,0),(1354,120636002,1),(1354,126687603,0),(1354,152085603,1),(1354,162370804,0),(1354,183535204,1),(1354,199263605,0),(1354,215589605,1),(1354,230713206,0),(1354,247039206,1),(1354,262767607,0),(1354,278488807,1),(1354,294217208,0),(1354,309938408,1),(1354,325666809,0),(1354,341388009,1),(1354,357116409,0),(1354,372837610,1),(1354,388566010,0),(1354,404892011,1),(1354,420015611,0),(1354,436341612,1),(1354,452070012,0),(1354,467791212,1),(1354,483519612,0),(1354,499240813,1),(1354,514969213,0),(1354,530690413,1),(1354,544604413,0),(1354,562140013,1),(1354,576054014,0),(1354,594194414,1),(1354,607503614,0),(1354,625644014,1),(1354,638953215,0),(1354,657093615,1),(1354,671007616,0),(1354,688543216,1),(1354,702457216,0),(1354,719992817,1),(1354,733906817,0),(1354,752047218,1),(1354,765356418,0),(1354,783496819,1),(1354,796806019,0),(1354,814946419,1),(1354,828860420,0),(1354,846396020,1),(1354,860310020,0),(1354,877845621,1),(1354,891759621,0),(1354,909295221,1),(1354,923209222,0),(1354,941349622,1),(1354,954658822,0),(1354,972799222,1),(1354,986108422,0),(1354,1004248822,1),(1354,1018162822,0),(1354,1035698422,1),(1354,1049612422,0),(1354,1067148022,1),(1354,1081062022,0),(1354,1099202422,1),(1354,1112511622,0),(1354,1130652022,1),(1354,1143961223,0),(1354,1162101623,1),(1354,1173596423,0),(1354,1194156023,1),(1354,1205046023,0),(1354,1225605623,1),(1354,1236495624,0),(1354,1257055224,1),(1354,1268550024,0),(1354,1289109624,1),(1354,1299999624,0),(1354,1320559224,1),(1354,1331449224,0),(1354,1352008825,1),(1354,1362898825,0),(1354,1383458425,1),(1354,1394348425,0),(1354,1414908025,1),(1354,1425798025,0),(1354,1446357626,1),(1354,1457852426,0),(1354,1478412026,1),(1354,1489302027,0),(1354,1509861627,1),(1354,1520751627,0),(1354,1541311227,1),(1354,1552201227,0),(1354,1572760827,1),(1354,1583650827,0),(1354,1604210427,1),(1354,1615705227,0),(1354,1636264827,1),(1354,1647154827,0),(1354,1667714427,1),(1354,1678604427,0),(1354,1699164027,1),(1354,1710054027,0),(1354,1730613627,1),(1354,1741503627,0),(1354,1762063227,1),(1354,1772953227,0),(1354,1793512827,1),(1354,1805007627,0),(1354,1825567227,1),(1354,1836457227,0),(1354,1857016827,1),(1354,1867906827,0),(1354,1888466427,1),(1354,1899356427,0),(1354,1919916027,1),(1354,1930806027,0),(1354,1951365627,1),(1354,1962860427,0),(1354,1983420027,1),(1354,1994310027,0),(1354,2014869627,1),(1354,2025759627,0),(1354,2046319227,1),(1354,2057209227,0),(1354,2077768827,1),(1354,2088658827,0),(1354,2109218427,1),(1354,2120108427,0),(1354,2140668027,1),(1355,-1632070800,0),(1355,-1615140000,1),(1355,-923252400,0),(1355,-880218000,2),(1355,-769395600,3),(1355,-765396000,1),(1355,136364403,0),(1355,152085603,1),(1355,167814004,0),(1355,183535204,1),(1355,199263605,0),(1355,215589605,1),(1355,230713206,0),(1355,247039206,1),(1355,262767607,0),(1355,278488807,1),(1355,294217208,0),(1355,309938408,1),(1355,325666809,0),(1355,341388009,1),(1355,357116409,0),(1355,372837610,1),(1355,388566010,0),(1355,404892011,1),(1355,420015611,0),(1355,436341612,1),(1355,452070012,0),(1355,467791212,1),(1355,483519612,0),(1355,499240813,1),(1355,514969213,0),(1355,530690413,1),(1355,544604413,0),(1355,562140013,1),(1355,576054014,0),(1355,594194414,1),(1355,607503614,0),(1355,625644014,1),(1355,638953215,0),(1355,657093615,1),(1355,671007616,0),(1355,688543216,1),(1355,702457216,0),(1355,719992817,1),(1355,733906817,0),(1355,752047218,1),(1355,765356418,0),(1355,783496819,1),(1355,796806019,0),(1355,814946419,1),(1355,828860420,0),(1355,846396020,1),(1355,860310020,0),(1355,877845621,1),(1355,891759621,0),(1355,909295221,1),(1355,923209222,0),(1355,941349622,1),(1355,954658822,0),(1355,972799222,1),(1355,986108422,0),(1355,1004248822,1),(1355,1018162822,0),(1355,1035698422,1),(1355,1049612422,0),(1355,1067148022,1),(1355,1081062022,0),(1355,1099202422,1),(1355,1112511622,0),(1355,1130652022,1),(1355,1143961223,0),(1355,1162101623,1),(1355,1173596423,0),(1355,1194156023,1),(1355,1205046023,0),(1355,1225605623,1),(1355,1236495624,0),(1355,1257055224,1),(1355,1268550024,0),(1355,1289109624,1),(1355,1299999624,0),(1355,1320559224,1),(1355,1331449224,0),(1355,1352008825,1),(1355,1362898825,0),(1355,1383458425,1),(1355,1394348425,0),(1355,1414908025,1),(1355,1425798025,0),(1355,1446357626,1),(1355,1457852426,0),(1355,1478412026,1),(1355,1489302027,0),(1355,1509861627,1),(1355,1520751627,0),(1355,1541311227,1),(1355,1552201227,0),(1355,1572760827,1),(1355,1583650827,0),(1355,1604210427,1),(1355,1615705227,0),(1355,1636264827,1),(1355,1647154827,0),(1355,1667714427,1),(1355,1678604427,0),(1355,1699164027,1),(1355,1710054027,0),(1355,1730613627,1),(1355,1741503627,0),(1355,1762063227,1),(1355,1772953227,0),(1355,1793512827,1),(1355,1805007627,0),(1355,1825567227,1),(1355,1836457227,0),(1355,1857016827,1),(1355,1867906827,0),(1355,1888466427,1),(1355,1899356427,0),(1355,1919916027,1),(1355,1930806027,0),(1355,1951365627,1),(1355,1962860427,0),(1355,1983420027,1),(1355,1994310027,0),(1355,2014869627,1),(1355,2025759627,0),(1355,2046319227,1),(1355,2057209227,0),(1355,2077768827,1),(1355,2088658827,0),(1355,2109218427,1),(1355,2120108427,0),(1355,2140668027,1),(1356,-880196400,1),(1356,-769395600,2),(1356,-765374400,0),(1356,-86878800,3),(1356,-21466800,4),(1356,-5745600,3),(1356,9982800,4),(1356,25704000,3),(1356,41432400,4),(1356,57758400,3),(1356,73486800,4),(1356,89208001,3),(1356,104936402,4),(1356,120657602,3),(1356,126709203,4),(1356,152107203,3),(1356,162392404,4),(1356,183556804,3),(1356,199285205,4),(1356,215611205,3),(1356,230734806,4),(1356,247060806,3),(1356,262789207,4),(1356,278510407,3),(1356,294238808,4),(1356,309960008,3),(1356,325688409,4),(1356,341409609,3),(1356,357138009,4),(1356,372859210,3),(1356,388587610,4),(1356,404913611,3),(1356,420037211,4),(1356,436363212,5),(1356,439030812,7),(1356,452084412,6),(1356,467805612,7),(1356,483534012,6),(1356,499255213,7),(1356,514983613,6),(1356,530704813,7),(1356,544618813,6),(1356,562154413,7),(1356,576068414,6),(1356,594208814,7),(1356,607518014,6),(1356,625658414,7),(1356,638967615,6),(1356,657108015,7),(1356,671022016,6),(1356,688557616,7),(1356,702471616,6),(1356,720007217,7),(1356,733921217,6),(1356,752061618,7),(1356,765370818,6),(1356,783511219,7),(1356,796820419,6),(1356,814960819,7),(1356,828874820,6),(1356,846410420,7),(1356,860324420,6),(1356,877860021,7),(1356,891774021,6),(1356,909309621,7),(1356,923223622,6),(1356,941364022,7),(1356,954673222,6),(1356,972813622,7),(1356,986122822,6),(1356,1004263222,7),(1356,1018177222,6),(1356,1035712822,7),(1356,1049626822,6),(1356,1067162422,7),(1356,1081076422,6),(1356,1099216822,7),(1356,1112526022,6),(1356,1130666422,7),(1356,1143975623,6),(1356,1162116023,7),(1356,1173610823,6),(1356,1194170423,7),(1356,1205060423,6),(1356,1225620023,7),(1356,1236510024,6),(1356,1257069624,7),(1356,1268564424,6),(1356,1289124024,7),(1356,1300014024,6),(1356,1320573624,7),(1356,1331463624,6),(1356,1352023225,7),(1356,1362913225,6),(1356,1383472825,7),(1356,1394362825,6),(1356,1414922425,7),(1356,1425812425,6),(1356,1446372026,7),(1356,1457866826,6),(1356,1478426426,7),(1356,1489316427,6),(1356,1509876027,7),(1356,1520766027,6),(1356,1541325627,7),(1356,1552215627,6),(1356,1572775227,7),(1356,1583665227,6),(1356,1604224827,7),(1356,1615719627,6),(1356,1636279227,7),(1356,1647169227,6),(1356,1667728827,7),(1356,1678618827,6),(1356,1699178427,7),(1356,1710068427,6),(1356,1730628027,7),(1356,1741518027,6),(1356,1762077627,7),(1356,1772967627,6),(1356,1793527227,7),(1356,1805022027,6),(1356,1825581627,7),(1356,1836471627,6),(1356,1857031227,7),(1356,1867921227,6),(1356,1888480827,7),(1356,1899370827,6),(1356,1919930427,7),(1356,1930820427,6),(1356,1951380027,7),(1356,1962874827,6),(1356,1983434427,7),(1356,1994324427,6),(1356,2014884027,7),(1356,2025774027,6),(1356,2046333627,7),(1356,2057223627,6),(1356,2077783227,7),(1356,2088673227,6),(1356,2109232827,7),(1356,2120122827,6),(1356,2140682427,7),(1357,-1767217820,2),(1357,-1206961200,1),(1357,-1191366000,2),(1357,-1175378400,1),(1357,-1159830000,2),(1357,-633823200,1),(1357,-622072800,2),(1357,-602287200,1),(1357,-591836400,2),(1357,-570751200,1),(1357,-560214000,2),(1357,-539128800,1),(1357,-531356400,2),(1357,-191368800,1),(1357,-184201200,2),(1357,-155167200,1),(1357,-150073200,2),(1357,-128901600,1),(1357,-121129200,2),(1357,-99957600,1),(1357,-89593200,2),(1357,-68421600,1),(1357,-57970800,2),(1357,499744813,1),(1357,511232413,2),(1357,530589613,1),(1357,540262813,2),(1357,562125613,1),(1357,571194014,2),(1357,592970414,1),(1357,602038814,2),(1357,624420014,1),(1357,634698015,2),(1357,938916022,1),(1357,951613222,2),(1357,970970422,1),(1357,971571622,2),(1357,1003024822,1),(1357,1013907622,2),(1358,-1633273200,0),(1358,-1615132800,1),(1358,-1601823600,0),(1358,-1583683200,1),(1358,-880210800,2),(1358,-769395600,3),(1358,-765388800,1),(1358,-84380400,0),(1358,-68659200,1),(1358,-52930800,0),(1358,-37209600,1),(1358,-21481200,0),(1358,-5760000,1),(1358,9968400,0),(1358,25689600,1),(1358,41418000,0),(1358,57744000,1),(1358,73472400,0),(1358,89193601,1),(1358,104922002,0),(1358,120643202,1),(1358,126694803,0),(1358,152092803,1),(1358,162378004,0),(1358,183542404,1),(1358,199270805,0),(1358,215596805,1),(1358,230720406,0),(1358,247046406,1),(1358,262774807,0),(1358,278496007,1),(1358,294224408,0),(1358,309945608,1),(1358,325674009,0),(1358,341395209,1),(1358,357123609,0),(1358,372844810,1),(1358,388573210,0),(1358,404899211,1),(1358,420022811,0),(1358,436348812,1),(1358,452077212,0),(1358,467798412,1),(1358,483526812,0),(1358,499248013,1),(1358,514976413,0),(1358,530697613,1),(1358,544611613,0),(1358,562147213,1),(1358,576061214,0),(1358,594201614,1),(1358,607510814,0),(1358,625651214,1),(1358,638960415,0),(1358,657100815,1),(1358,671014816,0),(1358,688550416,1),(1358,702464416,0),(1358,720000017,1),(1358,733914017,0),(1358,752054418,1),(1358,765363618,0),(1358,783504019,1),(1358,796813219,0),(1358,814953619,1),(1358,828867620,0),(1358,846403220,1),(1358,860317220,0),(1358,877852821,1),(1358,891766821,0),(1358,909302421,1),(1358,923216422,0),(1358,941356822,1),(1358,954666022,0),(1358,972806422,1),(1358,986115622,0),(1358,1004256022,1),(1358,1018170022,0),(1358,1035705622,1),(1358,1049619622,0),(1358,1067155222,1),(1358,1081069222,0),(1358,1099209622,1),(1358,1112518822,0),(1358,1130659222,1),(1358,1143968423,0),(1358,1162108823,1),(1358,1173603623,0),(1358,1194163223,1),(1358,1205053223,0),(1358,1225612823,1),(1358,1236502824,0),(1358,1257062424,1),(1358,1268557224,0),(1358,1289116824,5),(1358,1300003224,4),(1358,1320562824,5),(1358,1331452824,4),(1358,1352012425,5),(1358,1362902425,4),(1358,1383462025,5),(1358,1394352025,4),(1358,1414911625,5),(1358,1425801625,4),(1358,1446361226,5),(1358,1457856026,4),(1358,1478415626,5),(1358,1489305627,4),(1358,1509865227,5),(1358,1520755227,4),(1358,1541314827,5),(1358,1552204827,4),(1358,1572764427,5),(1358,1583654427,4),(1358,1604214027,5),(1358,1615708827,4),(1358,1636268427,5),(1358,1647158427,4),(1358,1667718027,5),(1358,1678608027,4),(1358,1699167627,5),(1358,1710057627,4),(1358,1730617227,5),(1358,1741507227,4),(1358,1762066827,5),(1358,1772956827,4),(1358,1793516427,5),(1358,1805011227,4),(1358,1825570827,5),(1358,1836460827,4),(1358,1857020427,5),(1358,1867910427,4),(1358,1888470027,5),(1358,1899360027,4),(1358,1919919627,5),(1358,1930809627,4),(1358,1951369227,5),(1358,1962864027,4),(1358,1983423627,5),(1358,1994313627,4),(1358,2014873227,5),(1358,2025763227,4),(1358,2046322827,5),(1358,2057212827,4),(1358,2077772427,5),(1358,2088662427,4),(1358,2109222027,5),(1358,2120112027,4),(1358,2140671627,5),(1359,-1633273200,0),(1359,-1615132800,1),(1359,-1601823600,0),(1359,-1583683200,1),(1359,-880210800,2),(1359,-769395600,3),(1359,-765388800,1),(1359,-84380400,0),(1359,-68659200,1),(1359,-52930800,0),(1359,-37209600,1),(1359,-21481200,0),(1359,-5760000,1),(1359,9968400,0),(1359,25689600,1),(1359,41418000,0),(1359,57744000,1),(1359,73472400,0),(1359,89193601,1),(1359,104922002,0),(1359,120643202,1),(1359,126694803,0),(1359,152092803,1),(1359,162378004,0),(1359,183542404,1),(1359,199270805,0),(1359,215596805,1),(1359,230720406,0),(1359,247046406,1),(1359,262774807,0),(1359,278496007,1),(1359,294224408,0),(1359,309945608,1),(1359,325674009,0),(1359,341395209,1),(1359,357123609,0),(1359,372844810,1),(1359,388573210,0),(1359,404899211,1),(1359,420022811,0),(1359,436348812,1),(1359,452077212,0),(1359,467798412,1),(1359,483526812,0),(1359,499248013,1),(1359,514976413,0),(1359,530697613,1),(1359,544611613,0),(1359,562147213,1),(1359,576061214,0),(1359,594201614,1),(1359,607510814,0),(1359,625651214,1),(1359,638960415,0),(1359,657100815,1),(1359,671014816,0),(1359,688550416,1),(1359,702464416,0),(1359,720000017,5),(1359,733910417,4),(1359,752050818,5),(1359,765360018,4),(1359,783500419,5),(1359,796809619,4),(1359,814950019,5),(1359,828864020,4),(1359,846399620,5),(1359,860313620,4),(1359,877849221,5),(1359,891763221,4),(1359,909298821,5),(1359,923212822,4),(1359,941353222,5),(1359,954662422,4),(1359,972802822,5),(1359,986112022,4),(1359,1004252422,5),(1359,1018166422,4),(1359,1035702022,5),(1359,1049616022,4),(1359,1067151622,5),(1359,1081065622,4),(1359,1099206022,5),(1359,1112515222,4),(1359,1130655622,5),(1359,1143964823,4),(1359,1162105223,5),(1359,1173600023,4),(1359,1194159623,5),(1359,1205049623,4),(1359,1225609223,5),(1359,1236499224,4),(1359,1257058824,5),(1359,1268553624,4),(1359,1289113224,5),(1359,1300003224,4),(1359,1320562824,5),(1359,1331452824,4),(1359,1352012425,5),(1359,1362902425,4),(1359,1383462025,5),(1359,1394352025,4),(1359,1414911625,5),(1359,1425801625,4),(1359,1446361226,5),(1359,1457856026,4),(1359,1478415626,5),(1359,1489305627,4),(1359,1509865227,5),(1359,1520755227,4),(1359,1541314827,5),(1359,1552204827,4),(1359,1572764427,5),(1359,1583654427,4),(1359,1604214027,5),(1359,1615708827,4),(1359,1636268427,5),(1359,1647158427,4),(1359,1667718027,5),(1359,1678608027,4),(1359,1699167627,5),(1359,1710057627,4),(1359,1730617227,5),(1359,1741507227,4),(1359,1762066827,5),(1359,1772956827,4),(1359,1793516427,5),(1359,1805011227,4),(1359,1825570827,5),(1359,1836460827,4),(1359,1857020427,5),(1359,1867910427,4),(1359,1888470027,5),(1359,1899360027,4),(1359,1919919627,5),(1359,1930809627,4),(1359,1951369227,5),(1359,1962864027,4),(1359,1983423627,5),(1359,1994313627,4),(1359,2014873227,5),(1359,2025763227,4),(1359,2046322827,5),(1359,2057212827,4),(1359,2077772427,5),(1359,2088662427,4),(1359,2109222027,5),(1359,2120112027,4),(1359,2140671627,5),(1360,-1633273200,0),(1360,-1615132800,1),(1360,-1601823600,0),(1360,-1583683200,1),(1360,-880210800,2),(1360,-769395600,3),(1360,-765388800,1),(1360,-84380400,0),(1360,-68659200,1),(1360,-52930800,0),(1360,-37209600,1),(1360,-21481200,0),(1360,-5760000,1),(1360,9968400,0),(1360,25689600,1),(1360,41418000,0),(1360,57744000,1),(1360,73472400,0),(1360,89193601,1),(1360,104922002,0),(1360,120643202,1),(1360,126694803,0),(1360,152092803,1),(1360,162378004,0),(1360,183542404,1),(1360,199270805,0),(1360,215596805,1),(1360,230720406,0),(1360,247046406,1),(1360,262774807,0),(1360,278496007,1),(1360,294224408,0),(1360,309945608,1),(1360,325674009,0),(1360,341395209,1),(1360,357123609,0),(1360,372844810,1),(1360,388573210,0),(1360,404899211,1),(1360,420022811,0),(1360,436348812,1),(1360,452077212,0),(1360,467798412,1),(1360,483526812,0),(1360,499248013,1),(1360,514976413,0),(1360,530697613,1),(1360,544611613,0),(1360,562147213,1),(1360,576061214,0),(1360,594201614,1),(1360,607510814,0),(1360,625651214,1),(1360,638960415,0),(1360,657100815,1),(1360,671014816,0),(1360,688550416,1),(1360,702464416,0),(1360,720000017,1),(1360,733914017,0),(1360,752054418,1),(1360,765363618,0),(1360,783504019,1),(1360,796813219,0),(1360,814953619,1),(1360,828867620,0),(1360,846403220,1),(1360,860317220,0),(1360,877852821,1),(1360,891766821,0),(1360,909302421,1),(1360,923216422,0),(1360,941356822,1),(1360,954666022,0),(1360,972806422,1),(1360,986115622,0),(1360,1004256022,1),(1360,1018170022,0),(1360,1035705622,1),(1360,1049619622,0),(1360,1067155222,5),(1360,1081065622,4),(1360,1099206022,5),(1360,1112515222,4),(1360,1130655622,5),(1360,1143964823,4),(1360,1162105223,5),(1360,1173600023,4),(1360,1194159623,5),(1360,1205049623,4),(1360,1225609223,5),(1360,1236499224,4),(1360,1257058824,5),(1360,1268553624,4),(1360,1289113224,5),(1360,1300003224,4),(1360,1320562824,5),(1360,1331452824,4),(1360,1352012425,5),(1360,1362902425,4),(1360,1383462025,5),(1360,1394352025,4),(1360,1414911625,5),(1360,1425801625,4),(1360,1446361226,5),(1360,1457856026,4),(1360,1478415626,5),(1360,1489305627,4),(1360,1509865227,5),(1360,1520755227,4),(1360,1541314827,5),(1360,1552204827,4),(1360,1572764427,5),(1360,1583654427,4),(1360,1604214027,5),(1360,1615708827,4),(1360,1636268427,5),(1360,1647158427,4),(1360,1667718027,5),(1360,1678608027,4),(1360,1699167627,5),(1360,1710057627,4),(1360,1730617227,5),(1360,1741507227,4),(1360,1762066827,5),(1360,1772956827,4),(1360,1793516427,5),(1360,1805011227,4),(1360,1825570827,5),(1360,1836460827,4),(1360,1857020427,5),(1360,1867910427,4),(1360,1888470027,5),(1360,1899360027,4),(1360,1919919627,5),(1360,1930809627,4),(1360,1951369227,5),(1360,1962864027,4),(1360,1983423627,5),(1360,1994313627,4),(1360,2014873227,5),(1360,2025763227,4),(1360,2046322827,5),(1360,2057212827,4),(1360,2077772427,5),(1360,2088662427,4),(1360,2109222027,5),(1360,2120112027,4),(1360,2140671627,5),(1361,-1514739600,1),(1361,-1343066400,2),(1361,-1234807200,1),(1361,-1220292000,2),(1361,-1207159200,1),(1361,-1191344400,2),(1361,828864020,3),(1361,846399620,2),(1361,860313620,3),(1361,877849221,2),(1361,891766821,4),(1361,909302421,1),(1361,923216422,4),(1361,941356822,1),(1361,954666022,4),(1361,972806422,1),(1361,989139622,4),(1361,1001836822,1),(1361,1018170022,4),(1361,1035705622,1),(1361,1049619622,4),(1361,1067155222,1),(1361,1081069222,4),(1361,1099209622,1),(1361,1112518822,4),(1361,1130659222,1),(1361,1143968423,4),(1361,1162108823,1),(1361,1175418023,4),(1361,1193558423,1),(1361,1207472423,4),(1361,1225008023,1),(1361,1238922024,4),(1361,1256457624,1),(1361,1268557224,4),(1361,1289116824,1),(1361,1300006824,4),(1361,1320566424,1),(1361,1331456424,4),(1361,1352016025,1),(1361,1362906025,4),(1361,1383465625,1),(1361,1394355625,4),(1361,1414915225,1),(1361,1425805225,4),(1361,1446364826,1),(1361,1457859626,4),(1361,1478419226,1),(1361,1489309227,4),(1361,1509868827,1),(1361,1520758827,4),(1361,1541318427,1),(1361,1552208427,4),(1361,1572768027,1),(1361,1583658027,4),(1361,1604217627,1),(1361,1615712427,4),(1361,1636272027,1),(1361,1647162027,4),(1361,1667721627,1),(1361,1678611627,4),(1361,1699171227,1),(1361,1710061227,4),(1361,1730620827,1),(1361,1741510827,4),(1361,1762070427,1),(1361,1772960427,4),(1361,1793520027,1),(1361,1805014827,4),(1361,1825574427,1),(1361,1836464427,4),(1361,1857024027,1),(1361,1867914027,4),(1361,1888473627,1),(1361,1899363627,4),(1361,1919923227,1),(1361,1930813227,4),(1361,1951372827,1),(1361,1962867627,4),(1361,1983427227,1),(1361,1994317227,4),(1361,2014876827,1),(1361,2025766827,4),(1361,2046326427,1),(1361,2057216427,4),(1361,2077776027,1),(1361,2088666027,4),(1361,2109225627,1),(1361,2120115627,4),(1361,2140675227,1),(1362,-1946918424,1),(1363,-1546300800,3),(1363,-880221600,1),(1363,-769395600,2),(1363,-765399600,3),(1363,-147902400,4),(1363,-131572800,3),(1363,325663209,5),(1363,341384409,3),(1363,357112809,5),(1363,372834010,3),(1363,388562410,5),(1363,404888411,3),(1363,420012011,5),(1363,436338012,3),(1363,452066412,5),(1363,467787612,3),(1363,483516012,5),(1363,499237213,3),(1363,514965613,5),(1363,530686813,3),(1363,544600813,5),(1363,562136413,3),(1363,576050414,5),(1363,594190814,3),(1363,607500014,5),(1363,625640414,3),(1363,638949615,5),(1363,657090015,3),(1363,671004016,5),(1363,688539616,3),(1363,702453616,5),(1363,719989217,3),(1363,733903217,5),(1363,752043618,3),(1363,765352818,5),(1363,783493219,3),(1363,796802419,6),(1363,814946419,7),(1363,828860420,6),(1363,846396020,7),(1363,860310020,6),(1363,877845621,7),(1363,891759621,6),(1363,909295221,7),(1363,923209222,6),(1363,941349622,8),(1363,954662422,9),(1363,972802822,7),(1363,986108422,6),(1363,1004248822,7),(1363,1018162822,6),(1363,1035698422,7),(1363,1049612422,6),(1363,1067148022,7),(1363,1081062022,6),(1363,1099202422,7),(1363,1112511622,6),(1363,1130652022,7),(1363,1143961223,6),(1363,1162101623,7),(1363,1173596423,6),(1363,1194156023,7),(1363,1205046023,6),(1363,1225605623,7),(1363,1236495624,6),(1363,1257055224,7),(1363,1268550024,6),(1363,1289109624,7),(1363,1299999624,6),(1363,1320559224,7),(1363,1331449224,6),(1363,1352008825,7),(1363,1362898825,6),(1363,1383458425,7),(1363,1394348425,6),(1363,1414908025,7),(1363,1425798025,6),(1363,1446357626,7),(1363,1457852426,6),(1363,1478412026,7),(1363,1489302027,6),(1363,1509861627,7),(1363,1520751627,6),(1363,1541311227,7),(1363,1552201227,6),(1363,1572760827,7),(1363,1583650827,6),(1363,1604210427,7),(1363,1615705227,6),(1363,1636264827,7),(1363,1647154827,6),(1363,1667714427,7),(1363,1678604427,6),(1363,1699164027,7),(1363,1710054027,6),(1363,1730613627,7),(1363,1741503627,6),(1363,1762063227,7),(1363,1772953227,6),(1363,1793512827,7),(1363,1805007627,6),(1363,1825567227,7),(1363,1836457227,6),(1363,1857016827,7),(1363,1867906827,6),(1363,1888466427,7),(1363,1899356427,6),(1363,1919916027,7),(1363,1930806027,6),(1363,1951365627,7),(1363,1962860427,6),(1363,1983420027,7),(1363,1994310027,6),(1363,2014869627,7),(1363,2025759627,6),(1363,2046319227,7),(1363,2057209227,6),(1363,2077768827,7),(1363,2088658827,6),(1363,2109218427,7),(1363,2120108427,6),(1363,2140668027,7),(1364,-1861906760,1),(1364,-1104524348,2),(1364,-765317964,3),(1364,465449412,4),(1365,-1633273200,0),(1365,-1615132800,1),(1365,-1601823600,0),(1365,-1583683200,1),(1365,-880210800,2),(1365,-820519140,1),(1365,-812653140,2),(1365,-796845540,1),(1365,-84380400,0),(1365,-68659200,1),(1366,-1670483460,2),(1366,421218011,1),(1366,436334412,2),(1366,452062812,1),(1366,467784012,2),(1366,483512412,1),(1366,499233613,2),(1366,514962013,1),(1366,530683213,2),(1366,546411613,1),(1366,562132813,2),(1366,576050414,3),(1366,594194414,4),(1366,607500014,3),(1366,625644014,4),(1366,638949615,3),(1366,657093615,4),(1366,671004016,3),(1366,688543216,4),(1366,702453616,3),(1366,719992817,4),(1366,733903217,3),(1366,752047218,4),(1366,765352818,3),(1366,783496819,4),(1366,796802419,3),(1366,814946419,4),(1366,828856820,3),(1366,846396020,4),(1366,860306420,3),(1366,877845621,4),(1366,1112504422,1),(1366,1130644822,2),(1366,1143954023,1),(1366,1162094423,2),(1366,1331449224,1),(1366,1352008825,2),(1366,1362898825,1),(1366,1383458425,2),(1366,1394348425,1),(1366,1414908025,2),(1366,1425798025,1),(1366,1446357626,2),(1366,1489302027,1),(1366,1509861627,2),(1366,1520751627,1),(1366,1541311227,2),(1366,1552201227,1),(1366,1572760827,2),(1366,1583650827,1),(1366,1604210427,2),(1366,1615705227,1),(1366,1636264827,2),(1366,1647154827,1),(1366,1667714427,2),(1366,1678604427,1),(1366,1699164027,2),(1366,1710054027,1),(1366,1730613627,2),(1366,1741503627,1),(1366,1762063227,2),(1366,1772953227,1),(1366,1793512827,2),(1366,1805007627,1),(1366,1825567227,2),(1366,1836457227,1),(1366,1857016827,2),(1366,1867906827,1),(1366,1888466427,2),(1366,1899356427,1),(1366,1919916027,2),(1366,1930806027,1),(1366,1951365627,2),(1366,1962860427,1),(1366,1983420027,2),(1366,1994310027,1),(1366,2014869627,2),(1366,2025759627,1),(1366,2046319227,2),(1366,2057209227,1),(1366,2077768827,2),(1366,2088658827,1),(1366,2109218427,2),(1366,2120108427,1),(1366,2140668027,2),(1367,-1825098836,1),(1368,-1767209328,2),(1368,-1206950400,1),(1368,-1191355200,2),(1368,-1175367600,1),(1368,-1159819200,2),(1368,-633812400,1),(1368,-622062000,2),(1368,-602276400,1),(1368,-591825600,2),(1368,-570740400,1),(1368,-560203200,2),(1368,-539118000,1),(1368,-531345600,2),(1368,-191358000,1),(1368,-184190400,2),(1368,-155156400,1),(1368,-150062400,2),(1368,-128890800,1),(1368,-121118400,2),(1368,-99946800,1),(1368,-89582400,2),(1368,-68410800,1),(1368,-57960000,2),(1368,499755613,1),(1368,511243213,2),(1368,530600413,1),(1368,540273613,2),(1368,562136413,1),(1368,571204814,2),(1368,1214283623,3),(1368,1384056025,2),(1369,-1767210264,2),(1369,-1206954000,1),(1369,-1191358800,2),(1369,-1175371200,1),(1369,-1159822800,2),(1369,-633816000,1),(1369,-622065600,2),(1369,-602280000,1),(1369,-591829200,2),(1369,-570744000,1),(1369,-560206800,2),(1369,-539121600,1),(1369,-531349200,2),(1369,-191361600,1),(1369,-184194000,2),(1369,-155160000,1),(1369,-150066000,2),(1369,-128894400,1),(1369,-121122000,2),(1369,-99950400,1),(1369,-89586000,2),(1369,-68414400,1),(1369,-57963600,2),(1369,499752013,1),(1369,511239613,2),(1369,530596813,1),(1369,540270013,2),(1369,562132813,1),(1369,571201214,2),(1370,-873057600,2),(1370,-769395600,1),(1370,-765399600,0),(1371,-1892661434,1),(1371,-1688410800,0),(1371,-1619205434,2),(1371,-1593806400,0),(1371,-1335986234,3),(1371,-1317585600,1),(1371,-1304362800,3),(1371,-1286049600,1),(1371,-1272826800,3),(1371,-1254513600,1),(1371,-1241290800,3),(1371,-1222977600,1),(1371,-1209754800,3),(1371,-1191355200,1),(1371,-1178132400,2),(1371,-870552000,1),(1371,-865278000,2),(1371,-718056000,1),(1371,-713649600,2),(1371,-36619200,4),(1371,-23922000,5),(1371,-3355200,4),(1371,7527600,5),(1371,24465600,4),(1371,37767600,5),(1371,55915200,4),(1371,69217200,5),(1371,87969601,4),(1371,100666802,5),(1371,118209602,4),(1371,132116403,5),(1371,150868803,4),(1371,163566004,5),(1371,182318404,4),(1371,195620405,5),(1371,213768005,4),(1371,227070006,5),(1371,245217606,4),(1371,258519607,5),(1371,277272007,4),(1371,289969208,5),(1371,308721608,4),(1371,321418809,5),(1371,340171209,4),(1371,353473209,5),(1371,371620810,4),(1371,384922810,5),(1371,403070411,4),(1371,416372411,5),(1371,434520012,4),(1371,447822012,5),(1371,466574412,4),(1371,479271612,5),(1371,498024013,4),(1371,510721213,5),(1371,529473613,4),(1371,545194813,5),(1371,560923213,4),(1371,574225214,5),(1371,592372814,4),(1371,605674814,5),(1371,624427214,4),(1371,637124415,5),(1371,653457615,4),(1371,668574016,5),(1371,687326416,4),(1371,700628416,5),(1371,718776017,4),(1371,732078017,5),(1371,750225618,4),(1371,763527618,5),(1371,781675219,4),(1371,794977219,5),(1371,813729619,4),(1371,826426820,5),(1371,845179220,4),(1371,859690820,5),(1371,876628821,4),(1371,889930821,5),(1371,906868821,4),(1371,923194822,5),(1371,939528022,4),(1371,952830022,5),(1371,971582422,4),(1371,984279622,5),(1371,1003032022,4),(1371,1015729222,5),(1371,1034481622,4),(1371,1047178822,5),(1371,1065931222,4),(1371,1079233222,5),(1371,1097380822,4),(1371,1110682822,5),(1371,1128830422,4),(1371,1142132423,5),(1371,1160884823,4),(1371,1173582023,5),(1371,1192334423,4),(1371,1206846023,5),(1371,1223784023,4),(1371,1237086024,5),(1371,1255233624,4),(1371,1270350024,5),(1371,1286683224,4),(1371,1304823624,5),(1371,1313899224,4),(1371,1335668424,5),(1371,1346558425,4),(1371,1367118025,5),(1371,1378612825,4),(1371,1398567625,5),(1371,1410062425,4),(1371,1463281226,5),(1371,1471147226,4),(1371,1480820426,6),(1372,-1632067200,0),(1372,-1615136400,1),(1372,-923248800,0),(1372,-880214400,2),(1372,-769395600,3),(1372,-765392400,1),(1372,136368003,0),(1372,152089203,1),(1372,167817604,0),(1372,183538804,1),(1372,199267205,0),(1372,215593205,1),(1372,230716806,0),(1372,247042806,1),(1372,262771207,0),(1372,278492407,1),(1372,294220808,0),(1372,309942008,1),(1372,325670409,0),(1372,341391609,1),(1372,357120009,0),(1372,372841210,1),(1372,388569610,0),(1372,404895611,1),(1372,420019211,0),(1372,436345212,1),(1372,452073612,0),(1372,467794812,1),(1372,483523212,0),(1372,499244413,1),(1372,514972813,0),(1372,530694013,1),(1372,544608013,0),(1372,562143613,1),(1372,576057614,0),(1372,594198014,1),(1372,607507214,0),(1372,625647614,1),(1372,638956815,0),(1372,657097215,1),(1372,671011216,0),(1372,688546816,1),(1372,702460816,0),(1372,719996417,1),(1372,733910417,0),(1372,752050818,1),(1372,765360018,0),(1372,783500419,1),(1372,796809619,0),(1372,814950019,1),(1372,828864020,0),(1372,846399620,1),(1372,860313620,0),(1372,877849221,1),(1372,891763221,0),(1372,909298821,1),(1372,923212822,0),(1372,941353222,1),(1372,954662422,0),(1372,972802822,1),(1372,986112022,0),(1372,1004252422,1),(1372,1018166422,0),(1372,1035702022,1),(1372,1049616022,0),(1372,1067151622,1),(1372,1081065622,0),(1372,1099206022,1),(1372,1112515222,0),(1372,1130655622,1),(1372,1143964823,0),(1372,1162105223,1),(1372,1173600023,0),(1372,1194159623,1),(1372,1205049623,0),(1372,1225609223,1),(1372,1236499224,0),(1372,1257058824,1),(1372,1268553624,0),(1372,1289113224,1),(1372,1300003224,0),(1372,1320562824,1),(1372,1331452824,0),(1372,1352012425,1),(1372,1362902425,0),(1372,1383462025,1),(1372,1394352025,0),(1372,1414911625,1),(1372,1425801625,0),(1372,1446361226,1),(1372,1457856026,0),(1372,1478415626,1),(1372,1489305627,0),(1372,1509865227,1),(1372,1520755227,0),(1372,1541314827,1),(1372,1552204827,0),(1372,1572764427,1),(1372,1583654427,0),(1372,1604214027,1),(1372,1615708827,0),(1372,1636268427,1),(1372,1647158427,0),(1372,1667718027,1),(1372,1678608027,0),(1372,1699167627,1),(1372,1710057627,0),(1372,1730617227,1),(1372,1741507227,0),(1372,1762066827,1),(1372,1772956827,0),(1372,1793516427,1),(1372,1805011227,0),(1372,1825570827,1),(1372,1836460827,0),(1372,1857020427,1),(1372,1867910427,0),(1372,1888470027,1),(1372,1899360027,0),(1372,1919919627,1),(1372,1930809627,0),(1372,1951369227,1),(1372,1962864027,0),(1372,1983423627,1),(1372,1994313627,0),(1372,2014873227,1),(1372,2025763227,0),(1372,2046322827,1),(1372,2057212827,0),(1372,2077772427,1),(1372,2088662427,0),(1372,2109222027,1),(1372,2120112027,0),(1372,2140671627,1),(1373,-410227200,2),(1373,-147895200,1),(1373,-131565600,2),(1373,325670409,3),(1373,341391609,2),(1373,357120009,3),(1373,372841210,2),(1373,388569610,3),(1373,404895611,2),(1373,420019211,3),(1373,436345212,2),(1373,452073612,3),(1373,467794812,2),(1373,483523212,3),(1373,499244413,2),(1373,514972813,3),(1373,530694013,2),(1373,544608013,3),(1373,562143613,2),(1373,576057614,3),(1373,594198014,2),(1373,607507214,3),(1373,625647614,2),(1373,638956815,3),(1373,657097215,2),(1373,671011216,3),(1373,688546816,2),(1373,702460816,3),(1373,719996417,2),(1373,733910417,3),(1373,752050818,2),(1373,765360018,3),(1373,783500419,2),(1373,796809619,3),(1373,814950019,2),(1373,828864020,3),(1373,846399620,2),(1373,860313620,3),(1373,877849221,2),(1373,891763221,3),(1373,909298821,2),(1373,923212822,3),(1373,941353222,2),(1373,954662422,3),(1373,972802822,4),(1373,986112022,3),(1373,1004252422,2),(1373,1018166422,3),(1373,1035702022,2),(1373,1049616022,3),(1373,1067151622,2),(1373,1081065622,3),(1373,1099206022,2),(1373,1112515222,3),(1373,1130655622,2),(1373,1143964823,3),(1373,1162105223,2),(1373,1173600023,3),(1373,1194159623,2),(1373,1205049623,3),(1373,1225609223,2),(1373,1236499224,3),(1373,1257058824,2),(1373,1268553624,3),(1373,1289113224,2),(1373,1300003224,3),(1373,1320562824,2),(1373,1331452824,3),(1373,1352012425,2),(1373,1362902425,3),(1373,1383462025,2),(1373,1394352025,3),(1373,1414911625,2),(1373,1425801625,3),(1373,1446361226,2),(1373,1457856026,3),(1373,1478415626,2),(1373,1489305627,3),(1373,1509865227,2),(1373,1520755227,3),(1373,1541314827,2),(1373,1552204827,3),(1373,1572764427,2),(1373,1583654427,3),(1373,1604214027,2),(1373,1615708827,3),(1373,1636268427,2),(1373,1647158427,3),(1373,1667718027,2),(1373,1678608027,3),(1373,1699167627,2),(1373,1710057627,3),(1373,1730617227,2),(1373,1741507227,3),(1373,1762066827,2),(1373,1772956827,3),(1373,1793516427,2),(1373,1805011227,3),(1373,1825570827,2),(1373,1836460827,3),(1373,1857020427,2),(1373,1867910427,3),(1373,1888470027,2),(1373,1899360027,3),(1373,1919919627,2),(1373,1930809627,3),(1373,1951369227,2),(1373,1962864027,3),(1373,1983423627,2),(1373,1994313627,3),(1373,2014873227,2),(1373,2025763227,3),(1373,2046322827,2),(1373,2057212827,3),(1373,2077772427,2),(1373,2088662427,3),(1373,2109222027,2),(1373,2120112027,3),(1373,2140671627,2),(1374,-1767217224,2),(1374,-1206957600,1),(1374,-1191362400,2),(1374,-1175374800,1),(1374,-1159826400,2),(1374,-633819600,1),(1374,-622069200,2),(1374,-602283600,1),(1374,-591832800,2),(1374,-570747600,1),(1374,-560210400,2),(1374,-539125200,1),(1374,-531352800,2),(1374,-191365200,1),(1374,-184197600,2),(1374,-155163600,1),(1374,-150069600,2),(1374,-128898000,1),(1374,-121125600,2),(1374,-99954000,1),(1374,-89589600,2),(1374,-68418000,1),(1374,-57967200,2),(1374,499748413,1),(1374,511236013,2),(1374,530593213,1),(1374,540266413,2),(1374,562129213,1),(1374,571197614,2),(1374,592974014,1),(1374,602042414,2),(1374,624423614,1),(1374,634701615,2),(1374,938919622,1),(1374,951616822,2),(1374,970974022,1),(1374,971575222,2),(1374,1003028422,1),(1374,1013911222,2),(1375,-2030202084,2),(1375,-1632063600,1),(1375,-1615132800,2),(1375,-1251651600,1),(1375,-1238349600,2),(1375,-1220202000,1),(1375,-1206900000,2),(1375,-1188752400,1),(1375,-1175450400,2),(1375,-1156698000,1),(1375,-1144000800,2),(1375,-1125248400,1),(1375,-1111946400,2),(1375,-1032714000,1),(1375,-1016992800,2),(1375,-1001264400,1),(1375,-986148000,2),(1375,-969814800,1),(1375,-954093600,2),(1375,-937760400,1),(1375,-922039200,2),(1375,-906310800,1),(1375,-890589600,2),(1375,-880210800,3),(1375,-769395600,4),(1375,-765388800,2),(1375,-748450800,1),(1375,-732729600,2),(1375,-715791600,1),(1375,-702489600,2),(1375,-684342000,1),(1375,-671040000,2),(1375,-652892400,1),(1375,-639590400,2),(1375,-620838000,1),(1375,-608140800,2),(1375,-589388400,1),(1375,-576086400,2),(1375,-557938800,1),(1375,-544636800,2),(1375,-526489200,1),(1375,-513187200,2),(1375,-495039600,1),(1375,-481737600,2),(1375,-463590000,1),(1375,-450288000,2),(1375,-431535600,1),(1375,-418233600,2),(1375,-400086000,1),(1375,-386784000,2),(1375,-337186800,1),(1375,-321465600,2),(1375,-305737200,5),(1376,-704937600,2),(1376,-147895200,1),(1376,-131565600,2),(1376,325670409,3),(1376,341391609,2),(1376,357120009,3),(1376,372841210,2),(1376,388569610,3),(1376,404895611,2),(1376,420019211,3),(1376,436345212,2),(1376,452073612,3),(1376,467794812,2),(1376,483523212,3),(1376,499244413,2),(1376,514972813,3),(1376,530694013,2),(1376,544608013,3),(1376,562143613,2),(1376,576057614,3),(1376,594198014,2),(1376,607507214,3),(1376,625647614,2),(1376,638956815,3),(1376,657097215,2),(1376,671011216,3),(1376,688546816,2),(1376,702460816,3),(1376,719996417,2),(1376,733910417,3),(1376,752050818,2),(1376,765360018,3),(1376,783500419,2),(1376,796809619,3),(1376,814950019,2),(1376,828864020,3),(1376,846399620,2),(1376,860313620,3),(1376,877849221,2),(1376,891763221,3),(1376,909298821,2),(1376,923212822,3),(1376,941353222,2),(1376,954662422,3),(1376,972802822,4),(1376,986112022,3),(1376,1004252422,2),(1376,1018166422,3),(1376,1035702022,2),(1376,1049616022,3),(1376,1067151622,2),(1376,1081065622,3),(1376,1099206022,2),(1376,1112515222,3),(1376,1130655622,2),(1376,1143964823,3),(1376,1162105223,4),(1376,1173600023,3),(1376,1194159623,2),(1376,1205049623,3),(1376,1225609223,2),(1376,1236499224,3),(1376,1257058824,2),(1376,1268553624,3),(1376,1289113224,2),(1376,1300003224,3),(1376,1320562824,2),(1376,1331452824,3),(1376,1352012425,2),(1376,1362902425,3),(1376,1383462025,2),(1376,1394352025,3),(1376,1414911625,2),(1376,1425801625,3),(1376,1446361226,2),(1376,1457856026,3),(1376,1478415626,2),(1376,1489305627,3),(1376,1509865227,2),(1376,1520755227,3),(1376,1541314827,2),(1376,1552204827,3),(1376,1572764427,2),(1376,1583654427,3),(1376,1604214027,2),(1376,1615708827,3),(1376,1636268427,2),(1376,1647158427,3),(1376,1667718027,2),(1376,1678608027,3),(1376,1699167627,2),(1376,1710057627,3),(1376,1730617227,2),(1376,1741507227,3),(1376,1762066827,2),(1376,1772956827,3),(1376,1793516427,2),(1376,1805011227,3),(1376,1825570827,2),(1376,1836460827,3),(1376,1857020427,2),(1376,1867910427,3),(1376,1888470027,2),(1376,1899360027,3),(1376,1919919627,2),(1376,1930809627,3),(1376,1951369227,2),(1376,1962864027,3),(1376,1983423627,2),(1376,1994313627,3),(1376,2014873227,2),(1376,2025763227,3),(1376,2046322827,2),(1376,2057212827,3),(1376,2077772427,2),(1376,2088662427,3),(1376,2109222027,2),(1376,2120112027,3),(1376,2140671627,2),(1377,-1767209328,2),(1377,-1206950400,1),(1377,-1191355200,2),(1377,-1175367600,1),(1377,-1159819200,2),(1377,-633812400,1),(1377,-622062000,2),(1377,-602276400,1),(1377,-591825600,2),(1377,-570740400,1),(1377,-560203200,2),(1377,-539118000,1),(1377,-531345600,2),(1377,-191358000,1),(1377,-184190400,2),(1377,-155156400,1),(1377,-150062400,2),(1377,-128890800,1),(1377,-121118400,2),(1377,-99946800,1),(1377,-89582400,2),(1377,-68410800,1),(1377,-57960000,2),(1377,499755613,1),(1377,511243213,2),(1377,530600413,1),(1377,540273613,2),(1377,562136413,1),(1377,571204814,2),(1377,1214283623,3),(1377,1384056025,2),(1378,-1567453392,1),(1378,-1233432000,2),(1378,-1222981200,1),(1378,-1205956800,2),(1378,-1194037200,1),(1378,-1172865600,2),(1378,-1162501200,1),(1378,-1141329600,2),(1378,-1130965200,1),(1378,-1109793600,2),(1378,-1099429200,1),(1378,-1078257600,2),(1378,-1067806800,1),(1378,-1046635200,2),(1378,-1036270800,1),(1378,-1015099200,2),(1378,-1004734800,1),(1378,-983563200,2),(1378,-973198800,1),(1378,-952027200,2),(1378,-941576400,1),(1378,-931032000,2),(1378,-900882000,1),(1378,-890337600,2),(1378,-833749200,1),(1378,-827265600,2),(1378,-752274000,1),(1378,-733780800,2),(1378,-197326800,1),(1378,-190843200,2),(1378,-184194000,1),(1378,-164491200,2),(1378,-152658000,1),(1378,-132955200,2),(1378,-121122000,1),(1378,-101419200,2),(1378,-86821200,1),(1378,-71092800,2),(1378,-54766800,1),(1378,-39038400,2),(1378,-23317200,1),(1378,-7588800,4),(1378,128142003,3),(1378,136605603,4),(1378,596948414,3),(1378,605066414,4),(1378,624423614,3),(1378,636516015,4),(1378,656478015,3),(1378,667965616,1),(1378,687931216,3),(1378,699415216,4),(1378,719377217,3),(1378,731469617,4),(1378,938919622,2),(1378,952052422,4),(1378,1198983623,3),(1378,1205632823,4),(1378,1224385223,3),(1378,1237082424,4),(1379,-1514736000,1),(1379,-1451667600,2),(1379,-1343062800,1),(1379,-1234803600,2),(1379,-1222963200,3),(1379,-1207242000,2),(1379,-873820800,4),(1379,-769395600,5),(1379,-761677200,2),(1379,-686073600,3),(1379,-661539600,2),(1379,-495039600,3),(1379,-481734000,2),(1379,-463590000,3),(1379,-450284400,2),(1379,-431535600,3),(1379,-418230000,2),(1379,-400086000,3),(1379,-386780400,2),(1379,-368636400,3),(1379,-355330800,2),(1379,-337186800,3),(1379,-323881200,2),(1379,-305737200,3),(1379,-292431600,2),(1379,199274405,3),(1379,215600405,2),(1379,230724006,3),(1379,247050006,2),(1379,262778407,3),(1379,278499607,2),(1379,294228008,3),(1379,309949208,2),(1379,325677609,3),(1379,341398809,2),(1379,357127209,3),(1379,372848410,2),(1379,388576810,3),(1379,404902811,2),(1379,420026411,3),(1379,436352412,2),(1379,452080812,3),(1379,467802012,2),(1379,483530412,3),(1379,499251613,2),(1379,514980013,3),(1379,530701213,2),(1379,544615213,3),(1379,562150813,2),(1379,576064814,3),(1379,594205214,2),(1379,607514414,3),(1379,625654814,2),(1379,638964015,3),(1379,657104415,2),(1379,671018416,3),(1379,688554016,2),(1379,702468016,3),(1379,720003617,2),(1379,733917617,3),(1379,752058018,2),(1379,765367218,3),(1379,783507619,2),(1379,796816819,3),(1379,814957219,2),(1379,828871220,3),(1379,846406820,2),(1379,860320820,3),(1379,877856421,2),(1379,891770421,3),(1379,909306021,2),(1379,923220022,3),(1379,941360422,2),(1379,954669622,3),(1379,972810022,2),(1379,986119222,3),(1379,1004259622,2),(1379,1018173622,3),(1379,1035709222,2),(1379,1049623222,3),(1379,1067158822,2),(1379,1081072822,3),(1379,1099213222,2),(1379,1112522422,3),(1379,1130662822,2),(1379,1143972023,3),(1379,1162112423,2),(1379,1175421623,3),(1379,1193562023,2),(1379,1207476023,3),(1379,1225011623,2),(1379,1238925624,3),(1379,1256461224,2),(1379,1268560824,3),(1379,1289120424,2),(1379,1300010424,3),(1379,1320570024,2),(1379,1331460024,3),(1379,1352019625,2),(1379,1362909625,3),(1379,1383469225,2),(1379,1394359225,3),(1379,1414918825,2),(1379,1425808825,3),(1379,1446368426,2),(1379,1457863226,3),(1379,1478422826,2),(1379,1489312827,3),(1379,1509872427,2),(1379,1520762427,3),(1379,1541322027,2),(1379,1552212027,3),(1379,1572771627,2),(1379,1583661627,3),(1379,1604221227,2),(1379,1615716027,3),(1379,1636275627,2),(1379,1647165627,3),(1379,1667725227,2),(1379,1678615227,3),(1379,1699174827,2),(1379,1710064827,3),(1379,1730624427,2),(1379,1741514427,3),(1379,1762074027,2),(1379,1772964027,3),(1379,1793523627,2),(1379,1805018427,3),(1379,1825578027,2),(1379,1836468027,3),(1379,1857027627,2),(1379,1867917627,3),(1379,1888477227,2),(1379,1899367227,3),(1379,1919926827,2),(1379,1930816827,3),(1379,1951376427,2),(1379,1962871227,3),(1379,1983430827,2),(1379,1994320827,3),(1379,2014880427,2),(1379,2025770427,3),(1379,2046330027,2),(1379,2057220027,3),(1379,2077779627,2),(1379,2088669627,3),(1379,2109229227,2),(1379,2120119227,3),(1379,2140678827,2),(1380,-1767212472,2),(1380,-1206954000,1),(1380,-1191358800,2),(1380,-1175371200,1),(1380,-1159822800,2),(1380,-633816000,1),(1380,-622065600,2),(1380,-602280000,1),(1380,-591829200,2),(1380,-570744000,1),(1380,-560206800,2),(1380,-539121600,1),(1380,-531349200,2),(1380,-191361600,1),(1380,-184194000,2),(1380,-155160000,1),(1380,-150066000,2),(1380,-128894400,1),(1380,-121122000,2),(1380,-99950400,1),(1380,-89586000,2),(1380,-68414400,1),(1380,-57963600,2),(1380,499752013,1),(1380,511239613,2),(1380,530596813,1),(1380,540270013,2),(1380,562132813,1),(1380,571201214,2),(1380,1214280023,3),(1381,-1892661434,1),(1381,-1688410800,0),(1381,-1619205434,2),(1381,-1593806400,0),(1381,-1335986234,3),(1381,-1317585600,1),(1381,-1304362800,3),(1381,-1286049600,1),(1381,-1272826800,3),(1381,-1254513600,1),(1381,-1241290800,3),(1381,-1222977600,1),(1381,-1209754800,3),(1381,-1191355200,1),(1381,-1178132400,2),(1381,-870552000,1),(1381,-865278000,2),(1381,-740520000,4),(1381,-736376400,2),(1381,-718056000,1),(1381,-713649600,2),(1381,-36619200,5),(1381,-23922000,6),(1381,-3355200,5),(1381,7527600,6),(1381,24465600,5),(1381,37767600,6),(1381,55915200,5),(1381,69217200,6),(1381,87969601,5),(1381,100666802,6),(1381,118209602,5),(1381,132116403,6),(1381,150868803,5),(1381,163566004,6),(1381,182318404,5),(1381,195620405,6),(1381,213768005,5),(1381,227070006,6),(1381,245217606,5),(1381,258519607,6),(1381,277272007,5),(1381,289969208,6),(1381,308721608,5),(1381,321418809,6),(1381,340171209,5),(1381,353473209,6),(1381,371620810,5),(1381,384922810,6),(1381,403070411,5),(1381,416372411,6),(1381,434520012,5),(1381,447822012,6),(1381,466574412,5),(1381,479271612,6),(1381,498024013,5),(1381,510721213,6),(1381,529473613,5),(1381,545194813,6),(1381,560923213,5),(1381,574225214,6),(1381,592372814,5),(1381,605674814,6),(1381,624427214,5),(1381,637124415,6),(1381,653457615,5),(1381,668574016,6),(1381,687326416,5),(1381,700628416,6),(1381,718776017,5),(1381,732078017,6),(1381,750225618,5),(1381,763527618,6),(1381,781675219,5),(1381,794977219,6),(1381,813729619,5),(1381,826426820,6),(1381,845179220,5),(1381,859690820,6),(1381,876628821,5),(1381,889930821,6),(1381,906868821,5),(1381,923194822,6),(1381,939528022,5),(1381,952830022,6),(1381,971582422,5),(1381,984279622,6),(1381,1003032022,5),(1381,1015729222,6),(1381,1034481622,5),(1381,1047178822,6),(1381,1065931222,5),(1381,1079233222,6),(1381,1097380822,5),(1381,1110682822,6),(1381,1128830422,5),(1381,1142132423,6),(1381,1160884823,5),(1381,1173582023,6),(1381,1192334423,5),(1381,1206846023,6),(1381,1223784023,5),(1381,1237086024,6),(1381,1255233624,5),(1381,1270350024,6),(1381,1286683224,5),(1381,1304823624,6),(1381,1313899224,5),(1381,1335668424,6),(1381,1346558425,5),(1381,1367118025,6),(1381,1378612825,5),(1381,1398567625,6),(1381,1410062425,5),(1381,1463281226,6),(1381,1471147226,5),(1381,1494730827,6),(1381,1502596827,5),(1381,1526180427,6),(1381,1534046427,5),(1381,1557630027,6),(1381,1565496027,5),(1381,1589079627,6),(1381,1596945627,5),(1381,1620529227,6),(1381,1629000027,5),(1381,1652583627,6),(1381,1660449627,5),(1381,1684033227,6),(1381,1691899227,5),(1381,1715482827,6),(1381,1723348827,5),(1381,1746932427,6),(1381,1754798427,5),(1381,1778382027,6),(1381,1786248027,5),(1381,1809831627,6),(1381,1818302427,5),(1381,1841886027,6),(1381,1849752027,5),(1381,1873335627,6),(1381,1881201627,5),(1381,1904785227,6),(1381,1912651227,5),(1381,1936234827,6),(1381,1944100827,5),(1381,1967684427,6),(1381,1976155227,5),(1381,1999738827,6),(1381,2007604827,5),(1381,2031188427,6),(1381,2039054427,5),(1381,2062638027,6),(1381,2070504027,5),(1381,2094087627,6),(1381,2101953627,5),(1381,2125537227,6),(1381,2133403227,5),(1382,-1159773600,2),(1382,-100119600,1),(1382,-89668800,2),(1382,-5770800,3),(1382,4422600,2),(1382,25678800,3),(1382,33193800,2),(1382,57733200,3),(1382,64816200,2),(1382,89182801,3),(1382,96438602,2),(1382,120632402,3),(1382,127974603,2),(1382,152082003,4),(1382,972799222,2),(1382,975823222,4),(1383,-1767214412,2),(1383,-1206957600,1),(1383,-1191362400,2),(1383,-1175374800,1),(1383,-1159826400,2),(1383,-633819600,1),(1383,-622069200,2),(1383,-602283600,1),(1383,-591832800,2),(1383,-570747600,1),(1383,-560210400,2),(1383,-539125200,1),(1383,-531352800,2),(1383,-195426000,1),(1383,-184197600,2),(1383,-155163600,1),(1383,-150069600,2),(1383,-128898000,1),(1383,-121125600,2),(1383,-99954000,1),(1383,-89589600,2),(1383,-68418000,1),(1383,-57967200,2),(1383,499748413,1),(1383,511236013,2),(1383,530593213,1),(1383,540266413,2),(1383,562129213,1),(1383,571197614,2),(1383,592974014,1),(1383,602042414,2),(1383,624423614,1),(1383,634701615,2),(1383,656478015,1),(1383,666756016,2),(1383,687927616,1),(1383,697600816,2),(1383,719982017,1),(1383,728445617,2),(1383,750826818,1),(1383,761709618,2),(1383,782276419,1),(1383,793159219,2),(1383,813726019,1),(1383,824004020,2),(1383,844570820,1),(1383,856058420,2),(1383,876106821,1),(1383,888717621,2),(1383,908074821,1),(1383,919562422,2),(1383,938919622,1),(1383,951616822,2),(1383,970974022,1),(1383,982461622,2),(1383,1003028422,1),(1383,1013911222,2),(1383,1036292422,1),(1383,1045360822,2),(1383,1066532422,1),(1383,1076810422,2),(1383,1099364422,1),(1383,1108864822,2),(1383,1129431622,1),(1383,1140314423,2),(1383,1162695623,1),(1383,1172368823,2),(1383,1192330823,1),(1383,1203213623,2),(1383,1224385223,1),(1383,1234663224,2),(1383,1255834824,1),(1383,1266717624,2),(1383,1287284424,1),(1383,1298167224,2),(1383,1318734024,1),(1383,1330221624,2),(1383,1350788425,1),(1383,1361066425,2),(1383,1382238025,1),(1383,1392516025,2),(1383,1413687625,1),(1383,1424570425,2),(1383,1445137226,1),(1383,1456020026,2),(1383,1476586826,1),(1383,1487469627,2),(1383,1508036427,1),(1383,1518919227,2),(1383,1541300427,1),(1383,1550368827,2),(1383,1572750027,1),(1383,1581818427,2),(1383,1604199627,1),(1383,1613872827,2),(1383,1636254027,1),(1383,1645322427,2),(1383,1667703627,1),(1383,1677376827,2),(1383,1699153227,1),(1383,1708221627,2),(1383,1730602827,1),(1383,1739671227,2),(1383,1762052427,1),(1383,1771725627,2),(1383,1793502027,1),(1383,1803175227,2),(1383,1825556427,1),(1383,1834624827,2),(1383,1857006027,1),(1383,1866074427,2),(1383,1888455627,1),(1383,1897524027,2),(1383,1919905227,1),(1383,1928973627,2),(1383,1951354827,1),(1383,1960423227,2),(1383,1983409227,1),(1383,1992477627,2),(1383,2014858827,1),(1383,2024532027,2),(1383,2046308427,1),(1383,2055376827,2),(1383,2077758027,1),(1383,2086826427,2),(1383,2109207627,1),(1383,2118880827,2),(1383,2140657227,1),(1384,-1686090728,1),(1384,323841609,2),(1384,338961609,3),(1384,354679209,6),(1384,370400410,4),(1384,386125210,5),(1384,401850011,4),(1384,417574811,5),(1384,433299612,4),(1384,449024412,5),(1384,465354012,4),(1384,481078812,5),(1384,496803613,4),(1384,512528413,5),(1384,528253213,4),(1384,543978013,5),(1384,559702813,4),(1384,575427614,5),(1384,591152414,4),(1384,606877214,5),(1384,622602014,4),(1384,638326815,5),(1384,654656415,4),(1384,670381216,5),(1384,686106016,4),(1384,701830816,5),(1384,717555617,4),(1384,733280417,5),(1384,749005218,4),(1384,764730018,5),(1384,780454819,4),(1384,796179619,5),(1384,811904419,4),(1384,828234020,5),(1384,846378020,4),(1384,859683620,5),(1384,877827621,4),(1384,891133221,5),(1384,909277221,4),(1384,922582822,5),(1384,941331622,4),(1384,954032422,5),(1384,972781222,4),(1384,985482022,5),(1384,1004230822,4),(1384,1017536422,5),(1384,1035680422,4),(1384,1048986022,5),(1384,1067130022,4),(1384,1080435622,5),(1384,1099184422,4),(1384,1111885222,5),(1384,1130634022,4),(1384,1143334823,5),(1384,1162083623,4),(1384,1174784423,5),(1384,1193533223,4),(1384,1206838823,5),(1384,1224982823,4),(1384,1238288424,5),(1384,1256432424,4),(1384,1269738024,5),(1384,1288486824,4),(1384,1301187624,5),(1384,1319936424,4),(1384,1332637224,5),(1384,1351386025,4),(1384,1364691625,5),(1384,1382835625,4),(1384,1396141225,5),(1384,1414285225,4),(1384,1427590825,5),(1384,1445734826,4),(1384,1459040426,5),(1384,1477789226,4),(1384,1490490027,5),(1384,1509238827,4),(1384,1521939627,5),(1384,1540688427,4),(1384,1553994027,5),(1384,1572138027,4),(1384,1585443627,5),(1384,1603587627,4),(1384,1616893227,5),(1384,1635642027,4),(1384,1648342827,5),(1384,1667091627,4),(1384,1679792427,5),(1384,1698541227,4),(1384,1711846827,5),(1384,1729990827,4),(1384,1743296427,5),(1384,1761440427,4),(1384,1774746027,5),(1384,1792890027,4),(1384,1806195627,5),(1384,1824944427,4),(1384,1837645227,5),(1384,1856394027,4),(1384,1869094827,5),(1384,1887843627,4),(1384,1901149227,5),(1384,1919293227,4),(1384,1932598827,5),(1384,1950742827,4),(1384,1964048427,5),(1384,1982797227,4),(1384,1995498027,5),(1384,2014246827,4),(1384,2026947627,5),(1384,2045696427,4),(1384,2058397227,5),(1384,2077146027,4),(1384,2090451627,5),(1384,2108595627,4),(1384,2121901227,5),(1384,2140045227,4),(1385,-1633273200,0),(1385,-1615132800,1),(1385,-1601823600,0),(1385,-1583683200,1),(1385,-1570374000,0),(1385,-1551628800,1),(1385,-1538924400,0),(1385,-1534089600,1),(1385,-880210800,2),(1385,-769395600,3),(1385,-765388800,1),(1385,-147884400,0),(1385,-131558400,1),(1385,-116434800,0),(1385,-100108800,1),(1385,-84380400,0),(1385,-68659200,1),(1385,-52930800,0),(1385,-37209600,1),(1385,-21481200,0),(1385,-5760000,1),(1385,9968400,0),(1385,25689600,1),(1385,41418000,0),(1385,57744000,1),(1385,73472400,0),(1385,89193601,1),(1385,104922002,0),(1385,120643202,1),(1385,126694803,0),(1385,152092803,1),(1385,162378004,0),(1385,183542404,1),(1385,199270805,0),(1385,215596805,1),(1385,230720406,0),(1385,247046406,1),(1385,262774807,0),(1385,278496007,1),(1385,294224408,0),(1385,309945608,1),(1385,325674009,0),(1385,341395209,1),(1385,357123609,0),(1385,372844810,1),(1385,388573210,0),(1385,404899211,1),(1385,420022811,0),(1385,436348812,1),(1385,452077212,0),(1385,467798412,1),(1385,483526812,0),(1385,499248013,1),(1385,514976413,0),(1385,530697613,1),(1385,544611613,0),(1385,562147213,1),(1385,576061214,0),(1385,594201614,1),(1385,607510814,0),(1385,625651214,1),(1385,638960415,0),(1385,657100815,1),(1385,671014816,0),(1385,688550416,1),(1385,702464416,0),(1385,720000017,1),(1385,733914017,0),(1385,752054418,1),(1385,765363618,0),(1385,783504019,1),(1385,796813219,0),(1385,814953619,1),(1385,828867620,0),(1385,846403220,1),(1385,860317220,0),(1385,877852821,1),(1385,891766821,0),(1385,909302421,1),(1385,923216422,0),(1385,941356822,1),(1385,954666022,0),(1385,972806422,1),(1385,986115622,0),(1385,1004256022,1),(1385,1018170022,0),(1385,1035705622,1),(1385,1049619622,0),(1385,1067155222,1),(1385,1081069222,0),(1385,1099209622,1),(1385,1112518822,0),(1385,1130659222,1),(1385,1143968423,0),(1385,1162108823,1),(1385,1173603623,0),(1385,1194163223,1),(1385,1205053223,0),(1385,1225612823,1),(1385,1236502824,0),(1385,1257062424,1),(1385,1268557224,0),(1385,1289116824,1),(1385,1300006824,0),(1385,1320566424,1),(1385,1331456424,0),(1385,1352016025,1),(1385,1362906025,0),(1385,1383465625,1),(1385,1394355625,0),(1385,1414915225,1),(1385,1425805225,0),(1385,1446364826,1),(1385,1457859626,0),(1385,1478419226,1),(1385,1489309227,0),(1385,1509868827,1),(1385,1520758827,0),(1385,1541318427,1),(1385,1552208427,0),(1385,1572768027,1),(1385,1583658027,0),(1385,1604217627,1),(1385,1615712427,0),(1385,1636272027,1),(1385,1647162027,0),(1385,1667721627,1),(1385,1678611627,0),(1385,1699171227,1),(1385,1710061227,0),(1385,1730620827,1),(1385,1741510827,0),(1385,1762070427,1),(1385,1772960427,0),(1385,1793520027,1),(1385,1805014827,0),(1385,1825574427,1),(1385,1836464427,0),(1385,1857024027,1),(1385,1867914027,0),(1385,1888473627,1),(1385,1899363627,0),(1385,1919923227,1),(1385,1930813227,0),(1385,1951372827,1),(1385,1962867627,0),(1385,1983427227,1),(1385,1994317227,0),(1385,2014876827,1),(1385,2025766827,0),(1385,2046326427,1),(1385,2057216427,0),(1385,2077776027,1),(1385,2088666027,0),(1385,2109225627,1),(1385,2120115627,0),(1385,2140675227,1),(1386,-880207200,1),(1386,-769395600,2),(1386,-765385200,0),(1386,-21477600,3),(1386,-5756400,0),(1386,9972000,3),(1386,25693200,0),(1386,41421600,3),(1386,57747600,0),(1386,73476000,3),(1386,89197201,0),(1386,104925602,3),(1386,120646802,0),(1386,126698403,3),(1386,152096403,0),(1386,162381604,3),(1386,183546004,0),(1386,199274405,3),(1386,215600405,0),(1386,230724006,3),(1386,247050006,0),(1386,262778407,3),(1386,278499607,0),(1386,294228008,3),(1386,309949208,0),(1386,325677609,3),(1386,341398809,0),(1386,357127209,3),(1386,372848410,0),(1386,388576810,3),(1386,404902811,0),(1386,420026411,3),(1386,436352412,4),(1386,439030812,6),(1386,452084412,5),(1386,467805612,6),(1386,483534012,5),(1386,499255213,6),(1386,514983613,5),(1386,530704813,6),(1386,544618813,5),(1386,562154413,6),(1386,576068414,5),(1386,594208814,6),(1386,607518014,5),(1386,625658414,6),(1386,638967615,5),(1386,657108015,6),(1386,671022016,5),(1386,688557616,6),(1386,702471616,5),(1386,720007217,6),(1386,733921217,5),(1386,752061618,6),(1386,765370818,5),(1386,783511219,6),(1386,796820419,5),(1386,814960819,6),(1386,828874820,5),(1386,846410420,6),(1386,860324420,5),(1386,877860021,6),(1386,891774021,5),(1386,909309621,6),(1386,923223622,5),(1386,941364022,6),(1386,954673222,5),(1386,972813622,6),(1386,986122822,5),(1386,1004263222,6),(1386,1018177222,5),(1386,1035712822,6),(1386,1049626822,5),(1386,1067162422,6),(1386,1081076422,5),(1386,1099216822,6),(1386,1112526022,5),(1386,1130666422,6),(1386,1143975623,5),(1386,1162116023,6),(1386,1173610823,5),(1386,1194170423,6),(1386,1205060423,5),(1386,1225620023,6),(1386,1236510024,5),(1386,1257069624,6),(1386,1268564424,5),(1386,1289124024,6),(1386,1300014024,5),(1386,1320573624,6),(1386,1331463624,5),(1386,1352023225,6),(1386,1362913225,5),(1386,1383472825,6),(1386,1394362825,5),(1386,1414922425,6),(1386,1425812425,5),(1386,1446372026,6),(1386,1457866826,5),(1386,1478426426,6),(1386,1489316427,5),(1386,1509876027,6),(1386,1520766027,5),(1386,1541325627,6),(1386,1552215627,5),(1386,1572775227,6),(1386,1583665227,5),(1386,1604224827,6),(1386,1615719627,5),(1386,1636279227,6),(1386,1647169227,5),(1386,1667728827,6),(1386,1678618827,5),(1386,1699178427,6),(1386,1710068427,5),(1386,1730628027,6),(1386,1741518027,5),(1386,1762077627,6),(1386,1772967627,5),(1386,1793527227,6),(1386,1805022027,5),(1386,1825581627,6),(1386,1836471627,5),(1386,1857031227,6),(1386,1867921227,5),(1386,1888480827,6),(1386,1899370827,5),(1386,1919930427,6),(1386,1930820427,5),(1386,1951380027,6),(1386,1962874827,5),(1386,1983434427,6),(1386,1994324427,5),(1386,2014884027,6),(1386,2025774027,5),(1386,2046333627,6),(1386,2057223627,5),(1386,2077783227,6),(1386,2088673227,5),(1386,2109232827,6),(1386,2120122827,5),(1386,2140682427,6),(1387,-1825098836,1),(1388,-1664130548,0),(1388,-1650137348,1),(1388,-1632076148,0),(1388,-1615145348,1),(1388,-1598650148,0),(1388,-1590100148,1),(1388,-1567286948,0),(1388,-1551565748,1),(1388,-1535837348,0),(1388,-1520116148,1),(1388,-1503782948,0),(1388,-1488666548,1),(1388,-1472333348,0),(1388,-1457216948,1),(1388,-1440883748,0),(1388,-1425767348,1),(1388,-1409434148,0),(1388,-1394317748,1),(1388,-1377984548,0),(1388,-1362263348,1),(1388,-1346534948,0),(1388,-1330813748,1),(1388,-1314480548,0),(1388,-1299364148,1),(1388,-1283030948,0),(1388,-1267914548,1),(1388,-1251581348,0),(1388,-1236464948,1),(1388,-1220131748,0),(1388,-1205015348,1),(1388,-1188682148,0),(1388,-1172960948,1),(1388,-1156627748,0),(1388,-1141511348,1),(1388,-1125178148,0),(1388,-1110061748,1),(1388,-1096921748,3),(1388,-1093728600,2),(1388,-1078612200,3),(1388,-1061670600,2),(1388,-1048973400,3),(1388,-1030221000,2),(1388,-1017523800,3),(1388,-998771400,2),(1388,-986074200,3),(1388,-966717000,2),(1388,-954624600,3),(1388,-935267400,2),(1388,-922570200,3),(1388,-903817800,2),(1388,-891120600,3),(1388,-872368200,5),(1388,-769395600,4),(1388,-765401400,3),(1388,-746044200,2),(1388,-733347000,3),(1388,-714594600,2),(1388,-701897400,3),(1388,-683145000,2),(1388,-670447800,3),(1388,-651695400,2),(1388,-638998200,3),(1388,-619641000,2),(1388,-606943800,3),(1388,-589401000,2),(1388,-576099000,3),(1388,-557951400,2),(1388,-544649400,3),(1388,-526501800,2),(1388,-513199800,3),(1388,-495052200,2),(1388,-481750200,3),(1388,-463602600,2),(1388,-450300600,3),(1388,-431548200,2),(1388,-418246200,3),(1388,-400098600,2),(1388,-386796600,3),(1388,-368649000,2),(1388,-355347000,3),(1388,-337199400,2),(1388,-323897400,3),(1388,-305749800,2),(1388,-289423800,3),(1388,-273695400,2),(1388,-257974200,3),(1388,-242245800,2),(1388,-226524600,3),(1388,-210796200,2),(1388,-195075000,3),(1388,-179346600,2),(1388,-163625400,3),(1388,-147897000,2),(1388,-131571000,3),(1388,-116447400,2),(1388,-100121400,3),(1388,-84393000,2),(1388,-68671800,3),(1388,-52943400,2),(1388,-37222200,3),(1388,-21493800,2),(1388,-5772600,3),(1388,9955800,2),(1388,25677000,3),(1388,41405400,2),(1388,57731400,3),(1388,73459800,2),(1388,89181001,3),(1388,104909402,2),(1388,120630602,3),(1388,136359003,2),(1388,152080203,3),(1388,167808604,2),(1388,183529804,3),(1388,199258205,2),(1388,215584205,3),(1388,230707806,2),(1388,247033806,3),(1388,262762207,2),(1388,278483407,3),(1388,294211808,2),(1388,309933008,3),(1388,325661409,2),(1388,341382609,3),(1388,357111009,2),(1388,372832210,3),(1388,388560610,2),(1388,404886611,3),(1388,420010211,2),(1388,436336212,3),(1388,452064612,2),(1388,467785812,3),(1388,483514212,2),(1388,499235413,3),(1388,514963813,2),(1388,530685013,3),(1388,544591873,2),(1388,562127473,3),(1388,576041474,6),(1388,594178274,3),(1388,607491074,2),(1388,625631474,3),(1388,638940675,2),(1388,657081075,3),(1388,670995076,2),(1388,688530676,3),(1388,702444676,2),(1388,719980277,3),(1388,733894277,2),(1388,752034678,3),(1388,765343878,2),(1388,783484279,3),(1388,796793479,2),(1388,814933879,3),(1388,828847880,2),(1388,846383480,3),(1388,860297480,2),(1388,877833081,3),(1388,891747081,2),(1388,909282681,3),(1388,923196682,2),(1388,941337082,3),(1388,954646282,2),(1388,972786682,3),(1388,986095882,2),(1388,1004236282,3),(1388,1018150282,2),(1388,1035685882,3),(1388,1049599882,2),(1388,1067135482,3),(1388,1081049482,2),(1388,1099189882,3),(1388,1112499082,2),(1388,1130639482,3),(1388,1143948683,2),(1388,1162089083,3),(1388,1173583883,2),(1388,1194143483,3),(1388,1205033483,2),(1388,1225593083,3),(1388,1236483084,2),(1388,1257042684,3),(1388,1268537484,2),(1388,1289097084,3),(1388,1299987084,2),(1388,1320553824,3),(1388,1331443824,2),(1388,1352003425,3),(1388,1362893425,2),(1388,1383453025,3),(1388,1394343025,2),(1388,1414902625,3),(1388,1425792625,2),(1388,1446352226,3),(1388,1457847026,2),(1388,1478406626,3),(1388,1489296627,2),(1388,1509856227,3),(1388,1520746227,2),(1388,1541305827,3),(1388,1552195827,2),(1388,1572755427,3),(1388,1583645427,2),(1388,1604205027,3),(1388,1615699827,2),(1388,1636259427,3),(1388,1647149427,2),(1388,1667709027,3),(1388,1678599027,2),(1388,1699158627,3),(1388,1710048627,2),(1388,1730608227,3),(1388,1741498227,2),(1388,1762057827,3),(1388,1772947827,2),(1388,1793507427,3),(1388,1805002227,2),(1388,1825561827,3),(1388,1836451827,2),(1388,1857011427,3),(1388,1867901427,2),(1388,1888461027,3),(1388,1899351027,2),(1388,1919910627,3),(1388,1930800627,2),(1388,1951360227,3),(1388,1962855027,2),(1388,1983414627,3),(1388,1994304627,2),(1388,2014864227,3),(1388,2025754227,2),(1388,2046313827,3),(1388,2057203827,2),(1388,2077763427,3),(1388,2088653427,2),(1388,2109213027,3),(1388,2120103027,2),(1388,2140662627,3),(1389,-1825098836,1),(1390,-1825098836,1),(1391,-1825098836,1),(1392,-1825098836,1),(1393,-2030201320,2),(1393,-1632063600,1),(1393,-1615132800,2),(1393,-880210800,3),(1393,-769395600,4),(1393,-765388800,2),(1393,-747241200,1),(1393,-732729600,2),(1393,-715791600,1),(1393,-702489600,2),(1393,-684342000,1),(1393,-671040000,2),(1393,-652892400,1),(1393,-639590400,2),(1393,-400086000,1),(1393,-384364800,2),(1393,-337186800,1),(1393,-321465600,2),(1393,-305737200,1),(1393,-292435200,2),(1393,-273682800,1),(1393,-260985600,2),(1393,73472400,5),(1394,-1538503868,2),(1394,547020013,1),(1394,559717213,2),(1394,578469614,1),(1394,591166814,2),(1394,1146981623,1),(1394,1154926823,2),(1395,-1686079492,2),(1395,670399216,1),(1395,686120416,2),(1395,701848816,1),(1395,717570017,2),(1395,733903217,1),(1395,752043618,2),(1395,765352818,1),(1395,783493219,2),(1395,796802419,1),(1395,814942819,2),(1395,828856820,1),(1395,846392420,2),(1395,860306420,1),(1395,877842021,2),(1395,891756021,1),(1395,909291621,2),(1395,923205622,1),(1395,941346022,2),(1395,954655222,1),(1395,972795622,2),(1395,986104822,1),(1395,1004245222,2),(1395,1018159222,1),(1395,1035694822,2),(1395,1049608822,1),(1395,1067144422,2),(1395,1081058422,1),(1395,1099198822,2),(1395,1112508022,1),(1395,1130648422,2),(1395,1143957623,1),(1395,1162098023,2),(1395,1173592823,1),(1395,1194152423,2),(1395,1205042423,1),(1395,1225602023,2),(1395,1236492024,1),(1395,1257051624,2),(1395,1268546424,1),(1395,1289106024,2),(1395,1299996024,1),(1395,1320555624,2),(1395,1331445624,1),(1395,1352005225,2),(1395,1362895225,1),(1395,1383454825,2),(1395,1394344825,1),(1395,1414904425,2),(1395,1425794425,1),(1395,1446354026,2),(1395,1457848826,1),(1395,1478408426,2),(1395,1489298427,1),(1395,1509858027,2),(1395,1520748027,1),(1395,1541307627,2),(1395,1552197627,1),(1395,1572757227,2),(1395,1583647227,1),(1395,1604206827,2),(1395,1615701627,1),(1395,1636261227,2),(1395,1647151227,1),(1395,1667710827,2),(1395,1678600827,1),(1395,1699160427,2),(1395,1710050427,1),(1395,1730610027,2),(1395,1741500027,1),(1395,1762059627,2),(1395,1772949627,1),(1395,1793509227,2),(1395,1805004027,1),(1395,1825563627,2),(1395,1836453627,1),(1395,1857013227,2),(1395,1867903227,1),(1395,1888462827,2),(1395,1899352827,1),(1395,1919912427,2),(1395,1930802427,1),(1395,1951362027,2),(1395,1962856827,1),(1395,1983416427,2),(1395,1994306427,1),(1395,2014866027,2),(1395,2025756027,1),(1395,2046315627,2),(1395,2057205627,1),(1395,2077765227,2),(1395,2088655227,1),(1395,2109214827,2),(1395,2120104827,1),(1395,2140664427,2),(1396,-1893434400,1),(1396,-880218000,2),(1396,-769395600,3),(1396,-765396000,1),(1396,9961200,4),(1396,25682400,1),(1396,41410800,4),(1396,57736800,1),(1396,73465200,4),(1396,89186401,1),(1396,136364403,4),(1396,152085603,1),(1396,167814004,4),(1396,183535204,1),(1396,199263605,4),(1396,215589605,1),(1396,230713206,4),(1396,247039206,1),(1396,262767607,4),(1396,278488807,1),(1396,294217208,4),(1396,309938408,1),(1396,325666809,4),(1396,341388009,1),(1396,357116409,4),(1396,372837610,1),(1396,388566010,4),(1396,404892011,1),(1396,420015611,4),(1396,436341612,1),(1396,452070012,4),(1396,467791212,1),(1396,483519612,4),(1396,499240813,1),(1396,514969213,4),(1396,530690413,1),(1396,544604413,4),(1396,562140013,1),(1396,576054014,4),(1396,594194414,1),(1396,607503614,4),(1396,625644014,1),(1396,638953215,4),(1396,657093615,1),(1396,671007616,4),(1396,688543216,1),(1396,702457216,4),(1396,719992817,1),(1396,733906817,4),(1396,752047218,1),(1396,765356418,4),(1396,783496819,1),(1396,796806019,4),(1396,814946419,1),(1396,828860420,4),(1396,846396020,1),(1396,860310020,4),(1396,877845621,1),(1396,891759621,4),(1396,909295221,1),(1396,923209222,4),(1396,941349622,1),(1396,954658822,4),(1396,972799222,1),(1396,986108422,4),(1396,1004248822,1),(1396,1018162822,4),(1396,1035698422,1),(1396,1049612422,4),(1396,1067148022,1),(1396,1081062022,4),(1396,1099202422,1),(1396,1112511622,4),(1396,1130652022,1),(1396,1143961223,4),(1396,1162101623,1),(1396,1173596423,4),(1396,1194156023,1),(1396,1205046023,4),(1396,1225605623,1),(1396,1236495624,4),(1396,1257055224,1),(1396,1268550024,4),(1396,1289109624,1),(1396,1299999624,4),(1396,1320559224,1),(1396,1331449224,4),(1396,1352008825,1),(1396,1362898825,4),(1396,1383458425,1),(1396,1394348425,4),(1396,1414908025,1),(1396,1425798025,4),(1396,1446357626,1),(1396,1457852426,4),(1396,1478412026,1),(1396,1489302027,4),(1396,1509861627,1),(1396,1520751627,4),(1396,1541311227,1),(1396,1552201227,4),(1396,1572760827,1),(1396,1583650827,4),(1396,1604210427,1),(1396,1615705227,4),(1396,1636264827,1),(1396,1647154827,4),(1396,1667714427,1),(1396,1678604427,4),(1396,1699164027,1),(1396,1710054027,4),(1396,1730613627,1),(1396,1741503627,4),(1396,1762063227,1),(1396,1772953227,4),(1396,1793512827,1),(1396,1805007627,4),(1396,1825567227,1),(1396,1836457227,4),(1396,1857016827,1),(1396,1867906827,4),(1396,1888466427,1),(1396,1899356427,4),(1396,1919916027,1),(1396,1930806027,4),(1396,1951365627,1),(1396,1962860427,4),(1396,1983420027,1),(1396,1994310027,4),(1396,2014869627,1),(1396,2025759627,4),(1396,2046319227,1),(1396,2057209227,4),(1396,2077768827,1),(1396,2088658827,4),(1396,2109218427,1),(1396,2120108427,4),(1396,2140668027,1),(1397,-1514736000,1),(1397,-1451667600,2),(1397,-1343062800,1),(1397,-1234803600,2),(1397,-1222963200,3),(1397,-1207242000,2),(1397,-873820800,4),(1397,-769395600,5),(1397,-761677200,2),(1397,-686073600,3),(1397,-661539600,2),(1397,-495039600,3),(1397,-481734000,2),(1397,-463590000,3),(1397,-450284400,2),(1397,-431535600,3),(1397,-418230000,2),(1397,-400086000,3),(1397,-386780400,2),(1397,-368636400,3),(1397,-355330800,2),(1397,-337186800,3),(1397,-323881200,2),(1397,-305737200,3),(1397,-292431600,2),(1397,199274405,3),(1397,215600405,2),(1397,230724006,3),(1397,247050006,2),(1397,262778407,3),(1397,278499607,2),(1397,294228008,3),(1397,309949208,2),(1397,325677609,3),(1397,341398809,2),(1397,357127209,3),(1397,372848410,2),(1397,388576810,3),(1397,404902811,2),(1397,420026411,3),(1397,436352412,2),(1397,452080812,3),(1397,467802012,2),(1397,483530412,3),(1397,499251613,2),(1397,514980013,3),(1397,530701213,2),(1397,544615213,3),(1397,562150813,2),(1397,576064814,3),(1397,594205214,2),(1397,607514414,3),(1397,625654814,2),(1397,638964015,3),(1397,657104415,2),(1397,671018416,3),(1397,688554016,2),(1397,702468016,3),(1397,720003617,2),(1397,733917617,3),(1397,752058018,2),(1397,765367218,3),(1397,783507619,2),(1397,796816819,3),(1397,814957219,2),(1397,828871220,3),(1397,846406820,2),(1397,860320820,3),(1397,877856421,2),(1397,891770421,3),(1397,909306021,2),(1397,923220022,3),(1397,941360422,2),(1397,954669622,3),(1397,972810022,2),(1397,986119222,3),(1397,1004259622,2),(1397,1018173622,3),(1397,1035709222,2),(1397,1049623222,3),(1397,1067158822,2),(1397,1081072822,3),(1397,1099213222,2),(1397,1112522422,3),(1397,1130662822,2),(1397,1143972023,3),(1397,1162112423,2),(1397,1175421623,3),(1397,1193562023,2),(1397,1207476023,3),(1397,1225011623,2),(1397,1238925624,3),(1397,1256461224,2),(1397,1268560824,3),(1397,1289120424,2),(1397,1300010424,3),(1397,1320570024,2),(1397,1331460024,3),(1397,1352019625,2),(1397,1362909625,3),(1397,1383469225,2),(1397,1394359225,3),(1397,1414918825,2),(1397,1425808825,3),(1397,1446368426,2),(1397,1457863226,3),(1397,1478422826,2),(1397,1489312827,3),(1397,1509872427,2),(1397,1520762427,3),(1397,1541322027,2),(1397,1552212027,3),(1397,1572771627,2),(1397,1583661627,3),(1397,1604221227,2),(1397,1615716027,3),(1397,1636275627,2),(1397,1647165627,3),(1397,1667725227,2),(1397,1678615227,3),(1397,1699174827,2),(1397,1710064827,3),(1397,1730624427,2),(1397,1741514427,3),(1397,1762074027,2),(1397,1772964027,3),(1397,1793523627,2),(1397,1805018427,3),(1397,1825578027,2),(1397,1836468027,3),(1397,1857027627,2),(1397,1867917627,3),(1397,1888477227,2),(1397,1899367227,3),(1397,1919926827,2),(1397,1930816827,3),(1397,1951376427,2),(1397,1962871227,3),(1397,1983430827,2),(1397,1994320827,3),(1397,2014880427,2),(1397,2025770427,3),(1397,2046330027,2),(1397,2057220027,3),(1397,2077779627,2),(1397,2088669627,3),(1397,2109229227,2),(1397,2120119227,3),(1397,2140678827,2),(1398,-1632070800,0),(1398,-1615140000,1),(1398,-1601753400,0),(1398,-1583697600,1),(1398,-1567357200,0),(1398,-1554667200,1),(1398,-1534698000,0),(1398,-1524074400,1),(1398,-1503248400,0),(1398,-1492365600,1),(1398,-1471798800,0),(1398,-1460916000,1),(1398,-1440954000,0),(1398,-1428861600,1),(1398,-1409504400,0),(1398,-1397412000,1),(1398,-1378054800,0),(1398,-1365962400,1),(1398,-1346605200,0),(1398,-1333908000,1),(1398,-1315155600,0),(1398,-1301853600,1),(1398,-1283706000,0),(1398,-1270404000,1),(1398,-1252256400,0),(1398,-1238954400,1),(1398,-1220806800,0),(1398,-1207504800,1),(1398,-1188752400,0),(1398,-1176055200,1),(1398,-1157302800,0),(1398,-1144000800,1),(1398,-1125853200,0),(1398,-1112551200,1),(1398,-1094403600,0),(1398,-1081101600,1),(1398,-1062954000,0),(1398,-1049652000,1),(1398,-1031504400,0),(1398,-1018202400,1),(1398,-1000054800,0),(1398,-986752800,1),(1398,-968000400,0),(1398,-955303200,1),(1398,-936550800,0),(1398,-880218000,2),(1398,-769395600,3),(1398,-765396000,1),(1398,-747248400,0),(1398,-733946400,1),(1398,-715806000,0),(1398,-702504000,1),(1398,-684356400,0),(1398,-671054400,1),(1398,-652906800,0),(1398,-634161600,1),(1398,-620845200,0),(1398,-602704800,1),(1398,-589395600,0),(1398,-576093600,1),(1398,-557946000,0),(1398,-544644000,1),(1398,-526496400,0),(1398,-513194400,1),(1398,-495046800,0),(1398,-481744800,1),(1398,-463597200,0),(1398,-450295200,1),(1398,-431542800,0),(1398,-418240800,1),(1398,-400093200,0),(1398,-384372000,1),(1398,-368643600,0),(1398,-352922400,1),(1398,-337194000,0),(1398,-321472800,1),(1398,-305744400,0),(1398,-289418400,1),(1398,-273690000,0),(1398,-257968800,1),(1398,-242240400,0),(1398,-226519200,1),(1398,-210790800,0),(1398,-195069600,1),(1398,-179341200,0),(1398,-163620000,1),(1398,-147891600,0),(1398,-131565600,1),(1398,-116442000,0),(1398,-100116000,1),(1398,-84387600,0),(1398,-68666400,1),(1398,-52938000,0),(1398,-37216800,1),(1398,-21488400,0),(1398,-5767200,1),(1398,9961200,0),(1398,25682400,1),(1398,41410800,0),(1398,57736800,1),(1398,73465200,0),(1398,89186401,1),(1398,104914802,0),(1398,120636002,1),(1398,136364403,0),(1398,152085603,1),(1398,167814004,0),(1398,183535204,1),(1398,199263605,0),(1398,215589605,1),(1398,230713206,0),(1398,247039206,1),(1398,262767607,0),(1398,278488807,1),(1398,294217208,0),(1398,309938408,1),(1398,325666809,0),(1398,341388009,1),(1398,357116409,0),(1398,372837610,1),(1398,388566010,0),(1398,404892011,1),(1398,420015611,0),(1398,436341612,1),(1398,452070012,0),(1398,467791212,1),(1398,483519612,0),(1398,499240813,1),(1398,514969213,0),(1398,530690413,1),(1398,544604413,0),(1398,562140013,1),(1398,576054014,0),(1398,594194414,1),(1398,607503614,0),(1398,625644014,1),(1398,638953215,0),(1398,657093615,1),(1398,671007616,0),(1398,688543216,1),(1398,702457216,0),(1398,719992817,1),(1398,733906817,0),(1398,752047218,1),(1398,765356418,0),(1398,783496819,1),(1398,796806019,0),(1398,814946419,1),(1398,828860420,0),(1398,846396020,1),(1398,860310020,0),(1398,877845621,1),(1398,891759621,0),(1398,909295221,1),(1398,923209222,0),(1398,941349622,1),(1398,954658822,0),(1398,972799222,1),(1398,986108422,0),(1398,1004248822,1),(1398,1018162822,0),(1398,1035698422,1),(1398,1049612422,0),(1398,1067148022,1),(1398,1081062022,0),(1398,1099202422,1),(1398,1112511622,0),(1398,1130652022,1),(1398,1143961223,0),(1398,1162101623,1),(1398,1173596423,0),(1398,1194156023,1),(1398,1205046023,0),(1398,1225605623,1),(1398,1236495624,0),(1398,1257055224,1),(1398,1268550024,0),(1398,1289109624,1),(1398,1299999624,0),(1398,1320559224,1),(1398,1331449224,0),(1398,1352008825,1),(1398,1362898825,0),(1398,1383458425,1),(1398,1394348425,0),(1398,1414908025,1),(1398,1425798025,0),(1398,1446357626,1),(1398,1457852426,0),(1398,1478412026,1),(1398,1489302027,0),(1398,1509861627,1),(1398,1520751627,0),(1398,1541311227,1),(1398,1552201227,0),(1398,1572760827,1),(1398,1583650827,0),(1398,1604210427,1),(1398,1615705227,0),(1398,1636264827,1),(1398,1647154827,0),(1398,1667714427,1),(1398,1678604427,0),(1398,1699164027,1),(1398,1710054027,0),(1398,1730613627,1),(1398,1741503627,0),(1398,1762063227,1),(1398,1772953227,0),(1398,1793512827,1),(1398,1805007627,0),(1398,1825567227,1),(1398,1836457227,0),(1398,1857016827,1),(1398,1867906827,0),(1398,1888466427,1),(1398,1899356427,0),(1398,1919916027,1),(1398,1930806027,0),(1398,1951365627,1),(1398,1962860427,0),(1398,1983420027,1),(1398,1994310027,0),(1398,2014869627,1),(1398,2025759627,0),(1398,2046319227,1),(1398,2057209227,0),(1398,2077768827,1),(1398,2088658827,0),(1398,2109218427,1),(1398,2120108427,0),(1398,2140668027,1),(1399,-1825098836,1),(1400,-1632060000,0),(1400,-1615129200,1),(1400,-880207200,2),(1400,-769395600,3),(1400,-765385200,1),(1400,-747237600,0),(1400,-732726000,1),(1400,-715788000,0),(1400,-702486000,1),(1400,-684338400,0),(1400,-671036400,1),(1400,-652888800,0),(1400,-639586800,1),(1400,-620834400,0),(1400,-608137200,1),(1400,-589384800,0),(1400,-576082800,1),(1400,-557935200,0),(1400,-544633200,1),(1400,-526485600,0),(1400,-513183600,1),(1400,-495036000,0),(1400,-481734000,1),(1400,-463586400,0),(1400,-450284400,1),(1400,-431532000,0),(1400,-418230000,1),(1400,-400082400,0),(1400,-386780400,1),(1400,-368632800,0),(1400,-355330800,1),(1400,-337183200,0),(1400,-323881200,1),(1400,-305733600,0),(1400,-292431600,1),(1400,-273679200,0),(1400,-260982000,1),(1400,-242229600,0),(1400,-226508400,1),(1400,-210780000,0),(1400,-195058800,1),(1400,-179330400,0),(1400,-163609200,1),(1400,-147880800,0),(1400,-131554800,1),(1400,-116431200,0),(1400,-100105200,1),(1400,-84376800,0),(1400,-68655600,1),(1400,-52927200,0),(1400,-37206000,1),(1400,-21477600,0),(1400,-5756400,1),(1400,9972000,0),(1400,25693200,1),(1400,41421600,0),(1400,57747600,1),(1400,73476000,0),(1400,89197201,1),(1400,104925602,0),(1400,120646802,1),(1400,136375203,0),(1400,152096403,1),(1400,167824804,0),(1400,183546004,1),(1400,199274405,0),(1400,215600405,1),(1400,230724006,0),(1400,247050006,1),(1400,262778407,0),(1400,278499607,1),(1400,294228008,0),(1400,309949208,1),(1400,325677609,0),(1400,341398809,1),(1400,357127209,0),(1400,372848410,1),(1400,388576810,0),(1400,404902811,1),(1400,420026411,0),(1400,436352412,1),(1400,452080812,0),(1400,467802012,1),(1400,483530412,0),(1400,499251613,1),(1400,514980013,0),(1400,530701213,1),(1400,544615213,0),(1400,562150813,1),(1400,576064814,0),(1400,594205214,1),(1400,607514414,0),(1400,625654814,1),(1400,638964015,0),(1400,657104415,1),(1400,671018416,0),(1400,688554016,1),(1400,702468016,0),(1400,720003617,1),(1400,733917617,0),(1400,752058018,1),(1400,765367218,0),(1400,783507619,1),(1400,796816819,0),(1400,814957219,1),(1400,828871220,0),(1400,846406820,1),(1400,860320820,0),(1400,877856421,1),(1400,891770421,0),(1400,909306021,1),(1400,923220022,0),(1400,941360422,1),(1400,954669622,0),(1400,972810022,1),(1400,986119222,0),(1400,1004259622,1),(1400,1018173622,0),(1400,1035709222,1),(1400,1049623222,0),(1400,1067158822,1),(1400,1081072822,0),(1400,1099213222,1),(1400,1112522422,0),(1400,1130662822,1),(1400,1143972023,0),(1400,1162112423,1),(1400,1173607223,0),(1400,1194166823,1),(1400,1205056823,0),(1400,1225616423,1),(1400,1236506424,0),(1400,1257066024,1),(1400,1268560824,0),(1400,1289120424,1),(1400,1300010424,0),(1400,1320570024,1),(1400,1331460024,0),(1400,1352019625,1),(1400,1362909625,0),(1400,1383469225,1),(1400,1394359225,0),(1400,1414918825,1),(1400,1425808825,0),(1400,1446368426,1),(1400,1457863226,0),(1400,1478422826,1),(1400,1489312827,0),(1400,1509872427,1),(1400,1520762427,0),(1400,1541322027,1),(1400,1552212027,0),(1400,1572771627,1),(1400,1583661627,0),(1400,1604221227,1),(1400,1615716027,0),(1400,1636275627,1),(1400,1647165627,0),(1400,1667725227,1),(1400,1678615227,0),(1400,1699174827,1),(1400,1710064827,0),(1400,1730624427,1),(1400,1741514427,0),(1400,1762074027,1),(1400,1772964027,0),(1400,1793523627,1),(1400,1805018427,0),(1400,1825578027,1),(1400,1836468027,0),(1400,1857027627,1),(1400,1867917627,0),(1400,1888477227,1),(1400,1899367227,0),(1400,1919926827,1),(1400,1930816827,0),(1400,1951376427,1),(1400,1962871227,0),(1400,1983430827,1),(1400,1994320827,0),(1400,2014880427,1),(1400,2025770427,0),(1400,2046330027,1),(1400,2057220027,0),(1400,2077779627,1),(1400,2088669627,0),(1400,2109229227,1),(1400,2120119227,0),(1400,2140678827,1),(1401,-1825098836,1),(1402,-1632056400,0),(1402,-1615125600,1),(1402,-1596978000,0),(1402,-1583164800,1),(1402,-880203600,2),(1402,-769395600,3),(1402,-765381600,1),(1402,-147884400,4),(1402,-131554800,1),(1402,-81961200,5),(1402,325677609,6),(1402,341398809,5),(1402,357127209,6),(1402,372848410,5),(1402,388576810,6),(1402,404902811,5),(1402,420026411,6),(1402,436352412,5),(1402,452080812,6),(1402,467802012,5),(1402,483530412,6),(1402,499251613,5),(1402,514980013,6),(1402,530701213,5),(1402,544615213,6),(1402,562150813,5),(1402,576064814,6),(1402,594205214,5),(1402,607514414,6),(1402,625654814,5),(1402,638964015,6),(1402,657104415,5),(1402,671018416,6),(1402,688554016,5),(1402,702468016,6),(1402,720003617,5),(1402,733917617,6),(1402,752058018,5),(1402,765367218,6),(1402,783507619,5),(1402,796816819,6),(1402,814957219,5),(1402,828871220,6),(1402,846406820,5),(1402,860320820,6),(1402,877856421,5),(1402,891770421,6),(1402,909306021,5),(1402,923220022,6),(1402,941360422,5),(1402,954669622,6),(1402,972810022,5),(1402,986119222,6),(1402,1004259622,5),(1402,1018173622,6),(1402,1035709222,5),(1402,1049623222,6),(1402,1067158822,5),(1402,1081072822,6),(1402,1099213222,5),(1402,1112522422,6),(1402,1130662822,5),(1402,1143972023,6),(1402,1162112423,5),(1402,1173607223,6),(1402,1194166823,5),(1402,1205056823,6),(1402,1225616423,5),(1402,1236506424,6),(1402,1257066024,5),(1402,1268560824,6),(1402,1289120424,5),(1402,1300010424,6),(1402,1320570024,5),(1402,1331460024,6),(1402,1352019625,5),(1402,1362909625,6),(1402,1383469225,5),(1402,1394359225,6),(1402,1414918825,5),(1402,1425808825,6),(1402,1446368426,5),(1402,1457863226,6),(1402,1478422826,5),(1402,1489312827,6),(1402,1509872427,5),(1402,1520762427,6),(1402,1541322027,5),(1402,1552212027,6),(1402,1572771627,5),(1402,1583661627,6),(1402,1604221227,5),(1402,1615716027,6),(1402,1636275627,5),(1402,1647165627,6),(1402,1667725227,5),(1402,1678615227,6),(1402,1699174827,5),(1402,1710064827,6),(1402,1730624427,5),(1402,1741514427,6),(1402,1762074027,5),(1402,1772964027,6),(1402,1793523627,5),(1402,1805018427,6),(1402,1825578027,5),(1402,1836468027,6),(1402,1857027627,5),(1402,1867917627,6),(1402,1888477227,5),(1402,1899367227,6),(1402,1919926827,5),(1402,1930816827,6),(1402,1951376427,5),(1402,1962871227,6),(1402,1983430827,5),(1402,1994320827,6),(1402,2014880427,5),(1402,2025770427,6),(1402,2046330027,5),(1402,2057220027,6),(1402,2077779627,5),(1402,2088669627,6),(1402,2109229227,5),(1402,2120119227,6),(1402,2140678827,5),(1403,-1694368800,0),(1403,-1681671600,1),(1403,-1632067200,0),(1403,-1615136400,1),(1403,-1029686400,0),(1403,-1018198800,1),(1403,-880214400,2),(1403,-769395600,3),(1403,-765392400,1),(1403,-746035200,0),(1403,-732733200,1),(1403,-715795200,0),(1403,-702493200,1),(1403,-684345600,0),(1403,-671043600,1),(1403,-652896000,0),(1403,-639594000,1),(1403,-620755200,0),(1403,-607626000,1),(1403,-589392000,0),(1403,-576090000,1),(1403,-557942400,0),(1403,-544640400,1),(1403,-526492800,0),(1403,-513190800,1),(1403,-495043200,0),(1403,-481741200,1),(1403,-463593600,0),(1403,-450291600,1),(1403,-431539200,0),(1403,-418237200,1),(1403,-400089600,0),(1403,-386787600,1),(1403,-368640000,0),(1403,-355338000,1),(1403,-337190400,0),(1403,-321469200,1),(1403,-305740800,0),(1403,-292438800,1),(1403,-210787200,0),(1403,-198090000,1),(1403,-116438400,4),(1403,-100108800,5),(1403,-84384000,4),(1403,-68659200,5),(1403,-52934400,4),(1403,-37209600,5),(1403,-21484800,4),(1403,-5760000,5),(1403,9964800,4),(1403,25689600,5),(1403,41414400,4),(1403,57744000,5),(1403,73468800,4),(1403,89193601,5),(1403,104918402,4),(1403,120643202,5),(1403,136368003,4),(1403,152092803,5),(1403,167817604,4),(1403,183542404,5),(1403,199267205,4),(1403,215596805,5),(1403,230716806,4),(1403,247046406,5),(1403,262771207,4),(1403,278496007,5),(1403,294220808,4),(1403,309945608,5),(1403,325670409,4),(1403,341395209,5),(1403,357120009,4),(1403,372844810,5),(1403,388569610,4),(1403,404899211,5),(1403,420019211,4),(1403,436348812,5),(1403,452073612,4),(1403,467798412,5),(1403,483523212,4),(1403,499248013,5),(1403,514972813,4),(1403,530697613,5),(1403,544608013,4),(1403,562147213,5),(1403,576057614,4),(1403,594201614,5),(1403,607507214,4),(1403,625651214,5),(1403,638956815,4),(1403,657100815,5),(1403,671011216,4),(1403,688550416,5),(1403,702460816,4),(1403,720000017,5),(1403,733910417,4),(1403,752054418,5),(1403,765360018,4),(1403,783504019,5),(1403,796809619,4),(1403,814953619,5),(1403,828864020,4),(1403,846403220,5),(1403,860313620,4),(1403,877852821,5),(1403,891763221,4),(1403,909302421,5),(1403,923212822,4),(1403,941356822,5),(1403,954662422,4),(1403,972806422,5),(1403,986112022,4),(1403,1004256022,5),(1403,1018166422,4),(1403,1035705622,5),(1403,1049616022,4),(1403,1067155222,5),(1403,1081065622,4),(1403,1099209622,5),(1403,1112515222,4),(1403,1130659222,5),(1403,1136095223,1),(1403,1143964823,0),(1403,1162105223,1),(1403,1173600023,0),(1403,1194159623,1),(1403,1205049623,0),(1403,1225609223,1),(1403,1236499224,0),(1403,1257058824,1),(1403,1268553624,0),(1403,1289113224,1),(1403,1300003224,0),(1403,1320562824,1),(1403,1331452824,0),(1403,1352012425,1),(1403,1362902425,0),(1403,1383462025,1),(1403,1394352025,0),(1403,1414911625,1),(1403,1425801625,0),(1403,1446361226,1),(1403,1457856026,0),(1403,1478415626,1),(1403,1489305627,0),(1403,1509865227,1),(1403,1520755227,0),(1403,1541314827,1),(1403,1552204827,0),(1403,1572764427,1),(1403,1583654427,0),(1403,1604214027,1),(1403,1615708827,0),(1403,1636268427,1),(1403,1647158427,0),(1403,1667718027,1),(1403,1678608027,0),(1403,1699167627,1),(1403,1710057627,0),(1403,1730617227,1),(1403,1741507227,0),(1403,1762066827,1),(1403,1772956827,0),(1403,1793516427,1),(1403,1805011227,0),(1403,1825570827,1),(1403,1836460827,0),(1403,1857020427,1),(1403,1867910427,0),(1403,1888470027,1),(1403,1899360027,0),(1403,1919919627,1),(1403,1930809627,0),(1403,1951369227,1),(1403,1962864027,0),(1403,1983423627,1),(1403,1994313627,0),(1403,2014873227,1),(1403,2025763227,0),(1403,2046322827,1),(1403,2057212827,0),(1403,2077772427,1),(1403,2088662427,0),(1403,2109222027,1),(1403,2120112027,0),(1403,2140671627,1),(1404,-880203600,1),(1404,-769395600,2),(1404,-765381600,0),(1404,-21474000,3),(1404,-5752800,0),(1404,9975600,3),(1404,25696800,0),(1404,41425200,3),(1404,57751200,0),(1404,73479600,3),(1404,89200801,0),(1404,104929202,3),(1404,120650402,0),(1404,126702003,3),(1404,152100003,0),(1404,162385204,3),(1404,183549604,0),(1404,199278005,3),(1404,215604005,0),(1404,230727606,3),(1404,247053606,0),(1404,262782007,3),(1404,278503207,0),(1404,294231608,3),(1404,309952808,0),(1404,325681209,3),(1404,341402409,0),(1404,357130809,3),(1404,372852010,0),(1404,388580410,3),(1404,404906411,0),(1404,420030011,3),(1404,436356012,0),(1404,439030812,5),(1404,452084412,4),(1404,467805612,5),(1404,483534012,4),(1404,499255213,5),(1404,514983613,4),(1404,530704813,5),(1404,544618813,4),(1404,562154413,5),(1404,576068414,4),(1404,594208814,5),(1404,607518014,4),(1404,625658414,5),(1404,638967615,4),(1404,657108015,5),(1404,671022016,4),(1404,688557616,5),(1404,702471616,4),(1404,720007217,5),(1404,733921217,4),(1404,752061618,5),(1404,765370818,4),(1404,783511219,5),(1404,796820419,4),(1404,814960819,5),(1404,828874820,4),(1404,846410420,5),(1404,860324420,4),(1404,877860021,5),(1404,891774021,4),(1404,909309621,5),(1404,923223622,4),(1404,941364022,5),(1404,954673222,4),(1404,972813622,5),(1404,986122822,4),(1404,1004263222,5),(1404,1018177222,4),(1404,1035712822,5),(1404,1049626822,4),(1404,1067162422,5),(1404,1081076422,4),(1404,1099216822,5),(1404,1112526022,4),(1404,1130666422,5),(1404,1143975623,4),(1404,1162116023,5),(1404,1173610823,4),(1404,1194170423,5),(1404,1205060423,4),(1404,1225620023,5),(1404,1236510024,4),(1404,1257069624,5),(1404,1268564424,4),(1404,1289124024,5),(1404,1300014024,4),(1404,1320573624,5),(1404,1331463624,4),(1404,1352023225,5),(1404,1362913225,4),(1404,1383472825,5),(1404,1394362825,4),(1404,1414922425,5),(1404,1425812425,4),(1404,1446372026,5),(1404,1457866826,4),(1404,1478426426,5),(1404,1489316427,4),(1404,1509876027,5),(1404,1520766027,4),(1404,1541325627,5),(1404,1552215627,4),(1404,1572775227,5),(1404,1583665227,4),(1404,1604224827,5),(1404,1615719627,4),(1404,1636279227,5),(1404,1647169227,4),(1404,1667728827,5),(1404,1678618827,4),(1404,1699178427,5),(1404,1710068427,4),(1404,1730628027,5),(1404,1741518027,4),(1404,1762077627,5),(1404,1772967627,4),(1404,1793527227,5),(1404,1805022027,4),(1404,1825581627,5),(1404,1836471627,4),(1404,1857031227,5),(1404,1867921227,4),(1404,1888480827,5),(1404,1899370827,4),(1404,1919930427,5),(1404,1930820427,4),(1404,1951380027,5),(1404,1962874827,4),(1404,1983434427,5),(1404,1994324427,4),(1404,2014884027,5),(1404,2025774027,4),(1404,2046333627,5),(1404,2057223627,4),(1404,2077783227,5),(1404,2088673227,4),(1404,2109232827,5),(1404,2120122827,4),(1404,2140682427,5),(1405,-1104537600,3),(1405,-880210800,1),(1405,-769395600,2),(1405,-765388800,3),(1405,-147891600,4),(1405,-131562000,3),(1405,325674009,5),(1405,341395209,3),(1405,357123609,5),(1405,372844810,3),(1405,388573210,5),(1405,404899211,3),(1405,420022811,5),(1405,436348812,3),(1405,452077212,5),(1405,467798412,3),(1405,483526812,5),(1405,499248013,3),(1405,514976413,5),(1405,530697613,3),(1405,544611613,5),(1405,562147213,3),(1405,576061214,5),(1405,594201614,3),(1405,607510814,5),(1405,625651214,3),(1405,638960415,5),(1405,657100815,3),(1405,671014816,5),(1405,688550416,3),(1405,702464416,5),(1405,720000017,3),(1405,733914017,5),(1405,752054418,3),(1405,765363618,5),(1405,783504019,3),(1405,796813219,5),(1405,814953619,3),(1405,828867620,5),(1405,846403220,3),(1405,860317220,5),(1405,877852821,3),(1405,891766821,5),(1405,909302421,3),(1405,923216422,5),(1405,941356822,3),(1405,954666022,5),(1405,972806422,3),(1405,986115622,5),(1405,1004256022,3),(1405,1018170022,5),(1405,1035705622,3),(1405,1049619622,5),(1405,1067155222,3),(1405,1081069222,5),(1405,1099209622,3),(1405,1112518822,5),(1405,1130659222,3),(1405,1143968423,5),(1405,1162108823,3),(1405,1173603623,5),(1405,1194163223,3),(1405,1205053223,5),(1405,1225612823,3),(1405,1236502824,5),(1405,1257062424,3),(1405,1268557224,5),(1405,1289116824,3),(1405,1300006824,5),(1405,1320566424,3),(1405,1331456424,5),(1405,1352016025,3),(1405,1362906025,5),(1405,1383465625,3),(1405,1394355625,5),(1405,1414915225,3),(1405,1425805225,5),(1405,1446364826,3),(1405,1457859626,5),(1405,1478419226,3),(1405,1489309227,5),(1405,1509868827,3),(1405,1520758827,5),(1405,1541318427,3),(1405,1552208427,5),(1405,1572768027,3),(1405,1583658027,5),(1405,1604217627,3),(1405,1615712427,5),(1405,1636272027,3),(1405,1647162027,5),(1405,1667721627,3),(1405,1678611627,5),(1405,1699171227,3),(1405,1710061227,5),(1405,1730620827,3),(1405,1741510827,5),(1405,1762070427,3),(1405,1772960427,5),(1405,1793520027,3),(1405,1805014827,5),(1405,1825574427,3),(1405,1836464427,5),(1405,1857024027,3),(1405,1867914027,5),(1405,1888473627,3),(1405,1899363627,5),(1405,1919923227,3),(1405,1930813227,5),(1405,1951372827,3),(1405,1962867627,5),(1405,1983427227,3),(1405,1994317227,5),(1405,2014876827,3),(1405,2025766827,5),(1405,2046326427,3),(1405,2057216427,5),(1405,2077776027,3),(1405,2088666027,5),(1405,2109225627,3),(1405,2120115627,5),(1405,2140675227,3),(1406,-31536000,1),(1406,1255802424,2),(1406,1267714824,1),(1406,1319738424,2),(1406,1329843624,3),(1406,1477065626,2),(1406,1520701227,1),(1407,-409190400,1),(1407,-163062000,0),(1407,-28857600,1),(1407,1255806024,2),(1407,1268251224,3),(1407,1319742024,2),(1407,1329854424,3),(1408,-725846400,1),(1408,-566992800,0),(1408,-415497600,1),(1409,-1680508800,1),(1409,-1665392400,0),(1409,-1601719200,2),(1409,-687052800,0),(1409,-71136000,3),(1409,-55411200,4),(1409,-37267200,3),(1409,-25776000,4),(1409,-5817600,3),(1409,5673600,4),(1409,25632000,3),(1409,37728000,4),(1409,57686400,3),(1409,67968000,4),(1409,89136001,3),(1409,100022402,4),(1409,120585602,3),(1409,131472003,4),(1409,152035203,3),(1409,162921604,4),(1409,183484804,3),(1409,194976005,4),(1409,215539205,3),(1409,226425606,4),(1409,246988806,3),(1409,257875207,4),(1409,278438407,3),(1409,289324808,4),(1409,309888008,3),(1409,320774409,4),(1409,341337609,3),(1409,352224009,4),(1409,372787210,3),(1409,386092810,4),(1409,404841611,3),(1409,417542411,4),(1409,436291212,3),(1409,447177612,4),(1409,467740812,3),(1409,478627212,4),(1409,499190413,3),(1409,510076813,4),(1409,530035213,3),(1409,542736013,4),(1409,562089613,3),(1409,574790414,4),(1409,594144014,3),(1409,606240014,4),(1409,625593614,3),(1409,637689615,4),(1409,657043215,3),(1409,670348816,4),(1409,686678416,3),(1409,701798416,4),(1409,718128017,3),(1409,733248017,4),(1409,749577618,3),(1409,764697618,4),(1409,781027219,3),(1409,796147219,4),(1409,812476819,3),(1409,828201620,4),(1409,844531220,3),(1409,859651220,4),(1409,875980821,3),(1409,891100821,4),(1409,907430421,3),(1409,922550422,4),(1409,938880022,3),(1409,954000022,4),(1409,967305622,3),(1409,985449622,4),(1409,1002384022,3),(1409,1017504022,4),(1409,1033833622,3),(1409,1048953622,4),(1409,1065283222,3),(1409,1080403222,4),(1409,1096732822,3),(1409,1111852822,4),(1409,1128182422,3),(1409,1143907223,4),(1409,1159632023,3),(1409,1174752023,4),(1409,1191686423,3),(1409,1207411223,4),(1409,1223136023,3),(1409,1238860824,4),(1409,1254585624,3),(1409,1270310424,5),(1410,-501206400,1),(1410,1255809624,2),(1411,-1330335000,0),(1411,-1320057000,1),(1411,-1300699800,2),(1411,-1287396000,1),(1411,-1269250200,2),(1411,-1255946400,1),(1411,-1237800600,2),(1411,-1224496800,1),(1411,-1206351000,2),(1411,-1192442400,1),(1411,-1174901400,2),(1411,-1160992800,1),(1411,-1143451800,2),(1411,-1125914400,1),(1411,-1112607000,2),(1411,-1094464800,1),(1411,-1081157400,2),(1411,-1063015200,1),(1411,-1049707800,2),(1411,-1031565600,1),(1411,-1018258200,2),(1411,-1000116000,1),(1411,-986808600,2),(1411,-968061600,1),(1411,-955359000,2),(1411,-936612000,1),(1411,-923304600,2),(1411,-757425600,5),(1411,152632803,3),(1411,162309604,4),(1411,183477604,3),(1411,194968805,4),(1411,215532005,3),(1411,226418406,4),(1411,246981606,3),(1411,257868007,4),(1411,278431207,3),(1411,289317608,4),(1411,309880808,3),(1411,320767209,4),(1411,341330409,3),(1411,352216809,4),(1411,372780010,3),(1411,384271210,4),(1411,404834411,3),(1411,415720811,4),(1411,436284012,3),(1411,447170412,4),(1411,467733612,3),(1411,478620012,4),(1411,499183213,3),(1411,510069613,4),(1411,530632813,3),(1411,541519213,4),(1411,562082413,3),(1411,573573614,4),(1411,594136814,3),(1411,605023214,4),(1411,623772014,3),(1411,637682415,4),(1411,655221615,3),(1411,669132016,4),(1411,686671216,3),(1411,700581616,4),(1411,718120817,3),(1411,732636017,4),(1411,749570418,3),(1411,764085618,4),(1411,781020019,3),(1411,795535219,4),(1411,812469619,3),(1411,826984820,4),(1411,844524020,3),(1411,858434420,4),(1411,875973621,3),(1411,889884021,4),(1411,907423221,3),(1411,921938422,4),(1411,938872822,3),(1411,953388022,4),(1411,970322422,3),(1411,984837622,4),(1411,1002376822,3),(1411,1016287222,4),(1411,1033826422,3),(1411,1047736822,4),(1411,1065276022,3),(1411,1079791222,4),(1411,1096725622,3),(1411,1111240822,4),(1411,1128175222,3),(1411,1142690423,4),(1411,1159624823,3),(1411,1174140023,4),(1411,1191074423,3),(1411,1207404023,4),(1411,1222524023,3),(1411,1238853624,4),(1411,1253973624,3),(1411,1270303224,4),(1411,1285423224,3),(1411,1301752824,4),(1411,1316872824,3),(1411,1333202424,4),(1411,1348927225,3),(1411,1365256825,4),(1411,1380376825,3),(1411,1396706425,4),(1411,1411826425,3),(1411,1428156025,4),(1411,1443276026,3),(1411,1459605626,4),(1411,1474725626,3),(1411,1491055227,4),(1411,1506175227,3),(1411,1522504827,4),(1411,1538229627,3),(1411,1554559227,4),(1411,1569679227,3),(1411,1586008827,4),(1411,1601128827,3),(1411,1617458427,4),(1411,1632578427,3),(1411,1648908027,4),(1411,1664028027,3),(1411,1680357627,4),(1411,1695477627,3),(1411,1712412027,4),(1411,1727532027,3),(1411,1743861627,4),(1411,1758981627,3),(1411,1775311227,4),(1411,1790431227,3),(1411,1806760827,4),(1411,1821880827,3),(1411,1838210427,4),(1411,1853330427,3),(1411,1869660027,4),(1411,1885384827,3),(1411,1901714427,4),(1411,1916834427,3),(1411,1933164027,4),(1411,1948284027,3),(1411,1964613627,4),(1411,1979733627,3),(1411,1996063227,4),(1411,2011183227,3),(1411,2027512827,4),(1411,2042632827,3),(1411,2058962427,4),(1411,2074687227,3),(1411,2091016827,4),(1411,2106136827,3),(1411,2122466427,4),(1411,2137586427,3),(1412,-157766400,2),(1412,-152658000,1),(1412,-132955200,2),(1412,-121122000,1),(1412,-101419200,2),(1412,-86821200,1),(1412,-71092800,2),(1412,-54766800,1),(1412,-39038400,2),(1412,-23317200,1),(1412,-7588800,4),(1412,128142003,3),(1412,136605603,4),(1412,389070010,1),(1412,403070411,5),(1412,416372411,6),(1412,434520012,5),(1412,447822012,6),(1412,466574412,5),(1412,479271612,6),(1412,498024013,5),(1412,510721213,6),(1412,529473613,5),(1412,545194813,6),(1412,560923213,5),(1412,574225214,6),(1412,592372814,5),(1412,605674814,6),(1412,624427214,5),(1412,637124415,6),(1412,653457615,5),(1412,668574016,6),(1412,687326416,5),(1412,700628416,6),(1412,718776017,5),(1412,732078017,6),(1412,750225618,5),(1412,763527618,6),(1412,781675219,5),(1412,794977219,6),(1412,813729619,5),(1412,826426820,6),(1412,845179220,5),(1412,859690820,6),(1412,876628821,5),(1412,889930821,6),(1412,906868821,5),(1412,923194822,6),(1412,939528022,5),(1412,952830022,6),(1412,971582422,5),(1412,984279622,6),(1412,1003032022,5),(1412,1015729222,6),(1412,1034481622,5),(1412,1047178822,6),(1412,1065931222,5),(1412,1079233222,6),(1412,1097380822,5),(1412,1110682822,6),(1412,1128830422,5),(1412,1142132423,6),(1412,1160884823,5),(1412,1173582023,6),(1412,1192334423,5),(1412,1206846023,6),(1412,1223784023,5),(1412,1237086024,6),(1412,1255233624,5),(1412,1270350024,6),(1412,1286683224,5),(1412,1304823624,6),(1412,1313899224,5),(1412,1335668424,6),(1412,1346558425,5),(1412,1367118025,6),(1412,1378612825,5),(1412,1398567625,6),(1412,1410062425,5),(1412,1463281226,6),(1412,1471147226,5),(1412,1480820426,4),(1413,218246405,1),(1414,-1330335000,0),(1414,-1320057000,1),(1414,-1300699800,2),(1414,-1287396000,1),(1414,-1269250200,2),(1414,-1255946400,1),(1414,-1237800600,2),(1414,-1224496800,1),(1414,-1206351000,2),(1414,-1192442400,1),(1414,-1174901400,2),(1414,-1160992800,1),(1414,-1143451800,2),(1414,-1125914400,1),(1414,-1112607000,2),(1414,-1094464800,1),(1414,-1081157400,2),(1414,-1063015200,1),(1414,-1049707800,2),(1414,-1031565600,1),(1414,-1018258200,2),(1414,-1000116000,1),(1414,-986808600,2),(1414,-968061600,1),(1414,-955359000,2),(1414,-936612000,1),(1414,-923304600,2),(1414,-757425600,5),(1414,152632803,3),(1414,162309604,4),(1414,183477604,3),(1414,194968805,4),(1414,215532005,3),(1414,226418406,4),(1414,246981606,3),(1414,257868007,4),(1414,278431207,3),(1414,289317608,4),(1414,309880808,3),(1414,320767209,4),(1414,341330409,3),(1414,352216809,4),(1414,372780010,3),(1414,384271210,4),(1414,404834411,3),(1414,415720811,4),(1414,436284012,3),(1414,447170412,4),(1414,467733612,3),(1414,478620012,4),(1414,499183213,3),(1414,510069613,4),(1414,530632813,3),(1414,541519213,4),(1414,562082413,3),(1414,573573614,4),(1414,594136814,3),(1414,605023214,4),(1414,623772014,3),(1414,637682415,4),(1414,655221615,3),(1414,669132016,4),(1414,686671216,3),(1414,700581616,4),(1414,718120817,3),(1414,732636017,4),(1414,749570418,3),(1414,764085618,4),(1414,781020019,3),(1414,795535219,4),(1414,812469619,3),(1414,826984820,4),(1414,844524020,3),(1414,858434420,4),(1414,875973621,3),(1414,889884021,4),(1414,907423221,3),(1414,921938422,4),(1414,938872822,3),(1414,953388022,4),(1414,970322422,3),(1414,984837622,4),(1414,1002376822,3),(1414,1016287222,4),(1414,1033826422,3),(1414,1047736822,4),(1414,1065276022,3),(1414,1079791222,4),(1414,1096725622,3),(1414,1111240822,4),(1414,1128175222,3),(1414,1142690423,4),(1414,1159624823,3),(1414,1174140023,4),(1414,1191074423,3),(1414,1207404023,4),(1414,1222524023,3),(1414,1238853624,4),(1414,1253973624,3),(1414,1270303224,4),(1414,1285423224,3),(1414,1301752824,4),(1414,1316872824,3),(1414,1333202424,4),(1414,1348927225,3),(1414,1365256825,4),(1414,1380376825,3),(1414,1396706425,4),(1414,1411826425,3),(1414,1428156025,4),(1414,1443276026,3),(1414,1459605626,4),(1414,1474725626,3),(1414,1491055227,4),(1414,1506175227,3),(1414,1522504827,4),(1414,1538229627,3),(1414,1554559227,4),(1414,1569679227,3),(1414,1586008827,4),(1414,1601128827,3),(1414,1617458427,4),(1414,1632578427,3),(1414,1648908027,4),(1414,1664028027,3),(1414,1680357627,4),(1414,1695477627,3),(1414,1712412027,4),(1414,1727532027,3),(1414,1743861627,4),(1414,1758981627,3),(1414,1775311227,4),(1414,1790431227,3),(1414,1806760827,4),(1414,1821880827,3),(1414,1838210427,4),(1414,1853330427,3),(1414,1869660027,4),(1414,1885384827,3),(1414,1901714427,4),(1414,1916834427,3),(1414,1933164027,4),(1414,1948284027,3),(1414,1964613627,4),(1414,1979733627,3),(1414,1996063227,4),(1414,2011183227,3),(1414,2027512827,4),(1414,2042632827,3),(1414,2058962427,4),(1414,2074687227,3),(1414,2091016827,4),(1414,2106136827,3),(1414,2122466427,4),(1414,2137586427,3),(1415,-407808000,1),(1416,1108166422,3),(1416,1111885222,1),(1416,1130634022,2),(1416,1143334823,1),(1416,1162083623,2),(1416,1174784423,1),(1416,1193533223,2),(1416,1206838823,1),(1416,1224982823,2),(1416,1238288424,1),(1416,1256432424,2),(1416,1269738024,1),(1416,1288486824,2),(1416,1301187624,1),(1416,1319936424,2),(1416,1332637224,1),(1416,1351386025,2),(1416,1364691625,1),(1416,1382835625,2),(1416,1396141225,1),(1416,1414285225,2),(1416,1427590825,1),(1416,1445734826,2),(1416,1459040426,1),(1416,1477789226,2),(1416,1490490027,1),(1416,1509238827,2),(1416,1521939627,1),(1416,1540688427,2),(1416,1553994027,1),(1416,1572138027,2),(1416,1585443627,1),(1416,1603587627,2),(1416,1616893227,1),(1416,1635642027,2),(1416,1648342827,1),(1416,1667091627,2),(1416,1679792427,1),(1416,1698541227,2),(1416,1711846827,1),(1416,1729990827,2),(1416,1743296427,1),(1416,1761440427,2),(1416,1774746027,1),(1416,1792890027,2),(1416,1806195627,1),(1416,1824944427,2),(1416,1837645227,1),(1416,1856394027,2),(1416,1869094827,1),(1416,1887843627,2),(1416,1901149227,1),(1416,1919293227,2),(1416,1932598827,1),(1416,1950742827,2),(1416,1964048427,1),(1416,1982797227,2),(1416,1995498027,1),(1416,2014246827,2),(1416,2026947627,1),(1416,2045696427,2),(1416,2058397227,1),(1416,2077146027,2),(1416,2090451627,1),(1416,2108595627,2),(1416,2121901227,1),(1416,2140045227,2),(1417,-380073600,1),(1418,-1691884800,0),(1418,-1680573600,1),(1418,-927511200,0),(1418,-857257200,2),(1418,-844556400,3),(1418,-828226800,2),(1418,-812502000,3),(1418,-796777200,2),(1418,-781052400,3),(1418,-765327600,2),(1418,-340844400,3),(1418,-324514800,2),(1418,-308790000,3),(1418,-293065200,2),(1418,-277340400,3),(1418,-261615600,2),(1418,-245890800,3),(1418,-230166000,2),(1418,-214441200,3),(1418,-198716400,2),(1418,-182991600,3),(1418,-166662000,2),(1418,-147913200,3),(1418,-135212400,2),(1418,315529208,1),(1418,323830809,4),(1418,338950809,5),(1418,354675609,4),(1418,370400410,5),(1418,386125210,4),(1418,401850011,5),(1418,417574811,4),(1418,433299612,5),(1418,449024412,4),(1418,465354012,5),(1418,481078812,4),(1418,496803613,5),(1418,512528413,4),(1418,528253213,5),(1418,543978013,4),(1418,559702813,5),(1418,575427614,4),(1418,591152414,5),(1418,606877214,4),(1418,622602014,5),(1418,638326815,4),(1418,654656415,5),(1418,670381216,4),(1418,686106016,5),(1418,701830816,4),(1418,717555617,5),(1418,733280417,4),(1418,749005218,5),(1418,764730018,4),(1418,780454819,5),(1418,796179619,4),(1418,811904419,5),(1418,828234020,4),(1418,846378020,5),(1418,859683620,4),(1418,877827621,5),(1418,891133221,4),(1418,909277221,5),(1418,922582822,4),(1418,941331622,5),(1418,954032422,4),(1418,972781222,5),(1418,985482022,4),(1418,1004230822,5),(1418,1017536422,4),(1418,1035680422,5),(1418,1048986022,4),(1418,1067130022,5),(1418,1080435622,4),(1418,1099184422,5),(1418,1111885222,4),(1418,1130634022,5),(1418,1143334823,4),(1418,1162083623,5),(1418,1174784423,4),(1418,1193533223,5),(1418,1206838823,4),(1418,1224982823,5),(1418,1238288424,4),(1418,1256432424,5),(1418,1269738024,4),(1418,1288486824,5),(1418,1301187624,4),(1418,1319936424,5),(1418,1332637224,4),(1418,1351386025,5),(1418,1364691625,4),(1418,1382835625,5),(1418,1396141225,4),(1418,1414285225,5),(1418,1427590825,4),(1418,1445734826,5),(1418,1459040426,4),(1418,1477789226,5),(1418,1490490027,4),(1418,1509238827,5),(1418,1521939627,4),(1418,1540688427,5),(1418,1553994027,4),(1418,1572138027,5),(1418,1585443627,4),(1418,1603587627,5),(1418,1616893227,4),(1418,1635642027,5),(1418,1648342827,4),(1418,1667091627,5),(1418,1679792427,4),(1418,1698541227,5),(1418,1711846827,4),(1418,1729990827,5),(1418,1743296427,4),(1418,1761440427,5),(1418,1774746027,4),(1418,1792890027,5),(1418,1806195627,4),(1418,1824944427,5),(1418,1837645227,4),(1418,1856394027,5),(1418,1869094827,4),(1418,1887843627,5),(1418,1901149227,4),(1418,1919293227,5),(1418,1932598827,4),(1418,1950742827,5),(1418,1964048427,4),(1418,1982797227,5),(1418,1995498027,4),(1418,2014246827,5),(1418,2026947627,4),(1418,2045696427,5),(1418,2058397227,4),(1418,2077146027,5),(1418,2090451627,4),(1418,2108595627,5),(1418,2121901227,4),(1418,2140045227,5),(1419,-719636812,1),(1420,-1441170468,1),(1420,-1247547600,3),(1420,354909609,2),(1420,370717210,3),(1420,386445610,2),(1420,402253211,3),(1420,417981611,2),(1420,433789212,3),(1420,449604012,2),(1420,465336012,4),(1420,481060812,5),(1420,496785613,4),(1420,512510413,5),(1420,528235213,4),(1420,543960013,5),(1420,559684813,4),(1420,575409614,5),(1420,591134414,4),(1420,606859214,5),(1420,622584014,4),(1420,638308815,5),(1420,654638415,4),(1420,670363216,6),(1420,686091616,7),(1420,695768416,4),(1420,701812816,5),(1420,717537617,4),(1420,733262417,5),(1420,748987218,4),(1420,764712018,5),(1420,780436819,4),(1420,796161619,5),(1420,811886419,4),(1420,828216020,5),(1420,846360020,4),(1420,859665620,5),(1420,877809621,4),(1420,891115221,5),(1420,909259221,4),(1420,922564822,5),(1420,941313622,4),(1420,954014422,5),(1420,972763222,4),(1420,985464022,5),(1420,1004212822,4),(1420,1017518422,5),(1420,1035662422,4),(1420,1048968022,5),(1420,1067112022,4),(1420,1080417622,5),(1420,1099166422,4),(1421,-1230776624,2),(1421,108165602,1),(1421,118270802,2),(1421,136591203,1),(1421,149806803,2),(1421,168127204,1),(1421,181342804,2),(1421,199749605,1),(1421,215643605,2),(1421,231285606,1),(1421,244501206,2),(1421,262735207,1),(1421,275950807,2),(1421,481154412,1),(1421,496962013,2),(1421,512949613,1),(1421,528670813,2),(1421,544399213,1),(1421,560120413,2),(1421,575848814,1),(1421,592174814,2),(1421,610581614,1),(1421,623624414,2),(1421,641167215,1),(1421,655074015,2),(1421,671839216,1),(1421,685918816,2),(1421,702856816,1),(1421,717973217,2),(1421,733701617,1),(1421,749422818,2),(1421,765151218,1),(1421,779662819,2),(1421,797205619,1),(1421,811116019,3),(1421,828655220,1),(1421,843170420,3),(1421,860104820,1),(1421,874620021,3),(1421,891554421,1),(1421,906069621,3),(1421,930780022,4),(1421,938124022,3),(1421,954367222,4),(1421,970178422,3),(1421,985816822,4),(1421,1001628022,3),(1421,1017352822,1),(1421,1033077622,3),(1421,1048802422,1),(1421,1066946422,3),(1421,1080252022,1),(1421,1097791222,3),(1421,1112306422,1),(1421,1128031222,3),(1421,1143756023,1),(1421,1161900023,3),(1421,1175205623,1),(1421,1193349623,3),(1421,1206655223,1),(1421,1225404023,3),(1421,1238104824,1),(1421,1256853624,3),(1421,1269554424,1),(1421,1288303224,3),(1421,1301608824,1),(1421,1319752824,3),(1421,1333058424,1),(1421,1387486825,2),(1421,1395957625,1),(1421,1414706425,3),(1421,1427407225,1),(1421,1446156026,3),(1421,1459461626,1),(1421,1477605626,3),(1421,1490911227,1),(1421,1509055227,3),(1421,1522360827,1),(1421,1540504827,3),(1421,1553810427,1),(1421,1571954427,3),(1421,1585260027,1),(1421,1604008827,3),(1421,1616709627,1),(1421,1635458427,3),(1421,1648764027,1),(1421,1666908027,3),(1421,1680213627,1),(1421,1698357627,3),(1421,1711663227,1),(1421,1729807227,3),(1421,1743112827,1),(1421,1761861627,3),(1421,1774562427,1),(1421,1793311227,3),(1421,1806012027,1),(1421,1824760827,3),(1421,1838066427,1),(1421,1856210427,3),(1421,1869516027,1),(1421,1887660027,3),(1421,1900965627,1),(1421,1919109627,3),(1421,1932415227,1),(1421,1951164027,3),(1421,1963864827,1),(1421,1982613627,3),(1421,1995919227,1),(1421,2014063227,3),(1421,2027368827,1),(1421,2045512827,3),(1421,2058818427,1),(1421,2076962427,3),(1421,2090268027,1),(1421,2109016827,3),(1421,2121717627,1),(1421,2140466427,3),(1422,-1441194596,1),(1422,-1247572800,3),(1422,354884409,2),(1422,370692010,3),(1422,386420410,4),(1422,402231611,1),(1422,417960011,4),(1422,433767612,1),(1422,449582412,4),(1422,465314412,5),(1422,481039212,6),(1422,496764013,5),(1422,512488813,6),(1422,528213613,5),(1422,543938413,6),(1422,559663213,5),(1422,575388014,6),(1422,591112814,5),(1422,606837614,6),(1422,622562414,5),(1422,638287215,6),(1422,654616815,5),(1422,670341616,7),(1422,686070016,8),(1422,695746816,5),(1422,701791216,6),(1422,717516017,5),(1422,733240817,6),(1422,748965618,5),(1422,764690418,6),(1422,780415219,5),(1422,796140019,6),(1422,811864819,5),(1422,828194420,6),(1422,846338420,5),(1422,859644020,6),(1422,877788021,5),(1422,891093621,6),(1422,909237621,5),(1422,922543222,6),(1422,941292022,5),(1422,953992822,6),(1422,972741622,5),(1422,985442422,6),(1422,1004191222,5),(1422,1017496822,6),(1422,1035640822,5),(1422,1048946422,6),(1422,1067090422,5),(1422,1080396022,6),(1422,1099144822,5),(1422,1111845622,6),(1422,1130594422,5),(1422,1143295223,6),(1422,1162044023,5),(1422,1174744823,6),(1422,1193493623,5),(1422,1206799223,6),(1422,1224943223,5),(1422,1238248824,6),(1422,1256392824,5),(1422,1269698424,7),(1422,1288450824,8),(1422,1301151624,5),(1423,-1441164064,1),(1423,-1247544000,2),(1423,370724410,3),(1423,386445610,4),(1423,402256811,2),(1423,417985211,4),(1423,433792812,2),(1423,449607612,4),(1423,465339612,5),(1423,481064412,6),(1423,496789213,5),(1423,512514013,6),(1423,528238813,5),(1423,543963613,6),(1423,559688413,5),(1423,575413214,6),(1423,591138014,5),(1423,606862814,6),(1423,622587614,5),(1423,638312415,6),(1423,654642015,5),(1423,670366816,7),(1423,686095216,8),(1423,695772016,5),(1423,701816416,6),(1423,717541217,5),(1423,733266017,6),(1423,748990818,5),(1423,764715618,6),(1423,780440419,8),(1423,796168819,7),(1423,811893619,8),(1423,828223220,7),(1423,846367220,8),(1423,859672820,7),(1423,877816821,8),(1423,891122421,7),(1423,909266421,8),(1423,922572022,7),(1423,941320822,8),(1423,954021622,7),(1423,972770422,8),(1423,985471222,7),(1423,1004220022,8),(1423,1017525622,7),(1423,1035669622,8),(1423,1048975222,7),(1423,1067119222,8),(1423,1080424822,7),(1423,1099173622,5),(1424,-1441165720,1),(1424,-1247544000,2),(1424,354913209,3),(1424,370720810,4),(1424,386445610,3),(1424,402256811,2),(1424,417985211,3),(1424,433792812,2),(1424,449607612,3),(1424,465339612,5),(1424,481064412,6),(1424,496789213,5),(1424,512514013,6),(1424,528238813,5),(1424,543963613,6),(1424,559688413,5),(1424,575413214,6),(1424,591138014,5),(1424,606862814,6),(1424,622587614,5),(1424,638312415,6),(1424,654642015,5),(1424,670366816,7),(1424,686095216,8),(1424,695772016,5),(1424,701816416,6),(1424,717541217,5),(1424,733266017,6),(1424,748990818,5),(1424,764715618,6),(1424,780440419,5),(1424,796165219,6),(1424,811890019,5),(1424,828219620,6),(1424,846363620,5),(1424,859669220,6),(1424,877813221,5),(1424,891118821,6),(1424,909262821,5),(1424,922568422,6),(1424,941317222,5),(1424,954018022,6),(1424,972766822,5),(1424,985467622,6),(1424,1004216422,5),(1424,1017522022,6),(1424,1035666022,5),(1424,1048971622,6),(1424,1067115622,5),(1424,1080421222,6),(1424,1099170022,5),(1425,-1441166012,1),(1425,-1247544000,3),(1425,354913209,2),(1425,370720810,3),(1425,386449210,2),(1425,402256811,3),(1425,417985211,2),(1425,433792812,3),(1425,449607612,2),(1425,465339612,4),(1425,481064412,5),(1425,496789213,4),(1425,512514013,5),(1425,528238813,4),(1425,543963613,5),(1425,559688413,4),(1425,575413214,5),(1425,591138014,4),(1425,606862814,5),(1425,622587614,4),(1425,638312415,5),(1425,654642015,4),(1425,670366816,6),(1425,686095216,7),(1425,695772016,3),(1426,-1441166012,1),(1426,-1247544000,3),(1426,354913209,2),(1426,370720810,3),(1426,386449210,2),(1426,402256811,3),(1426,417985211,2),(1426,433792812,3),(1426,449607612,2),(1426,465339612,4),(1426,481064412,5),(1426,496789213,4),(1426,512514013,5),(1426,528238813,4),(1426,543963613,5),(1426,559688413,4),(1426,575413214,5),(1426,591138014,4),(1426,606862814,5),(1426,622587614,4),(1426,638312415,5),(1426,654642015,4),(1426,670366816,6),(1426,686095216,7),(1426,695772016,3),(1427,-1441164464,1),(1427,-1247540400,2),(1427,370724410,3),(1427,386445610,4),(1427,402256811,2),(1427,417985211,4),(1427,433792812,2),(1427,449607612,4),(1427,465339612,5),(1427,481064412,6),(1427,496789213,5),(1427,512514013,6),(1427,528238813,5),(1427,543963613,6),(1427,559688413,5),(1427,575413214,6),(1427,591138014,5),(1427,606862814,6),(1427,622587614,5),(1427,638312415,6),(1427,654642015,5),(1427,670366816,7),(1427,686095216,8),(1427,695772016,5),(1427,701816416,6),(1427,717541217,5),(1427,733266017,6),(1427,748990818,5),(1427,764715618,6),(1427,780440419,5),(1427,796165219,6),(1427,811890019,5),(1427,828219620,6),(1427,846363620,5),(1427,859669220,6),(1427,877813221,5),(1427,891118821,6),(1427,909262821,5),(1427,922568422,7),(1427,941320822,8),(1427,954021622,7),(1427,972770422,8),(1427,985471222,7),(1427,1004220022,8),(1427,1017525622,7),(1427,1035669622,8),(1427,1048975222,7),(1427,1067119222,8),(1427,1080424822,7),(1427,1099173622,5),(1428,-1641005856,1),(1428,389048410,2),(1428,402264011,1),(1428,417906011,2),(1428,433800012,1),(1428,449614812,2),(1428,465422412,1),(1428,481150812,2),(1428,496792813,3),(1428,512517613,4),(1428,528242413,3),(1428,543967213,4),(1428,559692013,3),(1428,575416814,4),(1428,591141614,3),(1428,606866414,4),(1428,622591214,3),(1428,638316015,4),(1428,654645615,3),(1428,670464016,4),(1428,686275216,3),(1428,702086416,4),(1428,717897617,3),(1428,733622417,4),(1428,749433618,3),(1428,765158418,4),(1428,780969619,3),(1428,796694419,4),(1428,812505619,3),(1428,828316820,4),(1428,844128020,3),(1428,859852820,4),(1428,875664021,3),(1428,891388821,4),(1428,907200021,3),(1428,922924822,4),(1428,938736022,3),(1428,954547222,4),(1428,970358422,3),(1428,986083222,4),(1428,1001894422,3),(1428,1017619222,4),(1428,1033430422,3),(1428,1049155222,4),(1428,1064966422,3),(1428,1080777622,4),(1428,1096588822,3),(1428,1112313622,4),(1428,1128124822,3),(1428,1143849623,4),(1428,1159660823,3),(1428,1175385623,4),(1428,1191196823,3),(1429,-1577935568,1),(1429,76190400,2),(1430,-1441163964,1),(1430,-405140400,3),(1430,354916809,2),(1430,370724410,3),(1430,386452810,2),(1430,402260411,3),(1430,417988811,2),(1430,433796412,3),(1430,449611212,2),(1430,465343212,4),(1430,481068012,5),(1430,496792813,4),(1430,512517613,5),(1430,528242413,4),(1430,543967213,5),(1430,559692013,4),(1430,575416814,5),(1430,591141614,4),(1430,606866414,5),(1430,622591214,4),(1430,638316015,5),(1430,654645615,4),(1430,670370416,6),(1430,686098816,7),(1430,701823616,6),(1430,717548417,4),(1430,820440019,3),(1430,828234020,8),(1430,846378020,9),(1430,852062420,3),(1430,859680020,2),(1430,877824021,3),(1430,891129621,2),(1430,909273621,3),(1430,922579222,2),(1430,941328022,3),(1430,954028822,2),(1430,972777622,3),(1430,985478422,2),(1430,1004227222,3),(1430,1017532822,2),(1430,1035676822,3),(1430,1048982422,2),(1430,1067126422,3),(1430,1080432022,2),(1430,1099180822,3),(1430,1111881622,2),(1430,1130630422,3),(1430,1143331223,2),(1430,1162080023,3),(1430,1174780823,2),(1430,1193529623,3),(1430,1206835223,2),(1430,1224979223,3),(1430,1238284824,2),(1430,1256428824,3),(1430,1269734424,2),(1430,1288483224,3),(1430,1301184024,2),(1430,1319932824,3),(1430,1332633624,2),(1430,1351382425,3),(1430,1364688025,2),(1430,1382832025,3),(1430,1396137625,2),(1430,1414281625,3),(1430,1427587225,2),(1430,1445731226,3),(1431,-1570084924,1),(1432,-1579844100,1),(1432,-1247551200,3),(1432,354906009,2),(1432,370713610,3),(1432,386442010,2),(1432,402249611,3),(1432,417978011,2),(1432,433785612,3),(1432,449600412,2),(1432,465332412,4),(1432,481057212,5),(1432,496782013,4),(1432,512506813,5),(1432,528231613,4),(1432,543956413,5),(1432,559681213,4),(1432,575406014,5),(1432,591130814,4),(1432,606855614,5),(1432,622580414,4),(1432,638305215,5),(1432,654634815,4),(1432,670359616,6),(1432,686088016,7),(1432,695764816,4),(1432,701809216,5),(1432,717534017,4),(1432,733258817,5),(1432,748983618,4),(1432,764708418,5),(1432,780433219,4),(1432,796158019,5),(1432,801590419,8),(1432,811886419,7),(1432,828216020,6),(1432,846360020,7),(1432,859665620,6),(1432,877809621,7),(1432,891115221,6),(1432,909259221,7),(1432,922564822,6),(1432,941313622,7),(1432,954014422,6),(1432,972763222,7),(1432,985464022,6),(1432,1004212822,7),(1432,1017518422,6),(1432,1035662422,7),(1432,1048968022,6),(1432,1067112022,7),(1432,1080417622,6),(1432,1099166422,7),(1432,1111867222,6),(1432,1130616022,7),(1432,1143316823,6),(1432,1162065623,7),(1432,1174766423,6),(1432,1193515223,7),(1432,1206820823,6),(1432,1224964823,7),(1432,1238270424,6),(1432,1256414424,7),(1432,1269720024,6),(1432,1288468824,7),(1432,1301169624,4),(1432,1414263625,7),(1432,1459022426,4),(1433,-1570413600,0),(1433,-1552186800,1),(1433,-1538359200,0),(1433,-1522551600,1),(1433,-1507514400,0),(1433,-1490583600,1),(1433,-1473645600,0),(1433,-1460948400,1),(1433,-399866400,0),(1433,-386650800,1),(1433,-368330400,0),(1433,-355114800,1),(1433,-336794400,0),(1433,-323578800,1),(1433,-305172000,0),(1433,-291956400,1),(1433,-273636000,0),(1433,-260420400,1),(1433,78012000,0),(1433,86734801,1),(1433,105055202,0),(1433,118270802,1),(1433,136591203,0),(1433,149806803,1),(1433,168127204,0),(1433,181342804,1),(1433,199749605,0),(1433,212965205,1),(1433,231285606,0),(1433,244501206,1),(1433,262735207,0),(1433,275950807,1),(1433,452210412,0),(1433,466722012,1),(1433,483746412,0),(1433,498258013,1),(1433,515282413,0),(1433,529794013,1),(1433,546818413,0),(1433,561330013,1),(1433,581119214,0),(1433,592952414,1),(1433,610754414,0),(1433,624488414,1),(1433,641512815,0),(1433,656024415,1),(1433,673048816,0),(1433,687560416,1),(1433,704671216,0),(1433,718146017,1),(1433,733269617,0),(1433,748990818,1),(1433,764719218,0),(1433,780440419,1),(1433,796168819,0),(1433,811890019,1),(1433,828223220,0),(1433,843944420,1),(1433,859672820,0),(1433,875394021,1),(1433,891122421,0),(1433,906843621,1),(1433,922572022,0),(1433,941317222,1),(1433,954021622,0),(1433,972766822,1),(1433,985471222,0),(1433,1004216422,1),(1433,1017525622,0),(1433,1035666022,1),(1433,1048975222,0),(1433,1067115622,1),(1433,1080424822,0),(1433,1099170022,1),(1433,1111874422,0),(1433,1130619622,1),(1433,1143324023,0),(1433,1162069223,1),(1433,1174773623,0),(1433,1193518823,1),(1433,1206828023,0),(1433,1224968423,1),(1433,1238277624,0),(1433,1256418024,1),(1433,1269727224,0),(1433,1288472424,1),(1433,1301176824,0),(1433,1319922024,1),(1433,1332626424,0),(1433,1351371625,1),(1433,1364680825,0),(1433,1382821225,1),(1433,1396130425,0),(1433,1414270825,1),(1433,1427580025,0),(1433,1445720426,1),(1433,1459029626,0),(1433,1477774826,1),(1433,1490479227,0),(1433,1509224427,1),(1433,1521928827,0),(1433,1540674027,1),(1433,1553983227,0),(1433,1572123627,1),(1433,1585432827,0),(1433,1603573227,1),(1433,1616882427,0),(1433,1635627627,1),(1433,1648332027,0),(1433,1667077227,1),(1433,1679781627,0),(1433,1698526827,1),(1433,1711836027,0),(1433,1729976427,1),(1433,1743285627,0),(1433,1761426027,1),(1433,1774735227,0),(1433,1792875627,1),(1433,1806184827,0),(1433,1824930027,1),(1433,1837634427,0),(1433,1856379627,1),(1433,1869084027,0),(1433,1887829227,1),(1433,1901138427,0),(1433,1919278827,1),(1433,1932588027,0),(1433,1950728427,1),(1433,1964037627,0),(1433,1982782827,1),(1433,1995487227,0),(1433,2014232427,1),(1433,2026936827,0),(1433,2045682027,1),(1433,2058386427,0),(1433,2077131627,1),(1433,2090440827,0),(1433,2108581227,1),(1433,2121890427,0),(1433,2140030827,1),(1434,-1441169904,1),(1434,-1247547600,3),(1434,354909609,2),(1434,370717210,3),(1434,386445610,2),(1434,402253211,3),(1434,417981611,2),(1434,433789212,3),(1434,449604012,2),(1434,465336012,4),(1434,481060812,5),(1434,496785613,4),(1434,512510413,5),(1434,528235213,4),(1434,543960013,5),(1434,559684813,4),(1434,575409614,5),(1434,591134414,4),(1434,606859214,5),(1434,622584014,4),(1434,638308815,5),(1434,654638415,4),(1434,670363216,6),(1434,683582416,1),(1434,703018816,6),(1434,717530417,1),(1434,734468417,6),(1434,748980018,1),(1434,765918018,6),(1434,780429619,1),(1434,797367619,6),(1434,811879219,1),(1434,828817220,6),(1434,843933620,1),(1434,859671020,8),(1434,877811421,1),(1434,891120621,8),(1434,909261021,1),(1434,922570222,8),(1434,941315422,1),(1434,954019822,8),(1434,972765022,1),(1434,985469422,8),(1434,1004214622,1),(1434,1017523822,8),(1434,1035664222,1),(1434,1048973422,8),(1434,1067113822,1),(1434,1080423022,8),(1434,1099168222,1),(1434,1111872622,8),(1434,1123783222,3),(1435,-1383464380,1),(1435,-1167636600,2),(1436,-2019705670,1),(1436,-891581400,2),(1436,-872058600,1),(1436,-862637400,2),(1436,-764145000,1),(1437,-1579419232,1),(1437,-1247558400,3),(1437,354898809,2),(1437,370706410,3),(1437,386434810,2),(1437,402242411,3),(1437,417970811,2),(1437,433778412,3),(1437,449593212,2),(1437,465325212,4),(1437,481050012,5),(1437,496774813,4),(1437,512499613,5),(1437,528224413,4),(1437,543949213,5),(1437,559674013,4),(1437,575398814,5),(1437,591123614,4),(1437,606848414,5),(1437,622573214,4),(1437,638298015,5),(1437,654627615,4),(1437,670352416,6),(1437,686080816,7),(1437,695757616,4),(1437,701802016,5),(1437,717526817,4),(1437,733251617,5),(1437,748976418,4),(1437,764701218,5),(1437,780426019,4),(1437,796150819,5),(1437,811875619,4),(1437,828205220,5),(1437,846349220,4),(1437,859654820,5),(1437,877798821,4),(1437,891104421,5),(1437,909248421,4),(1437,922554022,5),(1437,941302822,4),(1437,954003622,5),(1437,972752422,4),(1437,985453222,5),(1437,1004202022,4),(1437,1017507622,5),(1437,1035651622,4),(1437,1048957222,5),(1437,1067101222,4),(1437,1080406822,5),(1437,1099155622,4),(1437,1111856422,5),(1437,1130605222,4),(1437,1143306023,5),(1437,1162054823,4),(1437,1174755623,5),(1437,1193504423,4),(1437,1206810023,5),(1437,1224954023,4),(1437,1238259624,5),(1437,1256403624,4),(1437,1269709224,5),(1437,1288458024,4),(1437,1301158824,8),(1437,1414252825,7),(1437,1459015226,3),(1438,-2032933080,1),(1438,252435606,2),(1438,417974411,4),(1438,433778412,3),(1438,449593212,4),(1438,465314412,3),(1438,481042812,4),(1438,496764013,3),(1438,512492413,4),(1438,528213613,3),(1438,543942013,4),(1438,559663213,3),(1438,575391614,4),(1438,591112814,3),(1438,606841214,4),(1438,622562414,3),(1438,638290815,4),(1438,654616815,3),(1438,670345216,4),(1438,686066416,3),(1438,701794816,4),(1438,717516017,3),(1438,733244417,4),(1438,748965618,3),(1438,764694018,4),(1438,780415219,3),(1438,796143619,4),(1438,811864819,3),(1438,828198020,4),(1438,843919220,3),(1438,859647620,4),(1438,875368821,3),(1438,891097221,4),(1438,906818421,3),(1438,988390822,4),(1438,1001692822,3),(1438,1017421222,4),(1438,1033142422,3),(1438,1048870822,4),(1438,1064592022,3),(1438,1080320422,4),(1438,1096041622,3),(1438,1111770022,4),(1438,1127491222,3),(1438,1143219623,4),(1438,1159545623,3),(1438,1206889223,2),(1438,1427479225,5),(1438,1443193226,2),(1438,1458928826,5),(1438,1474642826,2),(1439,-933494400,0),(1439,-923130000,1),(1439,-908784000,0),(1439,-891594000,1),(1439,515520013,0),(1439,527007613,1),(1439,545155213,0),(1439,558457213,1),(1439,576604814,0),(1439,589906814,1),(1439,608659214,0),(1439,621961214,1),(1439,640108815,0),(1439,653410815,1),(1439,671558416,0),(1439,684860416,1),(1440,-933494400,0),(1440,-923130000,1),(1440,-908784000,0),(1440,-891594000,1),(1440,515520013,0),(1440,527007613,1),(1440,545155213,0),(1440,558457213,1),(1440,576604814,0),(1440,589906814,1),(1440,608659214,0),(1440,621961214,1),(1440,640108815,0),(1440,653410815,1),(1440,671558416,0),(1440,684860416,1),(1441,-2019705572,1),(1441,-883287000,2),(1441,-862639200,3),(1441,-764051400,1),(1441,832962620,4),(1441,846266420,5),(1441,1145039423,1),(1442,-891582800,1),(1442,-872058600,2),(1442,-862637400,1),(1442,-576138600,3),(1442,1245430824,4),(1442,1262278824,3),(1443,-1577931912,2),(1443,-1568592000,1),(1443,-1554080400,2),(1443,-1537142400,1),(1443,-1522630800,2),(1443,-1505692800,1),(1443,-1491181200,2),(1443,-1474243200,1),(1443,-1459126800,2),(1443,-242265600,1),(1443,-228877200,2),(1443,-210556800,1),(1443,-197427600,2),(1443,-178934400,1),(1443,-165718800,2),(1443,-147398400,1),(1443,-134269200,2),(1443,-116467200,1),(1443,-102646800,2),(1443,-84326400,1),(1443,-71110800,2),(1443,-52704000,1),(1443,-39488400,2),(1443,-21168000,1),(1443,-7952400,2),(1443,10368000,1),(1443,23583600,2),(1443,41904000,1),(1443,55119600,2),(1443,73526400,1),(1443,86742001,2),(1443,105062402,1),(1443,118278002,2),(1443,136598403,1),(1443,149814003,2),(1443,168134404,1),(1443,181350004,2),(1443,199756805,1),(1443,212972405,2),(1443,231292806,1),(1443,241916406,2),(1443,262828807,1),(1443,273452407,2),(1443,418694411,1),(1443,433810812,2),(1443,450316812,1),(1443,465433212,2),(1443,508896013,1),(1443,529196413,2),(1443,541555213,1),(1443,562633213,2),(1443,574387214,1),(1443,594255614,2),(1443,607305614,1),(1443,623199614,2),(1443,638928015,1),(1443,654649215,2),(1443,670456816,1),(1443,686264416,2),(1443,702684016,1),(1443,717886817,2),(1443,733096817,1),(1443,748904418,2),(1443,765151218,1),(1443,780958819,2),(1443,796687219,1),(1443,812494819,2),(1443,828309620,1),(1443,844117220,2),(1443,859759220,1),(1443,875653221,2),(1443,891208821,1),(1443,907189221,2),(1443,922917622,1),(1443,938725222,2),(1443,954540022,1),(1443,970347622,2),(1443,986076022,1),(1443,1001883622,2),(1443,1017612022,1),(1443,1033419622,2),(1443,1049148022,1),(1443,1064955622,2),(1443,1080770422,1),(1443,1096578022,2),(1443,1112306422,1),(1443,1128114022,2),(1443,1143842423,1),(1443,1158872423,2),(1443,1175205623,1),(1443,1193950823,2),(1443,1207260023,1),(1443,1225486823,2),(1443,1238104824,1),(1443,1256850024,2),(1443,1270159224,1),(1443,1288299624,2),(1443,1301608824,1),(1443,1319749224,2),(1443,1333058424,1),(1443,1351198825,2),(1443,1364508025,1),(1443,1382648425,2),(1443,1395957625,1),(1443,1414702825,2),(1443,1427407225,1),(1443,1446152426,2),(1443,1458856826,1),(1443,1477602026,2),(1443,1490911227,1),(1443,1509051627,2),(1443,1522360827,1),(1443,1540501227,2),(1443,1553810427,1),(1443,1571950827,2),(1443,1585260027,1),(1443,1604005227,2),(1443,1616709627,1),(1443,1635454827,2),(1443,1648159227,1),(1443,1666904427,2),(1443,1680213627,1),(1443,1698354027,2),(1443,1711663227,1),(1443,1729803627,2),(1443,1743112827,1),(1443,1761858027,2),(1443,1774562427,1),(1443,1793307627,2),(1443,1806012027,1),(1443,1824757227,2),(1443,1838066427,1),(1443,1856206827,2),(1443,1869516027,1),(1443,1887656427,2),(1443,1900965627,1),(1443,1919106027,2),(1443,1932415227,1),(1443,1951160427,2),(1443,1963864827,1),(1443,1982610027,2),(1443,1995314427,1),(1443,2014059627,2),(1443,2027368827,1),(1443,2045509227,2),(1443,2058818427,1),(1443,2076958827,2),(1443,2090268027,1),(1443,2109013227,2),(1443,2121717627,1),(1443,2140462827,2),(1444,-891582800,1),(1444,-872058600,2),(1444,-862637400,1),(1444,-576138600,3),(1444,1245430824,4),(1444,1262278824,3),(1445,-1830414140,1),(1445,-879152400,2),(1445,199897205,1),(1445,969120022,2),(1446,-1577936472,1),(1447,-1441168512,1),(1447,-1247547600,3),(1447,354909609,2),(1447,370717210,3),(1447,386445610,2),(1447,402253211,3),(1447,417981611,2),(1447,433789212,3),(1447,449604012,2),(1447,465336012,4),(1447,481060812,5),(1447,496785613,4),(1447,512510413,5),(1447,528235213,4),(1447,543960013,5),(1447,559684813,4),(1447,575409614,5),(1447,591134414,4),(1447,606859214,5),(1447,622584014,4),(1447,638308815,5),(1447,654638415,4),(1447,670363216,6),(1447,684363616,7),(1448,-1518920148,2),(1448,166572004,1),(1448,182293204,2),(1448,200959205,1),(1448,213829205,2),(1448,228866406,1),(1448,243982806,2),(1448,260316007,1),(1448,276123607,2),(1448,291765608,1),(1448,307486808,2),(1448,323820009,1),(1448,338936409,2),(1448,354664809,1),(1448,370386010,2),(1448,386114410,1),(1448,401835611,2),(1448,417564011,1),(1448,433285212,2),(1448,449013612,1),(1448,465339612,2),(1448,481068012,1),(1448,496789213,2),(1448,512517613,1),(1448,528238813,2),(1448,543967213,1),(1448,559688413,2),(1448,575416814,1),(1448,591138014,2),(1448,606866414,1),(1448,622587614,2),(1448,638316015,1),(1448,654642015,2),(1448,670370416,1),(1448,686091616,2),(1448,701820016,1),(1448,717541217,2),(1448,733269617,1),(1448,748990818,2),(1448,764719218,1),(1448,780440419,2),(1448,796168819,1),(1448,811890019,2),(1448,828223220,1),(1448,843944420,2),(1448,859672820,1),(1448,875394021,2),(1448,891122421,1),(1448,909277221,3),(1448,922582822,4),(1448,941331622,3),(1448,954032422,4),(1448,972781222,3),(1448,985482022,4),(1448,1004230822,3),(1448,1017536422,4),(1448,1035680422,3),(1448,1048986022,4),(1448,1067130022,3),(1448,1080435622,4),(1448,1099184422,3),(1448,1111885222,4),(1448,1130634022,3),(1448,1143334823,4),(1448,1162083623,3),(1448,1174784423,4),(1448,1193533223,3),(1448,1206838823,4),(1448,1224982823,3),(1448,1238288424,4),(1448,1256432424,3),(1448,1269738024,4),(1448,1288486824,3),(1448,1301187624,4),(1448,1319936424,3),(1448,1332637224,4),(1448,1351386025,3),(1448,1364691625,4),(1448,1382835625,3),(1448,1396141225,4),(1448,1414285225,3),(1448,1427590825,4),(1448,1445734826,3),(1448,1459040426,4),(1448,1473282026,5),(1448,1509238827,3),(1448,1521939627,4),(1448,1540688427,3),(1448,1553994027,4),(1448,1572138027,3),(1448,1585443627,4),(1448,1603587627,3),(1448,1616893227,4),(1448,1635642027,3),(1448,1648342827,4),(1448,1667091627,3),(1448,1679792427,4),(1448,1698541227,3),(1448,1711846827,4),(1448,1729990827,3),(1448,1743296427,4),(1448,1761440427,3),(1448,1774746027,4),(1448,1792890027,3),(1448,1806195627,4),(1448,1824944427,3),(1448,1837645227,4),(1448,1856394027,3),(1448,1869094827,4),(1448,1887843627,3),(1448,1901149227,4),(1448,1919293227,3),(1448,1932598827,4),(1448,1950742827,3),(1448,1964048427,4),(1448,1982797227,3),(1448,1995498027,4),(1448,2014246827,3),(1448,2026947627,4),(1448,2045696427,3),(1448,2058397227,4),(1448,2077146027,3),(1448,2090451627,4),(1448,2108595627,3),(1448,2121901227,4),(1448,2140045227,3),(1449,-933645600,0),(1449,-857358000,1),(1449,-844300800,0),(1449,-825822000,1),(1449,-812685600,0),(1449,-794199600,1),(1449,-779853600,0),(1449,-762656400,1),(1449,-748310400,0),(1449,-731127600,1),(1449,-399088800,0),(1449,-386650800,1),(1449,-368330400,0),(1449,-355114800,1),(1449,-336790800,0),(1449,-323654400,1),(1449,-305168400,0),(1449,-292032000,1),(1449,-273632400,0),(1449,-260496000,1),(1449,-242096400,0),(1449,-228960000,1),(1449,-210560400,0),(1449,-197424000,1),(1449,-178938000,0),(1449,-165801600,1),(1449,-147402000,0),(1449,-134265600,1),(1449,-115866000,0),(1449,-102643200,1),(1449,-84330000,0),(1449,-81313200,3),(1449,142380003,2),(1449,150843603,3),(1449,167176804,2),(1449,178664404,3),(1449,482277612,2),(1449,495579613,3),(1449,516751213,2),(1449,526424413,3),(1449,545436013,2),(1449,558478813,3),(1449,576626414,2),(1449,589323614,3),(1449,609890414,2),(1449,620773214,3),(1449,638316015,2),(1449,651618015,3),(1449,669765616,2),(1449,683672416,3),(1449,701820016,2),(1449,715726817,3),(1449,733701617,2),(1449,747176418,3),(1449,765151218,2),(1449,778021219,3),(1449,796600819,2),(1449,810075619,3),(1449,820447219,1),(1449,828655220,0),(1449,843170420,4),(1449,860104820,0),(1449,874620021,4),(1449,891554421,0),(1449,906069621,4),(1449,915141621,1),(1449,924213622,0),(1449,939934822,1),(1449,956268022,0),(1449,971989222,1),(1449,987717622,0),(1449,1003438822,1),(1449,1019167222,0),(1449,1034888422,1),(1449,1050616822,0),(1449,1066338022,1),(1449,1082066422,0),(1449,1096581622,1),(1449,1113516022,0),(1449,1128380422,1),(1449,1143842423,0),(1449,1158872423,1),(1449,1175378423,0),(1449,1189638023,1),(1449,1206655223,0),(1449,1219957223,1),(1449,1238104824,0),(1449,1252015224,1),(1449,1269640884,0),(1449,1281474024,1),(1449,1301608884,0),(1449,1312146024,1),(1449,1333058424,0),(1449,1348178425,1),(1449,1364508025,0),(1449,1380229225,1),(1449,1395957625,0),(1449,1414098025,1),(1449,1427493625,0),(1449,1445547626,1),(1449,1458946826,0),(1449,1477692026,1),(1449,1490396427,0),(1449,1509141627,1),(1449,1521846027,0),(1449,1540591227,1),(1449,1553295627,0),(1449,1572040827,1),(1449,1585350027,0),(1449,1604095227,1),(1449,1616799627,0),(1449,1635544827,1),(1449,1648249227,0),(1449,1666994427,1),(1449,1679698827,0),(1449,1698444027,1),(1449,1711148427,0),(1449,1729893627,1),(1449,1742598027,0),(1449,1761343227,1),(1449,1774652427,0),(1449,1793397627,1),(1449,1806102027,0),(1449,1824847227,1),(1449,1837551627,0),(1449,1856296827,1),(1449,1869001227,0),(1449,1887746427,1),(1449,1900450827,0),(1449,1919196027,1),(1449,1931900427,0),(1449,1950645627,1),(1449,1963954827,0),(1449,1982700027,1),(1449,1995404427,0),(1449,2014149627,1),(1449,2026854027,0),(1449,2045599227,1),(1449,2058303627,0),(1449,2077048827,1),(1449,2089753227,0),(1449,2108498427,1),(1449,2121807627,0),(1449,2140552827,1),(1450,-933494400,0),(1450,-923130000,1),(1450,-908784000,0),(1450,-891594000,1),(1450,515520013,0),(1450,527007613,1),(1450,545155213,0),(1450,558457213,1),(1450,576604814,0),(1450,589906814,1),(1450,608659214,0),(1450,621961214,1),(1450,640108815,0),(1450,653410815,1),(1450,671558416,0),(1450,684860416,1),(1451,-933645600,0),(1451,-857358000,1),(1451,-844300800,0),(1451,-825822000,1),(1451,-812685600,0),(1451,-794199600,1),(1451,-779853600,0),(1451,-762656400,1),(1451,-748310400,0),(1451,-731127600,1),(1451,-399088800,0),(1451,-386650800,1),(1451,-368330400,0),(1451,-355114800,1),(1451,-336790800,0),(1451,-323654400,1),(1451,-305168400,0),(1451,-292032000,1),(1451,-273632400,0),(1451,-260496000,1),(1451,-242096400,0),(1451,-228960000,1),(1451,-210560400,0),(1451,-197424000,1),(1451,-178938000,0),(1451,-165801600,1),(1451,-147402000,0),(1451,-134265600,1),(1451,-115866000,0),(1451,-102643200,1),(1451,-84330000,0),(1451,-81313200,3),(1451,142380003,2),(1451,150843603,3),(1451,167176804,2),(1451,178664404,3),(1451,482277612,2),(1451,495579613,3),(1451,516751213,2),(1451,526424413,3),(1451,545436013,2),(1451,558478813,3),(1451,576626414,2),(1451,589323614,3),(1451,609890414,2),(1451,620773214,3),(1451,638316015,2),(1451,651618015,3),(1451,669765616,2),(1451,683672416,3),(1451,701820016,2),(1451,715726817,3),(1451,733701617,2),(1451,747176418,3),(1451,765151218,2),(1451,778021219,3),(1451,796600819,2),(1451,810075619,3),(1451,820447219,1),(1451,828655220,0),(1451,843170420,4),(1451,860104820,0),(1451,874620021,4),(1451,891554421,0),(1451,906069621,4),(1451,915141621,1),(1451,924213622,0),(1451,939934822,1),(1451,956268022,0),(1451,971989222,1),(1451,987717622,0),(1451,1003438822,1),(1451,1019167222,0),(1451,1034888422,1),(1451,1050616822,0),(1451,1066338022,1),(1451,1082066422,0),(1451,1096581622,1),(1451,1113516022,0),(1451,1128380422,1),(1451,1143842423,0),(1451,1158872423,1),(1451,1175378423,0),(1451,1189638023,1),(1451,1206655223,0),(1451,1220216423,1),(1451,1238104824,0),(1451,1252015224,1),(1451,1269554424,0),(1451,1281474024,1),(1451,1301608884,0),(1451,1312146024,1),(1451,1314655224,0),(1451,1317330024,1),(1451,1333058424,0),(1451,1348178425,1),(1451,1364508025,0),(1451,1380229225,1),(1451,1395957625,0),(1451,1414098025,1),(1451,1427493625,0),(1451,1445547626,1),(1451,1458946826,0),(1451,1477692026,1),(1451,1490396427,0),(1451,1509141627,1),(1451,1521846027,0),(1451,1540591227,1),(1451,1553295627,0),(1451,1572040827,1),(1451,1585350027,0),(1451,1604095227,1),(1451,1616799627,0),(1451,1635544827,1),(1451,1648249227,0),(1451,1666994427,1),(1451,1679698827,0),(1451,1698444027,1),(1451,1711148427,0),(1451,1729893627,1),(1451,1742598027,0),(1451,1761343227,1),(1451,1774652427,0),(1451,1793397627,1),(1451,1806102027,0),(1451,1824847227,1),(1451,1837551627,0),(1451,1856296827,1),(1451,1869001227,0),(1451,1887746427,1),(1451,1900450827,0),(1451,1919196027,1),(1451,1931900427,0),(1451,1950645627,1),(1451,1963954827,0),(1451,1982700027,1),(1451,1995404427,0),(1451,2014149627,1),(1451,2026854027,0),(1451,2045599227,1),(1451,2058303627,0),(1451,2077048827,1),(1451,2089753227,0),(1451,2108498427,1),(1451,2121807627,0),(1451,2140552827,1),(1452,-2004073600,1),(1452,-1851577590,2),(1452,-852105600,3),(1452,-782643600,4),(1452,-767869200,2),(1452,-718095600,3),(1452,-457776000,2),(1452,-315648000,3),(1452,171820804,2),(1453,-2056693002,2),(1453,-907389000,1),(1453,-891667800,2),(1453,-884246400,3),(1453,-766746000,2),(1453,-747981000,1),(1453,-728544600,2),(1453,-717049800,1),(1453,-694503000,2),(1453,-683785800,1),(1453,-668064600,2),(1453,-654755400,1),(1453,-636615000,2),(1453,-623305800,1),(1453,-605165400,2),(1453,-591856200,1),(1453,-573715800,2),(1453,-559801800,1),(1453,-542352600,2),(1453,-528352200,1),(1453,-510211800,2),(1453,-498112200,1),(1453,-478762200,2),(1453,-466662600,1),(1453,-446707800,2),(1453,-435213000,1),(1453,-415258200,2),(1453,-403158600,1),(1453,-383808600,2),(1453,-371709000,1),(1453,-352359000,2),(1453,-340259400,1),(1453,-320909400,2),(1453,-308809800,1),(1453,-288855000,2),(1453,-277360200,1),(1453,-257405400,2),(1453,-245910600,1),(1453,-225955800,2),(1453,-213856200,1),(1453,-194506200,2),(1453,-182406600,1),(1453,-163056600,2),(1453,-148537800,1),(1453,-132816600,2),(1453,-117088200,1),(1453,-101367000,2),(1453,-85638600,1),(1453,-69312600,2),(1453,-53584200,1),(1453,-37863000,2),(1453,-22134600,1),(1453,-6413400,2),(1453,9315000,1),(1453,25036200,2),(1453,40764600,1),(1453,56485800,2),(1453,72214200,1),(1453,88540201,2),(1453,104268602,1),(1453,119989802,2),(1453,126041402,1),(1453,151439403,2),(1453,167167804,1),(1453,182889004,2),(1453,198617405,1),(1453,214338605,2),(1453,295385408,1),(1453,309292208,2),(1454,-2032927596,1),(1454,252439206,3),(1454,417978011,2),(1454,433785612,3),(1454,449600412,2),(1454,465321612,3),(1454,481050012,2),(1454,496771213,3),(1454,512499613,2),(1454,528220813,3),(1454,543949213,2),(1454,559670413,3),(1454,575398814,2),(1454,591120014,3),(1454,606848414,2),(1454,622569614,3),(1454,638298015,2),(1454,654624015,3),(1454,670352416,2),(1454,686073616,3),(1454,701802016,2),(1454,717523217,3),(1454,733251617,2),(1454,748972818,3),(1454,764701218,2),(1454,780422419,3),(1454,796150819,2),(1454,811872019,3),(1454,828205220,2),(1454,843926420,3),(1454,859654820,2),(1454,875376021,3),(1454,891104421,2),(1454,906825621,3),(1454,988398022,2),(1454,1001700022,3),(1454,1017428422,2),(1454,1033149622,3),(1454,1048878022,2),(1454,1064599222,3),(1454,1080327622,2),(1454,1096048822,3),(1454,1111777222,2),(1454,1127498422,3),(1454,1143226823,2),(1454,1159552823,3),(1454,1427482825,2),(1454,1443196826,3),(1454,1458932426,2),(1454,1474646426,3),(1455,-1575874625,1),(1455,-1247554800,3),(1455,354902409,2),(1455,370710010,3),(1455,386438410,2),(1455,402246011,3),(1455,417974411,2),(1455,433782012,3),(1455,449596812,2),(1455,465328812,4),(1455,481053612,5),(1455,496778413,4),(1455,512503213,5),(1455,528228013,4),(1455,543952813,5),(1455,559677613,4),(1455,575402414,5),(1455,591127214,4),(1455,606852014,5),(1455,622576814,4),(1455,638301615,5),(1455,654631215,4),(1455,670356016,6),(1455,686084416,7),(1455,695761216,4),(1455,701805616,5),(1455,717530417,4),(1455,733255217,5),(1455,748980018,4),(1455,764704818,5),(1455,780429619,4),(1455,796154419,5),(1455,811879219,4),(1455,828208820,5),(1455,846352820,4),(1455,859658420,5),(1455,877802421,4),(1455,891108021,5),(1455,909252021,4),(1455,922557622,5),(1455,941306422,4),(1455,954007222,5),(1455,972756022,4),(1455,985456822,5),(1455,1004205622,4),(1455,1017511222,5),(1455,1035655222,4),(1455,1048960822,5),(1455,1067104822,4),(1455,1080410422,5),(1455,1099159222,4),(1455,1111860022,5),(1455,1130608822,4),(1455,1143309623,5),(1455,1162058423,4),(1455,1174759223,5),(1455,1193508023,4),(1455,1206813623,5),(1455,1224957623,4),(1455,1238263224,5),(1455,1256407224,4),(1455,1269712824,5),(1455,1288461624,4),(1455,1301162424,8),(1455,1414256425,4),(1456,-1869875816,2),(1456,-1693706400,1),(1456,-1680490800,2),(1456,-1570413600,1),(1456,-1552186800,2),(1456,-1538359200,1),(1456,-1522551600,2),(1456,-1507514400,1),(1456,-1490583600,2),(1456,-1440208800,1),(1456,-1428030000,2),(1456,-1409709600,1),(1456,-1396494000,2),(1456,-931140000,1),(1456,-922762800,2),(1456,-917834400,1),(1456,-892436400,2),(1456,-875844000,1),(1456,-857358000,2),(1456,-781063200,1),(1456,-764737200,2),(1456,-744343200,1),(1456,-733806000,2),(1456,-716436000,1),(1456,-701924400,2),(1456,-684986400,1),(1456,-670474800,2),(1456,-654141600,1),(1456,-639025200,2),(1456,-621828000,1),(1456,-606970800,2),(1456,-590032800,1),(1456,-575434800,2),(1456,-235620000,1),(1456,-228279600,2),(1456,-177732000,1),(1456,-165726000,2),(1456,10533600,1),(1456,23835600,2),(1456,41983200,1),(1456,55285200,2),(1456,74037600,1),(1456,87339601,2),(1456,107910002,1),(1456,121219202,2),(1456,133920003,1),(1456,152676003,2),(1456,165362404,1),(1456,183502804,2),(1456,202428005,1),(1456,215557205,2),(1456,228866406,1),(1456,245797206,2),(1456,260316007,1),(1456,277246807,3),(1456,308779208,4),(1456,323827209,3),(1456,340228809,4),(1456,354672009,3),(1456,371678410,4),(1456,386121610,3),(1456,403128011,4),(1456,428446812,3),(1456,433886412,4),(1456,482792412,1),(1456,496702813,2),(1456,512521213,5),(1456,528246013,6),(1456,543970813,5),(1456,559695613,6),(1456,575420414,5),(1456,591145214,6),(1456,606870014,5),(1456,622594814,6),(1456,638319615,5),(1456,654649215,6),(1456,670374016,5),(1456,686098816,6),(1456,701823616,5),(1456,717548417,6),(1456,733273217,5),(1456,748998018,6),(1456,764118018,5),(1456,780447619,6),(1456,796172419,5),(1456,811897219,6),(1456,828226820,5),(1456,846370820,6),(1456,859676420,5),(1456,877820421,6),(1456,891126021,5),(1456,909270021,6),(1456,922575622,5),(1456,941324422,6),(1456,954025222,5),(1456,972774022,6),(1456,985474822,5),(1456,1004223622,6),(1456,1017529222,5),(1456,1035673222,6),(1456,1048978822,5),(1456,1067122822,6),(1456,1080428422,5),(1456,1099177222,6),(1456,1111878022,5),(1456,1130626822,6),(1456,1143327623,5),(1456,1162076423,6),(1456,1167602423,2),(1456,1174784423,7),(1456,1193533223,8),(1456,1206838823,7),(1456,1224982823,8),(1456,1238288424,7),(1456,1256432424,8),(1456,1269738024,7),(1456,1288486824,8),(1456,1301274024,7),(1456,1319936424,8),(1456,1332637224,7),(1456,1351386025,8),(1456,1364691625,7),(1456,1382835625,8),(1456,1396227625,7),(1456,1414285225,8),(1456,1427590825,7),(1456,1446944426,8),(1456,1459040426,7),(1456,1473195626,4),(1457,-1451719200,1),(1457,-1172906400,2),(1457,-876641400,3),(1457,-766054800,2),(1457,-683883000,4),(1457,-620812800,2),(1457,-189415800,5),(1458,-1172913768,1),(1458,-799491600,2),(1458,-189423000,3),(1459,-1641003640,2),(1459,-933645600,1),(1459,-857358000,2),(1459,-844300800,1),(1459,-825822000,2),(1459,-812685600,1),(1459,-794199600,2),(1459,-779853600,1),(1459,-762656400,2),(1459,-748310400,1),(1459,-731127600,2),(1459,-681962400,3),(1459,-673243200,1),(1459,-667962000,2),(1459,-652327200,1),(1459,-636426000,2),(1459,-622087200,1),(1459,-608947200,2),(1459,-591847200,1),(1459,-572486400,2),(1459,-558576000,1),(1459,-542851200,2),(1459,-527731200,1),(1459,-514425600,2),(1459,-490845600,1),(1459,-482986800,2),(1459,-459475200,1),(1459,-451537200,2),(1459,-428551200,1),(1459,-418262400,2),(1459,-400032000,1),(1459,-387428400,2),(1459,142380003,1),(1459,150843603,2),(1459,167176804,1),(1459,178664404,2),(1459,482277612,1),(1459,495579613,2),(1459,516751213,1),(1459,526424413,2),(1459,545436013,1),(1459,558478813,2),(1459,576626414,1),(1459,589323614,2),(1459,609890414,1),(1459,620773214,2),(1459,638316015,1),(1459,651618015,2),(1459,669765616,1),(1459,683672416,2),(1459,701820016,1),(1459,715726817,2),(1459,733701617,1),(1459,747176418,2),(1459,765151218,1),(1459,778021219,2),(1459,796600819,1),(1459,810075619,2),(1459,826840820,1),(1459,842821220,2),(1459,858895220,1),(1459,874184421,2),(1459,890344821,1),(1459,905029221,2),(1459,923011222,1),(1459,936313222,2),(1459,955670422,1),(1459,970783222,2),(1459,986770822,1),(1459,1001282422,2),(1459,1017356422,1),(1459,1033941622,2),(1459,1048806022,1),(1459,1065132022,2),(1459,1081292422,1),(1459,1095804022,2),(1459,1112313622,1),(1459,1128812422,2),(1459,1143763223,1),(1459,1159657223,2),(1459,1175212823,1),(1459,1189897223,2),(1459,1206662423,1),(1459,1223161223,2),(1459,1238112024,1),(1459,1254006024,2),(1459,1269561624,1),(1459,1284246024,2),(1459,1301616024,1),(1459,1317510024,2),(1459,1333065624,1),(1459,1348354825,2),(1459,1364515225,1),(1459,1382828425,2),(1459,1395964825,1),(1459,1414278025,2),(1459,1427414425,1),(1459,1445727626,2),(1459,1458864026,1),(1459,1477782026,2),(1459,1490313627,1),(1459,1509231627,2),(1459,1521763227,1),(1459,1540681227,2),(1459,1553817627,1),(1459,1572130827,2),(1459,1585267227,1),(1459,1603580427,2),(1459,1616716827,1),(1459,1635634827,2),(1459,1648166427,1),(1459,1667084427,2),(1459,1679616027,1),(1459,1698534027,2),(1459,1711670427,1),(1459,1729983627,2),(1459,1743120027,1),(1459,1761433227,2),(1459,1774569627,1),(1459,1792882827,2),(1459,1806019227,1),(1459,1824937227,2),(1459,1837468827,1),(1459,1856386827,2),(1459,1868918427,1),(1459,1887836427,2),(1459,1900972827,1),(1459,1919286027,2),(1459,1932422427,1),(1459,1950735627,2),(1459,1963872027,1),(1459,1982790027,2),(1459,1995321627,1),(1459,2014239627,2),(1459,2026771227,1),(1459,2045689227,2),(1459,2058220827,1),(1459,2077138827,2),(1459,2090275227,1),(1459,2108588427,2),(1459,2121724827,1),(1459,2140038027,2),(1460,-788932800,1),(1461,-1487759676,1),(1461,-1247569200,3),(1461,354888009,2),(1461,370695610,3),(1461,386424010,2),(1461,402231611,3),(1461,417960011,2),(1461,433767612,3),(1461,449582412,2),(1461,465314412,4),(1461,481039212,5),(1461,496764013,4),(1461,512488813,5),(1461,528213613,4),(1461,543938413,5),(1461,559663213,4),(1461,575388014,5),(1461,591112814,4),(1461,606837614,5),(1461,622562414,4),(1461,638287215,5),(1461,654616815,4),(1461,670341616,6),(1461,686070016,7),(1461,695746816,4),(1461,701791216,5),(1461,717516017,4),(1461,733240817,5),(1461,748965618,4),(1461,764690418,5),(1461,780415219,4),(1461,796140019,5),(1461,811864819,4),(1461,828194420,5),(1461,846338420,4),(1461,859644020,5),(1461,877788021,4),(1461,891093621,5),(1461,909237621,4),(1461,922543222,5),(1461,941292022,4),(1461,953992822,5),(1461,972741622,4),(1461,985442422,5),(1461,1004191222,4),(1461,1017496822,5),(1461,1035640822,4),(1461,1048946422,5),(1461,1067090422,4),(1461,1080396022,5),(1461,1099144822,4),(1461,1111845622,5),(1461,1130594422,4),(1461,1143295223,5),(1461,1162044023,4),(1461,1174744823,5),(1461,1193493623,4),(1461,1206799223,5),(1461,1224943223,4),(1461,1238248824,5),(1461,1256392824,4),(1461,1269698424,6),(1461,1288450824,7),(1461,1301151624,4),(1462,-1988166492,1),(1462,-862637400,2),(1462,-764145000,1),(1462,-576135000,3),(1462,38775600,5),(1462,1018119622,4),(1462,1033840822,5),(1462,1212260423,4),(1462,1225476023,5),(1462,1239735624,4),(1462,1257012024,5),(1463,-1325483420,1),(1464,-1577943676,1),(1464,504901813,2),(1465,-1577943676,1),(1465,504901813,2),(1466,-1579424533,1),(1466,-1247558400,3),(1466,354898809,2),(1466,370706410,3),(1466,386434810,2),(1466,402242411,3),(1466,417970811,2),(1466,433778412,3),(1466,449593212,2),(1466,465325212,4),(1466,481050012,5),(1466,496774813,4),(1466,512499613,5),(1466,528224413,4),(1466,543949213,5),(1466,559674013,4),(1466,575398814,5),(1466,591123614,4),(1466,606848414,5),(1466,622573214,4),(1466,638298015,5),(1466,654627615,4),(1466,670352416,6),(1466,686080816,7),(1466,695757616,4),(1466,701802016,5),(1466,717526817,4),(1466,733251617,5),(1466,748976418,4),(1466,764701218,5),(1466,780426019,4),(1466,796150819,5),(1466,811875619,4),(1466,828205220,5),(1466,846349220,4),(1466,859654820,5),(1466,877798821,4),(1466,891104421,5),(1466,909248421,4),(1466,922554022,5),(1466,941302822,4),(1466,954003622,5),(1466,972752422,4),(1466,985453222,5),(1466,1004202022,4),(1466,1017507622,5),(1466,1035651622,4),(1466,1048957222,5),(1466,1067101222,4),(1466,1072882822,10),(1466,1080403222,8),(1466,1099152022,9),(1466,1111852822,8),(1466,1130601622,9),(1466,1143302423,8),(1466,1162051223,9),(1466,1174752023,8),(1466,1193500823,9),(1466,1206806423,8),(1466,1224950423,9),(1466,1238256024,8),(1466,1256400024,9),(1466,1269705624,8),(1466,1288454424,9),(1466,1301155224,11),(1466,1315832424,9),(1466,1414252825,4),(1467,-2019705670,1),(1467,-891581400,2),(1467,-872058600,1),(1467,-862637400,2),(1467,-764145000,1),(1468,-1577513486,1),(1468,-1247551200,3),(1468,354906009,2),(1468,370713610,3),(1468,386442010,2),(1468,402249611,3),(1468,417978011,2),(1468,433785612,3),(1468,449600412,2),(1468,465332412,4),(1468,481057212,5),(1468,496782013,4),(1468,512506813,5),(1468,528231613,4),(1468,543956413,5),(1468,559681213,4),(1468,575406014,5),(1468,591130814,4),(1468,606855614,5),(1468,622580414,4),(1468,638305215,5),(1468,654634815,4),(1468,670359616,6),(1468,686088016,7),(1468,695764816,4),(1468,701809216,5),(1468,717534017,4),(1468,733258817,5),(1468,748983618,4),(1468,764708418,5),(1468,780433219,4),(1468,796158019,5),(1468,811882819,4),(1468,828212420,5),(1468,846356420,4),(1468,859662020,5),(1468,877806021,4),(1468,891111621,5),(1468,909255621,4),(1468,922561222,5),(1468,941310022,4),(1468,954010822,5),(1468,972759622,4),(1468,985460422,5),(1468,1004209222,4),(1468,1017514822,5),(1468,1035658822,4),(1468,1048964422,5),(1468,1067108422,4),(1468,1080414022,5),(1468,1099162822,4),(1468,1111863622,5),(1468,1130612422,4),(1468,1143313223,5),(1468,1162062023,4),(1468,1174762823,5),(1468,1193511623,4),(1468,1206817223,5),(1468,1224961223,4),(1468,1238266824,5),(1468,1256410824,4),(1468,1269716424,5),(1468,1288465224,4),(1468,1301166024,8),(1468,1414260025,4),(1469,-2038200925,1),(1469,-1167634800,2),(1469,-1073028000,3),(1469,-894180000,4),(1469,-879665400,5),(1469,-767005200,4),(1469,378664210,6),(1470,-1383463280,1),(1470,-1167636600,3),(1470,-1082448000,2),(1470,-1074586800,3),(1470,-1050825600,2),(1470,-1042964400,3),(1470,-1019289600,2),(1470,-1011428400,3),(1470,-987753600,2),(1470,-979892400,3),(1470,-956217600,2),(1470,-948356400,3),(1470,-924595200,2),(1470,-916734000,3),(1470,-893059200,2),(1470,-885198000,3),(1470,-879667200,4),(1470,-767005200,3),(1471,-719636812,1),(1472,-1830412800,3),(1472,-277360200,1),(1472,-257405400,2),(1472,-245910600,1),(1472,-225955800,2),(1472,-214473600,1),(1472,-194506200,2),(1472,-182406600,1),(1472,-163056600,2),(1472,-150969600,1),(1472,-131619600,2),(1472,-117088200,1),(1472,-101367000,2),(1472,-85638600,1),(1472,-69312600,2),(1472,-53584200,1),(1472,-37863000,2),(1472,-22134600,1),(1472,-6413400,2),(1472,9315000,1),(1472,25036200,2),(1472,40764600,1),(1472,56485800,2),(1472,72201600,1),(1472,87922801,2),(1472,103651202,1),(1472,119977202,2),(1472,135705603,1),(1472,151439403,2),(1472,167167804,1),(1472,182889004,2),(1472,198617405,1),(1472,214338605,2),(1472,230067006,1),(1472,245788206,2),(1472,261504007,1),(1472,277225207,2),(1472,292953608,1),(1472,309279608,2),(1472,325008009,1),(1472,340729209,2),(1473,-1830412800,3),(1473,-277360200,1),(1473,-257405400,2),(1473,-245910600,1),(1473,-225955800,2),(1473,-214473600,1),(1473,-194506200,2),(1473,-182406600,1),(1473,-163056600,2),(1473,-150969600,1),(1473,-131619600,2),(1473,-117088200,1),(1473,-101367000,2),(1473,-85638600,1),(1473,-69312600,2),(1473,-53584200,1),(1473,-37863000,2),(1473,-22134600,1),(1473,-6413400,2),(1473,9315000,1),(1473,25036200,2),(1473,40764600,1),(1473,56485800,2),(1473,72201600,1),(1473,87922801,2),(1473,103651202,1),(1473,119977202,2),(1473,135705603,1),(1473,151439403,2),(1473,167167804,1),(1473,182889004,2),(1473,198617405,1),(1473,214338605,2),(1473,230067006,1),(1473,245788206,2),(1473,261504007,1),(1473,277225207,2),(1473,292953608,1),(1473,309279608,2),(1473,325008009,1),(1473,340729209,2),(1474,-1441188192,1),(1474,-1247565600,3),(1474,354891609,2),(1474,370699210,3),(1474,386427610,2),(1474,402235211,3),(1474,417963611,2),(1474,433771212,3),(1474,449586012,2),(1474,465318012,4),(1474,481042812,5),(1474,496767613,4),(1474,512492413,5),(1474,528217213,4),(1474,543942013,5),(1474,559666813,4),(1474,575391614,5),(1474,591116414,4),(1474,606841214,5),(1474,622566014,4),(1474,638290815,5),(1474,654620415,4),(1474,670345216,6),(1474,686073616,7),(1474,695750416,4),(1474,701794816,5),(1474,717519617,4),(1474,733244417,5),(1474,748969218,4),(1474,764694018,5),(1474,780418819,4),(1474,796143619,5),(1474,811868419,4),(1474,828198020,5),(1474,846342020,4),(1474,859647620,5),(1474,877791621,4),(1474,891097221,5),(1474,909241221,4),(1474,922546822,5),(1474,941295622,4),(1474,953996422,5),(1474,972745222,4),(1474,985446022,5),(1474,1004194822,4),(1474,1017500422,5),(1474,1035644422,4),(1474,1048950022,5),(1474,1067094022,4),(1474,1080399622,5),(1474,1099148422,4),(1474,1111849222,5),(1474,1130598022,4),(1474,1143298823,5),(1474,1162047623,4),(1474,1174748423,5),(1474,1193497223,4),(1474,1206802823,5),(1474,1224946823,4),(1474,1238252424,5),(1474,1256396424,4),(1474,1269702024,5),(1474,1288450824,4),(1474,1301151624,8),(1474,1414245625,7),(1474,1461427226,4),(1475,-1577951856,1),(1475,-1172908656,2),(1475,-880272000,3),(1475,-766054800,4),(1476,-1046678400,0),(1476,-1038733200,1),(1476,-873273600,2),(1476,-794221200,1),(1476,-496224000,0),(1476,-489315600,1),(1476,259344007,0),(1476,275151607,1),(1477,-1577936472,1),(1478,-1518920008,2),(1478,166572004,1),(1478,182293204,2),(1478,200959205,1),(1478,213829205,2),(1478,228866406,1),(1478,243982806,2),(1478,260316007,1),(1478,276123607,2),(1478,291765608,1),(1478,307486808,2),(1478,323820009,1),(1478,338936409,2),(1478,354664809,1),(1478,370386010,2),(1478,386114410,1),(1478,401835611,2),(1478,417564011,1),(1478,433285212,2),(1478,449013612,1),(1478,465339612,2),(1478,481068012,1),(1478,496789213,2),(1478,512517613,1),(1478,528238813,2),(1478,543967213,1),(1478,559688413,2),(1478,575416814,1),(1478,591138014,2),(1478,606866414,1),(1478,622587614,2),(1478,638316015,1),(1478,654642015,2),(1478,670370416,1),(1478,686091616,2),(1478,701820016,1),(1478,717541217,2),(1478,733269617,1),(1478,748990818,2),(1478,764719218,1),(1478,780440419,2),(1478,796168819,1),(1478,811890019,2),(1478,828223220,1),(1478,843944420,2),(1478,859672820,1),(1478,875394021,2),(1478,891122421,1),(1478,909277221,3),(1478,922582822,4),(1478,941331622,3),(1478,954032422,4),(1478,972781222,3),(1478,985482022,4),(1478,1004230822,3),(1478,1017536422,4),(1478,1035680422,3),(1478,1048986022,4),(1478,1067130022,3),(1478,1080435622,4),(1478,1099184422,3),(1478,1111885222,4),(1478,1130634022,3),(1478,1143334823,4),(1478,1162083623,3),(1478,1174784423,4),(1478,1193533223,3),(1478,1206838823,4),(1478,1224982823,3),(1478,1238288424,4),(1478,1256432424,3),(1478,1269738024,4),(1478,1288486824,3),(1478,1301187624,4),(1478,1319936424,3),(1478,1332637224,4),(1478,1351386025,3),(1478,1364691625,4),(1478,1382835625,3),(1478,1396141225,4),(1478,1414285225,3),(1478,1427590825,4),(1478,1445734826,3),(1478,1459040426,4),(1478,1477789226,3),(1478,1490490027,4),(1478,1509238827,3),(1478,1521939627,4),(1478,1540688427,3),(1478,1553994027,4),(1478,1572138027,3),(1478,1585443627,4),(1478,1603587627,3),(1478,1616893227,4),(1478,1635642027,3),(1478,1648342827,4),(1478,1667091627,3),(1478,1679792427,4),(1478,1698541227,3),(1478,1711846827,4),(1478,1729990827,3),(1478,1743296427,4),(1478,1761440427,3),(1478,1774746027,4),(1478,1792890027,3),(1478,1806195627,4),(1478,1824944427,3),(1478,1837645227,4),(1478,1856394027,3),(1478,1869094827,4),(1478,1887843627,3),(1478,1901149227,4),(1478,1919293227,3),(1478,1932598827,4),(1478,1950742827,3),(1478,1964048427,4),(1478,1982797227,3),(1478,1995498027,4),(1478,2014246827,3),(1478,2026947627,4),(1478,2045696427,3),(1478,2058397227,4),(1478,2077146027,3),(1478,2090451627,4),(1478,2108595627,3),(1478,2121901227,4),(1478,2140045227,3),(1479,-1441259328,1),(1479,-1247551200,3),(1479,354906009,2),(1479,370713610,3),(1479,386442010,2),(1479,402249611,3),(1479,417978011,2),(1479,433785612,3),(1479,449600412,2),(1479,465332412,4),(1479,481057212,5),(1479,496782013,4),(1479,512506813,5),(1479,528231613,4),(1479,543956413,5),(1479,559681213,4),(1479,575406014,5),(1479,591130814,4),(1479,606855614,5),(1479,622580414,4),(1479,638305215,5),(1479,654634815,4),(1479,670359616,6),(1479,686088016,7),(1479,695764816,4),(1479,701809216,5),(1479,717534017,4),(1479,733258817,5),(1479,748983618,4),(1479,764708418,5),(1479,780433219,4),(1479,796158019,5),(1479,811882819,4),(1479,828212420,5),(1479,846356420,4),(1479,859662020,5),(1479,877806021,4),(1479,891111621,5),(1479,909255621,4),(1479,922561222,5),(1479,941310022,4),(1479,954010822,5),(1479,972759622,4),(1479,985460422,5),(1479,1004209222,4),(1479,1017514822,5),(1479,1035658822,4),(1479,1048964422,5),(1479,1067108422,4),(1479,1080414022,5),(1479,1099162822,4),(1479,1111863622,5),(1479,1130612422,4),(1479,1143313223,5),(1479,1162062023,4),(1479,1174762823,5),(1479,1193511623,4),(1479,1206817223,5),(1479,1224961223,4),(1479,1238266824,5),(1479,1256410824,4),(1479,1269716424,6),(1479,1288468824,7),(1479,1301169624,4),(1480,-1579476700,1),(1480,-1247551200,3),(1480,354906009,2),(1480,370713610,3),(1480,386442010,2),(1480,402249611,3),(1480,417978011,2),(1480,433785612,3),(1480,449600412,2),(1480,465332412,4),(1480,481057212,5),(1480,496782013,4),(1480,512506813,5),(1480,528231613,4),(1480,543956413,5),(1480,559681213,4),(1480,575406014,5),(1480,591130814,4),(1480,606855614,5),(1480,622580414,4),(1480,638305215,5),(1480,654634815,4),(1480,670359616,6),(1480,686088016,7),(1480,695764816,4),(1480,701809216,5),(1480,717534017,4),(1480,733258817,5),(1480,738086417,8),(1480,748987218,7),(1480,764712018,6),(1480,780436819,7),(1480,796161619,6),(1480,811886419,7),(1480,828216020,6),(1480,846360020,7),(1480,859665620,6),(1480,877809621,7),(1480,891115221,6),(1480,909259221,7),(1480,922564822,6),(1480,941313622,7),(1480,954014422,6),(1480,972763222,7),(1480,985464022,6),(1480,1004212822,7),(1480,1017518422,6),(1480,1035662422,7),(1480,1048968022,6),(1480,1067112022,7),(1480,1080417622,6),(1480,1099166422,7),(1480,1111867222,6),(1480,1130616022,7),(1480,1143316823,6),(1480,1162065623,7),(1480,1174766423,6),(1480,1193515223,7),(1480,1206820823,6),(1480,1224964823,7),(1480,1238270424,6),(1480,1256414424,7),(1480,1269720024,6),(1480,1288468824,7),(1480,1301169624,4),(1480,1414263625,7),(1480,1469304026,4),(1481,-1582088010,1),(1481,-1247547600,3),(1481,354909609,2),(1481,370717210,3),(1481,386445610,2),(1481,402253211,3),(1481,417981611,2),(1481,433789212,3),(1481,449604012,2),(1481,465336012,4),(1481,481060812,5),(1481,496785613,4),(1481,512510413,5),(1481,528235213,4),(1481,543960013,5),(1481,559684813,4),(1481,575409614,5),(1481,591134414,4),(1481,606859214,5),(1481,622584014,4),(1481,638308815,5),(1481,654638415,4),(1481,670363216,6),(1481,686091616,7),(1481,695768416,4),(1481,701812816,5),(1481,717537617,4),(1481,733262417,5),(1481,748987218,4),(1481,764712018,5),(1481,780436819,4),(1481,796161619,5),(1481,811886419,4),(1481,828216020,5),(1481,846360020,4),(1481,859665620,5),(1481,877809621,4),(1481,891115221,5),(1481,909259221,4),(1481,922564822,5),(1481,941313622,4),(1481,954014422,5),(1481,972763222,4),(1481,985464022,5),(1481,1004212822,4),(1481,1017518422,5),(1481,1035662422,4),(1481,1048968022,5),(1481,1067112022,4),(1481,1080417622,5),(1481,1099166422,4),(1481,1111867222,5),(1481,1130616022,4),(1481,1143316823,5),(1481,1162065623,4),(1481,1174766423,5),(1481,1193515223,4),(1481,1206820823,5),(1481,1224964823,4),(1481,1238270424,5),(1481,1256414424,4),(1481,1269720024,5),(1481,1288468824,4),(1481,1301169624,8),(1481,1414263625,4),(1482,-1441164324,1),(1482,-1247540400,2),(1482,354913209,3),(1482,370720810,4),(1482,386445610,3),(1482,402256811,2),(1482,417985211,3),(1482,433792812,2),(1482,449607612,3),(1482,465339612,5),(1482,481064412,6),(1482,496789213,5),(1482,512514013,6),(1482,528238813,5),(1482,543963613,6),(1482,559688413,5),(1482,575413214,6),(1482,591138014,5),(1482,606862814,7),(1482,622591214,8),(1482,638316015,7),(1482,654645615,8),(1482,670370416,7),(1482,686095216,8),(1482,695772016,5),(1482,701816416,7),(1482,717544817,8),(1482,733269617,7),(1482,748994418,8),(1482,764719218,7),(1482,780444019,8),(1482,796168819,7),(1482,811893619,8),(1482,828223220,7),(1482,846367220,8),(1482,859672820,7),(1482,877816821,8),(1482,891122421,7),(1482,909266421,8),(1482,922572022,7),(1482,941320822,8),(1482,954021622,7),(1482,972770422,8),(1482,985471222,7),(1482,1004220022,8),(1482,1017525622,7),(1482,1035669622,8),(1482,1048975222,7),(1482,1067119222,8),(1482,1080424822,7),(1482,1099173622,5),(1483,-1570084924,1),(1484,-1946186240,1),(1484,-1172906240,2),(1484,-881220600,3),(1484,-766054800,2),(1484,-683883000,4),(1484,-620812800,2),(1484,-189415800,5),(1484,567964813,6),(1485,-1948782180,1),(1485,-1830414600,2),(1485,-768646800,3),(1485,1439564426,1),(1485,1525447827,3),(1486,-1577935568,1),(1486,76190400,2),(1487,-1441167712,1),(1487,-1247544000,2),(1487,354913209,3),(1487,370720810,4),(1487,386445610,3),(1487,402256811,2),(1487,417985211,3),(1487,433792812,2),(1487,449607612,3),(1487,465339612,5),(1487,481064412,6),(1487,496789213,5),(1487,512514013,6),(1487,528238813,5),(1487,543963613,6),(1487,559688413,5),(1487,575413214,6),(1487,591138014,5),(1487,606862814,6),(1487,622587614,5),(1487,638312415,6),(1487,654642015,5),(1487,670366816,7),(1487,686095216,5),(1487,695768416,9),(1487,701812816,6),(1487,717541217,5),(1487,733266017,6),(1487,748990818,5),(1487,764715618,6),(1487,780440419,5),(1487,796165219,6),(1487,811890019,5),(1487,828219620,6),(1487,846363620,5),(1487,859669220,6),(1487,877813221,5),(1487,891118821,6),(1487,909262821,5),(1487,922568422,6),(1487,941317222,5),(1487,954018022,6),(1487,972766822,5),(1487,985467622,6),(1487,1004216422,5),(1487,1017522022,6),(1487,1035666022,5),(1487,1048971622,6),(1487,1067115622,5),(1487,1080421222,6),(1487,1099170022,9),(1488,-1577946287,1),(1488,-873268200,2),(1488,-778410000,1),(1489,-719636812,1),(1490,-2004073600,1),(1490,-1851577590,2),(1490,-852105600,3),(1490,-782643600,4),(1490,-767869200,2),(1490,-718095600,3),(1490,-457776000,2),(1490,-315648000,3),(1490,171820804,2),(1491,-2031039048,1),(1491,-768560400,3),(1491,354891609,2),(1491,370699210,3),(1491,386427610,2),(1491,402235211,3),(1491,417963611,2),(1491,433771212,3),(1491,449586012,2),(1491,465318012,4),(1491,481042812,5),(1491,496767613,4),(1491,512492413,5),(1491,528217213,4),(1491,543942013,5),(1491,559666813,4),(1491,575391614,5),(1491,591116414,4),(1491,606841214,5),(1491,622566014,4),(1491,638290815,5),(1491,654620415,4),(1491,670345216,6),(1491,686073616,7),(1491,695750416,4),(1491,701794816,5),(1491,717519617,4),(1491,733244417,5),(1491,748969218,4),(1491,764694018,5),(1491,780418819,4),(1491,796143619,5),(1491,811868419,4),(1491,828198020,5),(1491,846342020,4),(1491,859647620,6),(1491,877795221,7),(1491,891100821,6),(1491,909244821,7),(1491,922550422,6),(1491,941299222,7),(1491,954000022,6),(1491,972748822,7),(1491,985449622,6),(1491,1004198422,7),(1491,1017504022,6),(1491,1035648022,7),(1491,1048953622,6),(1491,1067097622,7),(1491,1080403222,6),(1491,1099152022,7),(1491,1111852822,6),(1491,1130601622,7),(1491,1143302423,6),(1491,1162051223,7),(1491,1174752023,6),(1491,1193500823,7),(1491,1206806423,6),(1491,1224950423,7),(1491,1238256024,6),(1491,1256400024,7),(1491,1269705624,6),(1491,1288454424,7),(1491,1301155224,4),(1491,1414249225,7),(1491,1459008026,4),(1492,-1441168073,1),(1492,-1247544000,2),(1492,354913209,3),(1492,370720810,4),(1492,386445610,3),(1492,402256811,2),(1492,417985211,3),(1492,433792812,2),(1492,449607612,3),(1492,465339612,5),(1492,481064412,6),(1492,496789213,5),(1492,512514013,6),(1492,528238813,5),(1492,543963613,6),(1492,559688413,5),(1492,575413214,6),(1492,591138014,5),(1492,606862814,6),(1492,622587614,5),(1492,638312415,6),(1492,654642015,5),(1492,670366816,6),(1492,686091616,5),(1492,694206016,2),(1493,-1948782472,1),(1493,-1830414600,2),(1493,-767350800,3),(1493,-498128400,1),(1493,-462702600,4),(1493,-451733400,1),(1493,-429784200,4),(1493,-418296600,1),(1493,-399544200,4),(1493,-387451800,1),(1493,-368094600,4),(1493,-356002200,1),(1493,-336645000,4),(1493,-324552600,1),(1493,-305195400,4),(1493,-293103000,1),(1493,-264933000,3),(1493,547578013,5),(1493,560883613,3),(1493,579027614,5),(1493,592333214,3),(1494,-933494400,0),(1494,-923130000,1),(1494,-908784000,0),(1494,-891594000,1),(1494,515520013,0),(1494,527007613,1),(1494,545155213,0),(1494,558457213,1),(1494,576604814,0),(1494,589906814,1),(1494,608659214,0),(1494,621961214,1),(1494,640108815,0),(1494,653410815,1),(1494,671558416,0),(1494,684860416,1),(1495,-2038200925,1),(1495,-1167634800,2),(1495,-1073028000,3),(1495,-894180000,4),(1495,-879665400,5),(1495,-767005200,4),(1495,378664210,6),(1496,-1441188892,1),(1496,-1247565600,3),(1496,354891609,2),(1496,370699210,3),(1496,386427610,2),(1496,402235211,3),(1496,417963611,2),(1496,433771212,3),(1496,449586012,2),(1496,465318012,4),(1496,481042812,5),(1496,496767613,4),(1496,512492413,5),(1496,528217213,4),(1496,543942013,5),(1496,559666813,4),(1496,575391614,5),(1496,591116414,4),(1496,606841214,5),(1496,622566014,4),(1496,638290815,5),(1496,654620415,4),(1496,670345216,6),(1496,686073616,7),(1496,695750416,4),(1496,701794816,5),(1496,717519617,4),(1496,733244417,5),(1496,748969218,4),(1496,764694018,5),(1496,780418819,4),(1496,796143619,5),(1496,811868419,4),(1496,828198020,5),(1496,846342020,4),(1496,859647620,5),(1496,877791621,4),(1496,891097221,5),(1496,909241221,4),(1496,922546822,5),(1496,941295622,4),(1496,953996422,5),(1496,972745222,4),(1496,985446022,5),(1496,1004194822,4),(1496,1017500422,5),(1496,1035644422,4),(1496,1048950022,5),(1496,1067094022,4),(1496,1080399622,5),(1496,1099148422,4),(1496,1111849222,5),(1496,1130598022,4),(1496,1143298823,5),(1496,1162047623,4),(1496,1174748423,5),(1496,1193497223,4),(1496,1206802823,5),(1496,1224946823,4),(1496,1238252424,5),(1496,1256396424,4),(1496,1269702024,5),(1496,1288450824,4),(1496,1301151624,8),(1496,1414245625,4),(1497,-1017820800,1),(1497,-766224000,0),(1497,-745833600,2),(1497,-733827600,0),(1497,-716889600,2),(1497,-699613200,0),(1497,-683884800,2),(1497,-670669200,0),(1497,-652348800,2),(1497,-639133200,0),(1497,-620812800,2),(1497,-607597200,0),(1497,-589276800,2),(1497,-576061200,0),(1497,-562924800,2),(1497,-541760400,0),(1497,-528710400,2),(1497,-510224400,0),(1497,-497174400,2),(1497,-478688400,0),(1497,-465638400,2),(1497,-449830800,0),(1497,-434016000,2),(1497,-418208400,0),(1497,-402480000,2),(1497,-386672400,0),(1497,-370944000,2),(1497,-355136400,0),(1497,-339408000,2),(1497,-323600400,0),(1497,-302515200,2),(1497,-291978000,0),(1497,-270979200,2),(1497,-260442000,0),(1497,133977603,2),(1497,149785203,0),(1497,165513604,2),(1497,181321204,0),(1497,299606408,2),(1497,307551608,0),(1498,-1441168631,1),(1498,-1247547600,3),(1498,354909609,2),(1498,370717210,3),(1498,386445610,2),(1498,402253211,3),(1498,417981611,2),(1498,433789212,3),(1498,449604012,2),(1498,465336012,4),(1498,481060812,5),(1498,496785613,4),(1498,512510413,5),(1498,528235213,4),(1498,543960013,5),(1498,559684813,4),(1498,575409614,5),(1498,591134414,4),(1498,606859214,5),(1498,622584014,4),(1498,638308815,5),(1498,654638415,4),(1498,670363216,6),(1498,686091616,7),(1498,694206016,1),(1499,-1441162751,1),(1499,-405140400,3),(1499,354916809,2),(1499,370724410,3),(1499,386452810,2),(1499,402260411,3),(1499,417988811,2),(1499,433796412,3),(1499,449611212,2),(1499,465343212,4),(1499,481068012,5),(1499,496792813,4),(1499,512517613,5),(1499,528242413,4),(1499,543967213,5),(1499,559692013,4),(1499,575416814,5),(1499,591141614,4),(1499,606866414,5),(1499,622591214,4),(1499,638316015,5),(1499,654645615,4),(1499,670370416,6),(1499,686098816,7),(1499,694213216,1),(1499,701816416,8),(1499,717537617,1),(1499,733266017,8),(1499,748987218,1),(1499,764715618,8),(1499,780436819,3),(1499,796161619,2),(1499,811882819,3),(1499,828216020,2),(1499,859662020,2),(1499,877806021,3),(1499,891115221,2),(1499,909255621,3),(1499,922564822,2),(1499,941310022,3),(1499,954014422,2),(1499,972759622,3),(1499,985464022,2),(1499,1004209222,3),(1499,1017518422,2),(1499,1035658822,3),(1499,1048968022,2),(1499,1067108422,3),(1499,1080417622,2),(1499,1088276422,8),(1499,1099177222,7),(1499,1111878022,3),(1500,-1704165944,1),(1500,-757394744,2),(1500,247177806,4),(1500,259272007,3),(1500,277758007,4),(1500,283982407,2),(1500,290809808,5),(1500,306531008,2),(1500,322432209,5),(1500,338499009,2),(1500,673216216,5),(1500,685481416,2),(1500,701209816,5),(1500,717103817,2),(1500,732745817,5),(1500,748639818,2),(1500,764281818,5),(1500,780175819,2),(1500,795817819,5),(1500,811711819,2),(1500,827353820,5),(1500,843247820,2),(1500,858976220,5),(1500,874870221,2),(1500,890512221,5),(1500,906406221,2),(1500,922048222,5),(1500,937942222,2),(1500,953584222,5),(1500,969478222,2),(1500,985206622,5),(1500,1001100622,2),(1500,1016742622,5),(1500,1032636622,2),(1500,1048278622,5),(1500,1064172622,2),(1500,1079814622,5),(1500,1095708622,2),(1500,1111437022,5),(1500,1127331022,2),(1500,1206045023,5),(1500,1221939023,2),(1500,1237667424,5),(1500,1253561424,2),(1500,1269203424,5),(1500,1285097424,2),(1500,1300739424,5),(1500,1316633424,2),(1500,1332275424,5),(1500,1348169425,2),(1500,1363897825,5),(1500,1379791825,2),(1500,1395433825,5),(1500,1411327825,2),(1500,1426969825,5),(1500,1442863826,2),(1500,1458505826,5),(1500,1474399826,2),(1500,1490128227,5),(1500,1506022227,2),(1500,1521664227,5),(1500,1537558227,2),(1500,1553200227,5),(1500,1569094227,2),(1500,1584736227,5),(1500,1600630227,2),(1500,1616358627,5),(1500,1632252627,2),(1500,1647894627,5),(1500,1663788627,2),(1500,1679430627,5),(1500,1695324627,2),(1500,1710966627,5),(1500,1726860627,2),(1500,1742589027,5),(1500,1758483027,2),(1500,1774125027,5),(1500,1790019027,2),(1500,1805661027,5),(1500,1821555027,2),(1500,1837197027,5),(1500,1853091027,2),(1500,1868733027,5),(1500,1884627027,2),(1500,1900355427,5),(1500,1916249427,2),(1500,1931891427,5),(1500,1947785427,2),(1500,1963427427,5),(1500,1979321427,2),(1500,1994963427,5),(1500,2010857427,2),(1500,2026585827,5),(1500,2042479827,2),(1500,2058121827,5),(1500,2074015827,2),(1500,2089657827,5),(1500,2105551827,2),(1500,2121193827,5),(1500,2137087827,2),(1501,-1641003640,2),(1501,-933645600,1),(1501,-857358000,2),(1501,-844300800,1),(1501,-825822000,2),(1501,-812685600,1),(1501,-794199600,2),(1501,-779853600,1),(1501,-762656400,2),(1501,-748310400,1),(1501,-731127600,2),(1501,-681962400,3),(1501,-673243200,1),(1501,-667962000,2),(1501,-652327200,1),(1501,-636426000,2),(1501,-622087200,1),(1501,-608947200,2),(1501,-591847200,1),(1501,-572486400,2),(1501,-558576000,1),(1501,-542851200,2),(1501,-527731200,1),(1501,-514425600,2),(1501,-490845600,1),(1501,-482986800,2),(1501,-459475200,1),(1501,-451537200,2),(1501,-428551200,1),(1501,-418262400,2),(1501,-400032000,1),(1501,-387428400,2),(1501,142380003,1),(1501,150843603,2),(1501,167176804,1),(1501,178664404,2),(1501,482277612,1),(1501,495579613,2),(1501,516751213,1),(1501,526424413,2),(1501,545436013,1),(1501,558478813,2),(1501,576626414,1),(1501,589323614,2),(1501,609890414,1),(1501,620773214,2),(1501,638316015,1),(1501,651618015,2),(1501,669765616,1),(1501,683672416,2),(1501,701820016,1),(1501,715726817,2),(1501,733701617,1),(1501,747176418,2),(1501,765151218,1),(1501,778021219,2),(1501,796600819,1),(1501,810075619,2),(1501,826840820,1),(1501,842821220,2),(1501,858895220,1),(1501,874184421,2),(1501,890344821,1),(1501,905029221,2),(1501,923011222,1),(1501,936313222,2),(1501,955670422,1),(1501,970783222,2),(1501,986770822,1),(1501,1001282422,2),(1501,1017356422,1),(1501,1033941622,2),(1501,1048806022,1),(1501,1065132022,2),(1501,1081292422,1),(1501,1095804022,2),(1501,1112313622,1),(1501,1128812422,2),(1501,1143763223,1),(1501,1159657223,2),(1501,1175212823,1),(1501,1189897223,2),(1501,1206662423,1),(1501,1223161223,2),(1501,1238112024,1),(1501,1254006024,2),(1501,1269561624,1),(1501,1284246024,2),(1501,1301616024,1),(1501,1317510024,2),(1501,1333065624,1),(1501,1348354825,2),(1501,1364515225,1),(1501,1382828425,2),(1501,1395964825,1),(1501,1414278025,2),(1501,1427414425,1),(1501,1445727626,2),(1501,1458864026,1),(1501,1477782026,2),(1501,1490313627,1),(1501,1509231627,2),(1501,1521763227,1),(1501,1540681227,2),(1501,1553817627,1),(1501,1572130827,2),(1501,1585267227,1),(1501,1603580427,2),(1501,1616716827,1),(1501,1635634827,2),(1501,1648166427,1),(1501,1667084427,2),(1501,1679616027,1),(1501,1698534027,2),(1501,1711670427,1),(1501,1729983627,2),(1501,1743120027,1),(1501,1761433227,2),(1501,1774569627,1),(1501,1792882827,2),(1501,1806019227,1),(1501,1824937227,2),(1501,1837468827,1),(1501,1856386827,2),(1501,1868918427,1),(1501,1887836427,2),(1501,1900972827,1),(1501,1919286027,2),(1501,1932422427,1),(1501,1950735627,2),(1501,1963872027,1),(1501,1982790027,2),(1501,1995321627,1),(1501,2014239627,2),(1501,2026771227,1),(1501,2045689227,2),(1501,2058220827,1),(1501,2077138827,2),(1501,2090275227,1),(1501,2108588427,2),(1501,2121724827,1),(1501,2140038027,2),(1502,-706341516,1),(1502,560025013,2),(1503,-706341516,1),(1503,560025013,2),(1504,-683802000,0),(1504,-672314400,1),(1504,-654771600,0),(1504,-640864800,1),(1504,-620298000,0),(1504,-609415200,1),(1504,-588848400,0),(1504,-577965600,1),(1505,-1578807591,1),(1505,-1247551200,3),(1505,354906009,2),(1505,370713610,3),(1505,386442010,2),(1505,402249611,3),(1505,417978011,2),(1505,433785612,3),(1505,449600412,2),(1505,465332412,4),(1505,481057212,5),(1505,496782013,4),(1505,512506813,5),(1505,528231613,4),(1505,543956413,5),(1505,559681213,4),(1505,575406014,5),(1505,591130814,4),(1505,606855614,5),(1505,622580414,4),(1505,638305215,5),(1505,654634815,4),(1505,670359616,6),(1505,686088016,7),(1505,695764816,4),(1505,701809216,5),(1505,717534017,4),(1505,733258817,5),(1505,748983618,4),(1505,764708418,5),(1505,780433219,4),(1505,796158019,5),(1505,811882819,4),(1505,828212420,5),(1505,846356420,4),(1505,859662020,5),(1505,877806021,4),(1505,891111621,5),(1505,909255621,4),(1505,922561222,5),(1505,941310022,4),(1505,954010822,5),(1505,972759622,4),(1505,985460422,5),(1505,1004209222,4),(1505,1017514822,5),(1505,1020193222,8),(1505,1035662422,7),(1505,1048968022,6),(1505,1067112022,7),(1505,1080417622,6),(1505,1099166422,7),(1505,1111867222,6),(1505,1130616022,7),(1505,1143316823,6),(1505,1162065623,7),(1505,1174766423,6),(1505,1193515223,7),(1505,1206820823,6),(1505,1224964823,7),(1505,1238270424,6),(1505,1256414424,7),(1505,1269720024,6),(1505,1288468824,7),(1505,1301169624,4),(1505,1414263625,7),(1505,1464465626,4),(1506,-1577951856,1),(1506,-1172908656,2),(1506,-880272000,3),(1506,-766054800,4),(1507,-2032931252,1),(1507,252435606,3),(1507,417974411,2),(1507,433782012,3),(1507,449596812,2),(1507,465318012,3),(1507,481046412,2),(1507,496767613,3),(1507,512496013,2),(1507,528217213,3),(1507,543945613,2),(1507,559666813,3),(1507,575395214,2),(1507,591116414,3),(1507,606844814,2),(1507,622566014,3),(1507,638294415,2),(1507,654620415,3),(1507,670348816,2),(1507,686070016,3),(1507,701798416,2),(1507,717519617,3),(1507,733248017,2),(1507,748969218,3),(1507,764697618,2),(1507,780418819,3),(1507,796147219,2),(1507,811868419,3),(1507,828201620,2),(1507,843922820,3),(1507,859651220,2),(1507,875372421,3),(1507,891100821,2),(1507,906822021,3),(1507,988394422,2),(1507,1001696422,3),(1507,1017424822,2),(1507,1033146022,3),(1507,1048874422,2),(1507,1064595622,3),(1507,1080324022,2),(1507,1096045222,3),(1507,1111773622,2),(1507,1127494822,3),(1507,1143223223,2),(1507,1159549223,3),(1507,1427479225,2),(1507,1443193226,3),(1507,1458928826,2),(1507,1474642826,3),(1508,-2032931252,1),(1508,252435606,3),(1508,417974411,2),(1508,433782012,3),(1508,449596812,2),(1508,465318012,3),(1508,481046412,2),(1508,496767613,3),(1508,512496013,2),(1508,528217213,3),(1508,543945613,2),(1508,559666813,3),(1508,575395214,2),(1508,591116414,3),(1508,606844814,2),(1508,622566014,3),(1508,638294415,2),(1508,654620415,3),(1508,670348816,2),(1508,686070016,3),(1508,701798416,2),(1508,717519617,3),(1508,733248017,2),(1508,748969218,3),(1508,764697618,2),(1508,780418819,3),(1508,796147219,2),(1508,811868419,3),(1508,828201620,2),(1508,843922820,3),(1508,859651220,2),(1508,875372421,3),(1508,891100821,2),(1508,906822021,3),(1508,988394422,2),(1508,1001696422,3),(1508,1017424822,2),(1508,1033146022,3),(1508,1048874422,2),(1508,1064595622,3),(1508,1080324022,2),(1508,1096045222,3),(1508,1111773622,2),(1508,1127494822,3),(1508,1143223223,2),(1508,1159549223,3),(1508,1427479225,2),(1508,1443193226,3),(1508,1458928826,2),(1508,1474642826,3),(1509,-1325483420,1),(1510,-1579426374,1),(1510,-1247558400,2),(1510,354898809,4),(1510,370699210,3),(1510,386427610,4),(1510,402235211,3),(1510,417963611,4),(1510,433771212,3),(1510,449586012,4),(1510,465318012,5),(1510,481042812,6),(1510,496767613,5),(1510,512492413,6),(1510,528217213,5),(1510,543942013,6),(1510,559666813,5),(1510,575391614,6),(1510,591116414,5),(1510,606841214,6),(1510,622566014,5),(1510,638290815,6),(1510,654620415,5),(1510,670345216,7),(1510,686073616,8),(1510,695750416,5),(1510,701794816,6),(1510,717519617,5),(1510,733244417,6),(1510,748969218,5),(1510,764694018,6),(1510,780418819,5),(1510,796143619,6),(1510,811868419,5),(1510,828198020,6),(1510,846342020,5),(1510,859647620,6),(1510,877791621,5),(1510,891097221,6),(1510,909241221,5),(1510,922546822,6),(1510,941295622,5),(1510,953996422,6),(1510,972745222,5),(1510,985446022,6),(1510,1004194822,5),(1510,1017500422,6),(1510,1035644422,5),(1510,1048950022,6),(1510,1067094022,5),(1510,1080399622,6),(1510,1099148422,5),(1510,1111849222,6),(1510,1130598022,5),(1510,1143298823,6),(1510,1162047623,5),(1510,1174748423,6),(1510,1193497223,5),(1510,1206802823,6),(1510,1224946823,5),(1510,1238252424,6),(1510,1256396424,5),(1510,1269702024,6),(1510,1288450824,5),(1510,1301151624,9),(1510,1315828824,5),(1510,1414249225,8),(1511,-1570084924,1),(1512,-1487321251,1),(1512,-1247562000,3),(1512,354895209,2),(1512,370702810,3),(1512,386431210,2),(1512,402238811,3),(1512,417967211,2),(1512,433774812,3),(1512,449589612,2),(1512,465321612,4),(1512,481046412,5),(1512,496771213,4),(1512,512496013,5),(1512,528220813,4),(1512,543945613,5),(1512,559670413,4),(1512,575395214,5),(1512,591120014,4),(1512,606844814,5),(1512,622569614,4),(1512,638294415,5),(1512,654624015,4),(1512,670348816,6),(1512,686077216,7),(1512,695754016,4),(1512,701798416,5),(1512,717523217,4),(1512,733248017,5),(1512,748972818,4),(1512,764697618,5),(1512,780422419,4),(1512,796147219,5),(1512,811872019,4),(1512,828201620,5),(1512,846345620,4),(1512,859651220,5),(1512,877795221,4),(1512,891100821,5),(1512,909244821,4),(1512,922550422,5),(1512,941299222,4),(1512,954000022,5),(1512,972748822,4),(1512,985449622,5),(1512,1004198422,4),(1512,1017504022,5),(1512,1035648022,4),(1512,1048953622,5),(1512,1067097622,4),(1512,1080403222,5),(1512,1099152022,4),(1512,1111852822,5),(1512,1130601622,4),(1512,1143302423,5),(1512,1162051223,4),(1512,1174752023,5),(1512,1193500823,4),(1512,1206806423,5),(1512,1224950423,4),(1512,1238256024,5),(1512,1256400024,4),(1512,1269705624,5),(1512,1288454424,4),(1512,1301155224,8),(1512,1414249225,4),(1513,-1579423138,1),(1513,-1247558400,3),(1513,354898809,2),(1513,370706410,3),(1513,386434810,2),(1513,402242411,3),(1513,417970811,2),(1513,433778412,3),(1513,449593212,2),(1513,465325212,4),(1513,481050012,5),(1513,496774813,4),(1513,512499613,5),(1513,528224413,4),(1513,543949213,5),(1513,559674013,4),(1513,575398814,5),(1513,591123614,4),(1513,606848414,5),(1513,622573214,4),(1513,638298015,5),(1513,654627615,4),(1513,670352416,6),(1513,686080816,7),(1513,695757616,4),(1513,701802016,5),(1513,717526817,4),(1513,733251617,5),(1513,748976418,4),(1513,764701218,5),(1513,780426019,4),(1513,796150819,5),(1513,811875619,4),(1513,828205220,5),(1513,846349220,4),(1513,859654820,5),(1513,877798821,4),(1513,891104421,5),(1513,909248421,4),(1513,922554022,5),(1513,941302822,4),(1513,954003622,5),(1513,972752422,4),(1513,985453222,5),(1513,1004202022,4),(1513,1017507622,5),(1513,1035651622,4),(1513,1048957222,5),(1513,1067101222,4),(1513,1080406822,5),(1513,1099155622,4),(1513,1111856422,5),(1513,1130605222,4),(1513,1143306023,5),(1513,1162054823,4),(1513,1174755623,5),(1513,1193504423,4),(1513,1206810023,5),(1513,1224954023,4),(1513,1238259624,5),(1513,1256403624,4),(1513,1269709224,5),(1513,1288458024,4),(1513,1301158824,8),(1513,1414252825,4),(1514,-1577946287,1),(1514,-873268200,2),(1514,-778410000,1),(1515,-1688270553,1),(1515,-1592610305,2),(1515,-1247544000,4),(1515,354913209,3),(1515,370720810,4),(1515,386449210,3),(1515,402256811,4),(1515,417985211,3),(1515,433792812,4),(1515,449607612,3),(1515,465339612,5),(1515,481064412,6),(1515,496789213,5),(1515,512514013,6),(1515,528238813,5),(1515,543963613,6),(1515,559688413,5),(1515,575413214,6),(1515,591138014,5),(1515,606862814,6),(1515,622587614,5),(1515,638312415,6),(1515,654642015,5),(1515,670366816,7),(1515,686095216,8),(1515,695772016,5),(1515,701816416,6),(1515,717541217,5),(1515,733266017,6),(1515,748990818,5),(1515,764715618,6),(1515,780440419,5),(1515,796165219,6),(1515,811890019,5),(1515,828219620,6),(1515,846363620,5),(1515,859669220,6),(1515,877813221,5),(1515,891118821,6),(1515,909262821,5),(1515,922568422,6),(1515,941317222,5),(1515,954018022,6),(1515,972766822,5),(1515,985467622,6),(1515,1004216422,5),(1515,1017522022,6),(1515,1035666022,5),(1515,1048971622,6),(1515,1067115622,5),(1515,1080421222,6),(1515,1099170022,5),(1515,1111870822,6),(1515,1130619622,5),(1515,1143320423,6),(1515,1162069223,5),(1515,1174770023,6),(1515,1193518823,5),(1515,1206824423,6),(1515,1224968423,5),(1515,1238274024,6),(1515,1256418024,5),(1515,1269723624,6),(1515,1288472424,5),(1515,1301173224,9),(1515,1414267225,5),(1516,-1441162680,1),(1516,-405140400,3),(1516,354916809,2),(1516,370724410,3),(1516,386452810,2),(1516,402260411,3),(1516,417988811,2),(1516,433796412,3),(1516,449611212,2),(1516,465343212,4),(1516,481068012,5),(1516,496792813,4),(1516,512517613,5),(1516,528242413,4),(1516,543967213,5),(1516,559692013,4),(1516,575416814,5),(1516,591141614,4),(1516,606866414,5),(1516,622591214,4),(1516,638316015,5),(1516,654645615,4),(1516,670370416,6),(1516,686098816,7),(1516,701823616,6),(1516,717548417,7),(1516,733273217,6),(1516,748998018,7),(1516,764722818,6),(1516,780447619,7),(1516,796172419,6),(1516,811897219,4),(1516,852062420,3),(1516,859672820,5),(1516,877816821,4),(1516,891122421,5),(1516,909266421,4),(1516,922572022,5),(1516,941320822,4),(1516,954021622,5),(1516,972770422,4),(1516,985471222,5),(1516,1004220022,4),(1516,1017525622,5),(1516,1035669622,4),(1516,1048975222,5),(1516,1067119222,4),(1516,1080424822,5),(1516,1099173622,4),(1516,1111874422,5),(1516,1130623222,4),(1516,1143324023,5),(1516,1162072823,4),(1516,1174773623,5),(1516,1193522423,4),(1516,1206828023,5),(1516,1224972023,4),(1516,1238277624,5),(1516,1256421624,4),(1516,1269727224,5),(1516,1288476024,4),(1516,1293825624,3),(1516,1301176824,5),(1516,1319925624,4),(1517,-1830376800,5),(1517,-1689548400,1),(1517,-1677794400,2),(1517,-1667430000,3),(1517,-1647730800,4),(1517,-1635807600,3),(1517,-1616194800,4),(1517,-1604358000,3),(1517,-1584658800,4),(1517,-1572735600,3),(1517,-1553036400,4),(1517,-1541199600,3),(1517,-1521500400,4),(1517,-1442444400,3),(1517,-1426806000,4),(1517,-1379286000,3),(1517,-1364770800,4),(1517,-1348441200,3),(1517,-1333321200,4),(1517,-1316386800,3),(1517,-1301266800,4),(1517,-1284332400,3),(1517,-1269817200,4),(1517,-1221433200,3),(1517,-1206918000,4),(1517,-1191193200,3),(1517,-1175468400,4),(1517,-1127689200,3),(1517,-1111964400,4),(1517,-1096844400,3),(1517,-1080514800,4),(1517,-1063580400,3),(1517,-1049065200,4),(1517,-1033340400,3),(1517,-1017615600,4),(1517,-1002495600,3),(1517,-986166000,4),(1517,-969231600,3),(1517,-950482800,4),(1517,-942015600,3),(1517,-922662000,4),(1517,-906937200,3),(1517,-891126000,4),(1517,-877302000,3),(1517,-873676800,6),(1517,-864000000,3),(1517,-857948400,4),(1517,-845852400,3),(1517,-842832000,6),(1517,-831340800,3),(1517,-825894000,4),(1517,-814402800,3),(1517,-810777600,6),(1517,-799891200,3),(1517,-794444400,4),(1517,-782953200,3),(1517,-779328000,6),(1517,-768441600,3),(1517,-762994800,4),(1517,-749084400,3),(1517,-733359600,4),(1517,-717624000,3),(1517,-701899200,4),(1517,-686174400,3),(1517,-670449600,4),(1517,-654724800,3),(1517,-639000000,4),(1517,-591825600,3),(1517,-575496000,4),(1517,-559771200,3),(1517,-544046400,4),(1517,-528321600,3),(1517,-512596800,4),(1517,-496872000,3),(1517,-481147200,4),(1517,-465422400,3),(1517,-449697600,4),(1517,-433972800,3),(1517,-417643200,4),(1517,-401918400,3),(1517,-386193600,4),(1517,-370468800,3),(1517,-354744000,4),(1517,-339019200,3),(1517,-323294400,4),(1517,-307569600,3),(1517,-291844800,4),(1517,-276120000,3),(1517,-260395200,4),(1517,-244670400,3),(1517,-228340800,4),(1517,-212616000,3),(1517,-196891200,4),(1517,-181166400,3),(1517,-165441600,4),(1517,-149716800,3),(1517,-133992000,4),(1517,-118267200,8),(1517,228272406,6),(1517,243997206,7),(1517,260326807,6),(1517,276051607,7),(1517,291776408,6),(1517,307504808,7),(1517,323226009,6),(1517,338954409,7),(1517,354679209,6),(1517,370404010,7),(1517,386128810,6),(1517,401853611,7),(1517,417582011,6),(1517,433303212,7),(1517,449028012,6),(1517,465357612,7),(1517,481082412,6),(1517,496807213,7),(1517,512532013,6),(1517,528256813,7),(1517,543981613,6),(1517,559706413,7),(1517,575431214,6),(1517,591156014,7),(1517,606880814,6),(1517,622605614,7),(1517,638330415,6),(1517,654660015,7),(1517,670384816,6),(1517,686109616,7),(1517,701834416,6),(1517,717559217,9),(1517,733280417,10),(1517,749005218,11),(1517,764730018,10),(1517,780454819,11),(1517,796179619,10),(1517,811904419,11),(1517,828234020,10),(1517,846378020,11),(1517,859683620,10),(1517,877827621,11),(1517,891133221,10),(1517,909277221,11),(1517,922582822,10),(1517,941331622,11),(1517,954032422,10),(1517,972781222,11),(1517,985482022,10),(1517,1004230822,11),(1517,1017536422,10),(1517,1035680422,11),(1517,1048986022,10),(1517,1067130022,11),(1517,1080435622,10),(1517,1099184422,11),(1517,1111885222,10),(1517,1130634022,11),(1517,1143334823,10),(1517,1162083623,11),(1517,1174784423,10),(1517,1193533223,11),(1517,1206838823,10),(1517,1224982823,11),(1517,1238288424,10),(1517,1256432424,11),(1517,1269738024,10),(1517,1288486824,11),(1517,1301187624,10),(1517,1319936424,11),(1517,1332637224,10),(1517,1351386025,11),(1517,1364691625,10),(1517,1382835625,11),(1517,1396141225,10),(1517,1414285225,11),(1517,1427590825,10),(1517,1445734826,11),(1517,1459040426,10),(1517,1477789226,11),(1517,1490490027,10),(1517,1509238827,11),(1517,1521939627,10),(1517,1540688427,11),(1517,1553994027,10),(1517,1572138027,11),(1517,1585443627,10),(1517,1603587627,11),(1517,1616893227,10),(1517,1635642027,11),(1517,1648342827,10),(1517,1667091627,11),(1517,1679792427,10),(1517,1698541227,11),(1517,1711846827,10),(1517,1729990827,11),(1517,1743296427,10),(1517,1761440427,11),(1517,1774746027,10),(1517,1792890027,11),(1517,1806195627,10),(1517,1824944427,11),(1517,1837645227,10),(1517,1856394027,11),(1517,1869094827,10),(1517,1887843627,11),(1517,1901149227,10),(1517,1919293227,11),(1517,1932598827,10),(1517,1950742827,11),(1517,1964048427,10),(1517,1982797227,11),(1517,1995498027,10),(1517,2014246827,11),(1517,2026947627,10),(1517,2045696427,11),(1517,2058397227,10),(1517,2077146027,11),(1517,2090451627,10),(1517,2108595627,11),(1517,2121901227,10),(1517,2140045227,11),(1518,-1262281242,1),(1518,136360803,2),(1518,152082003,1),(1518,167810404,2),(1518,183531604,1),(1518,199260005,2),(1518,215586005,1),(1518,230709606,2),(1518,247035606,1),(1518,262764007,2),(1518,278485207,1),(1518,294213608,2),(1518,309934808,1),(1518,325663209,2),(1518,341384409,1),(1518,357112809,2),(1518,372834010,1),(1518,388562410,2),(1518,404888411,1),(1518,420012011,2),(1518,436338012,1),(1518,452066412,2),(1518,467787612,1),(1518,483516012,2),(1518,499237213,1),(1518,514965613,2),(1518,530686813,1),(1518,544600813,2),(1518,562136413,1),(1518,576050414,2),(1518,594190814,1),(1518,607500014,2),(1518,625640414,1),(1518,638949615,2),(1518,657090015,1),(1518,671004016,2),(1518,688539616,1),(1518,702453616,2),(1518,719989217,1),(1518,733903217,2),(1518,752043618,1),(1518,765352818,2),(1518,783493219,1),(1518,796802419,2),(1518,814942819,1),(1518,828856820,2),(1518,846392420,1),(1518,860306420,2),(1518,877842021,1),(1518,891756021,2),(1518,909291621,1),(1518,923205622,2),(1518,941346022,1),(1518,954655222,2),(1518,972795622,1),(1518,986104822,2),(1518,1004245222,1),(1518,1018159222,2),(1518,1035694822,1),(1518,1049608822,2),(1518,1067144422,1),(1518,1081058422,2),(1518,1099198822,1),(1518,1112508022,2),(1518,1130648422,1),(1518,1143957623,2),(1518,1162098023,1),(1518,1173592823,2),(1518,1194152423,1),(1518,1205042423,2),(1518,1225602023,1),(1518,1236492024,2),(1518,1257051624,1),(1518,1268546424,2),(1518,1289106024,1),(1518,1299996024,2),(1518,1320555624,1),(1518,1331445624,2),(1518,1352005225,1),(1518,1362895225,2),(1518,1383454825,1),(1518,1394344825,2),(1518,1414904425,1),(1518,1425794425,2),(1518,1446354026,1),(1518,1457848826,2),(1518,1478408426,1),(1518,1489298427,2),(1518,1509858027,1),(1518,1520748027,2),(1518,1541307627,1),(1518,1552197627,2),(1518,1572757227,1),(1518,1583647227,2),(1518,1604206827,1),(1518,1615701627,2),(1518,1636261227,1),(1518,1647151227,2),(1518,1667710827,1),(1518,1678600827,2),(1518,1699160427,1),(1518,1710050427,2),(1518,1730610027,1),(1518,1741500027,2),(1518,1762059627,1),(1518,1772949627,2),(1518,1793509227,1),(1518,1805004027,2),(1518,1825563627,1),(1518,1836453627,2),(1518,1857013227,1),(1518,1867903227,2),(1518,1888462827,1),(1518,1899352827,2),(1518,1919912427,1),(1518,1930802427,2),(1518,1951362027,1),(1518,1962856827,2),(1518,1983416427,1),(1518,1994306427,2),(1518,2014866027,1),(1518,2025756027,2),(1518,2046315627,1),(1518,2057205627,2),(1518,2077765227,1),(1518,2088655227,2),(1518,2109214827,1),(1518,2120104827,2),(1518,2140664427,1),(1519,-1509663504,1),(1519,-733874400,2),(1519,323827209,3),(1519,338950809,4),(1519,354675609,5),(1519,370400410,4),(1519,386125210,5),(1519,401850011,4),(1519,417574811,5),(1519,433299612,4),(1519,449024412,5),(1519,465354012,4),(1519,481078812,5),(1519,496803613,4),(1519,512528413,5),(1519,528253213,4),(1519,543978013,5),(1519,559702813,4),(1519,575427614,5),(1519,591152414,4),(1519,606877214,5),(1519,622602014,4),(1519,638326815,5),(1519,654656415,4),(1519,670381216,5),(1519,686106016,4),(1519,701830816,5),(1519,717555617,4),(1519,733280417,5),(1519,749005218,4),(1519,764730018,5),(1519,780454819,4),(1519,796179619,5),(1519,811904419,4),(1519,828234020,5),(1519,846378020,4),(1519,859683620,5),(1519,877827621,4),(1519,891133221,5),(1519,909277221,4),(1519,922582822,5),(1519,941331622,4),(1519,954032422,5),(1519,972781222,4),(1519,985482022,5),(1519,1004230822,4),(1519,1017536422,5),(1519,1035680422,4),(1519,1048986022,5),(1519,1067130022,4),(1519,1080435622,5),(1519,1099184422,4),(1519,1111885222,5),(1519,1130634022,4),(1519,1143334823,5),(1519,1162083623,4),(1519,1174784423,5),(1519,1193533223,4),(1519,1206838823,5),(1519,1224982823,4),(1519,1238288424,5),(1519,1256432424,4),(1519,1269738024,5),(1519,1288486824,4),(1519,1301187624,5),(1519,1319936424,4),(1519,1332637224,5),(1519,1351386025,4),(1519,1364691625,5),(1519,1382835625,4),(1519,1396141225,5),(1519,1414285225,4),(1519,1427590825,5),(1519,1445734826,4),(1519,1459040426,5),(1519,1477789226,4),(1519,1490490027,5),(1519,1509238827,4),(1519,1521939627,5),(1519,1540688427,4),(1519,1553994027,5),(1519,1572138027,4),(1519,1585443627,5),(1519,1603587627,4),(1519,1616893227,5),(1519,1635642027,4),(1519,1648342827,5),(1519,1667091627,4),(1519,1679792427,5),(1519,1698541227,4),(1519,1711846827,5),(1519,1729990827,4),(1519,1743296427,5),(1519,1761440427,4),(1519,1774746027,5),(1519,1792890027,4),(1519,1806195627,5),(1519,1824944427,4),(1519,1837645227,5),(1519,1856394027,4),(1519,1869094827,5),(1519,1887843627,4),(1519,1901149227,5),(1519,1919293227,4),(1519,1932598827,5),(1519,1950742827,4),(1519,1964048427,5),(1519,1982797227,4),(1519,1995498027,5),(1519,2014246827,4),(1519,2026947627,5),(1519,2045696427,4),(1519,2058397227,5),(1519,2077146027,4),(1519,2090451627,5),(1519,2108595627,4),(1519,2121901227,5),(1519,2140045227,4),(1520,-1830376800,1),(1520,-862610400,2),(1520,-764118000,3),(1520,186120004,4),(1521,-1955748776,1),(1521,354675609,2),(1521,370400410,3),(1521,386125210,2),(1521,401850011,3),(1521,417574811,2),(1521,433299612,3),(1521,449024412,2),(1521,465354012,3),(1521,481078812,2),(1521,496803613,3),(1521,512528413,2),(1521,528253213,3),(1521,543978013,2),(1521,559702813,3),(1521,575427614,2),(1521,591152414,3),(1521,606877214,2),(1521,622602014,3),(1521,638326815,2),(1521,654656415,3),(1521,670381216,2),(1521,686106016,3),(1521,701830816,2),(1521,717555617,3),(1521,733280417,2),(1521,749005218,3),(1521,764730018,2),(1521,780454819,3),(1521,796179619,2),(1521,811904419,3),(1521,828234020,2),(1521,846378020,3),(1521,859683620,2),(1521,877827621,3),(1521,891133221,2),(1521,909277221,3),(1521,922582822,2),(1521,941331622,3),(1521,954032422,2),(1521,972781222,3),(1521,985482022,2),(1521,1004230822,3),(1521,1017536422,2),(1521,1035680422,3),(1521,1048986022,2),(1521,1067130022,3),(1521,1080435622,2),(1521,1099184422,3),(1521,1111885222,2),(1521,1130634022,3),(1521,1143334823,2),(1521,1162083623,3),(1521,1174784423,2),(1521,1193533223,3),(1521,1206838823,2),(1521,1224982823,3),(1521,1238288424,2),(1521,1256432424,3),(1521,1269738024,2),(1521,1288486824,3),(1521,1301187624,2),(1521,1319936424,3),(1521,1332637224,2),(1521,1351386025,3),(1521,1364691625,2),(1521,1382835625,3),(1521,1396141225,2),(1521,1414285225,3),(1521,1427590825,2),(1521,1445734826,3),(1521,1459040426,2),(1521,1477789226,3),(1521,1490490027,2),(1521,1509238827,3),(1521,1521939627,2),(1521,1540688427,3),(1521,1553994027,2),(1521,1572138027,3),(1521,1585443627,2),(1521,1603587627,3),(1521,1616893227,2),(1521,1635642027,3),(1521,1648342827,2),(1521,1667091627,3),(1521,1679792427,2),(1521,1698541227,3),(1521,1711846827,2),(1521,1729990827,3),(1521,1743296427,2),(1521,1761440427,3),(1521,1774746027,2),(1521,1792890027,3),(1521,1806195627,2),(1521,1824944427,3),(1521,1837645227,2),(1521,1856394027,3),(1521,1869094827,2),(1521,1887843627,3),(1521,1901149227,2),(1521,1919293227,3),(1521,1932598827,2),(1521,1950742827,3),(1521,1964048427,2),(1521,1982797227,3),(1521,1995498027,2),(1521,2014246827,3),(1521,2026947627,2),(1521,2045696427,3),(1521,2058397227,2),(1521,2077146027,3),(1521,2090451627,2),(1521,2108595627,3),(1521,2121901227,2),(1521,2140045227,3),(1522,-1955748776,1),(1522,354675609,2),(1522,370400410,3),(1522,386125210,2),(1522,401850011,3),(1522,417574811,2),(1522,433299612,3),(1522,449024412,2),(1522,465354012,3),(1522,481078812,2),(1522,496803613,3),(1522,512528413,2),(1522,528253213,3),(1522,543978013,2),(1522,559702813,3),(1522,575427614,2),(1522,591152414,3),(1522,606877214,2),(1522,622602014,3),(1522,638326815,2),(1522,654656415,3),(1522,670381216,2),(1522,686106016,3),(1522,701830816,2),(1522,717555617,3),(1522,733280417,2),(1522,749005218,3),(1522,764730018,2),(1522,780454819,3),(1522,796179619,2),(1522,811904419,3),(1522,828234020,2),(1522,846378020,3),(1522,859683620,2),(1522,877827621,3),(1522,891133221,2),(1522,909277221,3),(1522,922582822,2),(1522,941331622,3),(1522,954032422,2),(1522,972781222,3),(1522,985482022,2),(1522,1004230822,3),(1522,1017536422,2),(1522,1035680422,3),(1522,1048986022,2),(1522,1067130022,3),(1522,1080435622,2),(1522,1099184422,3),(1522,1111885222,2),(1522,1130634022,3),(1522,1143334823,2),(1522,1162083623,3),(1522,1174784423,2),(1522,1193533223,3),(1522,1206838823,2),(1522,1224982823,3),(1522,1238288424,2),(1522,1256432424,3),(1522,1269738024,2),(1522,1288486824,3),(1522,1301187624,2),(1522,1319936424,3),(1522,1332637224,2),(1522,1351386025,3),(1522,1364691625,2),(1522,1382835625,3),(1522,1396141225,2),(1522,1414285225,3),(1522,1427590825,2),(1522,1445734826,3),(1522,1459040426,2),(1522,1477789226,3),(1522,1490490027,2),(1522,1509238827,3),(1522,1521939627,2),(1522,1540688427,3),(1522,1553994027,2),(1522,1572138027,3),(1522,1585443627,2),(1522,1603587627,3),(1522,1616893227,2),(1522,1635642027,3),(1522,1648342827,2),(1522,1667091627,3),(1522,1679792427,2),(1522,1698541227,3),(1522,1711846827,2),(1522,1729990827,3),(1522,1743296427,2),(1522,1761440427,3),(1522,1774746027,2),(1522,1792890027,3),(1522,1806195627,2),(1522,1824944427,3),(1522,1837645227,2),(1522,1856394027,3),(1522,1869094827,2),(1522,1887843627,3),(1522,1901149227,2),(1522,1919293227,3),(1522,1932598827,2),(1522,1950742827,3),(1522,1964048427,2),(1522,1982797227,3),(1522,1995498027,2),(1522,2014246827,3),(1522,2026947627,2),(1522,2045696427,3),(1522,2058397227,2),(1522,2077146027,3),(1522,2090451627,2),(1522,2108595627,3),(1522,2121901227,2),(1522,2140045227,3),(1523,-1691884800,0),(1523,-1680573600,1),(1523,-927511200,0),(1523,-857257200,2),(1523,-844556400,3),(1523,-828226800,2),(1523,-812502000,3),(1523,-796777200,2),(1523,-781052400,3),(1523,-765327600,2),(1523,-340844400,3),(1523,-324514800,2),(1523,-308790000,3),(1523,-293065200,2),(1523,-277340400,3),(1523,-261615600,2),(1523,-245890800,3),(1523,-230166000,2),(1523,-214441200,3),(1523,-198716400,2),(1523,-182991600,3),(1523,-166662000,2),(1523,-147913200,3),(1523,-135212400,2),(1523,315529208,1),(1523,323830809,4),(1523,338950809,5),(1523,354675609,4),(1523,370400410,5),(1523,386125210,4),(1523,401850011,5),(1523,417574811,4),(1523,433299612,5),(1523,449024412,4),(1523,465354012,5),(1523,481078812,4),(1523,496803613,5),(1523,512528413,4),(1523,528253213,5),(1523,543978013,4),(1523,559702813,5),(1523,575427614,4),(1523,591152414,5),(1523,606877214,4),(1523,622602014,5),(1523,638326815,4),(1523,654656415,5),(1523,670381216,4),(1523,686106016,5),(1523,701830816,4),(1523,717555617,5),(1523,733280417,4),(1523,749005218,5),(1523,764730018,4),(1523,780454819,5),(1523,796179619,4),(1523,811904419,5),(1523,828234020,4),(1523,846378020,5),(1523,859683620,4),(1523,877827621,5),(1523,891133221,4),(1523,909277221,5),(1523,922582822,4),(1523,941331622,5),(1523,954032422,4),(1523,972781222,5),(1523,985482022,4),(1523,1004230822,5),(1523,1017536422,4),(1523,1035680422,5),(1523,1048986022,4),(1523,1067130022,5),(1523,1080435622,4),(1523,1099184422,5),(1523,1111885222,4),(1523,1130634022,5),(1523,1143334823,4),(1523,1162083623,5),(1523,1174784423,4),(1523,1193533223,5),(1523,1206838823,4),(1523,1224982823,5),(1523,1238288424,4),(1523,1256432424,5),(1523,1269738024,4),(1523,1288486824,5),(1523,1301187624,4),(1523,1319936424,5),(1523,1332637224,4),(1523,1351386025,5),(1523,1364691625,4),(1523,1382835625,5),(1523,1396141225,4),(1523,1414285225,5),(1523,1427590825,4),(1523,1445734826,5),(1523,1459040426,4),(1523,1477789226,5),(1523,1490490027,4),(1523,1509238827,5),(1523,1521939627,4),(1523,1540688427,5),(1523,1553994027,4),(1523,1572138027,5),(1523,1585443627,4),(1523,1603587627,5),(1523,1616893227,4),(1523,1635642027,5),(1523,1648342827,4),(1523,1667091627,5),(1523,1679792427,4),(1523,1698541227,5),(1523,1711846827,4),(1523,1729990827,5),(1523,1743296427,4),(1523,1761440427,5),(1523,1774746027,4),(1523,1792890027,5),(1523,1806195627,4),(1523,1824944427,5),(1523,1837645227,4),(1523,1856394027,5),(1523,1869094827,4),(1523,1887843627,5),(1523,1901149227,4),(1523,1919293227,5),(1523,1932598827,4),(1523,1950742827,5),(1523,1964048427,4),(1523,1982797227,5),(1523,1995498027,4),(1523,2014246827,5),(1523,2026947627,4),(1523,2045696427,5),(1523,2058397227,4),(1523,2077146027,5),(1523,2090451627,4),(1523,2108595627,5),(1523,2121901227,4),(1523,2140045227,5),(1524,-1830380400,5),(1524,-1689552000,1),(1524,-1677798000,2),(1524,-1667433600,3),(1524,-1647734400,4),(1524,-1635811200,3),(1524,-1616198400,4),(1524,-1604361600,3),(1524,-1584662400,4),(1524,-1572739200,3),(1524,-1553040000,4),(1524,-1541203200,3),(1524,-1521504000,4),(1524,-1442448000,3),(1524,-1426809600,4),(1524,-1379289600,3),(1524,-1364774400,4),(1524,-1348444800,3),(1524,-1333324800,4),(1524,-1316390400,3),(1524,-1301270400,4),(1524,-1284336000,3),(1524,-1269820800,4),(1524,-1221436800,3),(1524,-1206921600,4),(1524,-1191196800,3),(1524,-1175472000,4),(1524,-1127692800,3),(1524,-1111968000,4),(1524,-1096848000,3),(1524,-1080518400,4),(1524,-1063584000,3),(1524,-1049068800,4),(1524,-1033344000,3),(1524,-1017619200,4),(1524,-1002499200,3),(1524,-986169600,4),(1524,-969235200,3),(1524,-950486400,4),(1524,-942019200,3),(1524,-922665600,4),(1524,-906940800,3),(1524,-891129600,4),(1524,-877305600,3),(1524,-873680400,6),(1524,-864003600,3),(1524,-857952000,4),(1524,-845856000,3),(1524,-842835600,6),(1524,-831344400,3),(1524,-825897600,4),(1524,-814406400,3),(1524,-810781200,6),(1524,-799894800,3),(1524,-794448000,4),(1524,-782956800,3),(1524,-779331600,6),(1524,-768445200,3),(1524,-762998400,4),(1524,-749088000,3),(1524,-733363200,4),(1524,-717627600,3),(1524,-701902800,4),(1524,-686178000,3),(1524,-670453200,4),(1524,-654728400,3),(1524,-639003600,4),(1524,-591829200,3),(1524,-575499600,4),(1524,-559774800,3),(1524,-544050000,4),(1524,-528325200,3),(1524,-512600400,4),(1524,-496875600,3),(1524,-481150800,4),(1524,-465426000,3),(1524,-449701200,4),(1524,-433976400,3),(1524,-417646800,4),(1524,-401922000,3),(1524,-386197200,4),(1524,-370472400,3),(1524,-354747600,4),(1524,-339022800,3),(1524,-323298000,4),(1524,-307573200,3),(1524,-291848400,4),(1524,-276123600,3),(1524,-260398800,4),(1524,-244674000,3),(1524,-228344400,4),(1524,-212619600,3),(1524,-196894800,4),(1524,-181170000,3),(1524,-165445200,4),(1524,-149720400,3),(1524,-133995600,4),(1524,-118270800,9),(1524,228268806,7),(1524,243993606,8),(1524,260323207,7),(1524,276048007,8),(1524,291772808,7),(1524,307501208,8),(1524,323222409,7),(1524,338950809,8),(1524,354675609,7),(1524,370400410,8),(1524,386125210,7),(1524,401850011,8),(1524,417578411,7),(1524,433299612,10),(1524,449024412,11),(1524,465354012,10),(1524,481078812,11),(1524,496803613,10),(1524,512528413,11),(1524,528253213,10),(1524,543978013,11),(1524,559702813,10),(1524,575427614,11),(1524,591152414,10),(1524,606877214,11),(1524,622602014,10),(1524,638326815,11),(1524,654656415,10),(1524,670381216,11),(1524,686106016,10),(1524,701830816,11),(1524,717555617,10),(1524,733280417,11),(1524,749005218,10),(1524,764730018,11),(1524,780454819,10),(1524,796179619,11),(1524,811904419,10),(1524,828234020,11),(1524,846378020,10),(1524,859683620,11),(1524,877827621,10),(1524,891133221,11),(1524,909277221,10),(1524,922582822,11),(1524,941331622,10),(1524,954032422,11),(1524,972781222,10),(1524,985482022,11),(1524,1004230822,10),(1524,1017536422,11),(1524,1035680422,10),(1524,1048986022,11),(1524,1067130022,10),(1524,1080435622,11),(1524,1099184422,10),(1524,1111885222,11),(1524,1130634022,10),(1524,1143334823,11),(1524,1162083623,10),(1524,1174784423,11),(1524,1193533223,10),(1524,1206838823,11),(1524,1224982823,10),(1524,1238288424,11),(1524,1256432424,10),(1524,1269738024,11),(1524,1288486824,10),(1524,1301187624,11),(1524,1319936424,10),(1524,1332637224,11),(1524,1351386025,10),(1524,1364691625,11),(1524,1382835625,10),(1524,1396141225,11),(1524,1414285225,10),(1524,1427590825,11),(1524,1445734826,10),(1524,1459040426,11),(1524,1477789226,10),(1524,1490490027,11),(1524,1509238827,10),(1524,1521939627,11),(1524,1540688427,10),(1524,1553994027,11),(1524,1572138027,10),(1524,1585443627,11),(1524,1603587627,10),(1524,1616893227,11),(1524,1635642027,10),(1524,1648342827,11),(1524,1667091627,10),(1524,1679792427,11),(1524,1698541227,10),(1524,1711846827,11),(1524,1729990827,10),(1524,1743296427,11),(1524,1761440427,10),(1524,1774746027,11),(1524,1792890027,10),(1524,1806195627,11),(1524,1824944427,10),(1524,1837645227,11),(1524,1856394027,10),(1524,1869094827,11),(1524,1887843627,10),(1524,1901149227,11),(1524,1919293227,10),(1524,1932598827,11),(1524,1950742827,10),(1524,1964048427,11),(1524,1982797227,10),(1524,1995498027,11),(1524,2014246827,10),(1524,2026947627,11),(1524,2045696427,10),(1524,2058397227,11),(1524,2077146027,10),(1524,2090451627,11),(1524,2108595627,10),(1524,2121901227,11),(1524,2140045227,10),(1525,-1956609120,2),(1525,-1668211200,1),(1525,-1647212400,2),(1525,-1636675200,1),(1525,-1613430000,2),(1525,-1605139200,1),(1525,-1581894000,2),(1525,-1539561600,1),(1525,-1531350000,2),(1525,-968025600,1),(1525,-952293600,2),(1525,-942008400,1),(1525,-920239200,3),(1525,-909957600,4),(1525,-888789600,3),(1525,-877903200,4),(1525,-857944800,3),(1525,-846453600,4),(1525,-826495200,3),(1525,-815004000,4),(1525,-795045600,3),(1525,-783554400,4),(1525,-762991200,3),(1525,-752104800,4),(1525,-731541600,3),(1525,-717631200,4),(1525,-700092000,3),(1525,-686181600,4),(1525,-668642400,3),(1525,-654732000,4),(1525,-636588000,3),(1525,-623282400,4),(1525,-605743200,3),(1525,-591832800,4),(1525,-573688800,3),(1525,-559778400,4),(1525,-542239200,3),(1525,-528328800,4),(1525,-510789600,3),(1525,-496879200,4),(1525,-479340000,3),(1525,-465429600,4),(1525,-447890400,3),(1525,-433980000,4),(1525,-415836000,3),(1525,-401925600,4),(1525,-384386400,3),(1525,-370476000,4),(1525,-352936800,3),(1525,-339026400,4),(1525,-321487200,3),(1525,-307576800,4),(1525,-290037600,3),(1525,-276127200,4),(1525,-258588000,3),(1525,-244677600,4),(1525,-226533600,3),(1525,-212623200,4),(1525,-195084000,3),(1525,-181173600,4),(1525,-163634400,3),(1525,-149724000,4),(1525,-132184800,3),(1525,-118274400,4),(1525,-100735200,3),(1525,-86824800,4),(1525,-68680800,3),(1525,-54770400,5),(1527,-1830383032,1),(1528,-1824235716,2),(1528,-1018209600,1),(1528,-1003093200,2),(1528,-986760000,1),(1528,-971643600,2),(1528,-954705600,1),(1528,-939589200,2),(1528,-923256000,1),(1528,-908139600,2),(1528,-891806400,1),(1528,-876690000,2),(1528,-860356800,1),(1528,-852066000,2),(1528,420609611,4),(1528,433306812,3),(1528,452052012,4),(1528,464151612,3),(1528,483501612,4),(1528,495601213,1),(1528,514350013,2),(1528,527054413,1),(1528,545799613,2),(1528,558504013,1),(1528,577249214,2),(1528,589953614,1),(1528,608698814,2),(1528,621403214,1),(1528,640753215,2),(1528,652852815,1),(1528,672202816,2),(1528,684907216,1),(1528,703652416,2),(1528,716356817,1),(1528,735102017,2),(1528,747806418,1),(1528,766551618,2),(1528,779256019,1),(1528,798001219,2),(1528,810705619,1),(1528,830055620,2),(1528,842760020,1),(1528,861505220,2),(1528,874209621,1),(1528,892954821,2),(1528,905659221,1),(1528,924404422,2),(1528,937108822,1),(1528,955854022,2),(1528,968558422,1),(1528,987310822,2),(1528,999410422,1),(1528,1019365222,2),(1528,1030860022,1),(1528,1050814822,2),(1528,1062914422,1),(1528,1082264422,2),(1528,1094364022,1),(1528,1113714022,2),(1528,1125813622,1),(1528,1145163623,2),(1528,1157263223,1),(1528,1176613223,2),(1528,1188712823,1),(1528,1208667623,2),(1528,1220767223,1),(1528,1240117224,2),(1528,1252216824,1),(1528,1271566824,2),(1528,1283666424,4),(1529,-1672567140,0),(1529,-1665392400,1),(1529,-883641600,0),(1529,-876128400,1),(1529,-860400000,0),(1529,-844678800,1),(1529,-828345600,0),(1529,-813229200,1),(1529,57686400,2),(1529,67968000,3),(1529,89136001,2),(1529,100022402,3),(1529,120585602,2),(1529,131472003,3),(1529,152035203,2),(1529,162921604,3),(1529,183484804,2),(1529,194976005,3),(1529,215539205,2),(1529,226425606,3),(1529,246988806,2),(1529,257875207,3),(1529,278438407,2),(1529,289324808,3),(1529,309888008,2),(1529,320774409,3),(1529,341337609,2),(1529,352224009,3),(1529,372787210,2),(1529,386697610,3),(1529,404841611,2),(1529,415728011,3),(1529,436291212,2),(1529,447177612,3),(1529,467740812,2),(1529,478627212,3),(1529,499190413,2),(1529,511286413,3),(1529,530035213,2),(1529,542736013,3),(1529,562089613,2),(1529,574790414,3),(1529,594144014,2),(1529,606240014,3),(1529,625593614,2),(1529,636480015,3),(1529,657043215,2),(1529,667929616,3),(1529,688492816,2),(1529,699379216,3),(1529,719942417,2),(1529,731433617,3),(1529,751996818,2),(1529,762883218,3),(1529,783446419,2),(1529,794332819,3),(1529,814896019,2),(1529,828201620,3),(1529,846345620,2),(1529,859651220,3),(1529,877795221,2),(1529,891100821,3),(1529,909244821,2),(1529,922550422,3),(1529,941299222,2),(1529,954000022,3),(1529,967305622,2),(1529,985449622,3),(1529,1004198422,2),(1529,1017504022,3),(1529,1035648022,2),(1529,1048953622,3),(1529,1067097622,2),(1529,1080403222,3),(1529,1099152022,2),(1529,1111852822,3),(1529,1130601622,2),(1529,1143907223,3),(1529,1162051223,2),(1529,1174752023,3),(1529,1193500823,2),(1529,1207411223,3),(1529,1223136023,2),(1529,1238860824,3),(1529,1254585624,2),(1529,1270310424,3),(1529,1286035224,2),(1529,1301760024,3),(1529,1317484824,2),(1529,1333209624,3),(1529,1349539225,2),(1529,1365264025,3),(1529,1380988825,2),(1529,1396713625,3),(1529,1412438425,2),(1529,1428163225,3),(1529,1443888026,2),(1529,1459612826,3),(1529,1475337626,2),(1529,1491062427,3),(1529,1506787227,2),(1529,1522512027,3),(1529,1538841627,2),(1529,1554566427,3),(1529,1570291227,2),(1529,1586016027,3),(1529,1601740827,2),(1529,1617465627,3),(1529,1633190427,2),(1529,1648915227,3),(1529,1664640027,2),(1529,1680364827,3),(1529,1696089627,2),(1529,1712419227,3),(1529,1728144027,2),(1529,1743868827,3),(1529,1759593627,2),(1529,1775318427,3),(1529,1791043227,2),(1529,1806768027,3),(1529,1822492827,2),(1529,1838217627,3),(1529,1853942427,2),(1529,1869667227,3),(1529,1885996827,2),(1529,1901721627,3),(1529,1917446427,2),(1529,1933171227,3),(1529,1948896027,2),(1529,1964620827,3),(1529,1980345627,2),(1529,1996070427,3),(1529,2011795227,2),(1529,2027520027,3),(1529,2043244827,2),(1529,2058969627,3),(1529,2075299227,2),(1529,2091024027,3),(1529,2106748827,2),(1529,2122473627,3),(1529,2138198427,2),(1530,-1672565340,0),(1530,-1665390600,1),(1530,-883639800,0),(1530,-876126600,1),(1530,-860398200,0),(1530,-844677000,1),(1530,-828343800,0),(1530,-813227400,1),(1530,57688200,2),(1530,67969800,3),(1530,89137801,2),(1530,100024202,3),(1530,120587402,2),(1530,131473803,3),(1530,152037003,2),(1530,162923404,3),(1530,183486604,2),(1530,194977805,3),(1530,215541005,2),(1530,226427406,3),(1530,246990606,2),(1530,257877007,3),(1530,278440207,2),(1530,289326608,3),(1530,309889808,2),(1530,320776209,3),(1530,341339409,2),(1530,352225809,3),(1530,372789010,2),(1530,384280210,3),(1530,404843411,2),(1530,415729811,3),(1530,436293012,2),(1530,447179412,3),(1530,467742612,2),(1530,478629012,3),(1530,499192213,2),(1530,511288213,3),(1530,530037013,2),(1530,542737813,3),(1530,562091413,2),(1530,574792214,3),(1530,594145814,2),(1530,606241814,3),(1530,625595414,2),(1530,637691415,3),(1530,657045015,2),(1530,667931416,3),(1530,688494616,2),(1530,701195416,3),(1530,719944217,2),(1530,731435417,3),(1530,751998618,2),(1530,764094618,3),(1530,783448219,2),(1530,796149019,3),(1530,814897819,2),(1530,828203420,3),(1530,846347420,2),(1530,859653020,3),(1530,877797021,2),(1530,891102621,3),(1530,909246621,2),(1530,922552222,3),(1530,941301022,2),(1530,954001822,3),(1530,972750622,2),(1530,985451422,3),(1530,1004200222,2),(1530,1017505822,3),(1530,1035649822,2),(1530,1048955422,3),(1530,1067099422,2),(1530,1080405022,3),(1530,1099153822,2),(1530,1111854622,3),(1530,1130603422,2),(1530,1143909023,3),(1530,1162053023,2),(1530,1174753823,3),(1530,1193502623,2),(1530,1207413023,3),(1530,1223137823,2),(1530,1238862624,3),(1530,1254587424,2),(1530,1270312224,3),(1530,1286037024,2),(1530,1301761824,3),(1530,1317486624,2),(1530,1333211424,3),(1530,1349541025,2),(1530,1365265825,3),(1530,1380990625,2),(1530,1396715425,3),(1530,1412440225,2),(1530,1428165025,3),(1530,1443889826,2),(1530,1459614626,3),(1530,1475339426,2),(1530,1491064227,3),(1530,1506789027,2),(1530,1522513827,3),(1530,1538843427,2),(1530,1554568227,3),(1530,1570293027,2),(1530,1586017827,3),(1530,1601742627,2),(1530,1617467427,3),(1530,1633192227,2),(1530,1648917027,3),(1530,1664641827,2),(1530,1680366627,3),(1530,1696091427,2),(1530,1712421027,3),(1530,1728145827,2),(1530,1743870627,3),(1530,1759595427,2),(1530,1775320227,3),(1530,1791045027,2),(1530,1806769827,3),(1530,1822494627,2),(1530,1838219427,3),(1530,1853944227,2),(1530,1869669027,3),(1530,1885998627,2),(1530,1901723427,3),(1530,1917448227,2),(1530,1933173027,3),(1530,1948897827,2),(1530,1964622627,3),(1530,1980347427,2),(1530,1996072227,3),(1530,2011797027,2),(1530,2027521827,3),(1530,2043246627,2),(1530,2058971427,3),(1530,2075301027,2),(1530,2091025827,3),(1530,2106750627,2),(1530,2122475427,3),(1530,2138200227,2),(1531,-1672567140,0),(1531,-1665392400,1),(1531,-883641600,0),(1531,-876128400,1),(1531,-860400000,0),(1531,-844678800,1),(1531,-828345600,0),(1531,-813229200,1),(1531,57686400,2),(1531,67968000,3),(1531,625593614,2),(1531,636480015,3),(1531,657043215,2),(1531,667929616,3),(1531,688492816,2),(1531,699379216,3),(1532,-1672565340,0),(1532,-1665390600,1),(1532,-883639800,0),(1532,-876126600,1),(1532,-860398200,0),(1532,-844677000,1),(1532,-828343800,0),(1532,-813227400,1),(1532,57688200,2),(1532,67969800,3),(1532,89137801,2),(1532,100024202,3),(1532,120587402,2),(1532,131473803,3),(1532,152037003,2),(1532,162923404,3),(1532,183486604,2),(1532,194977805,3),(1532,215541005,2),(1532,226427406,3),(1532,246990606,2),(1532,257877007,3),(1532,278440207,2),(1532,289326608,3),(1532,309889808,2),(1532,320776209,3),(1532,341339409,2),(1532,352225809,3),(1532,372789010,2),(1532,386699410,3),(1532,404843411,2),(1532,415729811,3),(1532,436293012,2),(1532,447179412,3),(1532,467742612,2),(1532,478629012,3),(1532,499192213,2),(1532,511288213,3),(1532,530037013,2),(1532,542737813,3),(1532,562091413,2),(1532,574792214,3),(1532,594145814,2),(1532,606241814,3),(1532,625595414,2),(1532,636481815,3),(1532,657045015,2),(1532,667931416,3),(1532,688494616,2),(1532,699381016,3),(1532,719944217,2),(1532,731435417,3),(1532,751998618,2),(1532,762885018,3),(1532,783448219,2),(1532,794334619,3),(1532,814897819,2),(1532,828203420,3),(1532,846347420,2),(1532,859653020,3),(1532,877797021,2),(1532,891102621,3),(1532,909246621,2),(1532,922552222,3),(1532,941301022,2),(1532,946647022,0),(1532,954001822,3),(1532,972750622,2),(1532,985451422,3),(1532,1004200222,2),(1532,1017505822,3),(1532,1035649822,2),(1532,1048955422,3),(1532,1067099422,2),(1532,1080405022,3),(1532,1099153822,2),(1532,1111854622,3),(1532,1130603422,2),(1532,1143909023,3),(1532,1162053023,2),(1532,1174753823,3),(1532,1193502623,2),(1532,1207413023,3),(1532,1223137823,2),(1532,1238862624,3),(1532,1254587424,2),(1532,1270312224,3),(1532,1286037024,2),(1532,1301761824,3),(1532,1317486624,2),(1532,1333211424,3),(1532,1349541025,2),(1532,1365265825,3),(1532,1380990625,2),(1532,1396715425,3),(1532,1412440225,2),(1532,1428165025,3),(1532,1443889826,2),(1532,1459614626,3),(1532,1475339426,2),(1532,1491064227,3),(1532,1506789027,2),(1532,1522513827,3),(1532,1538843427,2),(1532,1554568227,3),(1532,1570293027,2),(1532,1586017827,3),(1532,1601742627,2),(1532,1617467427,3),(1532,1633192227,2),(1532,1648917027,3),(1532,1664641827,2),(1532,1680366627,3),(1532,1696091427,2),(1532,1712421027,3),(1532,1728145827,2),(1532,1743870627,3),(1532,1759595427,2),(1532,1775320227,3),(1532,1791045027,2),(1532,1806769827,3),(1532,1822494627,2),(1532,1838219427,3),(1532,1853944227,2),(1532,1869669027,3),(1532,1885998627,2),(1532,1901723427,3),(1532,1917448227,2),(1532,1933173027,3),(1532,1948897827,2),(1532,1964622627,3),(1532,1980347427,2),(1532,1996072227,3),(1532,2011797027,2),(1532,2027521827,3),(1532,2043246627,2),(1532,2058971427,3),(1532,2075301027,2),(1532,2091025827,3),(1532,2106750627,2),(1532,2122475427,3),(1532,2138200227,2),(1533,-1672567140,0),(1533,-1665392400,1),(1533,-883641600,0),(1533,-876128400,1),(1533,-860400000,0),(1533,-844678800,1),(1533,-828345600,0),(1533,-813229200,1),(1533,57686400,2),(1533,67968000,3),(1533,89136001,2),(1533,100022402,3),(1533,120585602,2),(1533,131472003,3),(1533,152035203,2),(1533,162921604,3),(1533,183484804,2),(1533,194976005,3),(1533,215539205,2),(1533,226425606,3),(1533,246988806,2),(1533,257875207,3),(1533,278438407,2),(1533,289324808,3),(1533,309888008,2),(1533,320774409,3),(1533,341337609,2),(1533,352224009,3),(1533,372787210,2),(1533,386697610,3),(1533,404841611,2),(1533,415728011,3),(1533,436291212,2),(1533,447177612,3),(1533,467740812,2),(1533,478627212,3),(1533,499190413,2),(1533,511286413,3),(1533,530035213,2),(1533,542736013,3),(1533,562089613,2),(1533,574790414,3),(1533,594144014,2),(1533,606240014,3),(1533,625593614,2),(1533,636480015,3),(1533,657043215,2),(1533,667929616,3),(1533,688492816,2),(1533,699379216,3),(1533,719942417,2),(1533,731433617,3),(1533,751996818,2),(1533,762883218,3),(1533,783446419,2),(1533,794332819,3),(1533,814896019,2),(1533,828201620,3),(1533,846345620,2),(1533,859651220,3),(1533,877795221,2),(1533,891100821,3),(1533,909244821,2),(1533,922550422,3),(1533,941299222,2),(1533,954000022,3),(1533,967305622,2),(1533,985449622,3),(1533,1004198422,2),(1533,1017504022,3),(1533,1035648022,2),(1533,1048953622,3),(1533,1067097622,2),(1533,1080403222,3),(1533,1099152022,2),(1533,1111852822,3),(1533,1130601622,2),(1533,1143907223,3),(1533,1162051223,2),(1533,1174752023,3),(1533,1193500823,2),(1533,1207411223,3),(1533,1223136023,2),(1533,1238860824,3),(1533,1254585624,2),(1533,1270310424,3),(1533,1286035224,2),(1533,1301760024,3),(1533,1317484824,2),(1533,1333209624,3),(1533,1349539225,2),(1533,1365264025,3),(1533,1380988825,2),(1533,1396713625,3),(1533,1412438425,2),(1533,1428163225,3),(1533,1443888026,2),(1533,1459612826,3),(1533,1475337626,2),(1533,1491062427,3),(1533,1506787227,2),(1533,1522512027,3),(1533,1538841627,2),(1533,1554566427,3),(1533,1570291227,2),(1533,1586016027,3),(1533,1601740827,2),(1533,1617465627,3),(1533,1633190427,2),(1533,1648915227,3),(1533,1664640027,2),(1533,1680364827,3),(1533,1696089627,2),(1533,1712419227,3),(1533,1728144027,2),(1533,1743868827,3),(1533,1759593627,2),(1533,1775318427,3),(1533,1791043227,2),(1533,1806768027,3),(1533,1822492827,2),(1533,1838217627,3),(1533,1853942427,2),(1533,1869667227,3),(1533,1885996827,2),(1533,1901721627,3),(1533,1917446427,2),(1533,1933171227,3),(1533,1948896027,2),(1533,1964620827,3),(1533,1980345627,2),(1533,1996070427,3),(1533,2011795227,2),(1533,2027520027,3),(1533,2043244827,2),(1533,2058969627,3),(1533,2075299227,2),(1533,2091024027,3),(1533,2106748827,2),(1533,2122473627,3),(1533,2138198427,2),(1534,-1680508800,1),(1534,-1665392400,0),(1534,-883641600,1),(1534,-876128400,0),(1534,-860400000,1),(1534,-844678800,0),(1534,-828345600,1),(1534,-813229200,0),(1534,57686400,2),(1534,67968000,3),(1534,89136001,2),(1534,100022402,3),(1534,120585602,2),(1534,131472003,3),(1534,152035203,2),(1534,162921604,3),(1534,183484804,2),(1534,194976005,3),(1534,215539205,2),(1534,226425606,3),(1534,246988806,2),(1534,257875207,3),(1534,278438407,2),(1534,289324808,3),(1534,309888008,2),(1534,320774409,3),(1534,341337609,2),(1534,352224009,3),(1534,372787210,2),(1534,386092810,3),(1534,404841611,2),(1534,417542411,3),(1534,436291212,2),(1534,447177612,3),(1534,467740812,2),(1534,478627212,3),(1534,499190413,2),(1534,510076813,3),(1534,530035213,2),(1534,542736013,3),(1534,562089613,2),(1534,574790414,3),(1534,594144014,2),(1534,606240014,3),(1534,625593614,2),(1534,637689615,3),(1534,657043215,2),(1534,670348816,3),(1534,686678416,2),(1534,701798416,3),(1534,718128017,2),(1534,733248017,3),(1534,749577618,2),(1534,764697618,3),(1534,781027219,2),(1534,796147219,3),(1534,812476819,2),(1534,828201620,3),(1534,844531220,2),(1534,859651220,3),(1534,875980821,2),(1534,891100821,3),(1534,907430421,2),(1534,922550422,3),(1534,938880022,2),(1534,954000022,3),(1534,967305622,2),(1534,985449622,3),(1534,1002384022,2),(1534,1017504022,3),(1534,1033833622,2),(1534,1048953622,3),(1534,1065283222,2),(1534,1080403222,3),(1534,1096732822,2),(1534,1111852822,3),(1534,1128182422,2),(1534,1143907223,3),(1534,1159632023,2),(1534,1174752023,3),(1534,1191686423,2),(1534,1207411223,3),(1534,1223136023,2),(1534,1238860824,3),(1534,1254585624,2),(1534,1270310424,3),(1534,1286035224,2),(1534,1301760024,3),(1534,1317484824,2),(1534,1333209624,3),(1534,1349539225,2),(1534,1365264025,3),(1534,1380988825,2),(1534,1396713625,3),(1534,1412438425,2),(1534,1428163225,3),(1534,1443888026,2),(1534,1459612826,3),(1534,1475337626,2),(1534,1491062427,3),(1534,1506787227,2),(1534,1522512027,3),(1534,1538841627,2),(1534,1554566427,3),(1534,1570291227,2),(1534,1586016027,3),(1534,1601740827,2),(1534,1617465627,3),(1534,1633190427,2),(1534,1648915227,3),(1534,1664640027,2),(1534,1680364827,3),(1534,1696089627,2),(1534,1712419227,3),(1534,1728144027,2),(1534,1743868827,3),(1534,1759593627,2),(1534,1775318427,3),(1534,1791043227,2),(1534,1806768027,3),(1534,1822492827,2),(1534,1838217627,3),(1534,1853942427,2),(1534,1869667227,3),(1534,1885996827,2),(1534,1901721627,3),(1534,1917446427,2),(1534,1933171227,3),(1534,1948896027,2),(1534,1964620827,3),(1534,1980345627,2),(1534,1996070427,3),(1534,2011795227,2),(1534,2027520027,3),(1534,2043244827,2),(1534,2058969627,3),(1534,2075299227,2),(1534,2091024027,3),(1534,2106748827,2),(1534,2122473627,3),(1534,2138198427,2),(1535,-1672565340,0),(1535,-1665390600,1),(1535,-883639800,0),(1535,-876126600,1),(1535,-860398200,0),(1535,-844677000,1),(1535,-828343800,0),(1535,-813227400,1),(1536,-1672562640,0),(1536,-1665387900,1),(1536,-883637100,0),(1536,-876123900,1),(1536,-860395500,0),(1536,-844674300,1),(1536,152039703,2),(1536,162926104,3),(1536,436295712,2),(1536,447182112,3),(1536,690311716,2),(1536,699383716,3),(1536,1165079723,2),(1536,1174756523,3),(1536,1193505323,2),(1536,1206810923,3),(1536,1224954923,2),(1536,1238260524,3),(1537,-1680508800,1),(1537,-1665392400,0),(1537,-883641600,1),(1537,-876128400,0),(1537,-860400000,1),(1537,-844678800,0),(1537,-828345600,1),(1537,-813229200,0),(1537,-71136000,2),(1537,-55411200,3),(1537,-37267200,2),(1537,-25776000,3),(1537,-5817600,2),(1537,5673600,3),(1537,25632000,2),(1537,37728000,3),(1537,57686400,2),(1537,67968000,3),(1537,89136001,2),(1537,100022402,3),(1537,120585602,2),(1537,131472003,3),(1537,152035203,2),(1537,162921604,3),(1537,183484804,2),(1537,194976005,3),(1537,215539205,2),(1537,226425606,3),(1537,246988806,2),(1537,257875207,3),(1537,278438407,2),(1537,289324808,3),(1537,309888008,2),(1537,320774409,3),(1537,341337609,2),(1537,352224009,3),(1537,372787210,2),(1537,386092810,3),(1537,404841611,2),(1537,417542411,3),(1537,436291212,2),(1537,447177612,3),(1537,467740812,2),(1537,478627212,3),(1537,499190413,2),(1537,510076813,3),(1537,530035213,2),(1537,542736013,3),(1537,562089613,2),(1537,574790414,3),(1537,594144014,2),(1537,606240014,3),(1537,625593614,2),(1537,637689615,3),(1537,657043215,2),(1537,670348816,3),(1537,686678416,2),(1537,701798416,3),(1537,718128017,2),(1537,733248017,3),(1537,749577618,2),(1537,764697618,3),(1537,781027219,2),(1537,796147219,3),(1537,812476819,2),(1537,828201620,3),(1537,844531220,2),(1537,859651220,3),(1537,875980821,2),(1537,891100821,3),(1537,907430421,2),(1537,922550422,3),(1537,938880022,2),(1537,954000022,3),(1537,967305622,2),(1537,985449622,3),(1537,1002384022,2),(1537,1017504022,3),(1537,1033833622,2),(1537,1048953622,3),(1537,1065283222,2),(1537,1080403222,3),(1537,1096732822,2),(1537,1111852822,3),(1537,1128182422,2),(1537,1143907223,3),(1537,1159632023,2),(1537,1174752023,3),(1537,1191686423,2),(1537,1207411223,3),(1537,1223136023,2),(1537,1238860824,3),(1537,1254585624,2),(1537,1270310424,3),(1537,1286035224,2),(1537,1301760024,3),(1537,1317484824,2),(1537,1333209624,3),(1537,1349539225,2),(1537,1365264025,3),(1537,1380988825,2),(1537,1396713625,3),(1537,1412438425,2),(1537,1428163225,3),(1537,1443888026,2),(1537,1459612826,3),(1537,1475337626,2),(1537,1491062427,3),(1537,1506787227,2),(1537,1522512027,3),(1537,1538841627,2),(1537,1554566427,3),(1537,1570291227,2),(1537,1586016027,3),(1537,1601740827,2),(1537,1617465627,3),(1537,1633190427,2),(1537,1648915227,3),(1537,1664640027,2),(1537,1680364827,3),(1537,1696089627,2),(1537,1712419227,3),(1537,1728144027,2),(1537,1743868827,3),(1537,1759593627,2),(1537,1775318427,3),(1537,1791043227,2),(1537,1806768027,3),(1537,1822492827,2),(1537,1838217627,3),(1537,1853942427,2),(1537,1869667227,3),(1537,1885996827,2),(1537,1901721627,3),(1537,1917446427,2),(1537,1933171227,3),(1537,1948896027,2),(1537,1964620827,3),(1537,1980345627,2),(1537,1996070427,3),(1537,2011795227,2),(1537,2027520027,3),(1537,2043244827,2),(1537,2058969627,3),(1537,2075299227,2),(1537,2091024027,3),(1537,2106748827,2),(1537,2122473627,3),(1537,2138198427,2),(1538,352216809,2),(1538,372785410,1),(1538,384273010,2),(1538,404839811,1),(1538,415722611,2),(1538,436289412,1),(1538,447172212,2),(1538,467739012,1),(1538,478621812,2),(1538,499188613,3),(1538,511282813,2),(1538,530033413,3),(1538,542732413,2),(1538,562087813,3),(1538,574786814,2),(1538,594142214,3),(1538,606236414,2),(1538,625591814,3),(1538,636476415,2),(1538,657041415,3),(1538,667926016,2),(1538,688491016,3),(1538,699375616,2),(1538,719940617,3),(1538,731430017,2),(1538,751995018,3),(1538,762879618,2),(1538,783444619,3),(1538,794329219,2),(1538,814894219,3),(1538,828198020,2),(1538,846343820,3),(1538,859647620,2),(1538,877793421,3),(1538,891097221,2),(1538,909243021,3),(1538,922546822,2),(1538,941297422,3),(1538,953996422,2),(1538,967303822,3),(1538,985446022,2),(1538,1004196622,3),(1538,1017500422,2),(1538,1035646222,3),(1538,1048950022,2),(1538,1067095822,3),(1538,1080399622,2),(1538,1099150222,3),(1538,1111849222,2),(1538,1130599822,3),(1538,1143903623,2),(1538,1162049423,3),(1538,1174748423,2),(1538,1193499023,3),(1538,1207407623,2),(1538,1223134223,3),(1538,1238857224,2),(1538,1254583824,3),(1538,1270306824,2),(1538,1286033424,3),(1538,1301756424,2),(1538,1317483024,3),(1538,1333206024,2),(1538,1349537425,3),(1538,1365260425,2),(1538,1380987025,3),(1538,1396710025,2),(1538,1412436625,3),(1538,1428159625,2),(1538,1443886226,3),(1538,1459609226,2),(1538,1475335826,3),(1538,1491058827,2),(1538,1506785427,3),(1538,1522508427,2),(1538,1538839827,3),(1538,1554562827,2),(1538,1570289427,3),(1538,1586012427,2),(1538,1601739027,3),(1538,1617462027,2),(1538,1633188627,3),(1538,1648911627,2),(1538,1664638227,3),(1538,1680361227,2),(1538,1696087827,3),(1538,1712415627,2),(1538,1728142227,3),(1538,1743865227,2),(1538,1759591827,3),(1538,1775314827,2),(1538,1791041427,3),(1538,1806764427,2),(1538,1822491027,3),(1538,1838214027,2),(1538,1853940627,3),(1538,1869663627,2),(1538,1885995027,3),(1538,1901718027,2),(1538,1917444627,3),(1538,1933167627,2),(1538,1948894227,3),(1538,1964617227,2),(1538,1980343827,3),(1538,1996066827,2),(1538,2011793427,3),(1538,2027516427,2),(1538,2043243027,3),(1538,2058966027,2),(1538,2075297427,3),(1538,2091020427,2),(1538,2106747027,3),(1538,2122470027,2),(1538,2138196627,3),(1539,-1672567140,0),(1539,-1665392400,1),(1539,-883641600,0),(1539,-876128400,1),(1539,-860400000,0),(1539,-844678800,1),(1539,-828345600,0),(1539,-813229200,1),(1539,57686400,2),(1539,67968000,3),(1539,625593614,2),(1539,636480015,3),(1539,657043215,2),(1539,667929616,3),(1539,688492816,2),(1539,699379216,3),(1539,709912816,1),(1539,719942417,2),(1539,731433617,3),(1539,751996818,2),(1539,762883218,3),(1540,352216809,2),(1540,372785410,1),(1540,384273010,2),(1540,404839811,1),(1540,415722611,2),(1540,436289412,1),(1540,447172212,2),(1540,467739012,1),(1540,478621812,2),(1540,499188613,3),(1540,511282813,2),(1540,530033413,3),(1540,542732413,2),(1540,562087813,3),(1540,574786814,2),(1540,594142214,3),(1540,606236414,2),(1540,625591814,3),(1540,636476415,2),(1540,657041415,3),(1540,667926016,2),(1540,688491016,3),(1540,699375616,2),(1540,719940617,3),(1540,731430017,2),(1540,751995018,3),(1540,762879618,2),(1540,783444619,3),(1540,794329219,2),(1540,814894219,3),(1540,828198020,2),(1540,846343820,3),(1540,859647620,2),(1540,877793421,3),(1540,891097221,2),(1540,909243021,3),(1540,922546822,2),(1540,941297422,3),(1540,953996422,2),(1540,967303822,3),(1540,985446022,2),(1540,1004196622,3),(1540,1017500422,2),(1540,1035646222,3),(1540,1048950022,2),(1540,1067095822,3),(1540,1080399622,2),(1540,1099150222,3),(1540,1111849222,2),(1540,1130599822,3),(1540,1143903623,2),(1540,1162049423,3),(1540,1174748423,2),(1540,1193499023,3),(1540,1207407623,2),(1540,1223134223,3),(1540,1238857224,2),(1540,1254583824,3),(1540,1270306824,2),(1540,1286033424,3),(1540,1301756424,2),(1540,1317483024,3),(1540,1333206024,2),(1540,1349537425,3),(1540,1365260425,2),(1540,1380987025,3),(1540,1396710025,2),(1540,1412436625,3),(1540,1428159625,2),(1540,1443886226,3),(1540,1459609226,2),(1540,1475335826,3),(1540,1491058827,2),(1540,1506785427,3),(1540,1522508427,2),(1540,1538839827,3),(1540,1554562827,2),(1540,1570289427,3),(1540,1586012427,2),(1540,1601739027,3),(1540,1617462027,2),(1540,1633188627,3),(1540,1648911627,2),(1540,1664638227,3),(1540,1680361227,2),(1540,1696087827,3),(1540,1712415627,2),(1540,1728142227,3),(1540,1743865227,2),(1540,1759591827,3),(1540,1775314827,2),(1540,1791041427,3),(1540,1806764427,2),(1540,1822491027,3),(1540,1838214027,2),(1540,1853940627,3),(1540,1869663627,2),(1540,1885995027,3),(1540,1901718027,2),(1540,1917444627,3),(1540,1933167627,2),(1540,1948894227,3),(1540,1964617227,2),(1540,1980343827,3),(1540,1996066827,2),(1540,2011793427,3),(1540,2027516427,2),(1540,2043243027,3),(1540,2058966027,2),(1540,2075297427,3),(1540,2091020427,2),(1540,2106747027,3),(1540,2122470027,2),(1540,2138196627,3),(1541,-1672567140,0),(1541,-1665392400,1),(1541,-883641600,0),(1541,-876128400,1),(1541,-860400000,0),(1541,-844678800,1),(1541,-828345600,0),(1541,-813229200,1),(1541,57686400,2),(1541,67968000,3),(1541,89136001,2),(1541,100022402,3),(1541,120585602,2),(1541,131472003,3),(1541,152035203,2),(1541,162921604,3),(1541,183484804,2),(1541,194976005,3),(1541,215539205,2),(1541,226425606,3),(1541,246988806,2),(1541,257875207,3),(1541,278438407,2),(1541,289324808,3),(1541,309888008,2),(1541,320774409,3),(1541,341337609,2),(1541,352224009,3),(1541,372787210,2),(1541,384278410,3),(1541,404841611,2),(1541,415728011,3),(1541,436291212,2),(1541,447177612,3),(1541,467740812,2),(1541,478627212,3),(1541,499190413,2),(1541,511286413,3),(1541,530035213,2),(1541,542736013,3),(1541,561484813,2),(1541,574790414,3),(1541,594144014,2),(1541,606240014,3),(1541,625593614,2),(1541,637689615,3),(1541,657043215,2),(1541,667929616,3),(1541,688492816,2),(1541,699379216,3),(1541,719942417,2),(1541,731433617,3),(1541,751996818,2),(1541,762883218,3),(1541,783446419,2),(1541,796147219,3),(1541,814896019,2),(1541,828201620,3),(1541,846345620,2),(1541,859651220,3),(1541,877795221,2),(1541,891100821,3),(1541,909244821,2),(1541,922550422,3),(1541,941299222,2),(1541,954000022,3),(1541,967305622,2),(1541,985449622,3),(1541,1004198422,2),(1541,1017504022,3),(1541,1035648022,2),(1541,1048953622,3),(1541,1067097622,2),(1541,1080403222,3),(1541,1099152022,2),(1541,1111852822,3),(1541,1130601622,2),(1541,1143907223,3),(1541,1162051223,2),(1541,1174752023,3),(1541,1193500823,2),(1541,1207411223,3),(1541,1223136023,2),(1541,1238860824,3),(1541,1254585624,2),(1541,1270310424,3),(1541,1286035224,2),(1541,1301760024,3),(1541,1317484824,2),(1541,1333209624,3),(1541,1349539225,2),(1541,1365264025,3),(1541,1380988825,2),(1541,1396713625,3),(1541,1412438425,2),(1541,1428163225,3),(1541,1443888026,2),(1541,1459612826,3),(1541,1475337626,2),(1541,1491062427,3),(1541,1506787227,2),(1541,1522512027,3),(1541,1538841627,2),(1541,1554566427,3),(1541,1570291227,2),(1541,1586016027,3),(1541,1601740827,2),(1541,1617465627,3),(1541,1633190427,2),(1541,1648915227,3),(1541,1664640027,2),(1541,1680364827,3),(1541,1696089627,2),(1541,1712419227,3),(1541,1728144027,2),(1541,1743868827,3),(1541,1759593627,2),(1541,1775318427,3),(1541,1791043227,2),(1541,1806768027,3),(1541,1822492827,2),(1541,1838217627,3),(1541,1853942427,2),(1541,1869667227,3),(1541,1885996827,2),(1541,1901721627,3),(1541,1917446427,2),(1541,1933171227,3),(1541,1948896027,2),(1541,1964620827,3),(1541,1980345627,2),(1541,1996070427,3),(1541,2011795227,2),(1541,2027520027,3),(1541,2043244827,2),(1541,2058969627,3),(1541,2075299227,2),(1541,2091024027,3),(1541,2106748827,2),(1541,2122473627,3),(1541,2138198427,2),(1542,-1672567140,0),(1542,-1665392400,1),(1542,-883641600,0),(1542,-876128400,1),(1542,-860400000,0),(1542,-844678800,1),(1542,-828345600,0),(1542,-813229200,1),(1542,57686400,2),(1542,67968000,3),(1542,89136001,2),(1542,100022402,3),(1542,120585602,2),(1542,131472003,3),(1542,152035203,2),(1542,162921604,3),(1542,183484804,2),(1542,194976005,3),(1542,215539205,2),(1542,226425606,3),(1542,246988806,2),(1542,257875207,3),(1542,278438407,2),(1542,289324808,3),(1542,309888008,2),(1542,320774409,3),(1542,341337609,2),(1542,352224009,3),(1542,372787210,2),(1542,386697610,3),(1542,404841611,2),(1542,415728011,3),(1542,436291212,2),(1542,447177612,3),(1542,467740812,2),(1542,478627212,3),(1542,499190413,2),(1542,511286413,3),(1542,530035213,2),(1542,542736013,3),(1542,562089613,2),(1542,574790414,3),(1542,594144014,2),(1542,606240014,3),(1542,625593614,2),(1542,636480015,3),(1542,657043215,2),(1542,667929616,3),(1542,688492816,2),(1542,699379216,3),(1542,719942417,2),(1542,731433617,3),(1542,751996818,2),(1542,762883218,3),(1542,783446419,2),(1542,794332819,3),(1542,814896019,2),(1542,828201620,3),(1542,846345620,2),(1542,859651220,3),(1542,877795221,2),(1542,891100821,3),(1542,909244821,2),(1542,922550422,3),(1542,941299222,2),(1542,954000022,3),(1542,967305622,2),(1542,985449622,3),(1542,1004198422,2),(1542,1017504022,3),(1542,1035648022,2),(1542,1048953622,3),(1542,1067097622,2),(1542,1080403222,3),(1542,1099152022,2),(1542,1111852822,3),(1542,1130601622,2),(1542,1143907223,3),(1542,1162051223,2),(1542,1174752023,3),(1542,1193500823,2),(1542,1207411223,3),(1542,1223136023,2),(1542,1238860824,3),(1542,1254585624,2),(1542,1270310424,3),(1542,1286035224,2),(1542,1301760024,3),(1542,1317484824,2),(1542,1333209624,3),(1542,1349539225,2),(1542,1365264025,3),(1542,1380988825,2),(1542,1396713625,3),(1542,1412438425,2),(1542,1428163225,3),(1542,1443888026,2),(1542,1459612826,3),(1542,1475337626,2),(1542,1491062427,3),(1542,1506787227,2),(1542,1522512027,3),(1542,1538841627,2),(1542,1554566427,3),(1542,1570291227,2),(1542,1586016027,3),(1542,1601740827,2),(1542,1617465627,3),(1542,1633190427,2),(1542,1648915227,3),(1542,1664640027,2),(1542,1680364827,3),(1542,1696089627,2),(1542,1712419227,3),(1542,1728144027,2),(1542,1743868827,3),(1542,1759593627,2),(1542,1775318427,3),(1542,1791043227,2),(1542,1806768027,3),(1542,1822492827,2),(1542,1838217627,3),(1542,1853942427,2),(1542,1869667227,3),(1542,1885996827,2),(1542,1901721627,3),(1542,1917446427,2),(1542,1933171227,3),(1542,1948896027,2),(1542,1964620827,3),(1542,1980345627,2),(1542,1996070427,3),(1542,2011795227,2),(1542,2027520027,3),(1542,2043244827,2),(1542,2058969627,3),(1542,2075299227,2),(1542,2091024027,3),(1542,2106748827,2),(1542,2122473627,3),(1542,2138198427,2),(1543,-1672565340,0),(1543,-1665390600,1),(1543,-883639800,0),(1543,-876126600,1),(1543,-860398200,0),(1543,-844677000,1),(1543,-828343800,0),(1543,-813227400,1),(1544,-1672559940,0),(1544,-1665385200,1),(1544,-883634400,0),(1544,-876121200,1),(1544,-860392800,0),(1544,-844671600,1),(1544,152042403,2),(1544,162928804,3),(1544,436298412,2),(1544,447184812,3),(1544,690314416,2),(1544,699386416,3),(1544,1165082423,2),(1544,1174759223,3),(1544,1193508023,2),(1544,1206813623,3),(1544,1224957623,2),(1544,1238263224,3),(1545,-1672567140,0),(1545,-1665392400,1),(1545,-883641600,0),(1545,-876128400,1),(1545,-860400000,0),(1545,-844678800,1),(1545,-828345600,0),(1545,-813229200,1),(1545,57686400,2),(1545,67968000,3),(1545,625593614,2),(1545,636480015,3),(1545,657043215,2),(1545,667929616,3),(1545,688492816,2),(1545,699379216,3),(1546,-1672565340,0),(1546,-1665390600,1),(1546,-883639800,0),(1546,-876126600,1),(1546,-860398200,0),(1546,-844677000,1),(1546,-828343800,0),(1546,-813227400,1),(1546,57688200,2),(1546,67969800,3),(1546,89137801,2),(1546,100024202,3),(1546,120587402,2),(1546,131473803,3),(1546,152037003,2),(1546,162923404,3),(1546,183486604,2),(1546,194977805,3),(1546,215541005,2),(1546,226427406,3),(1546,246990606,2),(1546,257877007,3),(1546,278440207,2),(1546,289326608,3),(1546,309889808,2),(1546,320776209,3),(1546,341339409,2),(1546,352225809,3),(1546,372789010,2),(1546,384280210,3),(1546,404843411,2),(1546,415729811,3),(1546,436293012,2),(1546,447179412,3),(1546,467742612,2),(1546,478629012,3),(1546,499192213,2),(1546,511288213,3),(1546,530037013,2),(1546,542737813,3),(1546,562091413,2),(1546,574792214,3),(1546,594145814,2),(1546,606241814,3),(1546,625595414,2),(1546,637691415,3),(1546,657045015,2),(1546,667931416,3),(1546,688494616,2),(1546,701195416,3),(1546,719944217,2),(1546,731435417,3),(1546,751998618,2),(1546,764094618,3),(1546,783448219,2),(1546,796149019,3),(1546,814897819,2),(1546,828203420,3),(1546,846347420,2),(1546,859653020,3),(1546,877797021,2),(1546,891102621,3),(1546,909246621,2),(1546,922552222,3),(1546,941301022,2),(1546,954001822,3),(1546,972750622,2),(1546,985451422,3),(1546,1004200222,2),(1546,1017505822,3),(1546,1035649822,2),(1546,1048955422,3),(1546,1067099422,2),(1546,1080405022,3),(1546,1099153822,2),(1546,1111854622,3),(1546,1130603422,2),(1546,1143909023,3),(1546,1162053023,2),(1546,1174753823,3),(1546,1193502623,2),(1546,1207413023,3),(1546,1223137823,2),(1546,1238862624,3),(1546,1254587424,2),(1546,1270312224,3),(1546,1286037024,2),(1546,1301761824,3),(1546,1317486624,2),(1546,1333211424,3),(1546,1349541025,2),(1546,1365265825,3),(1546,1380990625,2),(1546,1396715425,3),(1546,1412440225,2),(1546,1428165025,3),(1546,1443889826,2),(1546,1459614626,3),(1546,1475339426,2),(1546,1491064227,3),(1546,1506789027,2),(1546,1522513827,3),(1546,1538843427,2),(1546,1554568227,3),(1546,1570293027,2),(1546,1586017827,3),(1546,1601742627,2),(1546,1617467427,3),(1546,1633192227,2),(1546,1648917027,3),(1546,1664641827,2),(1546,1680366627,3),(1546,1696091427,2),(1546,1712421027,3),(1546,1728145827,2),(1546,1743870627,3),(1546,1759595427,2),(1546,1775320227,3),(1546,1791045027,2),(1546,1806769827,3),(1546,1822494627,2),(1546,1838219427,3),(1546,1853944227,2),(1546,1869669027,3),(1546,1885998627,2),(1546,1901723427,3),(1546,1917448227,2),(1546,1933173027,3),(1546,1948897827,2),(1546,1964622627,3),(1546,1980347427,2),(1546,1996072227,3),(1546,2011797027,2),(1546,2027521827,3),(1546,2043246627,2),(1546,2058971427,3),(1546,2075301027,2),(1546,2091025827,3),(1546,2106750627,2),(1546,2122475427,3),(1546,2138200227,2),(1547,-1672567140,0),(1547,-1665392400,1),(1547,-883641600,0),(1547,-876128400,1),(1547,-860400000,0),(1547,-844678800,1),(1547,-828345600,0),(1547,-813229200,1),(1547,57686400,2),(1547,67968000,3),(1547,89136001,2),(1547,100022402,3),(1547,120585602,2),(1547,131472003,3),(1547,152035203,2),(1547,162921604,3),(1547,183484804,2),(1547,194976005,3),(1547,215539205,2),(1547,226425606,3),(1547,246988806,2),(1547,257875207,3),(1547,278438407,2),(1547,289324808,3),(1547,309888008,2),(1547,320774409,3),(1547,341337609,2),(1547,352224009,3),(1547,372787210,2),(1547,386697610,3),(1547,404841611,2),(1547,415728011,3),(1547,436291212,2),(1547,447177612,3),(1547,467740812,2),(1547,478627212,3),(1547,499190413,2),(1547,511286413,3),(1547,530035213,2),(1547,542736013,3),(1547,562089613,2),(1547,574790414,3),(1547,594144014,2),(1547,606240014,3),(1547,625593614,2),(1547,636480015,3),(1547,657043215,2),(1547,667929616,3),(1547,688492816,2),(1547,699379216,3),(1547,719942417,2),(1547,731433617,3),(1547,751996818,2),(1547,762883218,3),(1547,783446419,2),(1547,794332819,3),(1547,814896019,2),(1547,828201620,3),(1547,846345620,2),(1547,859651220,3),(1547,877795221,2),(1547,891100821,3),(1547,909244821,2),(1547,922550422,3),(1547,941299222,2),(1547,954000022,3),(1547,967305622,2),(1547,985449622,3),(1547,1004198422,2),(1547,1017504022,3),(1547,1035648022,2),(1547,1048953622,3),(1547,1067097622,2),(1547,1080403222,3),(1547,1099152022,2),(1547,1111852822,3),(1547,1130601622,2),(1547,1143907223,3),(1547,1162051223,2),(1547,1174752023,3),(1547,1193500823,2),(1547,1207411223,3),(1547,1223136023,2),(1547,1238860824,3),(1547,1254585624,2),(1547,1270310424,3),(1547,1286035224,2),(1547,1301760024,3),(1547,1317484824,2),(1547,1333209624,3),(1547,1349539225,2),(1547,1365264025,3),(1547,1380988825,2),(1547,1396713625,3),(1547,1412438425,2),(1547,1428163225,3),(1547,1443888026,2),(1547,1459612826,3),(1547,1475337626,2),(1547,1491062427,3),(1547,1506787227,2),(1547,1522512027,3),(1547,1538841627,2),(1547,1554566427,3),(1547,1570291227,2),(1547,1586016027,3),(1547,1601740827,2),(1547,1617465627,3),(1547,1633190427,2),(1547,1648915227,3),(1547,1664640027,2),(1547,1680364827,3),(1547,1696089627,2),(1547,1712419227,3),(1547,1728144027,2),(1547,1743868827,3),(1547,1759593627,2),(1547,1775318427,3),(1547,1791043227,2),(1547,1806768027,3),(1547,1822492827,2),(1547,1838217627,3),(1547,1853942427,2),(1547,1869667227,3),(1547,1885996827,2),(1547,1901721627,3),(1547,1917446427,2),(1547,1933171227,3),(1547,1948896027,2),(1547,1964620827,3),(1547,1980345627,2),(1547,1996070427,3),(1547,2011795227,2),(1547,2027520027,3),(1547,2043244827,2),(1547,2058969627,3),(1547,2075299227,2),(1547,2091024027,3),(1547,2106748827,2),(1547,2122473627,3),(1547,2138198427,2),(1548,-1680508800,1),(1548,-1665392400,0),(1548,-883641600,1),(1548,-876128400,0),(1548,-860400000,1),(1548,-844678800,0),(1548,-828345600,1),(1548,-813229200,0),(1548,-71136000,2),(1548,-55411200,3),(1548,-37267200,2),(1548,-25776000,3),(1548,-5817600,2),(1548,5673600,3),(1548,25632000,2),(1548,37728000,3),(1548,57686400,2),(1548,67968000,3),(1548,89136001,2),(1548,100022402,3),(1548,120585602,2),(1548,131472003,3),(1548,152035203,2),(1548,162921604,3),(1548,183484804,2),(1548,194976005,3),(1548,215539205,2),(1548,226425606,3),(1548,246988806,2),(1548,257875207,3),(1548,278438407,2),(1548,289324808,3),(1548,309888008,2),(1548,320774409,3),(1548,341337609,2),(1548,352224009,3),(1548,372787210,2),(1548,386092810,3),(1548,404841611,2),(1548,417542411,3),(1548,436291212,2),(1548,447177612,3),(1548,467740812,2),(1548,478627212,3),(1548,499190413,2),(1548,510076813,3),(1548,530035213,2),(1548,542736013,3),(1548,562089613,2),(1548,574790414,3),(1548,594144014,2),(1548,606240014,3),(1548,625593614,2),(1548,637689615,3),(1548,657043215,2),(1548,670348816,3),(1548,686678416,2),(1548,701798416,3),(1548,718128017,2),(1548,733248017,3),(1548,749577618,2),(1548,764697618,3),(1548,781027219,2),(1548,796147219,3),(1548,812476819,2),(1548,828201620,3),(1548,844531220,2),(1548,859651220,3),(1548,875980821,2),(1548,891100821,3),(1548,907430421,2),(1548,922550422,3),(1548,938880022,2),(1548,954000022,3),(1548,967305622,2),(1548,985449622,3),(1548,1002384022,2),(1548,1017504022,3),(1548,1033833622,2),(1548,1048953622,3),(1548,1065283222,2),(1548,1080403222,3),(1548,1096732822,2),(1548,1111852822,3),(1548,1128182422,2),(1548,1143907223,3),(1548,1159632023,2),(1548,1174752023,3),(1548,1191686423,2),(1548,1207411223,3),(1548,1223136023,2),(1548,1238860824,3),(1548,1254585624,2),(1548,1270310424,3),(1548,1286035224,2),(1548,1301760024,3),(1548,1317484824,2),(1548,1333209624,3),(1548,1349539225,2),(1548,1365264025,3),(1548,1380988825,2),(1548,1396713625,3),(1548,1412438425,2),(1548,1428163225,3),(1548,1443888026,2),(1548,1459612826,3),(1548,1475337626,2),(1548,1491062427,3),(1548,1506787227,2),(1548,1522512027,3),(1548,1538841627,2),(1548,1554566427,3),(1548,1570291227,2),(1548,1586016027,3),(1548,1601740827,2),(1548,1617465627,3),(1548,1633190427,2),(1548,1648915227,3),(1548,1664640027,2),(1548,1680364827,3),(1548,1696089627,2),(1548,1712419227,3),(1548,1728144027,2),(1548,1743868827,3),(1548,1759593627,2),(1548,1775318427,3),(1548,1791043227,2),(1548,1806768027,3),(1548,1822492827,2),(1548,1838217627,3),(1548,1853942427,2),(1548,1869667227,3),(1548,1885996827,2),(1548,1901721627,3),(1548,1917446427,2),(1548,1933171227,3),(1548,1948896027,2),(1548,1964620827,3),(1548,1980345627,2),(1548,1996070427,3),(1548,2011795227,2),(1548,2027520027,3),(1548,2043244827,2),(1548,2058969627,3),(1548,2075299227,2),(1548,2091024027,3),(1548,2106748827,2),(1548,2122473627,3),(1548,2138198427,2),(1549,-1672567140,0),(1549,-1665392400,1),(1549,-883641600,0),(1549,-876128400,1),(1549,-860400000,0),(1549,-844678800,1),(1549,-828345600,0),(1549,-813229200,1),(1549,57686400,2),(1549,67968000,3),(1549,89136001,2),(1549,100022402,3),(1549,120585602,2),(1549,131472003,3),(1549,152035203,2),(1549,162921604,3),(1549,183484804,2),(1549,194976005,3),(1549,215539205,2),(1549,226425606,3),(1549,246988806,2),(1549,257875207,3),(1549,278438407,2),(1549,289324808,3),(1549,309888008,2),(1549,320774409,3),(1549,341337609,2),(1549,352224009,3),(1549,372787210,2),(1549,384278410,3),(1549,404841611,2),(1549,415728011,3),(1549,436291212,2),(1549,447177612,3),(1549,467740812,2),(1549,478627212,3),(1549,499190413,2),(1549,511286413,3),(1549,530035213,2),(1549,542736013,3),(1549,561484813,2),(1549,574790414,3),(1549,594144014,2),(1549,606240014,3),(1549,625593614,2),(1549,637689615,3),(1549,657043215,2),(1549,667929616,3),(1549,688492816,2),(1549,699379216,3),(1549,719942417,2),(1549,731433617,3),(1549,751996818,2),(1549,762883218,3),(1549,783446419,2),(1549,796147219,3),(1549,814896019,2),(1549,828201620,3),(1549,846345620,2),(1549,859651220,3),(1549,877795221,2),(1549,891100821,3),(1549,909244821,2),(1549,922550422,3),(1549,941299222,2),(1549,954000022,3),(1549,967305622,2),(1549,985449622,3),(1549,1004198422,2),(1549,1017504022,3),(1549,1035648022,2),(1549,1048953622,3),(1549,1067097622,2),(1549,1080403222,3),(1549,1099152022,2),(1549,1111852822,3),(1549,1130601622,2),(1549,1143907223,3),(1549,1162051223,2),(1549,1174752023,3),(1549,1193500823,2),(1549,1207411223,3),(1549,1223136023,2),(1549,1238860824,3),(1549,1254585624,2),(1549,1270310424,3),(1549,1286035224,2),(1549,1301760024,3),(1549,1317484824,2),(1549,1333209624,3),(1549,1349539225,2),(1549,1365264025,3),(1549,1380988825,2),(1549,1396713625,3),(1549,1412438425,2),(1549,1428163225,3),(1549,1443888026,2),(1549,1459612826,3),(1549,1475337626,2),(1549,1491062427,3),(1549,1506787227,2),(1549,1522512027,3),(1549,1538841627,2),(1549,1554566427,3),(1549,1570291227,2),(1549,1586016027,3),(1549,1601740827,2),(1549,1617465627,3),(1549,1633190427,2),(1549,1648915227,3),(1549,1664640027,2),(1549,1680364827,3),(1549,1696089627,2),(1549,1712419227,3),(1549,1728144027,2),(1549,1743868827,3),(1549,1759593627,2),(1549,1775318427,3),(1549,1791043227,2),(1549,1806768027,3),(1549,1822492827,2),(1549,1838217627,3),(1549,1853942427,2),(1549,1869667227,3),(1549,1885996827,2),(1549,1901721627,3),(1549,1917446427,2),(1549,1933171227,3),(1549,1948896027,2),(1549,1964620827,3),(1549,1980345627,2),(1549,1996070427,3),(1549,2011795227,2),(1549,2027520027,3),(1549,2043244827,2),(1549,2058969627,3),(1549,2075299227,2),(1549,2091024027,3),(1549,2106748827,2),(1549,2122473627,3),(1549,2138198427,2),(1550,-1672559940,0),(1550,-1665385200,1),(1550,-883634400,0),(1550,-876121200,1),(1550,-860392800,0),(1550,-844671600,1),(1550,152042403,2),(1550,162928804,3),(1550,436298412,2),(1550,447184812,3),(1550,690314416,2),(1550,699386416,3),(1550,1165082423,2),(1550,1174759223,3),(1550,1193508023,2),(1550,1206813623,3),(1550,1224957623,2),(1550,1238263224,3),(1551,-1672565340,0),(1551,-1665390600,1),(1551,-883639800,0),(1551,-876126600,1),(1551,-860398200,0),(1551,-844677000,1),(1551,-828343800,0),(1551,-813227400,1),(1551,57688200,2),(1551,67969800,3),(1551,89137801,2),(1551,100024202,3),(1551,120587402,2),(1551,131473803,3),(1551,152037003,2),(1551,162923404,3),(1551,183486604,2),(1551,194977805,3),(1551,215541005,2),(1551,226427406,3),(1551,246990606,2),(1551,257877007,3),(1551,278440207,2),(1551,289326608,3),(1551,309889808,2),(1551,320776209,3),(1551,341339409,2),(1551,352225809,3),(1551,372789010,2),(1551,386699410,3),(1551,404843411,2),(1551,415729811,3),(1551,436293012,2),(1551,447179412,3),(1551,467742612,2),(1551,478629012,3),(1551,499192213,2),(1551,511288213,3),(1551,530037013,2),(1551,542737813,3),(1551,562091413,2),(1551,574792214,3),(1551,594145814,2),(1551,606241814,3),(1551,625595414,2),(1551,636481815,3),(1551,657045015,2),(1551,667931416,3),(1551,688494616,2),(1551,699381016,3),(1551,719944217,2),(1551,731435417,3),(1551,751998618,2),(1551,762885018,3),(1551,783448219,2),(1551,794334619,3),(1551,814897819,2),(1551,828203420,3),(1551,846347420,2),(1551,859653020,3),(1551,877797021,2),(1551,891102621,3),(1551,909246621,2),(1551,922552222,3),(1551,941301022,2),(1551,946647022,0),(1551,954001822,3),(1551,972750622,2),(1551,985451422,3),(1551,1004200222,2),(1551,1017505822,3),(1551,1035649822,2),(1551,1048955422,3),(1551,1067099422,2),(1551,1080405022,3),(1551,1099153822,2),(1551,1111854622,3),(1551,1130603422,2),(1551,1143909023,3),(1551,1162053023,2),(1551,1174753823,3),(1551,1193502623,2),(1551,1207413023,3),(1551,1223137823,2),(1551,1238862624,3),(1551,1254587424,2),(1551,1270312224,3),(1551,1286037024,2),(1551,1301761824,3),(1551,1317486624,2),(1551,1333211424,3),(1551,1349541025,2),(1551,1365265825,3),(1551,1380990625,2),(1551,1396715425,3),(1551,1412440225,2),(1551,1428165025,3),(1551,1443889826,2),(1551,1459614626,3),(1551,1475339426,2),(1551,1491064227,3),(1551,1506789027,2),(1551,1522513827,3),(1551,1538843427,2),(1551,1554568227,3),(1551,1570293027,2),(1551,1586017827,3),(1551,1601742627,2),(1551,1617467427,3),(1551,1633192227,2),(1551,1648917027,3),(1551,1664641827,2),(1551,1680366627,3),(1551,1696091427,2),(1551,1712421027,3),(1551,1728145827,2),(1551,1743870627,3),(1551,1759595427,2),(1551,1775320227,3),(1551,1791045027,2),(1551,1806769827,3),(1551,1822494627,2),(1551,1838219427,3),(1551,1853944227,2),(1551,1869669027,3),(1551,1885998627,2),(1551,1901723427,3),(1551,1917448227,2),(1551,1933173027,3),(1551,1948897827,2),(1551,1964622627,3),(1551,1980347427,2),(1551,1996072227,3),(1551,2011797027,2),(1551,2027521827,3),(1551,2043246627,2),(1551,2058971427,3),(1551,2075301027,2),(1551,2091025827,3),(1551,2106750627,2),(1551,2122475427,3),(1551,2138200227,2),(1552,-1767209328,2),(1552,-1206950400,1),(1552,-1191355200,2),(1552,-1175367600,1),(1552,-1159819200,2),(1552,-633812400,1),(1552,-622062000,2),(1552,-602276400,1),(1552,-591825600,2),(1552,-570740400,1),(1552,-560203200,2),(1552,-539118000,1),(1552,-531345600,2),(1552,-191358000,1),(1552,-184190400,2),(1552,-155156400,1),(1552,-150062400,2),(1552,-128890800,1),(1552,-121118400,2),(1552,-99946800,1),(1552,-89582400,2),(1552,-68410800,1),(1552,-57960000,2),(1552,499755613,1),(1552,511243213,2),(1552,530600413,1),(1552,540273613,2),(1552,562136413,1),(1552,571204814,2),(1552,1214283623,3),(1552,1384056025,2),(1553,-1767217820,2),(1553,-1206961200,1),(1553,-1191366000,2),(1553,-1175378400,1),(1553,-1159830000,2),(1553,-633823200,1),(1553,-622072800,2),(1553,-602287200,1),(1553,-591836400,2),(1553,-570751200,1),(1553,-560214000,2),(1553,-539128800,1),(1553,-531356400,2),(1553,-191368800,1),(1553,-184201200,2),(1553,-155167200,1),(1553,-150073200,2),(1553,-128901600,1),(1553,-121129200,2),(1553,-99957600,1),(1553,-89593200,2),(1553,-68421600,1),(1553,-57970800,2),(1553,499744813,1),(1553,511232413,2),(1553,530589613,1),(1553,540262813,2),(1553,562125613,1),(1553,571194014,2),(1553,592970414,1),(1553,602038814,2),(1553,624420014,1),(1553,634698015,2),(1553,938916022,1),(1553,951613222,2),(1553,970970422,1),(1553,971571622,2),(1553,1003024822,1),(1553,1013907622,2),(1554,-1767214412,2),(1554,-1206957600,1),(1554,-1191362400,2),(1554,-1175374800,1),(1554,-1159826400,2),(1554,-633819600,1),(1554,-622069200,2),(1554,-602283600,1),(1554,-591832800,2),(1554,-570747600,1),(1554,-560210400,2),(1554,-539125200,1),(1554,-531352800,2),(1554,-195426000,1),(1554,-184197600,2),(1554,-155163600,1),(1554,-150069600,2),(1554,-128898000,1),(1554,-121125600,2),(1554,-99954000,1),(1554,-89589600,2),(1554,-68418000,1),(1554,-57967200,2),(1554,499748413,1),(1554,511236013,2),(1554,530593213,1),(1554,540266413,2),(1554,562129213,1),(1554,571197614,2),(1554,592974014,1),(1554,602042414,2),(1554,624423614,1),(1554,634701615,2),(1554,656478015,1),(1554,666756016,2),(1554,687927616,1),(1554,697600816,2),(1554,719982017,1),(1554,728445617,2),(1554,750826818,1),(1554,761709618,2),(1554,782276419,1),(1554,793159219,2),(1554,813726019,1),(1554,824004020,2),(1554,844570820,1),(1554,856058420,2),(1554,876106821,1),(1554,888717621,2),(1554,908074821,1),(1554,919562422,2),(1554,938919622,1),(1554,951616822,2),(1554,970974022,1),(1554,982461622,2),(1554,1003028422,1),(1554,1013911222,2),(1554,1036292422,1),(1554,1045360822,2),(1554,1066532422,1),(1554,1076810422,2),(1554,1099364422,1),(1554,1108864822,2),(1554,1129431622,1),(1554,1140314423,2),(1554,1162695623,1),(1554,1172368823,2),(1554,1192330823,1),(1554,1203213623,2),(1554,1224385223,1),(1554,1234663224,2),(1554,1255834824,1),(1554,1266717624,2),(1554,1287284424,1),(1554,1298167224,2),(1554,1318734024,1),(1554,1330221624,2),(1554,1350788425,1),(1554,1361066425,2),(1554,1382238025,1),(1554,1392516025,2),(1554,1413687625,1),(1554,1424570425,2),(1554,1445137226,1),(1554,1456020026,2),(1554,1476586826,1),(1554,1487469627,2),(1554,1508036427,1),(1554,1518919227,2),(1554,1541300427,1),(1554,1550368827,2),(1554,1572750027,1),(1554,1581818427,2),(1554,1604199627,1),(1554,1613872827,2),(1554,1636254027,1),(1554,1645322427,2),(1554,1667703627,1),(1554,1677376827,2),(1554,1699153227,1),(1554,1708221627,2),(1554,1730602827,1),(1554,1739671227,2),(1554,1762052427,1),(1554,1771725627,2),(1554,1793502027,1),(1554,1803175227,2),(1554,1825556427,1),(1554,1834624827,2),(1554,1857006027,1),(1554,1866074427,2),(1554,1888455627,1),(1554,1897524027,2),(1554,1919905227,1),(1554,1928973627,2),(1554,1951354827,1),(1554,1960423227,2),(1554,1983409227,1),(1554,1992477627,2),(1554,2014858827,1),(1554,2024532027,2),(1554,2046308427,1),(1554,2055376827,2),(1554,2077758027,1),(1554,2086826427,2),(1554,2109207627,1),(1554,2118880827,2),(1554,2140657227,1),(1555,-1767211196,2),(1555,-1206954000,1),(1555,-1191358800,2),(1555,-1175371200,1),(1555,-1159822800,2),(1555,-633816000,1),(1555,-622065600,2),(1555,-602280000,1),(1555,-591829200,2),(1555,-570744000,1),(1555,-560206800,2),(1555,-539121600,1),(1555,-531349200,2),(1555,-191361600,1),(1555,-184194000,2),(1555,-155160000,1),(1555,-150066000,2),(1555,-128894400,1),(1555,-121122000,2),(1555,-99950400,1),(1555,-89586000,2),(1555,-68414400,1),(1555,-57963600,2),(1555,499752013,1),(1555,511239613,2),(1555,530596813,1),(1555,540270013,2),(1555,562132813,1),(1555,571201214,2),(1555,750830418,1),(1555,761713218,2),(1556,-1693706400,0),(1556,-1680483600,1),(1556,-1663455600,2),(1556,-1650150000,3),(1556,-1632006000,2),(1556,-1618700400,3),(1556,-938905200,2),(1556,-857257200,3),(1556,-844556400,2),(1556,-828226800,3),(1556,-812502000,2),(1556,-796777200,3),(1556,-781052400,2),(1556,-766623600,3),(1556,228877206,2),(1556,243997206,3),(1556,260326807,2),(1556,276051607,3),(1556,291776408,2),(1556,307501208,3),(1556,323830809,2),(1556,338950809,3),(1556,354675609,2),(1556,370400410,3),(1556,386125210,2),(1556,401850011,3),(1556,417574811,2),(1556,433299612,3),(1556,449024412,2),(1556,465354012,3),(1556,481078812,2),(1556,496803613,3),(1556,512528413,2),(1556,528253213,3),(1556,543978013,2),(1556,559702813,3),(1556,575427614,2),(1556,591152414,3),(1556,606877214,2),(1556,622602014,3),(1556,638326815,2),(1556,654656415,3),(1556,670381216,2),(1556,686106016,3),(1556,701830816,2),(1556,717555617,3),(1556,733280417,2),(1556,749005218,3),(1556,764730018,2),(1556,780454819,3),(1556,796179619,2),(1556,811904419,3),(1556,828234020,2),(1556,846378020,3),(1556,859683620,2),(1556,877827621,3),(1556,891133221,2),(1556,909277221,3),(1556,922582822,2),(1556,941331622,3),(1556,954032422,2),(1556,972781222,3),(1556,985482022,2),(1556,1004230822,3),(1556,1017536422,2),(1556,1035680422,3),(1556,1048986022,2),(1556,1067130022,3),(1556,1080435622,2),(1556,1099184422,3),(1556,1111885222,2),(1556,1130634022,3),(1556,1143334823,2),(1556,1162083623,3),(1556,1174784423,2),(1556,1193533223,3),(1556,1206838823,2),(1556,1224982823,3),(1556,1238288424,2),(1556,1256432424,3),(1556,1269738024,2),(1556,1288486824,3),(1556,1301187624,2),(1556,1319936424,3),(1556,1332637224,2),(1556,1351386025,3),(1556,1364691625,2),(1556,1382835625,3),(1556,1396141225,2),(1556,1414285225,3),(1556,1427590825,2),(1556,1445734826,3),(1556,1459040426,2),(1556,1477789226,3),(1556,1490490027,2),(1556,1509238827,3),(1556,1521939627,2),(1556,1540688427,3),(1556,1553994027,2),(1556,1572138027,3),(1556,1585443627,2),(1556,1603587627,3),(1556,1616893227,2),(1556,1635642027,3),(1556,1648342827,2),(1556,1667091627,3),(1556,1679792427,2),(1556,1698541227,3),(1556,1711846827,2),(1556,1729990827,3),(1556,1743296427,2),(1556,1761440427,3),(1556,1774746027,2),(1556,1792890027,3),(1556,1806195627,2),(1556,1824944427,3),(1556,1837645227,2),(1556,1856394027,3),(1556,1869094827,2),(1556,1887843627,3),(1556,1901149227,2),(1556,1919293227,3),(1556,1932598827,2),(1556,1950742827,3),(1556,1964048427,2),(1556,1982797227,3),(1556,1995498027,2),(1556,2014246827,3),(1556,2026947627,2),(1556,2045696427,3),(1556,2058397227,2),(1556,2077146027,3),(1556,2090451627,2),(1556,2108595627,3),(1556,2121901227,2),(1556,2140045227,3),(1557,-1633276800,0),(1557,-1615136400,1),(1557,-1601827200,0),(1557,-1583686800,1),(1557,-880214400,2),(1557,-769395600,3),(1557,-765392400,1),(1557,-84384000,0),(1557,-68662800,1),(1557,-52934400,0),(1557,-37213200,1),(1557,-21484800,0),(1557,-5763600,1),(1557,9964800,0),(1557,25686000,1),(1557,41414400,0),(1557,57740400,1),(1557,73468800,0),(1557,89190001,1),(1557,104918402,0),(1557,120639602,1),(1557,126691203,0),(1557,152089203,1),(1557,162374404,0),(1557,183538804,1),(1557,199267205,0),(1557,215593205,1),(1557,230716806,0),(1557,247042806,1),(1557,262771207,0),(1557,278492407,1),(1557,294220808,0),(1557,309942008,1),(1557,325670409,0),(1557,341391609,1),(1557,357120009,0),(1557,372841210,1),(1557,388569610,0),(1557,404895611,1),(1557,420019211,0),(1557,436345212,1),(1557,452073612,0),(1557,467794812,1),(1557,483523212,0),(1557,499244413,1),(1557,514972813,0),(1557,530694013,1),(1557,544608013,0),(1557,562143613,1),(1557,576057614,0),(1557,594198014,1),(1557,607507214,0),(1557,625647614,1),(1557,638956815,0),(1557,657097215,1),(1557,671011216,0),(1557,688546816,1),(1557,702460816,0),(1557,719996417,1),(1557,733910417,0),(1557,752050818,1),(1557,765360018,0),(1557,783500419,1),(1557,796809619,0),(1557,814950019,1),(1557,828864020,0),(1557,846399620,1),(1557,860313620,0),(1557,877849221,1),(1557,891763221,0),(1557,909298821,1),(1557,923212822,0),(1557,941353222,1),(1557,954662422,0),(1557,972802822,1),(1557,986112022,0),(1557,1004252422,1),(1557,1018166422,0),(1557,1035702022,1),(1557,1049616022,0),(1557,1067151622,1),(1557,1081065622,0),(1557,1099206022,1),(1557,1112515222,0),(1557,1130655622,1),(1557,1143964823,0),(1557,1162105223,1),(1557,1173600023,0),(1557,1194159623,1),(1557,1205049623,0),(1557,1225609223,1),(1557,1236499224,0),(1557,1257058824,1),(1557,1268553624,0),(1557,1289113224,1),(1557,1300003224,0),(1557,1320562824,1),(1557,1331452824,0),(1557,1352012425,1),(1557,1362902425,0),(1557,1383462025,1),(1557,1394352025,0),(1557,1414911625,1),(1557,1425801625,0),(1557,1446361226,1),(1557,1457856026,0),(1557,1478415626,1),(1557,1489305627,0),(1557,1509865227,1),(1557,1520755227,0),(1557,1541314827,1),(1557,1552204827,0),(1557,1572764427,1),(1557,1583654427,0),(1557,1604214027,1),(1557,1615708827,0),(1557,1636268427,1),(1557,1647158427,0),(1557,1667718027,1),(1557,1678608027,0),(1557,1699167627,1),(1557,1710057627,0),(1557,1730617227,1),(1557,1741507227,0),(1557,1762066827,1),(1557,1772956827,0),(1557,1793516427,1),(1557,1805011227,0),(1557,1825570827,1),(1557,1836460827,0),(1557,1857020427,1),(1557,1867910427,0),(1557,1888470027,1),(1557,1899360027,0),(1557,1919919627,1),(1557,1930809627,0),(1557,1951369227,1),(1557,1962864027,0),(1557,1983423627,1),(1557,1994313627,0),(1557,2014873227,1),(1557,2025763227,0),(1557,2046322827,1),(1557,2057212827,0),(1557,2077772427,1),(1557,2088662427,0),(1557,2109222027,1),(1557,2120112027,0),(1557,2140671627,1),(1558,-2131645536,2),(1558,-1696276800,1),(1558,-1680469200,2),(1558,-1632074400,1),(1558,-1615143600,2),(1558,-1566763200,1),(1558,-1557090000,2),(1558,-1535486400,1),(1558,-1524949200,2),(1558,-1504468800,1),(1558,-1493413200,2),(1558,-1472414400,1),(1558,-1461963600,2),(1558,-1440964800,1),(1558,-1429390800,2),(1558,-1409515200,1),(1558,-1396731600,2),(1558,-1376856000,1),(1558,-1366491600,2),(1558,-1346616000,1),(1558,-1333832400,2),(1558,-1313956800,1),(1558,-1303678800,2),(1558,-1282507200,1),(1558,-1272661200,2),(1558,-1251057600,1),(1558,-1240088400,2),(1558,-1219608000,1),(1558,-1207429200,2),(1558,-1188763200,1),(1558,-1175979600,2),(1558,-1157313600,1),(1558,-1143925200,2),(1558,-1124049600,1),(1558,-1113771600,2),(1558,-1091390400,1),(1558,-1081026000,2),(1558,-1059854400,1),(1558,-1050786000,2),(1558,-1030910400,1),(1558,-1018126800,2),(1558,-999460800,1),(1558,-986677200,2),(1558,-965592000,1),(1558,-955227600,2),(1558,-935956800,1),(1558,-923173200,2),(1558,-904507200,1),(1558,-891723600,2),(1558,-880221600,3),(1558,-769395600,4),(1558,-765399600,2),(1558,-747252000,1),(1558,-733950000,2),(1558,-715802400,1),(1558,-702500400,2),(1558,-684352800,1),(1558,-671050800,2),(1558,-652903200,1),(1558,-639601200,2),(1558,-589399200,1),(1558,-576097200,2),(1558,-557949600,1),(1558,-544647600,2),(1558,-526500000,1),(1558,-513198000,2),(1558,-495050400,1),(1558,-481748400,2),(1558,-431546400,1),(1558,-418244400,2),(1558,-400096800,1),(1558,-386794800,2),(1558,-368647200,1),(1558,-355345200,2),(1558,-337197600,1),(1558,-323895600,2),(1558,-242244000,1),(1558,-226522800,2),(1558,-210794400,1),(1558,-195073200,2),(1558,-179344800,1),(1558,-163623600,2),(1558,-147895200,1),(1558,-131569200,2),(1558,-116445600,1),(1558,-100119600,2),(1558,-84391200,1),(1558,-68670000,2),(1558,-52941600,1),(1558,-37220400,2),(1558,-21492000,1),(1558,-5770800,2),(1558,9957600,1),(1558,25678800,2),(1558,41407200,1),(1558,57733200,2),(1558,73461600,1),(1558,89182801,2),(1558,104911202,1),(1558,120632402,2),(1558,136360803,1),(1558,152082003,2),(1558,167810404,1),(1558,183531604,2),(1558,199260005,1),(1558,215586005,2),(1558,230709606,1),(1558,247035606,2),(1558,262764007,1),(1558,278485207,2),(1558,294213608,1),(1558,309934808,2),(1558,325663209,1),(1558,341384409,2),(1558,357112809,1),(1558,372834010,2),(1558,388562410,1),(1558,404888411,2),(1558,420012011,1),(1558,436338012,2),(1558,452066412,1),(1558,467787612,2),(1558,483516012,1),(1558,499237213,2),(1558,514965613,1),(1558,530686813,2),(1558,544600813,1),(1558,562136413,2),(1558,576050414,1),(1558,594190814,2),(1558,607500014,1),(1558,625640414,2),(1558,638949615,1),(1558,657090015,2),(1558,671004016,1),(1558,688539616,2),(1558,702453616,1),(1558,719989217,2),(1558,733903217,1),(1558,752043618,2),(1558,765352818,1),(1558,783493219,2),(1558,796802419,1),(1558,814942819,2),(1558,828856820,1),(1558,846392420,2),(1558,860306420,1),(1558,877842021,2),(1558,891756021,1),(1558,909291621,2),(1558,923205622,1),(1558,941346022,2),(1558,954655222,1),(1558,972795622,2),(1558,986104822,1),(1558,1004245222,2),(1558,1018159222,1),(1558,1035694822,2),(1558,1049608822,1),(1558,1067144422,2),(1558,1081058422,1),(1558,1099198822,2),(1558,1112508022,1),(1558,1130648422,2),(1558,1143957623,1),(1558,1162098023,2),(1558,1173592823,1),(1558,1194152423,2),(1558,1205042423,1),(1558,1225602023,2),(1558,1236492024,1),(1558,1257051624,2),(1558,1268546424,1),(1558,1289106024,2),(1558,1299996024,1),(1558,1320555624,2),(1558,1331445624,1),(1558,1352005225,2),(1558,1362895225,1),(1558,1383454825,2),(1558,1394344825,1),(1558,1414904425,2),(1558,1425794425,1),(1558,1446354026,2),(1558,1457848826,1),(1558,1478408426,2),(1558,1489298427,1),(1558,1509858027,2),(1558,1520748027,1),(1558,1541307627,2),(1558,1552197627,1),(1558,1572757227,2),(1558,1583647227,1),(1558,1604206827,2),(1558,1615701627,1),(1558,1636261227,2),(1558,1647151227,1),(1558,1667710827,2),(1558,1678600827,1),(1558,1699160427,2),(1558,1710050427,1),(1558,1730610027,2),(1558,1741500027,1),(1558,1762059627,2),(1558,1772949627,1),(1558,1793509227,2),(1558,1805004027,1),(1558,1825563627,2),(1558,1836453627,1),(1558,1857013227,2),(1558,1867903227,1),(1558,1888462827,2),(1558,1899352827,1),(1558,1919912427,2),(1558,1930802427,1),(1558,1951362027,2),(1558,1962856827,1),(1558,1983416427,2),(1558,1994306427,1),(1558,2014866027,2),(1558,2025756027,1),(1558,2046315627,2),(1558,2057205627,1),(1558,2077765227,2),(1558,2088655227,1),(1558,2109214827,2),(1558,2120104827,1),(1558,2140664427,2),(1559,-1694368800,0),(1559,-1681671600,1),(1559,-1632067200,0),(1559,-1615136400,1),(1559,-1029686400,0),(1559,-1018198800,1),(1559,-880214400,2),(1559,-769395600,3),(1559,-765392400,1),(1559,-746035200,0),(1559,-732733200,1),(1559,-715795200,0),(1559,-702493200,1),(1559,-684345600,0),(1559,-671043600,1),(1559,-652896000,0),(1559,-639594000,1),(1559,-620755200,0),(1559,-607626000,1),(1559,-589392000,0),(1559,-576090000,1),(1559,-557942400,0),(1559,-544640400,1),(1559,-526492800,0),(1559,-513190800,1),(1559,-495043200,0),(1559,-481741200,1),(1559,-463593600,0),(1559,-450291600,1),(1559,-431539200,0),(1559,-418237200,1),(1559,-400089600,0),(1559,-386787600,1),(1559,-368640000,0),(1559,-355338000,1),(1559,-337190400,0),(1559,-321469200,1),(1559,-305740800,0),(1559,-292438800,1),(1559,-210787200,0),(1559,-198090000,1),(1559,-116438400,4),(1559,-100108800,5),(1559,-84384000,4),(1559,-68659200,5),(1559,-52934400,4),(1559,-37209600,5),(1559,-21484800,4),(1559,-5760000,5),(1559,9964800,4),(1559,25689600,5),(1559,41414400,4),(1559,57744000,5),(1559,73468800,4),(1559,89193601,5),(1559,104918402,4),(1559,120643202,5),(1559,136368003,4),(1559,152092803,5),(1559,167817604,4),(1559,183542404,5),(1559,199267205,4),(1559,215596805,5),(1559,230716806,4),(1559,247046406,5),(1559,262771207,4),(1559,278496007,5),(1559,294220808,4),(1559,309945608,5),(1559,325670409,4),(1559,341395209,5),(1559,357120009,4),(1559,372844810,5),(1559,388569610,4),(1559,404899211,5),(1559,420019211,4),(1559,436348812,5),(1559,452073612,4),(1559,467798412,5),(1559,483523212,4),(1559,499248013,5),(1559,514972813,4),(1559,530697613,5),(1559,544608013,4),(1559,562147213,5),(1559,576057614,4),(1559,594201614,5),(1559,607507214,4),(1559,625651214,5),(1559,638956815,4),(1559,657100815,5),(1559,671011216,4),(1559,688550416,5),(1559,702460816,4),(1559,720000017,5),(1559,733910417,4),(1559,752054418,5),(1559,765360018,4),(1559,783504019,5),(1559,796809619,4),(1559,814953619,5),(1559,828864020,4),(1559,846403220,5),(1559,860313620,4),(1559,877852821,5),(1559,891763221,4),(1559,909302421,5),(1559,923212822,4),(1559,941356822,5),(1559,954662422,4),(1559,972806422,5),(1559,986112022,4),(1559,1004256022,5),(1559,1018166422,4),(1559,1035705622,5),(1559,1049616022,4),(1559,1067155222,5),(1559,1081065622,4),(1559,1099209622,5),(1559,1112515222,4),(1559,1130659222,5),(1559,1136095223,1),(1559,1143964823,0),(1559,1162105223,1),(1559,1173600023,0),(1559,1194159623,1),(1559,1205049623,0),(1559,1225609223,1),(1559,1236499224,0),(1559,1257058824,1),(1559,1268553624,0),(1559,1289113224,1),(1559,1300003224,0),(1559,1320562824,1),(1559,1331452824,0),(1559,1352012425,1),(1559,1362902425,0),(1559,1383462025,1),(1559,1394352025,0),(1559,1414911625,1),(1559,1425801625,0),(1559,1446361226,1),(1559,1457856026,0),(1559,1478415626,1),(1559,1489305627,0),(1559,1509865227,1),(1559,1520755227,0),(1559,1541314827,1),(1559,1552204827,0),(1559,1572764427,1),(1559,1583654427,0),(1559,1604214027,1),(1559,1615708827,0),(1559,1636268427,1),(1559,1647158427,0),(1559,1667718027,1),(1559,1678608027,0),(1559,1699167627,1),(1559,1710057627,0),(1559,1730617227,1),(1559,1741507227,0),(1559,1762066827,1),(1559,1772956827,0),(1559,1793516427,1),(1559,1805011227,0),(1559,1825570827,1),(1559,1836460827,0),(1559,1857020427,1),(1559,1867910427,0),(1559,1888470027,1),(1559,1899360027,0),(1559,1919919627,1),(1559,1930809627,0),(1559,1951369227,1),(1559,1962864027,0),(1559,1983423627,1),(1559,1994313627,0),(1559,2014873227,1),(1559,2025763227,0),(1559,2046322827,1),(1559,2057212827,0),(1559,2077772427,1),(1559,2088662427,0),(1559,2109222027,1),(1559,2120112027,0),(1559,2140671627,1),(1560,-1632070800,0),(1560,-1615140000,1),(1560,-1601753400,0),(1560,-1583697600,1),(1560,-1567357200,0),(1560,-1554667200,1),(1560,-1534698000,0),(1560,-1524074400,1),(1560,-1503248400,0),(1560,-1492365600,1),(1560,-1471798800,0),(1560,-1460916000,1),(1560,-1440954000,0),(1560,-1428861600,1),(1560,-1409504400,0),(1560,-1397412000,1),(1560,-1378054800,0),(1560,-1365962400,1),(1560,-1346605200,0),(1560,-1333908000,1),(1560,-1315155600,0),(1560,-1301853600,1),(1560,-1283706000,0),(1560,-1270404000,1),(1560,-1252256400,0),(1560,-1238954400,1),(1560,-1220806800,0),(1560,-1207504800,1),(1560,-1188752400,0),(1560,-1176055200,1),(1560,-1157302800,0),(1560,-1144000800,1),(1560,-1125853200,0),(1560,-1112551200,1),(1560,-1094403600,0),(1560,-1081101600,1),(1560,-1062954000,0),(1560,-1049652000,1),(1560,-1031504400,0),(1560,-1018202400,1),(1560,-1000054800,0),(1560,-986752800,1),(1560,-968000400,0),(1560,-955303200,1),(1560,-936550800,0),(1560,-880218000,2),(1560,-769395600,3),(1560,-765396000,1),(1560,-747248400,0),(1560,-733946400,1),(1560,-715806000,0),(1560,-702504000,1),(1560,-684356400,0),(1560,-671054400,1),(1560,-652906800,0),(1560,-634161600,1),(1560,-620845200,0),(1560,-602704800,1),(1560,-589395600,0),(1560,-576093600,1),(1560,-557946000,0),(1560,-544644000,1),(1560,-526496400,0),(1560,-513194400,1),(1560,-495046800,0),(1560,-481744800,1),(1560,-463597200,0),(1560,-450295200,1),(1560,-431542800,0),(1560,-418240800,1),(1560,-400093200,0),(1560,-384372000,1),(1560,-368643600,0),(1560,-352922400,1),(1560,-337194000,0),(1560,-321472800,1),(1560,-305744400,0),(1560,-289418400,1),(1560,-273690000,0),(1560,-257968800,1),(1560,-242240400,0),(1560,-226519200,1),(1560,-210790800,0),(1560,-195069600,1),(1560,-179341200,0),(1560,-163620000,1),(1560,-147891600,0),(1560,-131565600,1),(1560,-116442000,0),(1560,-100116000,1),(1560,-84387600,0),(1560,-68666400,1),(1560,-52938000,0),(1560,-37216800,1),(1560,-21488400,0),(1560,-5767200,1),(1560,9961200,0),(1560,25682400,1),(1560,41410800,0),(1560,57736800,1),(1560,73465200,0),(1560,89186401,1),(1560,104914802,0),(1560,120636002,1),(1560,136364403,0),(1560,152085603,1),(1560,167814004,0),(1560,183535204,1),(1560,199263605,0),(1560,215589605,1),(1560,230713206,0),(1560,247039206,1),(1560,262767607,0),(1560,278488807,1),(1560,294217208,0),(1560,309938408,1),(1560,325666809,0),(1560,341388009,1),(1560,357116409,0),(1560,372837610,1),(1560,388566010,0),(1560,404892011,1),(1560,420015611,0),(1560,436341612,1),(1560,452070012,0),(1560,467791212,1),(1560,483519612,0),(1560,499240813,1),(1560,514969213,0),(1560,530690413,1),(1560,544604413,0),(1560,562140013,1),(1560,576054014,0),(1560,594194414,1),(1560,607503614,0),(1560,625644014,1),(1560,638953215,0),(1560,657093615,1),(1560,671007616,0),(1560,688543216,1),(1560,702457216,0),(1560,719992817,1),(1560,733906817,0),(1560,752047218,1),(1560,765356418,0),(1560,783496819,1),(1560,796806019,0),(1560,814946419,1),(1560,828860420,0),(1560,846396020,1),(1560,860310020,0),(1560,877845621,1),(1560,891759621,0),(1560,909295221,1),(1560,923209222,0),(1560,941349622,1),(1560,954658822,0),(1560,972799222,1),(1560,986108422,0),(1560,1004248822,1),(1560,1018162822,0),(1560,1035698422,1),(1560,1049612422,0),(1560,1067148022,1),(1560,1081062022,0),(1560,1099202422,1),(1560,1112511622,0),(1560,1130652022,1),(1560,1143961223,0),(1560,1162101623,1),(1560,1173596423,0),(1560,1194156023,1),(1560,1205046023,0),(1560,1225605623,1),(1560,1236495624,0),(1560,1257055224,1),(1560,1268550024,0),(1560,1289109624,1),(1560,1299999624,0),(1560,1320559224,1),(1560,1331449224,0),(1560,1352008825,1),(1560,1362898825,0),(1560,1383458425,1),(1560,1394348425,0),(1560,1414908025,1),(1560,1425798025,0),(1560,1446357626,1),(1560,1457852426,0),(1560,1478412026,1),(1560,1489302027,0),(1560,1509861627,1),(1560,1520751627,0),(1560,1541311227,1),(1560,1552201227,0),(1560,1572760827,1),(1560,1583650827,0),(1560,1604210427,1),(1560,1615705227,0),(1560,1636264827,1),(1560,1647154827,0),(1560,1667714427,1),(1560,1678604427,0),(1560,1699164027,1),(1560,1710054027,0),(1560,1730613627,1),(1560,1741503627,0),(1560,1762063227,1),(1560,1772953227,0),(1560,1793512827,1),(1560,1805007627,0),(1560,1825567227,1),(1560,1836457227,0),(1560,1857016827,1),(1560,1867906827,0),(1560,1888466427,1),(1560,1899356427,0),(1560,1919916027,1),(1560,1930806027,0),(1560,1951365627,1),(1560,1962860427,0),(1560,1983420027,1),(1560,1994310027,0),(1560,2014869627,1),(1560,2025759627,0),(1560,2046319227,1),(1560,2057209227,0),(1560,2077768827,1),(1560,2088658827,0),(1560,2109218427,1),(1560,2120108427,0),(1560,2140668027,1),(1561,-1998663968,2),(1561,-1632063600,1),(1561,-1615132800,2),(1561,-1600614000,1),(1561,-1596816000,2),(1561,-1567954800,1),(1561,-1551628800,2),(1561,-1536505200,1),(1561,-1523203200,2),(1561,-1504450800,1),(1561,-1491753600,2),(1561,-1473001200,1),(1561,-1459699200,2),(1561,-880210800,3),(1561,-769395600,4),(1561,-765388800,2),(1561,-715791600,1),(1561,-702489600,2),(1561,-84380400,1),(1561,-68659200,2),(1561,-21481200,1),(1561,-5760000,2),(1561,73472400,1),(1561,89193601,2),(1561,104922002,1),(1561,120643202,2),(1561,136371603,1),(1561,152092803,2),(1561,167821204,1),(1561,183542404,2),(1561,199270805,1),(1561,215596805,2),(1561,230720406,1),(1561,247046406,2),(1561,262774807,1),(1561,278496007,2),(1561,294224408,1),(1561,309945608,2),(1561,325674009,1),(1561,341395209,2),(1561,357123609,1),(1561,372844810,2),(1561,388573210,1),(1561,404899211,2),(1561,420022811,1),(1561,436348812,2),(1561,452077212,1),(1561,467798412,2),(1561,483526812,1),(1561,499248013,2),(1561,514976413,1),(1561,530697613,2),(1561,544611613,1),(1561,562147213,2),(1561,576061214,1),(1561,594201614,2),(1561,607510814,1),(1561,625651214,2),(1561,638960415,1),(1561,657100815,2),(1561,671014816,1),(1561,688550416,2),(1561,702464416,1),(1561,720000017,2),(1561,733914017,1),(1561,752054418,2),(1561,765363618,1),(1561,783504019,2),(1561,796813219,1),(1561,814953619,2),(1561,828867620,1),(1561,846403220,2),(1561,860317220,1),(1561,877852821,2),(1561,891766821,1),(1561,909302421,2),(1561,923216422,1),(1561,941356822,2),(1561,954666022,1),(1561,972806422,2),(1561,986115622,1),(1561,1004256022,2),(1561,1018170022,1),(1561,1035705622,2),(1561,1049619622,1),(1561,1067155222,2),(1561,1081069222,1),(1561,1099209622,2),(1561,1112518822,1),(1561,1130659222,2),(1561,1143968423,1),(1561,1162108823,2),(1561,1173603623,1),(1561,1194163223,2),(1561,1205053223,1),(1561,1225612823,2),(1561,1236502824,1),(1561,1257062424,2),(1561,1268557224,1),(1561,1289116824,2),(1561,1300006824,1),(1561,1320566424,2),(1561,1331456424,1),(1561,1352016025,2),(1561,1362906025,1),(1561,1383465625,2),(1561,1394355625,1),(1561,1414915225,2),(1561,1425805225,1),(1561,1446364826,2),(1561,1457859626,1),(1561,1478419226,2),(1561,1489309227,1),(1561,1509868827,2),(1561,1520758827,1),(1561,1541318427,2),(1561,1552208427,1),(1561,1572768027,2),(1561,1583658027,1),(1561,1604217627,2),(1561,1615712427,1),(1561,1636272027,2),(1561,1647162027,1),(1561,1667721627,2),(1561,1678611627,1),(1561,1699171227,2),(1561,1710061227,1),(1561,1730620827,2),(1561,1741510827,1),(1561,1762070427,2),(1561,1772960427,1),(1561,1793520027,2),(1561,1805014827,1),(1561,1825574427,2),(1561,1836464427,1),(1561,1857024027,2),(1561,1867914027,1),(1561,1888473627,2),(1561,1899363627,1),(1561,1919923227,2),(1561,1930813227,1),(1561,1951372827,2),(1561,1962867627,1),(1561,1983427227,2),(1561,1994317227,1),(1561,2014876827,2),(1561,2025766827,1),(1561,2046326427,2),(1561,2057216427,1),(1561,2077776027,2),(1561,2088666027,1),(1561,2109225627,2),(1561,2120115627,1),(1561,2140675227,2),(1562,-1664130548,0),(1562,-1650137348,1),(1562,-1632076148,0),(1562,-1615145348,1),(1562,-1598650148,0),(1562,-1590100148,1),(1562,-1567286948,0),(1562,-1551565748,1),(1562,-1535837348,0),(1562,-1520116148,1),(1562,-1503782948,0),(1562,-1488666548,1),(1562,-1472333348,0),(1562,-1457216948,1),(1562,-1440883748,0),(1562,-1425767348,1),(1562,-1409434148,0),(1562,-1394317748,1),(1562,-1377984548,0),(1562,-1362263348,1),(1562,-1346534948,0),(1562,-1330813748,1),(1562,-1314480548,0),(1562,-1299364148,1),(1562,-1283030948,0),(1562,-1267914548,1),(1562,-1251581348,0),(1562,-1236464948,1),(1562,-1220131748,0),(1562,-1205015348,1),(1562,-1188682148,0),(1562,-1172960948,1),(1562,-1156627748,0),(1562,-1141511348,1),(1562,-1125178148,0),(1562,-1110061748,1),(1562,-1096921748,3),(1562,-1093728600,2),(1562,-1078612200,3),(1562,-1061670600,2),(1562,-1048973400,3),(1562,-1030221000,2),(1562,-1017523800,3),(1562,-998771400,2),(1562,-986074200,3),(1562,-966717000,2),(1562,-954624600,3),(1562,-935267400,2),(1562,-922570200,3),(1562,-903817800,2),(1562,-891120600,3),(1562,-872368200,5),(1562,-769395600,4),(1562,-765401400,3),(1562,-746044200,2),(1562,-733347000,3),(1562,-714594600,2),(1562,-701897400,3),(1562,-683145000,2),(1562,-670447800,3),(1562,-651695400,2),(1562,-638998200,3),(1562,-619641000,2),(1562,-606943800,3),(1562,-589401000,2),(1562,-576099000,3),(1562,-557951400,2),(1562,-544649400,3),(1562,-526501800,2),(1562,-513199800,3),(1562,-495052200,2),(1562,-481750200,3),(1562,-463602600,2),(1562,-450300600,3),(1562,-431548200,2),(1562,-418246200,3),(1562,-400098600,2),(1562,-386796600,3),(1562,-368649000,2),(1562,-355347000,3),(1562,-337199400,2),(1562,-323897400,3),(1562,-305749800,2),(1562,-289423800,3),(1562,-273695400,2),(1562,-257974200,3),(1562,-242245800,2),(1562,-226524600,3),(1562,-210796200,2),(1562,-195075000,3),(1562,-179346600,2),(1562,-163625400,3),(1562,-147897000,2),(1562,-131571000,3),(1562,-116447400,2),(1562,-100121400,3),(1562,-84393000,2),(1562,-68671800,3),(1562,-52943400,2),(1562,-37222200,3),(1562,-21493800,2),(1562,-5772600,3),(1562,9955800,2),(1562,25677000,3),(1562,41405400,2),(1562,57731400,3),(1562,73459800,2),(1562,89181001,3),(1562,104909402,2),(1562,120630602,3),(1562,136359003,2),(1562,152080203,3),(1562,167808604,2),(1562,183529804,3),(1562,199258205,2),(1562,215584205,3),(1562,230707806,2),(1562,247033806,3),(1562,262762207,2),(1562,278483407,3),(1562,294211808,2),(1562,309933008,3),(1562,325661409,2),(1562,341382609,3),(1562,357111009,2),(1562,372832210,3),(1562,388560610,2),(1562,404886611,3),(1562,420010211,2),(1562,436336212,3),(1562,452064612,2),(1562,467785812,3),(1562,483514212,2),(1562,499235413,3),(1562,514963813,2),(1562,530685013,3),(1562,544591873,2),(1562,562127473,3),(1562,576041474,6),(1562,594178274,3),(1562,607491074,2),(1562,625631474,3),(1562,638940675,2),(1562,657081075,3),(1562,670995076,2),(1562,688530676,3),(1562,702444676,2),(1562,719980277,3),(1562,733894277,2),(1562,752034678,3),(1562,765343878,2),(1562,783484279,3),(1562,796793479,2),(1562,814933879,3),(1562,828847880,2),(1562,846383480,3),(1562,860297480,2),(1562,877833081,3),(1562,891747081,2),(1562,909282681,3),(1562,923196682,2),(1562,941337082,3),(1562,954646282,2),(1562,972786682,3),(1562,986095882,2),(1562,1004236282,3),(1562,1018150282,2),(1562,1035685882,3),(1562,1049599882,2),(1562,1067135482,3),(1562,1081049482,2),(1562,1099189882,3),(1562,1112499082,2),(1562,1130639482,3),(1562,1143948683,2),(1562,1162089083,3),(1562,1173583883,2),(1562,1194143483,3),(1562,1205033483,2),(1562,1225593083,3),(1562,1236483084,2),(1562,1257042684,3),(1562,1268537484,2),(1562,1289097084,3),(1562,1299987084,2),(1562,1320553824,3),(1562,1331443824,2),(1562,1352003425,3),(1562,1362893425,2),(1562,1383453025,3),(1562,1394343025,2),(1562,1414902625,3),(1562,1425792625,2),(1562,1446352226,3),(1562,1457847026,2),(1562,1478406626,3),(1562,1489296627,2),(1562,1509856227,3),(1562,1520746227,2),(1562,1541305827,3),(1562,1552195827,2),(1562,1572755427,3),(1562,1583645427,2),(1562,1604205027,3),(1562,1615699827,2),(1562,1636259427,3),(1562,1647149427,2),(1562,1667709027,3),(1562,1678599027,2),(1562,1699158627,3),(1562,1710048627,2),(1562,1730608227,3),(1562,1741498227,2),(1562,1762057827,3),(1562,1772947827,2),(1562,1793507427,3),(1562,1805002227,2),(1562,1825561827,3),(1562,1836451827,2),(1562,1857011427,3),(1562,1867901427,2),(1562,1888461027,3),(1562,1899351027,2),(1562,1919910627,3),(1562,1930800627,2),(1562,1951360227,3),(1562,1962855027,2),(1562,1983414627,3),(1562,1994304627,2),(1562,2014864227,3),(1562,2025754227,2),(1562,2046313827,3),(1562,2057203827,2),(1562,2077763427,3),(1562,2088653427,2),(1562,2109213027,3),(1562,2120103027,2),(1562,2140662627,3),(1563,-1632060000,0),(1563,-1615129200,1),(1563,-880207200,2),(1563,-769395600,3),(1563,-765385200,1),(1563,-747237600,0),(1563,-732726000,1),(1563,-715788000,0),(1563,-702486000,1),(1563,-684338400,0),(1563,-671036400,1),(1563,-652888800,0),(1563,-639586800,1),(1563,-620834400,0),(1563,-608137200,1),(1563,-589384800,0),(1563,-576082800,1),(1563,-557935200,0),(1563,-544633200,1),(1563,-526485600,0),(1563,-513183600,1),(1563,-495036000,0),(1563,-481734000,1),(1563,-463586400,0),(1563,-450284400,1),(1563,-431532000,0),(1563,-418230000,1),(1563,-400082400,0),(1563,-386780400,1),(1563,-368632800,0),(1563,-355330800,1),(1563,-337183200,0),(1563,-323881200,1),(1563,-305733600,0),(1563,-292431600,1),(1563,-273679200,0),(1563,-260982000,1),(1563,-242229600,0),(1563,-226508400,1),(1563,-210780000,0),(1563,-195058800,1),(1563,-179330400,0),(1563,-163609200,1),(1563,-147880800,0),(1563,-131554800,1),(1563,-116431200,0),(1563,-100105200,1),(1563,-84376800,0),(1563,-68655600,1),(1563,-52927200,0),(1563,-37206000,1),(1563,-21477600,0),(1563,-5756400,1),(1563,9972000,0),(1563,25693200,1),(1563,41421600,0),(1563,57747600,1),(1563,73476000,0),(1563,89197201,1),(1563,104925602,0),(1563,120646802,1),(1563,136375203,0),(1563,152096403,1),(1563,167824804,0),(1563,183546004,1),(1563,199274405,0),(1563,215600405,1),(1563,230724006,0),(1563,247050006,1),(1563,262778407,0),(1563,278499607,1),(1563,294228008,0),(1563,309949208,1),(1563,325677609,0),(1563,341398809,1),(1563,357127209,0),(1563,372848410,1),(1563,388576810,0),(1563,404902811,1),(1563,420026411,0),(1563,436352412,1),(1563,452080812,0),(1563,467802012,1),(1563,483530412,0),(1563,499251613,1),(1563,514980013,0),(1563,530701213,1),(1563,544615213,0),(1563,562150813,1),(1563,576064814,0),(1563,594205214,1),(1563,607514414,0),(1563,625654814,1),(1563,638964015,0),(1563,657104415,1),(1563,671018416,0),(1563,688554016,1),(1563,702468016,0),(1563,720003617,1),(1563,733917617,0),(1563,752058018,1),(1563,765367218,0),(1563,783507619,1),(1563,796816819,0),(1563,814957219,1),(1563,828871220,0),(1563,846406820,1),(1563,860320820,0),(1563,877856421,1),(1563,891770421,0),(1563,909306021,1),(1563,923220022,0),(1563,941360422,1),(1563,954669622,0),(1563,972810022,1),(1563,986119222,0),(1563,1004259622,1),(1563,1018173622,0),(1563,1035709222,1),(1563,1049623222,0),(1563,1067158822,1),(1563,1081072822,0),(1563,1099213222,1),(1563,1112522422,0),(1563,1130662822,1),(1563,1143972023,0),(1563,1162112423,1),(1563,1173607223,0),(1563,1194166823,1),(1563,1205056823,0),(1563,1225616423,1),(1563,1236506424,0),(1563,1257066024,1),(1563,1268560824,0),(1563,1289120424,1),(1563,1300010424,0),(1563,1320570024,1),(1563,1331460024,0),(1563,1352019625,1),(1563,1362909625,0),(1563,1383469225,1),(1563,1394359225,0),(1563,1414918825,1),(1563,1425808825,0),(1563,1446368426,1),(1563,1457863226,0),(1563,1478422826,1),(1563,1489312827,0),(1563,1509872427,1),(1563,1520762427,0),(1563,1541322027,1),(1563,1552212027,0),(1563,1572771627,1),(1563,1583661627,0),(1563,1604221227,1),(1563,1615716027,0),(1563,1636275627,1),(1563,1647165627,0),(1563,1667725227,1),(1563,1678615227,0),(1563,1699174827,1),(1563,1710064827,0),(1563,1730624427,1),(1563,1741514427,0),(1563,1762074027,1),(1563,1772964027,0),(1563,1793523627,1),(1563,1805018427,0),(1563,1825578027,1),(1563,1836468027,0),(1563,1857027627,1),(1563,1867917627,0),(1563,1888477227,1),(1563,1899367227,0),(1563,1919926827,1),(1563,1930816827,0),(1563,1951376427,1),(1563,1962871227,0),(1563,1983430827,1),(1563,1994320827,0),(1563,2014880427,1),(1563,2025770427,0),(1563,2046330027,1),(1563,2057220027,0),(1563,2077779627,1),(1563,2088669627,0),(1563,2109229227,1),(1563,2120119227,0),(1563,2140678827,1),(1564,-2030202084,2),(1564,-1632063600,1),(1564,-1615132800,2),(1564,-1251651600,1),(1564,-1238349600,2),(1564,-1220202000,1),(1564,-1206900000,2),(1564,-1188752400,1),(1564,-1175450400,2),(1564,-1156698000,1),(1564,-1144000800,2),(1564,-1125248400,1),(1564,-1111946400,2),(1564,-1032714000,1),(1564,-1016992800,2),(1564,-1001264400,1),(1564,-986148000,2),(1564,-969814800,1),(1564,-954093600,2),(1564,-937760400,1),(1564,-922039200,2),(1564,-906310800,1),(1564,-890589600,2),(1564,-880210800,3),(1564,-769395600,4),(1564,-765388800,2),(1564,-748450800,1),(1564,-732729600,2),(1564,-715791600,1),(1564,-702489600,2),(1564,-684342000,1),(1564,-671040000,2),(1564,-652892400,1),(1564,-639590400,2),(1564,-620838000,1),(1564,-608140800,2),(1564,-589388400,1),(1564,-576086400,2),(1564,-557938800,1),(1564,-544636800,2),(1564,-526489200,1),(1564,-513187200,2),(1564,-495039600,1),(1564,-481737600,2),(1564,-463590000,1),(1564,-450288000,2),(1564,-431535600,1),(1564,-418233600,2),(1564,-400086000,1),(1564,-386784000,2),(1564,-337186800,1),(1564,-321465600,2),(1564,-305737200,5),(1565,-1632056400,0),(1565,-1615125600,1),(1565,-1596978000,0),(1565,-1583164800,1),(1565,-880203600,2),(1565,-769395600,3),(1565,-765381600,1),(1565,-147884400,4),(1565,-131554800,1),(1565,-81961200,5),(1565,325677609,6),(1565,341398809,5),(1565,357127209,6),(1565,372848410,5),(1565,388576810,6),(1565,404902811,5),(1565,420026411,6),(1565,436352412,5),(1565,452080812,6),(1565,467802012,5),(1565,483530412,6),(1565,499251613,5),(1565,514980013,6),(1565,530701213,5),(1565,544615213,6),(1565,562150813,5),(1565,576064814,6),(1565,594205214,5),(1565,607514414,6),(1565,625654814,5),(1565,638964015,6),(1565,657104415,5),(1565,671018416,6),(1565,688554016,5),(1565,702468016,6),(1565,720003617,5),(1565,733917617,6),(1565,752058018,5),(1565,765367218,6),(1565,783507619,5),(1565,796816819,6),(1565,814957219,5),(1565,828871220,6),(1565,846406820,5),(1565,860320820,6),(1565,877856421,5),(1565,891770421,6),(1565,909306021,5),(1565,923220022,6),(1565,941360422,5),(1565,954669622,6),(1565,972810022,5),(1565,986119222,6),(1565,1004259622,5),(1565,1018173622,6),(1565,1035709222,5),(1565,1049623222,6),(1565,1067158822,5),(1565,1081072822,6),(1565,1099213222,5),(1565,1112522422,6),(1565,1130662822,5),(1565,1143972023,6),(1565,1162112423,5),(1565,1173607223,6),(1565,1194166823,5),(1565,1205056823,6),(1565,1225616423,5),(1565,1236506424,6),(1565,1257066024,5),(1565,1268560824,6),(1565,1289120424,5),(1565,1300010424,6),(1565,1320570024,5),(1565,1331460024,6),(1565,1352019625,5),(1565,1362909625,6),(1565,1383469225,5),(1565,1394359225,6),(1565,1414918825,5),(1565,1425808825,6),(1565,1446368426,5),(1565,1457863226,6),(1565,1478422826,5),(1565,1489312827,6),(1565,1509872427,5),(1565,1520762427,6),(1565,1541322027,5),(1565,1552212027,6),(1565,1572771627,5),(1565,1583661627,6),(1565,1604221227,5),(1565,1615716027,6),(1565,1636275627,5),(1565,1647165627,6),(1565,1667725227,5),(1565,1678615227,6),(1565,1699174827,5),(1565,1710064827,6),(1565,1730624427,5),(1565,1741514427,6),(1565,1762074027,5),(1565,1772964027,6),(1565,1793523627,5),(1565,1805018427,6),(1565,1825578027,5),(1565,1836468027,6),(1565,1857027627,5),(1565,1867917627,6),(1565,1888477227,5),(1565,1899367227,6),(1565,1919926827,5),(1565,1930816827,6),(1565,1951376427,5),(1565,1962871227,6),(1565,1983430827,5),(1565,1994320827,6),(1565,2014880427,5),(1565,2025770427,6),(1565,2046330027,5),(1565,2057220027,6),(1565,2077779627,5),(1565,2088669627,6),(1565,2109229227,5),(1565,2120119227,6),(1565,2140678827,5),(1566,-1892661434,1),(1566,-1688410800,0),(1566,-1619205434,2),(1566,-1593806400,0),(1566,-1335986234,3),(1566,-1317585600,1),(1566,-1304362800,3),(1566,-1286049600,1),(1566,-1272826800,3),(1566,-1254513600,1),(1566,-1241290800,3),(1566,-1222977600,1),(1566,-1209754800,3),(1566,-1191355200,1),(1566,-1178132400,2),(1566,-870552000,1),(1566,-865278000,2),(1566,-740520000,4),(1566,-736376400,2),(1566,-718056000,1),(1566,-713649600,2),(1566,-36619200,5),(1566,-23922000,6),(1566,-3355200,5),(1566,7527600,6),(1566,24465600,5),(1566,37767600,6),(1566,55915200,5),(1566,69217200,6),(1566,87969601,5),(1566,100666802,6),(1566,118209602,5),(1566,132116403,6),(1566,150868803,5),(1566,163566004,6),(1566,182318404,5),(1566,195620405,6),(1566,213768005,5),(1566,227070006,6),(1566,245217606,5),(1566,258519607,6),(1566,277272007,5),(1566,289969208,6),(1566,308721608,5),(1566,321418809,6),(1566,340171209,5),(1566,353473209,6),(1566,371620810,5),(1566,384922810,6),(1566,403070411,5),(1566,416372411,6),(1566,434520012,5),(1566,447822012,6),(1566,466574412,5),(1566,479271612,6),(1566,498024013,5),(1566,510721213,6),(1566,529473613,5),(1566,545194813,6),(1566,560923213,5),(1566,574225214,6),(1566,592372814,5),(1566,605674814,6),(1566,624427214,5),(1566,637124415,6),(1566,653457615,5),(1566,668574016,6),(1566,687326416,5),(1566,700628416,6),(1566,718776017,5),(1566,732078017,6),(1566,750225618,5),(1566,763527618,6),(1566,781675219,5),(1566,794977219,6),(1566,813729619,5),(1566,826426820,6),(1566,845179220,5),(1566,859690820,6),(1566,876628821,5),(1566,889930821,6),(1566,906868821,5),(1566,923194822,6),(1566,939528022,5),(1566,952830022,6),(1566,971582422,5),(1566,984279622,6),(1566,1003032022,5),(1566,1015729222,6),(1566,1034481622,5),(1566,1047178822,6),(1566,1065931222,5),(1566,1079233222,6),(1566,1097380822,5),(1566,1110682822,6),(1566,1128830422,5),(1566,1142132423,6),(1566,1160884823,5),(1566,1173582023,6),(1566,1192334423,5),(1566,1206846023,6),(1566,1223784023,5),(1566,1237086024,6),(1566,1255233624,5),(1566,1270350024,6),(1566,1286683224,5),(1566,1304823624,6),(1566,1313899224,5),(1566,1335668424,6),(1566,1346558425,5),(1566,1367118025,6),(1566,1378612825,5),(1566,1398567625,6),(1566,1410062425,5),(1566,1463281226,6),(1566,1471147226,5),(1566,1494730827,6),(1566,1502596827,5),(1566,1526180427,6),(1566,1534046427,5),(1566,1557630027,6),(1566,1565496027,5),(1566,1589079627,6),(1566,1596945627,5),(1566,1620529227,6),(1566,1629000027,5),(1566,1652583627,6),(1566,1660449627,5),(1566,1684033227,6),(1566,1691899227,5),(1566,1715482827,6),(1566,1723348827,5),(1566,1746932427,6),(1566,1754798427,5),(1566,1778382027,6),(1566,1786248027,5),(1566,1809831627,6),(1566,1818302427,5),(1566,1841886027,6),(1566,1849752027,5),(1566,1873335627,6),(1566,1881201627,5),(1566,1904785227,6),(1566,1912651227,5),(1566,1936234827,6),(1566,1944100827,5),(1566,1967684427,6),(1566,1976155227,5),(1566,1999738827,6),(1566,2007604827,5),(1566,2031188427,6),(1566,2039054427,5),(1566,2062638027,6),(1566,2070504027,5),(1566,2094087627,6),(1566,2101953627,5),(1566,2125537227,6),(1566,2133403227,5),(1567,-1178124152,3),(1567,-36619200,1),(1567,-23922000,2),(1567,-3355200,1),(1567,7527600,2),(1567,24465600,1),(1567,37767600,2),(1567,55915200,1),(1567,69217200,2),(1567,87969601,1),(1567,100666802,2),(1567,118209602,1),(1567,132116403,2),(1567,150868803,1),(1567,163566004,2),(1567,182318404,1),(1567,195620405,2),(1567,213768005,1),(1567,227070006,2),(1567,245217606,1),(1567,258519607,2),(1567,277272007,1),(1567,289969208,2),(1567,308721608,1),(1567,321418809,2),(1567,340171209,1),(1567,353473209,2),(1567,371620810,1),(1567,384922810,4),(1567,403070411,5),(1567,416372411,4),(1567,434520012,5),(1567,447822012,4),(1567,466574412,5),(1567,479271612,4),(1567,498024013,5),(1567,510721213,4),(1567,529473613,5),(1567,545194813,4),(1567,560923213,5),(1567,574225214,4),(1567,592372814,5),(1567,605674814,4),(1567,624427214,5),(1567,637124415,4),(1567,653457615,5),(1567,668574016,4),(1567,687326416,5),(1567,700628416,4),(1567,718776017,5),(1567,732078017,4),(1567,750225618,5),(1567,763527618,4),(1567,781675219,5),(1567,794977219,4),(1567,813729619,5),(1567,826426820,4),(1567,845179220,5),(1567,859690820,4),(1567,876628821,5),(1567,889930821,4),(1567,906868821,5),(1567,923194822,4),(1567,939528022,5),(1567,952830022,4),(1567,971582422,5),(1567,984279622,4),(1567,1003032022,5),(1567,1015729222,4),(1567,1034481622,5),(1567,1047178822,4),(1567,1065931222,5),(1567,1079233222,4),(1567,1097380822,5),(1567,1110682822,4),(1567,1128830422,5),(1567,1142132423,4),(1567,1160884823,5),(1567,1173582023,4),(1567,1192334423,5),(1567,1206846023,4),(1567,1223784023,5),(1567,1237086024,4),(1567,1255233624,5),(1567,1270350024,4),(1567,1286683224,5),(1567,1304823624,4),(1567,1313899224,5),(1567,1335668424,4),(1567,1346558425,5),(1567,1367118025,4),(1567,1378612825,5),(1567,1398567625,4),(1567,1410062425,5),(1567,1463281226,4),(1567,1471147226,5),(1567,1494730827,4),(1567,1502596827,5),(1567,1526180427,4),(1567,1534046427,5),(1567,1557630027,4),(1567,1565496027,5),(1567,1589079627,4),(1567,1596945627,5),(1567,1620529227,4),(1567,1629000027,5),(1567,1652583627,4),(1567,1660449627,5),(1567,1684033227,4),(1567,1691899227,5),(1567,1715482827,4),(1567,1723348827,5),(1567,1746932427,4),(1567,1754798427,5),(1567,1778382027,4),(1567,1786248027,5),(1567,1809831627,4),(1567,1818302427,5),(1567,1841886027,4),(1567,1849752027,5),(1567,1873335627,4),(1567,1881201627,5),(1567,1904785227,4),(1567,1912651227,5),(1567,1936234827,4),(1567,1944100827,5),(1567,1967684427,4),(1567,1976155227,5),(1567,1999738827,4),(1567,2007604827,5),(1567,2031188427,4),(1567,2039054427,5),(1567,2062638027,4),(1567,2070504027,5),(1567,2094087627,4),(1567,2101953627,5),(1567,2125537227,4),(1567,2133403227,5),(1568,-1402813824,2),(1568,-1311534000,1),(1568,-1300996800,2),(1568,-933534000,1),(1568,-925675200,2),(1568,-902084400,1),(1568,-893620800,2),(1568,-870030000,1),(1568,-862171200,2),(1568,-775681200,1),(1568,-767822400,2),(1568,-744231600,1),(1568,-736372800,2),(1568,-144702000,1),(1568,-134251200,2),(1568,-113425200,1),(1568,-102542400,2),(1568,-86295600,1),(1568,-72907200,2),(1568,-54154800,1),(1568,-41457600,2),(1568,-21495600,1),(1568,-5774400,2),(1568,9954000,1),(1568,25675200,2),(1568,41403600,1),(1568,57729600,2),(1568,73458000,1),(1568,87364801,2),(1568,104907602,1),(1568,118900802,2),(1568,136357203,1),(1568,150436803,2),(1568,167806804,1),(1568,183528004,2),(1568,199256405,1),(1568,215582405,2),(1568,230706006,1),(1568,247032006,2),(1568,263365207,1),(1568,276667207,2),(1568,290581208,1),(1568,308721608,2),(1568,322030809,1),(1568,340171209,2),(1568,358318809,1),(1568,371620810,2),(1568,389768410,1),(1568,403070411,2),(1568,421218011,1),(1568,434520012,2),(1568,452667612,1),(1568,466574412,2),(1568,484117212,1),(1568,498024013,2),(1568,511333213,1),(1568,529473613,2),(1568,542782813,1),(1568,560923213,2),(1568,574837214,1),(1568,592372814,2),(1568,606286814,1),(1568,623822414,2),(1568,638946015,1),(1568,655876815,2),(1568,671000416,1),(1568,687330016,3),(1568,702450016,1),(1568,718779617,3),(1568,733899617,1),(1568,750229218,3),(1568,765349218,1),(1568,781678819,3),(1568,796798819,1),(1568,813128419,3),(1568,828853220,1),(1568,844578020,3),(1568,860302820,1),(1568,876632421,3),(1568,891147621,4),(1568,909291621,3),(1568,922597222,4),(1568,941346022,3),(1568,954651622,4),(1568,972795622,3),(1568,986101222,4),(1568,1004245222,3),(1568,1018155622,4),(1568,1035694822,3),(1568,1049605222,4),(1568,1067144422,3),(1568,1080450022,4),(1568,1162098023,3),(1568,1173589223,4),(1568,1193547623,3),(1568,1205643623,4),(1568,1224997223,3),(1568,1236488424,4),(1568,1256446824,3),(1568,1268542824,4),(1568,1288501224,3),(1568,1300597224,4),(1568,1321160424,3),(1568,1333256424,4),(1568,1352005225,3),(1568,1362891625,4),(1568,1383454825,3),(1568,1394341225,4),(1568,1414904425,3),(1568,1425790825,4),(1568,1446354026,3),(1568,1457845226,4),(1568,1478408426,3),(1568,1489294827,4),(1568,1509858027,3),(1568,1520744427,4),(1568,1541307627,3),(1568,1552194027,4),(1568,1572757227,3),(1568,1583643627,4),(1568,1604206827,3),(1568,1615698027,4),(1568,1636261227,3),(1568,1647147627,4),(1568,1667710827,3),(1568,1678597227,4),(1568,1699160427,3),(1568,1710046827,4),(1568,1730610027,3),(1568,1741496427,4),(1568,1762059627,3),(1568,1772946027,4),(1568,1793509227,3),(1568,1805000427,4),(1568,1825563627,3),(1568,1836450027,4),(1568,1857013227,3),(1568,1867899627,4),(1568,1888462827,3),(1568,1899349227,4),(1568,1919912427,3),(1568,1930798827,4),(1568,1951362027,3),(1568,1962853227,4),(1568,1983416427,3),(1568,1994302827,4),(1568,2014866027,3),(1568,2025752427,4),(1568,2046315627,3),(1568,2057202027,4),(1568,2077765227,3),(1568,2088651627,4),(1568,2109214827,3),(1568,2120101227,4),(1568,2140664427,3),(1569,228877206,0),(1569,243997206,1),(1569,260326807,0),(1569,276051607,1),(1569,291776408,0),(1569,307501208,1),(1569,323830809,0),(1569,338950809,1),(1569,354675609,0),(1569,370400410,1),(1569,386125210,0),(1569,401850011,1),(1569,417574811,0),(1569,433299612,1),(1569,449024412,0),(1569,465354012,1),(1569,481078812,0),(1569,496803613,1),(1569,512528413,0),(1569,528253213,1),(1569,543978013,0),(1569,559702813,1),(1569,575427614,0),(1569,591152414,1),(1569,606877214,0),(1569,622602014,1),(1569,638326815,0),(1569,654656415,1),(1569,670381216,0),(1569,686106016,1),(1569,701830816,0),(1569,717555617,1),(1569,733280417,0),(1569,749005218,1),(1569,764730018,0),(1569,780454819,1),(1569,796179619,0),(1569,811904419,1),(1569,828234020,0),(1569,846378020,1),(1569,859683620,0),(1569,877827621,1),(1569,891133221,0),(1569,909277221,1),(1569,922582822,0),(1569,941331622,1),(1569,954032422,0),(1569,972781222,1),(1569,985482022,0),(1569,1004230822,1),(1569,1017536422,0),(1569,1035680422,1),(1569,1048986022,0),(1569,1067130022,1),(1569,1080435622,0),(1569,1099184422,1),(1569,1111885222,0),(1569,1130634022,1),(1569,1143334823,0),(1569,1162083623,1),(1569,1174784423,0),(1569,1193533223,1),(1569,1206838823,0),(1569,1224982823,1),(1569,1238288424,0),(1569,1256432424,1),(1569,1269738024,0),(1569,1288486824,1),(1569,1301187624,0),(1569,1319936424,1),(1569,1332637224,0),(1569,1351386025,1),(1569,1364691625,0),(1569,1382835625,1),(1569,1396141225,0),(1569,1414285225,1),(1569,1427590825,0),(1569,1445734826,1),(1569,1459040426,0),(1569,1477789226,1),(1569,1490490027,0),(1569,1509238827,1),(1569,1521939627,0),(1569,1540688427,1),(1569,1553994027,0),(1569,1572138027,1),(1569,1585443627,0),(1569,1603587627,1),(1569,1616893227,0),(1569,1635642027,1),(1569,1648342827,0),(1569,1667091627,1),(1569,1679792427,0),(1569,1698541227,1),(1569,1711846827,0),(1569,1729990827,1),(1569,1743296427,0),(1569,1761440427,1),(1569,1774746027,0),(1569,1792890027,1),(1569,1806195627,0),(1569,1824944427,1),(1569,1837645227,0),(1569,1856394027,1),(1569,1869094827,0),(1569,1887843627,1),(1569,1901149227,0),(1569,1919293227,1),(1569,1932598827,0),(1569,1950742827,1),(1569,1964048427,0),(1569,1982797227,1),(1569,1995498027,0),(1569,2014246827,1),(1569,2026947627,0),(1569,2045696427,1),(1569,2058397227,0),(1569,2077146027,1),(1569,2090451627,0),(1569,2108595627,1),(1569,2121901227,0),(1569,2140045227,1),(1571,-1633280400,0),(1571,-1615140000,1),(1571,-1601830800,0),(1571,-1583690400,1),(1571,-880218000,2),(1571,-769395600,3),(1571,-765396000,1),(1571,-84387600,0),(1571,-68666400,1),(1571,-52938000,0),(1571,-37216800,1),(1571,-21488400,0),(1571,-5767200,1),(1571,9961200,0),(1571,25682400,1),(1571,41410800,0),(1571,57736800,1),(1571,73465200,0),(1571,89186401,1),(1571,104914802,0),(1571,120636002,1),(1571,126687603,0),(1571,152085603,1),(1571,162370804,0),(1571,183535204,1),(1571,199263605,0),(1571,215589605,1),(1571,230713206,0),(1571,247039206,1),(1571,262767607,0),(1571,278488807,1),(1571,294217208,0),(1571,309938408,1),(1571,325666809,0),(1571,341388009,1),(1571,357116409,0),(1571,372837610,1),(1571,388566010,0),(1571,404892011,1),(1571,420015611,0),(1571,436341612,1),(1571,452070012,0),(1571,467791212,1),(1571,483519612,0),(1571,499240813,1),(1571,514969213,0),(1571,530690413,1),(1571,544604413,0),(1571,562140013,1),(1571,576054014,0),(1571,594194414,1),(1571,607503614,0),(1571,625644014,1),(1571,638953215,0),(1571,657093615,1),(1571,671007616,0),(1571,688543216,1),(1571,702457216,0),(1571,719992817,1),(1571,733906817,0),(1571,752047218,1),(1571,765356418,0),(1571,783496819,1),(1571,796806019,0),(1571,814946419,1),(1571,828860420,0),(1571,846396020,1),(1571,860310020,0),(1571,877845621,1),(1571,891759621,0),(1571,909295221,1),(1571,923209222,0),(1571,941349622,1),(1571,954658822,0),(1571,972799222,1),(1571,986108422,0),(1571,1004248822,1),(1571,1018162822,0),(1571,1035698422,1),(1571,1049612422,0),(1571,1067148022,1),(1571,1081062022,0),(1571,1099202422,1),(1571,1112511622,0),(1571,1130652022,1),(1571,1143961223,0),(1571,1162101623,1),(1571,1173596423,0),(1571,1194156023,1),(1571,1205046023,0),(1571,1225605623,1),(1571,1236495624,0),(1571,1257055224,1),(1571,1268550024,0),(1571,1289109624,1),(1571,1299999624,0),(1571,1320559224,1),(1571,1331449224,0),(1571,1352008825,1),(1571,1362898825,0),(1571,1383458425,1),(1571,1394348425,0),(1571,1414908025,1),(1571,1425798025,0),(1571,1446357626,1),(1571,1457852426,0),(1571,1478412026,1),(1571,1489302027,0),(1571,1509861627,1),(1571,1520751627,0),(1571,1541311227,1),(1571,1552201227,0),(1571,1572760827,1),(1571,1583650827,0),(1571,1604210427,1),(1571,1615705227,0),(1571,1636264827,1),(1571,1647154827,0),(1571,1667714427,1),(1571,1678604427,0),(1571,1699164027,1),(1571,1710054027,0),(1571,1730613627,1),(1571,1741503627,0),(1571,1762063227,1),(1571,1772953227,0),(1571,1793512827,1),(1571,1805007627,0),(1571,1825567227,1),(1571,1836457227,0),(1571,1857016827,1),(1571,1867906827,0),(1571,1888466427,1),(1571,1899356427,0),(1571,1919916027,1),(1571,1930806027,0),(1571,1951365627,1),(1571,1962860427,0),(1571,1983420027,1),(1571,1994310027,0),(1571,2014869627,1),(1571,2025759627,0),(1571,2046319227,1),(1571,2057209227,0),(1571,2077768827,1),(1571,2088658827,0),(1571,2109218427,1),(1571,2120108427,0),(1571,2140668027,1),(1572,-929844000,0),(1572,-923108400,1),(1572,-906170400,0),(1572,-892868400,1),(1572,-875844000,0),(1572,-857790000,1),(1572,-844308000,0),(1572,-825822000,1),(1572,-812685600,0),(1572,-794199600,1),(1572,-779853600,0),(1572,-762663600,1),(1572,-399088800,0),(1572,-386650800,1),(1572,-368330400,0),(1572,-355114800,1),(1572,-336790800,0),(1572,-323654400,1),(1572,-305168400,0),(1572,-292032000,1),(1572,-273632400,0),(1572,-260496000,1),(1572,-242096400,0),(1572,-228960000,1),(1572,-210560400,0),(1572,-197424000,1),(1572,-178938000,0),(1572,-165801600,1),(1572,-147402000,0),(1572,-134265600,1),(1572,-115866000,0),(1572,-102643200,1),(1572,-84330000,0),(1572,-71107200,1),(1572,-52707600,0),(1572,-39484800,1),(1572,-21171600,0),(1572,-7948800,1),(1572,10364400,0),(1572,23587200,1),(1572,41900400,0),(1572,55123200,1),(1572,73522800,0),(1572,86745601,1),(1572,105058802,0),(1572,118281602,1),(1572,136594803,0),(1572,149817603,1),(1572,168130804,0),(1572,181353604,1),(1572,199753205,0),(1572,212976005,1),(1572,231289206,0),(1572,244512006,1),(1572,262825207,0),(1572,276048007,1),(1572,294361208,0),(1572,307584008,1),(1572,325983609,0),(1572,339206409,1),(1572,357519609,0),(1572,370742410,1),(1572,396399611,0),(1572,402278411,1),(1572,426812412,0),(1572,433814412,1),(1572,452214012,0),(1572,465436812,1),(1572,483750012,0),(1572,496972813,1),(1572,515286013,0),(1572,528508813,1),(1572,546822013,0),(1572,560044813,1),(1572,578444414,0),(1572,591667214,1),(1572,610412414,0),(1572,623203214,1),(1572,641516415,0),(1572,654739215,1),(1572,673052416,0),(1572,686275216,1),(1572,704674816,0),(1572,717897617,1),(1572,736210817,0),(1572,749433618,1),(1572,767746818,0),(1572,780969619,1),(1572,799020019,2),(1572,812322019,1),(1572,830469620,2),(1572,843771620,1),(1572,861919220,2),(1572,875221221,1),(1572,893368821,2),(1572,906670821,1),(1572,925423222,2),(1572,938725222,1),(1572,956872822,2),(1572,970174822,1),(1572,988322422,2),(1572,1001624422,1),(1572,1019772022,2),(1572,1033074022,1),(1572,1051221622,2),(1572,1064523622,1),(1572,1083276022,2),(1572,1096578022,1),(1572,1114725622,2),(1572,1128027622,1),(1572,1146175223,2),(1572,1158872423,1),(1572,1177624823,2),(1572,1189112423,1),(1572,1209074423,2),(1572,1219957223,1),(1572,1240524024,2),(1572,1250802024,1),(1572,1272578424,2),(1572,1281474024,1),(1572,1284069624,0),(1572,1285880424,1),(1572,1400191225,0),(1572,1403816425,1),(1572,1406844025,0),(1572,1411678825,1),(1573,-1691962479,1),(1573,-1680471279,3),(1573,-1664143200,2),(1573,-1650146400,3),(1573,-1633903200,2),(1573,-1617487200,3),(1573,-1601848800,2),(1573,-1586037600,3),(1573,-1570399200,2),(1573,-1552168800,3),(1573,-1538344800,2),(1573,-1522533600,3),(1573,-1517011200,5),(1573,-1507500000,4),(1573,-1490565600,3),(1573,-1473631200,4),(1573,-1460930400,3),(1573,-1442786400,4),(1573,-1428876000,3),(1573,-1410732000,4),(1573,-1396216800,3),(1573,-1379282400,4),(1573,-1364767200,3),(1573,-1348437600,4),(1573,-1333317600,3),(1573,-1315778400,4),(1573,-1301263200,3),(1573,-1284328800,4),(1573,-1269813600,3),(1573,-1253484000,4),(1573,-1238364000,3),(1573,-1221429600,4),(1573,-1206914400,3),(1573,-1189980000,4),(1573,-1175464800,3),(1573,-1159135200,4),(1573,-1143410400,3),(1573,-1126476000,4),(1573,-1111960800,3),(1573,-1095631200,4),(1573,-1080511200,3),(1573,-1063576800,4),(1573,-1049061600,3),(1573,-1032127200,4),(1573,-1017612000,3),(1573,-1001282400,4),(1573,-986162400,3),(1573,-969228000,4),(1573,-950479200,3),(1573,-942012000,4),(1573,-733356000,3),(1573,-719445600,4),(1573,-699487200,3),(1573,-684972000,4),(1573,-668037600,3),(1573,-654732000,4),(1573,-636588000,3),(1573,-622072800,4),(1573,-605743200,3),(1573,-590623200,4),(1573,-574293600,3),(1573,-558568800,4),(1573,-542239200,3),(1573,-527119200,4),(1573,-512604000,3),(1573,-496274400,4),(1573,-481154400,3),(1573,-464220000,4),(1573,-449704800,3),(1573,-432165600,4),(1573,-417650400,3),(1573,-401320800,4),(1573,-386200800,3),(1573,-369266400,4),(1573,-354751200,3),(1573,-337816800,4),(1573,-323301600,3),(1573,-306972000,4),(1573,-291852000,3),(1573,-276732000,4),(1573,-257983200,3),(1573,-245282400,4),(1573,-226533600,3),(1573,-213228000,4),(1573,-195084000,3),(1573,-182383200,4),(1573,-163634400,3),(1573,-150933600,4),(1573,-132184800,3),(1573,-119484000,4),(1573,-100735200,3),(1573,-88034400,4),(1573,-68680800,3),(1573,-59004000,4),(1573,-37242000,6),(1573,57722400,8),(1573,69818400,4),(1573,89172001,3),(1573,101268002,4),(1573,120621602,3),(1573,132717603,4),(1573,152071203,3),(1573,164167204,4),(1573,183520804,3),(1573,196221605,4),(1573,214970405,3),(1573,227671206,4),(1573,246420006,3),(1573,259120807,4),(1573,278474407,3),(1573,290570408,4),(1573,309924008,3),(1573,322020009,4),(1573,341373609,3),(1573,354675609,7),(1573,372819610,8),(1573,386125210,7),(1573,404269211,8),(1573,417574811,7),(1573,435718812,8),(1573,449024412,7),(1573,467773212,8),(1573,481078812,7),(1573,499222813,8),(1573,512528413,7),(1573,530672413,8),(1573,543978013,7),(1573,562122013,8),(1573,575427614,7),(1573,593571614,8),(1573,606877214,7),(1573,625626014,8),(1573,638326815,7),(1573,657075615,8),(1573,670381216,7),(1573,688525216,8),(1573,701830816,7),(1573,719974817,8),(1573,733280417,7),(1573,751424418,8),(1573,764730018,7),(1573,782874019,8),(1573,796179619,7),(1573,814323619,8),(1573,820454420,5),(1573,828234020,7),(1573,846378020,8),(1573,859683620,7),(1573,877827621,8),(1573,891133221,7),(1573,909277221,8),(1573,922582822,7),(1573,941331622,8),(1573,954032422,7),(1573,972781222,8),(1573,985482022,7),(1573,1004230822,8),(1573,1017536422,7),(1573,1035680422,8),(1573,1048986022,7),(1573,1067130022,8),(1573,1080435622,7),(1573,1099184422,8),(1573,1111885222,7),(1573,1130634022,8),(1573,1143334823,7),(1573,1162083623,8),(1573,1174784423,7),(1573,1193533223,8),(1573,1206838823,7),(1573,1224982823,8),(1573,1238288424,7),(1573,1256432424,8),(1573,1269738024,7),(1573,1288486824,8),(1573,1301187624,7),(1573,1319936424,8),(1573,1332637224,7),(1573,1351386025,8),(1573,1364691625,7),(1573,1382835625,8),(1573,1396141225,7),(1573,1414285225,8),(1573,1427590825,7),(1573,1445734826,8),(1573,1459040426,7),(1573,1477789226,8),(1573,1490490027,7),(1573,1509238827,8),(1573,1521939627,7),(1573,1540688427,8),(1573,1553994027,7),(1573,1572138027,8),(1573,1585443627,7),(1573,1603587627,8),(1573,1616893227,7),(1573,1635642027,8),(1573,1648342827,7),(1573,1667091627,8),(1573,1679792427,7),(1573,1698541227,8),(1573,1711846827,7),(1573,1729990827,8),(1573,1743296427,7),(1573,1761440427,8),(1573,1774746027,7),(1573,1792890027,8),(1573,1806195627,7),(1573,1824944427,8),(1573,1837645227,7),(1573,1856394027,8),(1573,1869094827,7),(1573,1887843627,8),(1573,1901149227,7),(1573,1919293227,8),(1573,1932598827,7),(1573,1950742827,8),(1573,1964048427,7),(1573,1982797227,8),(1573,1995498027,7),(1573,2014246827,8),(1573,2026947627,7),(1573,2045696427,8),(1573,2058397227,7),(1573,2077146027,8),(1573,2090451627,7),(1573,2108595627,8),(1573,2121901227,7),(1573,2140045227,8),(1609,-1693700372,0),(1609,-1680484772,1),(1609,-1663453172,2),(1609,-1650147572,3),(1609,-1633213172,2),(1609,-1617488372,3),(1609,-1601158772,2),(1609,-1586038772,3),(1609,-1569709172,2),(1609,-1554589172,3),(1609,-1538259572,2),(1609,-1523139572,3),(1609,-1507501172,2),(1609,-1490566772,3),(1609,-1470176372,2),(1609,-1459117172,3),(1609,-1443997172,2),(1609,-1427667572,3),(1609,-1406672372,2),(1609,-1396217972,3),(1609,-1376950772,2),(1609,-1364768372,3),(1609,-1345414772,2),(1609,-1333318772,3),(1609,-1313792372,2);
INSERT INTO `time_zone_transition` VALUES (1609,-1301264372,3),(1609,-1282256372,2),(1609,-1269814772,3),(1609,-1250720372,2),(1609,-1238365172,3),(1609,-1219184372,2),(1609,-1206915572,3),(1609,-1186957172,2),(1609,-1175465972,3),(1609,-1156025972,2),(1609,-1143411572,3),(1609,-1124489972,2),(1609,-1111961972,3),(1609,-1092953972,2),(1609,-1080512372,3),(1609,-1061331572,2),(1609,-1049062772,3),(1609,-1029190772,2),(1609,-1025745572,6),(1609,-1017613200,4),(1609,-998259600,5),(1609,-986163600,4),(1609,-966723600,5),(1609,-954109200,4),(1609,-935022000,9),(1609,-857257200,7),(1609,-844556400,8),(1609,-828226800,7),(1609,-812502000,8),(1609,-796777200,7),(1609,-781052400,8),(1609,-766623600,7),(1609,220921205,12),(1609,228877206,10),(1609,243997206,11),(1609,260326807,10),(1609,276051607,11),(1609,291776408,10),(1609,307501208,11),(1609,323830809,10),(1609,338950809,11),(1609,354675609,10),(1609,370400410,11),(1609,386125210,10),(1609,401850011,11),(1609,417574811,10),(1609,433299612,11),(1609,449024412,10),(1609,465354012,11),(1609,481078812,10),(1609,496803613,11),(1609,512528413,10),(1609,528253213,11),(1609,543978013,10),(1609,559702813,11),(1609,575427614,10),(1609,591152414,11),(1609,606877214,10),(1609,622602014,11),(1609,638326815,10),(1609,654656415,11),(1609,670381216,10),(1609,686106016,11),(1609,701830816,10),(1609,717555617,11),(1609,733280417,10),(1609,749005218,11),(1609,764730018,10),(1609,780454819,11),(1609,796179619,10),(1609,811904419,11),(1609,828234020,10),(1609,846378020,11),(1609,859683620,10),(1609,877827621,11),(1609,891133221,10),(1609,909277221,11),(1609,922582822,10),(1609,941331622,11),(1609,954032422,10),(1609,972781222,11),(1609,985482022,10),(1609,1004230822,11),(1609,1017536422,10),(1609,1035680422,11),(1609,1048986022,10),(1609,1067130022,11),(1609,1080435622,10),(1609,1099184422,11),(1609,1111885222,10),(1609,1130634022,11),(1609,1143334823,10),(1609,1162083623,11),(1609,1174784423,10),(1609,1193533223,11),(1609,1206838823,10),(1609,1224982823,11),(1609,1238288424,10),(1609,1256432424,11),(1609,1269738024,10),(1609,1288486824,11),(1609,1301187624,10),(1609,1319936424,11),(1609,1332637224,10),(1609,1351386025,11),(1609,1364691625,10),(1609,1382835625,11),(1609,1396141225,10),(1609,1414285225,11),(1609,1427590825,10),(1609,1445734826,11),(1609,1459040426,10),(1609,1477789226,11),(1609,1490490027,10),(1609,1509238827,11),(1609,1521939627,10),(1609,1540688427,11),(1609,1553994027,10),(1609,1572138027,11),(1609,1585443627,10),(1609,1603587627,11),(1609,1616893227,10),(1609,1635642027,11),(1609,1648342827,10),(1609,1667091627,11),(1609,1679792427,10),(1609,1698541227,11),(1609,1711846827,10),(1609,1729990827,11),(1609,1743296427,10),(1609,1761440427,11),(1609,1774746027,10),(1609,1792890027,11),(1609,1806195627,10),(1609,1824944427,11),(1609,1837645227,10),(1609,1856394027,11),(1609,1869094827,10),(1609,1887843627,11),(1609,1901149227,10),(1609,1919293227,11),(1609,1932598827,10),(1609,1950742827,11),(1609,1964048427,10),(1609,1982797227,11),(1609,1995498027,10),(1609,2014246827,11),(1609,2026947627,10),(1609,2045696427,11),(1609,2058397227,10),(1609,2077146027,11),(1609,2090451627,10),(1609,2108595627,11),(1609,2121901227,10),(1609,2140045227,11),(1610,-733881600,1),(1610,481078812,2),(1610,496803613,3),(1610,512528413,2),(1610,528253213,3),(1610,543978013,2),(1610,559702813,3),(1610,575427614,2),(1610,591152414,3),(1610,606877214,2),(1610,622602014,3),(1610,638326815,2),(1610,654656415,3),(1610,670381216,2),(1610,686106016,3),(1610,701830816,2),(1610,717555617,3),(1610,733280417,2),(1610,749005218,3),(1610,764730018,2),(1610,780454819,3),(1610,796179619,2),(1610,811904419,3),(1610,828234020,2),(1610,846378020,3),(1610,859683620,2),(1610,877827621,3),(1610,891133221,2),(1610,909277221,3),(1610,922582822,2),(1610,941331622,3),(1610,954032422,2),(1610,972781222,3),(1610,985482022,2),(1610,1004230822,3),(1610,1017536422,2),(1610,1035680422,3),(1610,1048986022,2),(1610,1067130022,3),(1610,1080435622,2),(1610,1099184422,3),(1610,1111885222,2),(1610,1130634022,3),(1610,1143334823,2),(1610,1162083623,3),(1610,1174784423,2),(1610,1193533223,3),(1610,1206838823,2),(1610,1224982823,3),(1610,1238288424,2),(1610,1256432424,3),(1610,1269738024,2),(1610,1288486824,3),(1610,1301187624,2),(1610,1319936424,3),(1610,1332637224,2),(1610,1351386025,3),(1610,1364691625,2),(1610,1382835625,3),(1610,1396141225,2),(1610,1414285225,3),(1610,1427590825,2),(1610,1445734826,3),(1610,1459040426,2),(1610,1477789226,3),(1610,1490490027,2),(1610,1509238827,3),(1610,1521939627,2),(1610,1540688427,3),(1610,1553994027,2),(1610,1572138027,3),(1610,1585443627,2),(1610,1603587627,3),(1610,1616893227,2),(1610,1635642027,3),(1610,1648342827,2),(1610,1667091627,3),(1610,1679792427,2),(1610,1698541227,3),(1610,1711846827,2),(1610,1729990827,3),(1610,1743296427,2),(1610,1761440427,3),(1610,1774746027,2),(1610,1792890027,3),(1610,1806195627,2),(1610,1824944427,3),(1610,1837645227,2),(1610,1856394027,3),(1610,1869094827,2),(1610,1887843627,3),(1610,1901149227,2),(1610,1919293227,3),(1610,1932598827,2),(1610,1950742827,3),(1610,1964048427,2),(1610,1982797227,3),(1610,1995498027,2),(1610,2014246827,3),(1610,2026947627,2),(1610,2045696427,3),(1610,2058397227,2),(1610,2077146027,3),(1610,2090451627,2),(1610,2108595627,3),(1610,2121901227,2),(1610,2140045227,3),(1611,-1441249932,1),(1611,-1247540400,3),(1611,354916809,2),(1611,370724410,3),(1611,386452810,2),(1611,402260411,3),(1611,417988811,2),(1611,433796412,3),(1611,449611212,2),(1611,465343212,4),(1611,481068012,5),(1611,496792813,4),(1611,512517613,5),(1611,528242413,4),(1611,543967213,5),(1611,559692013,4),(1611,575416814,5),(1611,591141614,4),(1611,606866414,6),(1611,622594814,7),(1611,638319615,6),(1611,654649215,7),(1611,670374016,4),(1611,701820016,6),(1611,717548417,7),(1611,733273217,6),(1611,748998018,7),(1611,764722818,6),(1611,780447619,7),(1611,796172419,6),(1611,811897219,7),(1611,828226820,6),(1611,846370820,7),(1611,859676420,6),(1611,877820421,7),(1611,891126021,6),(1611,909270021,7),(1611,922575622,6),(1611,941324422,7),(1611,954025222,6),(1611,972774022,7),(1611,985474822,6),(1611,1004223622,7),(1611,1017529222,6),(1611,1035673222,7),(1611,1048978822,6),(1611,1067122822,7),(1611,1080428422,6),(1611,1099177222,7),(1611,1111878022,6),(1611,1130626822,7),(1611,1143327623,6),(1611,1162076423,7),(1611,1174777223,6),(1611,1193526023,7),(1611,1206831623,6),(1611,1224975623,7),(1611,1238281224,6),(1611,1256425224,7),(1611,1269730824,6),(1611,1288479624,7),(1611,1301180424,4),(1611,1414274425,7),(1611,1459033226,4),(1612,-1686101632,2),(1612,-1182996000,1),(1612,-1178161200,2),(1612,-906861600,1),(1612,-904878000,4),(1612,-857257200,3),(1612,-844477200,4),(1612,-828237600,3),(1612,-812422800,2),(1612,-552362400,1),(1612,-541652400,2),(1612,166485604,5),(1612,186184804,6),(1612,198028805,5),(1612,213753605,6),(1612,228873606,5),(1612,244080006,6),(1612,260323207,5),(1612,275446807,2),(1612,291798008,1),(1612,307407608,2),(1612,323388009,1),(1612,338936409,2),(1612,354675609,7),(1612,370400410,8),(1612,386125210,7),(1612,401850011,8),(1612,417574811,7),(1612,433299612,8),(1612,449024412,7),(1612,465354012,8),(1612,481078812,7),(1612,496803613,8),(1612,512528413,7),(1612,528253213,8),(1612,543978013,7),(1612,559702813,8),(1612,575427614,7),(1612,591152414,8),(1612,606877214,7),(1612,622602014,8),(1612,638326815,7),(1612,654656415,8),(1612,670381216,7),(1612,686106016,8),(1612,701830816,7),(1612,717555617,8),(1612,733280417,7),(1612,749005218,8),(1612,764730018,7),(1612,780454819,8),(1612,796179619,7),(1612,811904419,8),(1612,828234020,7),(1612,846378020,8),(1612,859683620,7),(1612,877827621,8),(1612,891133221,7),(1612,909277221,8),(1612,922582822,7),(1612,941331622,8),(1612,954032422,7),(1612,972781222,8),(1612,985482022,7),(1612,1004230822,8),(1612,1017536422,7),(1612,1035680422,8),(1612,1048986022,7),(1612,1067130022,8),(1612,1080435622,7),(1612,1099184422,8),(1612,1111885222,7),(1612,1130634022,8),(1612,1143334823,7),(1612,1162083623,8),(1612,1174784423,7),(1612,1193533223,8),(1612,1206838823,7),(1612,1224982823,8),(1612,1238288424,7),(1612,1256432424,8),(1612,1269738024,7),(1612,1288486824,8),(1612,1301187624,7),(1612,1319936424,8),(1612,1332637224,7),(1612,1351386025,8),(1612,1364691625,7),(1612,1382835625,8),(1612,1396141225,7),(1612,1414285225,8),(1612,1427590825,7),(1612,1445734826,8),(1612,1459040426,7),(1612,1477789226,8),(1612,1490490027,7),(1612,1509238827,8),(1612,1521939627,7),(1612,1540688427,8),(1612,1553994027,7),(1612,1572138027,8),(1612,1585443627,7),(1612,1603587627,8),(1612,1616893227,7),(1612,1635642027,8),(1612,1648342827,7),(1612,1667091627,8),(1612,1679792427,7),(1612,1698541227,8),(1612,1711846827,7),(1612,1729990827,8),(1612,1743296427,7),(1612,1761440427,8),(1612,1774746027,7),(1612,1792890027,8),(1612,1806195627,7),(1612,1824944427,8),(1612,1837645227,7),(1612,1856394027,8),(1612,1869094827,7),(1612,1887843627,8),(1612,1901149227,7),(1612,1919293227,8),(1612,1932598827,7),(1612,1950742827,8),(1612,1964048427,7),(1612,1982797227,8),(1612,1995498027,7),(1612,2014246827,8),(1612,2026947627,7),(1612,2045696427,8),(1612,2058397227,7),(1612,2077146027,8),(1612,2090451627,7),(1612,2108595627,8),(1612,2121901227,7),(1612,2140045227,8),(1613,-1691964000,0),(1613,-1680472800,1),(1613,-1664143200,0),(1613,-1650146400,1),(1613,-1633903200,0),(1613,-1617487200,1),(1613,-1601848800,0),(1613,-1586037600,1),(1613,-1570399200,0),(1613,-1552168800,1),(1613,-1538344800,0),(1613,-1522533600,1),(1613,-1507500000,0),(1613,-1490565600,1),(1613,-1473631200,0),(1613,-1460930400,1),(1613,-1442786400,0),(1613,-1428876000,1),(1613,-1410732000,0),(1613,-1396216800,1),(1613,-1379282400,0),(1613,-1364767200,1),(1613,-1348437600,0),(1613,-1333317600,1),(1613,-1315778400,0),(1613,-1301263200,1),(1613,-1284328800,0),(1613,-1269813600,1),(1613,-1253484000,0),(1613,-1238364000,1),(1613,-1221429600,0),(1613,-1206914400,1),(1613,-1189980000,0),(1613,-1175464800,1),(1613,-1159135200,0),(1613,-1143410400,1),(1613,-1126476000,0),(1613,-1111960800,1),(1613,-1095631200,0),(1613,-1080511200,1),(1613,-1063576800,0),(1613,-1049061600,1),(1613,-1032127200,0),(1613,-1017612000,1),(1613,-1001282400,0),(1613,-986162400,1),(1613,-969228000,0),(1613,-950479200,1),(1613,-942012000,0),(1613,-904518000,2),(1613,-896050800,0),(1613,-875487600,2),(1613,-864601200,0),(1613,-844038000,2),(1613,-832546800,0),(1613,-812588400,2),(1613,-798073200,0),(1613,-781052400,2),(1613,-772066800,0),(1613,-764805600,1),(1613,-748476000,0),(1613,-733356000,1),(1613,-719445600,0),(1613,-717030000,2),(1613,-706748400,0),(1613,-699487200,1),(1613,-687996000,0),(1613,-668037600,1),(1613,-654732000,0),(1613,-636588000,1),(1613,-622072800,0),(1613,-605743200,1),(1613,-590623200,0),(1613,-574293600,1),(1613,-558568800,0),(1613,-542239200,1),(1613,-527119200,0),(1613,-512604000,1),(1613,-496274400,0),(1613,-481154400,1),(1613,-464220000,0),(1613,-449704800,1),(1613,-432165600,0),(1613,-417650400,1),(1613,-401320800,0),(1613,-386200800,1),(1613,-369266400,0),(1613,-354751200,1),(1613,-337816800,0),(1613,-323301600,1),(1613,-306972000,0),(1613,-291852000,1),(1613,-276732000,0),(1613,-257983200,1),(1613,-245282400,0),(1613,-226533600,1),(1613,-213228000,0),(1613,-195084000,1),(1613,-182383200,0),(1613,-163634400,1),(1613,-150933600,0),(1613,-132184800,1),(1613,-119484000,0),(1613,-100735200,1),(1613,-88034400,0),(1613,-68680800,1),(1613,-59004000,0),(1613,-37242000,3),(1613,57722400,5),(1613,69818400,0),(1613,89172001,1),(1613,101268002,0),(1613,120621602,1),(1613,132717603,0),(1613,152071203,1),(1613,164167204,0),(1613,183520804,1),(1613,196221605,0),(1613,214970405,1),(1613,227671206,0),(1613,246420006,1),(1613,259120807,0),(1613,278474407,1),(1613,290570408,0),(1613,309924008,1),(1613,322020009,0),(1613,341373609,1),(1613,354675609,4),(1613,372819610,5),(1613,386125210,4),(1613,404269211,5),(1613,417574811,4),(1613,435718812,5),(1613,449024412,4),(1613,467773212,5),(1613,481078812,4),(1613,499222813,5),(1613,512528413,4),(1613,530672413,5),(1613,543978013,4),(1613,562122013,5),(1613,575427614,4),(1613,593571614,5),(1613,606877214,4),(1613,625626014,5),(1613,638326815,4),(1613,657075615,5),(1613,670381216,4),(1613,688525216,5),(1613,701830816,4),(1613,719974817,5),(1613,733280417,4),(1613,751424418,5),(1613,764730018,4),(1613,782874019,5),(1613,796179619,4),(1613,814323619,5),(1613,820454420,6),(1613,828234020,4),(1613,846378020,5),(1613,859683620,4),(1613,877827621,5),(1613,891133221,4),(1613,909277221,5),(1613,922582822,4),(1613,941331622,5),(1613,954032422,4),(1613,972781222,5),(1613,985482022,4),(1613,1004230822,5),(1613,1017536422,4),(1613,1035680422,5),(1613,1048986022,4),(1613,1067130022,5),(1613,1080435622,4),(1613,1099184422,5),(1613,1111885222,4),(1613,1130634022,5),(1613,1143334823,4),(1613,1162083623,5),(1613,1174784423,4),(1613,1193533223,5),(1613,1206838823,4),(1613,1224982823,5),(1613,1238288424,4),(1613,1256432424,5),(1613,1269738024,4),(1613,1288486824,5),(1613,1301187624,4),(1613,1319936424,5),(1613,1332637224,4),(1613,1351386025,5),(1613,1364691625,4),(1613,1382835625,5),(1613,1396141225,4),(1613,1414285225,5),(1613,1427590825,4),(1613,1445734826,5),(1613,1459040426,4),(1613,1477789226,5),(1613,1490490027,4),(1613,1509238827,5),(1613,1521939627,4),(1613,1540688427,5),(1613,1553994027,4),(1613,1572138027,5),(1613,1585443627,4),(1613,1603587627,5),(1613,1616893227,4),(1613,1635642027,5),(1613,1648342827,4),(1613,1667091627,5),(1613,1679792427,4),(1613,1698541227,5),(1613,1711846827,4),(1613,1729990827,5),(1613,1743296427,4),(1613,1761440427,5),(1613,1774746027,4),(1613,1792890027,5),(1613,1806195627,4),(1613,1824944427,5),(1613,1837645227,4),(1613,1856394027,5),(1613,1869094827,4),(1613,1887843627,5),(1613,1901149227,4),(1613,1919293227,5),(1613,1932598827,4),(1613,1950742827,5),(1613,1964048427,4),(1613,1982797227,5),(1613,1995498027,4),(1613,2014246827,5),(1613,2026947627,4),(1613,2045696427,5),(1613,2058397227,4),(1613,2077146027,5),(1613,2090451627,4),(1613,2108595627,5),(1613,2121901227,4),(1613,2140045227,5),(1614,-905824800,3),(1614,-857257200,1),(1614,-844556400,2),(1614,-828226800,1),(1614,-812502000,2),(1614,-796777200,1),(1614,-788922000,0),(1614,-777942000,2),(1614,-766623600,1),(1614,407199611,0),(1614,417574811,4),(1614,433299612,5),(1614,449024412,4),(1614,465354012,5),(1614,481078812,4),(1614,496803613,5),(1614,512528413,4),(1614,528253213,5),(1614,543978013,4),(1614,559702813,5),(1614,575427614,4),(1614,591152414,5),(1614,606877214,4),(1614,622602014,5),(1614,638326815,4),(1614,654656415,5),(1614,670381216,4),(1614,686106016,5),(1614,701830816,4),(1614,717555617,5),(1614,733280417,4),(1614,749005218,5),(1614,764730018,4),(1614,780454819,5),(1614,796179619,4),(1614,811904419,5),(1614,828234020,4),(1614,846378020,5),(1614,859683620,4),(1614,877827621,5),(1614,891133221,4),(1614,909277221,5),(1614,922582822,4),(1614,941331622,5),(1614,954032422,4),(1614,972781222,5),(1614,985482022,4),(1614,1004230822,5),(1614,1017536422,4),(1614,1035680422,5),(1614,1048986022,4),(1614,1067130022,5),(1614,1080435622,4),(1614,1099184422,5),(1614,1111885222,4),(1614,1130634022,5),(1614,1143334823,4),(1614,1162083623,5),(1614,1174784423,4),(1614,1193533223,5),(1614,1206838823,4),(1614,1224982823,5),(1614,1238288424,4),(1614,1256432424,5),(1614,1269738024,4),(1614,1288486824,5),(1614,1301187624,4),(1614,1319936424,5),(1614,1332637224,4),(1614,1351386025,5),(1614,1364691625,4),(1614,1382835625,5),(1614,1396141225,4),(1614,1414285225,5),(1614,1427590825,4),(1614,1445734826,5),(1614,1459040426,4),(1614,1477789226,5),(1614,1490490027,4),(1614,1509238827,5),(1614,1521939627,4),(1614,1540688427,5),(1614,1553994027,4),(1614,1572138027,5),(1614,1585443627,4),(1614,1603587627,5),(1614,1616893227,4),(1614,1635642027,5),(1614,1648342827,4),(1614,1667091627,5),(1614,1679792427,4),(1614,1698541227,5),(1614,1711846827,4),(1614,1729990827,5),(1614,1743296427,4),(1614,1761440427,5),(1614,1774746027,4),(1614,1792890027,5),(1614,1806195627,4),(1614,1824944427,5),(1614,1837645227,4),(1614,1856394027,5),(1614,1869094827,4),(1614,1887843627,5),(1614,1901149227,4),(1614,1919293227,5),(1614,1932598827,4),(1614,1950742827,5),(1614,1964048427,4),(1614,1982797227,5),(1614,1995498027,4),(1614,2014246827,5),(1614,2026947627,4),(1614,2045696427,5),(1614,2058397227,4),(1614,2077146027,5),(1614,2090451627,4),(1614,2108595627,5),(1614,2121901227,4),(1614,2140045227,5),(1615,-1693706400,0),(1615,-1680483600,1),(1615,-1663455600,2),(1615,-1650150000,3),(1615,-1632006000,2),(1615,-1618700400,3),(1615,-938905200,2),(1615,-857257200,3),(1615,-844556400,2),(1615,-828226800,3),(1615,-812502000,2),(1615,-796777200,3),(1615,-781052400,2),(1615,-776563200,4),(1615,-765936000,0),(1615,-761180400,3),(1615,-757386000,1),(1615,-748479600,2),(1615,-733273200,3),(1615,-717631200,2),(1615,-714610800,5),(1615,-710380800,0),(1615,-701910000,3),(1615,-684975600,2),(1615,-670460400,3),(1615,-654130800,2),(1615,-639010800,3),(1615,315529208,1),(1615,323830809,6),(1615,338950809,7),(1615,354675609,6),(1615,370400410,7),(1615,386125210,6),(1615,401850011,7),(1615,417574811,6),(1615,433299612,7),(1615,449024412,6),(1615,465354012,7),(1615,481078812,6),(1615,496803613,7),(1615,512528413,6),(1615,528253213,7),(1615,543978013,6),(1615,559702813,7),(1615,575427614,6),(1615,591152414,7),(1615,606877214,6),(1615,622602014,7),(1615,638326815,6),(1615,654656415,7),(1615,670381216,6),(1615,686106016,7),(1615,701830816,6),(1615,717555617,7),(1615,733280417,6),(1615,749005218,7),(1615,764730018,6),(1615,780454819,7),(1615,796179619,6),(1615,811904419,7),(1615,828234020,6),(1615,846378020,7),(1615,859683620,6),(1615,877827621,7),(1615,891133221,6),(1615,909277221,7),(1615,922582822,6),(1615,941331622,7),(1615,954032422,6),(1615,972781222,7),(1615,985482022,6),(1615,1004230822,7),(1615,1017536422,6),(1615,1035680422,7),(1615,1048986022,6),(1615,1067130022,7),(1615,1080435622,6),(1615,1099184422,7),(1615,1111885222,6),(1615,1130634022,7),(1615,1143334823,6),(1615,1162083623,7),(1615,1174784423,6),(1615,1193533223,7),(1615,1206838823,6),(1615,1224982823,7),(1615,1238288424,6),(1615,1256432424,7),(1615,1269738024,6),(1615,1288486824,7),(1615,1301187624,6),(1615,1319936424,7),(1615,1332637224,6),(1615,1351386025,7),(1615,1364691625,6),(1615,1382835625,7),(1615,1396141225,6),(1615,1414285225,7),(1615,1427590825,6),(1615,1445734826,7),(1615,1459040426,6),(1615,1477789226,7),(1615,1490490027,6),(1615,1509238827,7),(1615,1521939627,6),(1615,1540688427,7),(1615,1553994027,6),(1615,1572138027,7),(1615,1585443627,6),(1615,1603587627,7),(1615,1616893227,6),(1615,1635642027,7),(1615,1648342827,6),(1615,1667091627,7),(1615,1679792427,6),(1615,1698541227,7),(1615,1711846827,6),(1615,1729990827,7),(1615,1743296427,6),(1615,1761440427,7),(1615,1774746027,6),(1615,1792890027,7),(1615,1806195627,6),(1615,1824944427,7),(1615,1837645227,6),(1615,1856394027,7),(1615,1869094827,6),(1615,1887843627,7),(1615,1901149227,6),(1615,1919293227,7),(1615,1932598827,6),(1615,1950742827,7),(1615,1964048427,6),(1615,1982797227,7),(1615,1995498027,6),(1615,2014246827,7),(1615,2026947627,6),(1615,2045696427,7),(1615,2058397227,6),(1615,2077146027,7),(1615,2090451627,6),(1615,2108595627,7),(1615,2121901227,6),(1615,2140045227,7),(1616,-1693706400,0),(1616,-1680483600,1),(1616,-1663455600,2),(1616,-1650150000,3),(1616,-1632006000,2),(1616,-1618700400,3),(1616,-938905200,2),(1616,-857257200,3),(1616,-844556400,2),(1616,-828226800,3),(1616,-812502000,2),(1616,-796777200,3),(1616,-781052400,2),(1616,-777866400,0),(1616,-765327600,3),(1616,-746578800,2),(1616,-733359600,3),(1616,-728517600,4),(1616,-721260000,1),(1616,-716425200,2),(1616,-701910000,3),(1616,-684975600,2),(1616,-670460400,3),(1616,-654217200,2),(1616,-639010800,3),(1616,283993207,1),(1616,291776408,5),(1616,307501208,6),(1616,323830809,5),(1616,338950809,6),(1616,354675609,5),(1616,370400410,6),(1616,386125210,5),(1616,401850011,6),(1616,417574811,5),(1616,433299612,6),(1616,449024412,5),(1616,465354012,6),(1616,481078812,5),(1616,496803613,6),(1616,512528413,5),(1616,528253213,6),(1616,543978013,5),(1616,559702813,6),(1616,575427614,5),(1616,591152414,6),(1616,606877214,5),(1616,622602014,6),(1616,638326815,5),(1616,654656415,6),(1616,670381216,5),(1616,686106016,6),(1616,701830816,5),(1616,717555617,6),(1616,733280417,5),(1616,749005218,6),(1616,764730018,5),(1616,780454819,6),(1616,796179619,5),(1616,811904419,6),(1616,828234020,5),(1616,846378020,6),(1616,859683620,5),(1616,877827621,6),(1616,891133221,5),(1616,909277221,6),(1616,922582822,5),(1616,941331622,6),(1616,954032422,5),(1616,972781222,6),(1616,985482022,5),(1616,1004230822,6),(1616,1017536422,5),(1616,1035680422,6),(1616,1048986022,5),(1616,1067130022,6),(1616,1080435622,5),(1616,1099184422,6),(1616,1111885222,5),(1616,1130634022,6),(1616,1143334823,5),(1616,1162083623,6),(1616,1174784423,5),(1616,1193533223,6),(1616,1206838823,5),(1616,1224982823,6),(1616,1238288424,5),(1616,1256432424,6),(1616,1269738024,5),(1616,1288486824,6),(1616,1301187624,5),(1616,1319936424,6),(1616,1332637224,5),(1616,1351386025,6),(1616,1364691625,5),(1616,1382835625,6),(1616,1396141225,5),(1616,1414285225,6),(1616,1427590825,5),(1616,1445734826,6),(1616,1459040426,5),(1616,1477789226,6),(1616,1490490027,5),(1616,1509238827,6),(1616,1521939627,5),(1616,1540688427,6),(1616,1553994027,5),(1616,1572138027,6),(1616,1585443627,5),(1616,1603587627,6),(1616,1616893227,5),(1616,1635642027,6),(1616,1648342827,5),(1616,1667091627,6),(1616,1679792427,5),(1616,1698541227,6),(1616,1711846827,5),(1616,1729990827,6),(1616,1743296427,5),(1616,1761440427,6),(1616,1774746027,5),(1616,1792890027,6),(1616,1806195627,5),(1616,1824944427,6),(1616,1837645227,5),(1616,1856394027,6),(1616,1869094827,5),(1616,1887843627,6),(1616,1901149227,5),(1616,1919293227,6),(1616,1932598827,5),(1616,1950742827,6),(1616,1964048427,5),(1616,1982797227,6),(1616,1995498027,5),(1616,2014246827,6),(1616,2026947627,5),(1616,2045696427,6),(1616,2058397227,5),(1616,2077146027,6),(1616,2090451627,5),(1616,2108595627,6),(1616,2121901227,5),(1616,2140045227,6),(1617,-1740355200,1),(1617,-1693702800,4),(1617,-1680483600,1),(1617,-1663455600,2),(1617,-1650150000,3),(1617,-1632006000,2),(1617,-1618700400,3),(1617,-1613826000,7),(1617,-1604278800,5),(1617,-1585530000,6),(1617,-1574038800,5),(1617,-1552266000,6),(1617,-1539997200,5),(1617,-1520557200,6),(1617,-1507510800,5),(1617,-1490576400,6),(1617,-1473642000,5),(1617,-1459126800,6),(1617,-1444006800,5),(1617,-1427677200,6),(1617,-1411952400,5),(1617,-1396227600,6),(1617,-1379293200,5),(1617,-1364778000,6),(1617,-1348448400,5),(1617,-1333328400,6),(1617,-1316394000,5),(1617,-1301263200,6),(1617,-1284328800,5),(1617,-1269813600,6),(1617,-1253484000,5),(1617,-1238364000,6),(1617,-1221429600,5),(1617,-1206914400,6),(1617,-1191189600,5),(1617,-1175464800,6),(1617,-1160344800,5),(1617,-1143410400,6),(1617,-1127685600,5),(1617,-1111960800,6),(1617,-1096840800,5),(1617,-1080511200,6),(1617,-1063576800,5),(1617,-1049061600,6),(1617,-1033336800,5),(1617,-1017612000,6),(1617,-1002492000,5),(1617,-986162400,6),(1617,-969228000,5),(1617,-950479200,6),(1617,-942012000,5),(1617,-934668000,2),(1617,-857257200,3),(1617,-844556400,2),(1617,-828226800,3),(1617,-812502000,2),(1617,-799293600,4),(1617,-798073200,3),(1617,-781052400,2),(1617,-766623600,3),(1617,-745455600,2),(1617,-733273200,3),(1617,220921205,1),(1617,228877206,8),(1617,243997206,9),(1617,260326807,8),(1617,276051607,9),(1617,291776408,8),(1617,307501208,9),(1617,323830809,8),(1617,338950809,9),(1617,354675609,8),(1617,370400410,9),(1617,386125210,8),(1617,401850011,9),(1617,417574811,8),(1617,433299612,9),(1617,449024412,8),(1617,465354012,9),(1617,481078812,8),(1617,496803613,9),(1617,512528413,8),(1617,528253213,9),(1617,543978013,8),(1617,559702813,9),(1617,575427614,8),(1617,591152414,9),(1617,606877214,8),(1617,622602014,9),(1617,638326815,8),(1617,654656415,9),(1617,670381216,8),(1617,686106016,9),(1617,701830816,8),(1617,717555617,9),(1617,733280417,8),(1617,749005218,9),(1617,764730018,8),(1617,780454819,9),(1617,796179619,8),(1617,811904419,9),(1617,828234020,8),(1617,846378020,9),(1617,859683620,8),(1617,877827621,9),(1617,891133221,8),(1617,909277221,9),(1617,922582822,8),(1617,941331622,9),(1617,954032422,8),(1617,972781222,9),(1617,985482022,8),(1617,1004230822,9),(1617,1017536422,8),(1617,1035680422,9),(1617,1048986022,8),(1617,1067130022,9),(1617,1080435622,8),(1617,1099184422,9),(1617,1111885222,8),(1617,1130634022,9),(1617,1143334823,8),(1617,1162083623,9),(1617,1174784423,8),(1617,1193533223,9),(1617,1206838823,8),(1617,1224982823,9),(1617,1238288424,8),(1617,1256432424,9),(1617,1269738024,8),(1617,1288486824,9),(1617,1301187624,8),(1617,1319936424,9),(1617,1332637224,8),(1617,1351386025,9),(1617,1364691625,8),(1617,1382835625,9),(1617,1396141225,8),(1617,1414285225,9),(1617,1427590825,8),(1617,1445734826,9),(1617,1459040426,8),(1617,1477789226,9),(1617,1490490027,8),(1617,1509238827,9),(1617,1521939627,8),(1617,1540688427,9),(1617,1553994027,8),(1617,1572138027,9),(1617,1585443627,8),(1617,1603587627,9),(1617,1616893227,8),(1617,1635642027,9),(1617,1648342827,8),(1617,1667091627,9),(1617,1679792427,8),(1617,1698541227,9),(1617,1711846827,8),(1617,1729990827,9),(1617,1743296427,8),(1617,1761440427,9),(1617,1774746027,8),(1617,1792890027,9),(1617,1806195627,8),(1617,1824944427,9),(1617,1837645227,8),(1617,1856394027,9),(1617,1869094827,8),(1617,1887843627,9),(1617,1901149227,8),(1617,1919293227,9),(1617,1932598827,8),(1617,1950742827,9),(1617,1964048427,8),(1617,1982797227,9),(1617,1995498027,8),(1617,2014246827,9),(1617,2026947627,8),(1617,2045696427,9),(1617,2058397227,8),(1617,2077146027,9),(1617,2090451627,8),(1617,2108595627,9),(1617,2121901227,8),(1617,2140045227,9),(1618,-1213148664,4),(1618,-1187056800,1),(1618,-1175479200,2),(1618,-1159754400,1),(1618,-1144029600,2),(1618,-1127700000,1),(1618,-1111975200,2),(1618,-1096250400,1),(1618,-1080525600,2),(1618,-1064800800,1),(1618,-1049076000,2),(1618,-1033351200,1),(1618,-1017626400,2),(1618,-1001901600,1),(1618,-986176800,2),(1618,-970452000,1),(1618,-954727200,2),(1618,296604008,3),(1618,307486808,4),(1618,323816409,3),(1618,338940009,4),(1618,354672009,1),(1618,370396810,2),(1618,386121610,1),(1618,401846411,2),(1618,417571211,1),(1618,433296012,2),(1618,449020812,1),(1618,465350412,2),(1618,481075212,1),(1618,496800013,2),(1618,512524813,1),(1618,528249613,2),(1618,543974413,1),(1618,559699213,2),(1618,575424014,1),(1618,591148814,2),(1618,606873614,1),(1618,622598414,2),(1618,638323215,1),(1618,654652815,2),(1618,662680815,4),(1618,670370416,1),(1618,686095216,2),(1618,701820016,1),(1618,717544817,2),(1618,733269617,1),(1618,748994418,2),(1618,757375218,4),(1618,764719218,3),(1618,780440419,4),(1618,796168819,3),(1618,811890019,4),(1618,828223220,3),(1618,846363620,4),(1618,859683620,5),(1618,877827621,6),(1618,891133221,5),(1618,909277221,6),(1618,922582822,5),(1618,941331622,6),(1618,954032422,5),(1618,972781222,6),(1618,985482022,5),(1618,1004230822,6),(1618,1017536422,5),(1618,1035680422,6),(1618,1048986022,5),(1618,1067130022,6),(1618,1080435622,5),(1618,1099184422,6),(1618,1111885222,5),(1618,1130634022,6),(1618,1143334823,5),(1618,1162083623,6),(1618,1174784423,5),(1618,1193533223,6),(1618,1206838823,5),(1618,1224982823,6),(1618,1238288424,5),(1618,1256432424,6),(1618,1269738024,5),(1618,1288486824,6),(1618,1301187624,5),(1618,1319936424,6),(1618,1332637224,5),(1618,1351386025,6),(1618,1364691625,5),(1618,1382835625,6),(1618,1396141225,5),(1618,1414285225,6),(1618,1427590825,5),(1618,1445734826,6),(1618,1459040426,5),(1618,1477789226,6),(1618,1490490027,5),(1618,1509238827,6),(1618,1521939627,5),(1618,1540688427,6),(1618,1553994027,5),(1618,1572138027,6),(1618,1585443627,5),(1618,1603587627,6),(1618,1616893227,5),(1618,1635642027,6),(1618,1648342827,5),(1618,1667091627,6),(1618,1679792427,5),(1618,1698541227,6),(1618,1711846827,5),(1618,1729990827,6),(1618,1743296427,5),(1618,1761440427,6),(1618,1774746027,5),(1618,1792890027,6),(1618,1806195627,5),(1618,1824944427,6),(1618,1837645227,5),(1618,1856394027,6),(1618,1869094827,5),(1618,1887843627,6),(1618,1901149227,5),(1618,1919293227,6),(1618,1932598827,5),(1618,1950742827,6),(1618,1964048427,5),(1618,1982797227,6),(1618,1995498027,5),(1618,2014246827,6),(1618,2026947627,5),(1618,2045696427,6),(1618,2058397227,5),(1618,2077146027,6),(1618,2090451627,5),(1618,2108595627,6),(1618,2121901227,5),(1618,2140045227,6),(1619,-1693706400,0),(1619,-1680483600,1),(1619,-1663455600,2),(1619,-1650150000,3),(1619,-1640998800,1),(1619,-1633212000,0),(1619,-1618700400,1),(1619,-1600466400,0),(1619,-1581202800,1),(1619,-906771600,0),(1619,-857257200,3),(1619,-844556400,2),(1619,-828226800,3),(1619,-812502000,2),(1619,-796777200,3),(1619,-788922000,1),(1619,-778471200,0),(1619,-762660000,1),(1619,-749689200,2),(1619,-733359600,3),(1619,-717634800,2),(1619,-701910000,3),(1619,-686185200,2),(1619,-670460400,3),(1619,-654130800,2),(1619,-639010800,3),(1619,-621990000,2),(1619,-605660400,3),(1619,-492656400,0),(1619,-481168800,1),(1619,-461120400,0),(1619,-449632800,1),(1619,-428547600,0),(1619,-418269600,1),(1619,-397094400,0),(1619,-386809200,1),(1619,323827209,0),(1619,338950809,4),(1619,354675609,5),(1619,370400410,4),(1619,386125210,5),(1619,401850011,4),(1619,417574811,5),(1619,433299612,4),(1619,449024412,5),(1619,465354012,4),(1619,481078812,5),(1619,496803613,4),(1619,512528413,5),(1619,528253213,4),(1619,543978013,5),(1619,559702813,4),(1619,575427614,5),(1619,591152414,4),(1619,606877214,5),(1619,622602014,4),(1619,638326815,5),(1619,654656415,4),(1619,670381216,5),(1619,686106016,4),(1619,701830816,5),(1619,717555617,4),(1619,733280417,5),(1619,749005218,4),(1619,764730018,5),(1619,780454819,4),(1619,796179619,5),(1619,811904419,4),(1619,828234020,5),(1619,846378020,4),(1619,859683620,5),(1619,877827621,4),(1619,891133221,5),(1619,909277221,4),(1619,922582822,5),(1619,941331622,4),(1619,954032422,5),(1619,972781222,4),(1619,985482022,5),(1619,1004230822,4),(1619,1017536422,5),(1619,1035680422,4),(1619,1048986022,5),(1619,1067130022,4),(1619,1080435622,5),(1619,1099184422,4),(1619,1111885222,5),(1619,1130634022,4),(1619,1143334823,5),(1619,1162083623,4),(1619,1174784423,5),(1619,1193533223,4),(1619,1206838823,5),(1619,1224982823,4),(1619,1238288424,5),(1619,1256432424,4),(1619,1269738024,5),(1619,1288486824,4),(1619,1301187624,5),(1619,1319936424,4),(1619,1332637224,5),(1619,1351386025,4),(1619,1364691625,5),(1619,1382835625,4),(1619,1396141225,5),(1619,1414285225,4),(1619,1427590825,5),(1619,1445734826,4),(1619,1459040426,5),(1619,1477789226,4),(1619,1490490027,5),(1619,1509238827,4),(1619,1521939627,5),(1619,1540688427,4),(1619,1553994027,5),(1619,1572138027,4),(1619,1585443627,5),(1619,1603587627,4),(1619,1616893227,5),(1619,1635642027,4),(1619,1648342827,5),(1619,1667091627,4),(1619,1679792427,5),(1619,1698541227,4),(1619,1711846827,5),(1619,1729990827,4),(1619,1743296427,5),(1619,1761440427,4),(1619,1774746027,5),(1619,1792890027,4),(1619,1806195627,5),(1619,1824944427,4),(1619,1837645227,5),(1619,1856394027,4),(1619,1869094827,5),(1619,1887843627,4),(1619,1901149227,5),(1619,1919293227,4),(1619,1932598827,5),(1619,1950742827,4),(1619,1964048427,5),(1619,1982797227,4),(1619,1995498027,5),(1619,2014246827,4),(1619,2026947627,5),(1619,2045696427,4),(1619,2058397227,5),(1619,2077146027,4),(1619,2090451627,5),(1619,2108595627,4),(1619,2121901227,5),(1619,2140045227,4),(1620,-904435200,0),(1620,-891129600,1),(1620,-872985600,0),(1620,-859680000,1),(1620,354675609,2),(1620,370400410,3),(1620,386125210,2),(1620,401850011,3),(1620,417574811,2),(1620,433299612,3),(1620,449024412,2),(1620,465354012,3),(1620,481078812,2),(1620,496803613,3),(1620,512528413,2),(1620,528253213,3),(1620,543978013,2),(1620,559702813,3),(1620,575427614,2),(1620,591152414,3),(1620,606877214,2),(1620,622602014,3),(1620,638326815,2),(1620,654656415,3),(1620,670381216,2),(1620,686106016,3),(1620,701830816,2),(1620,717555617,3),(1620,733280417,2),(1620,749005218,3),(1620,764730018,2),(1620,780454819,3),(1620,796179619,2),(1620,811904419,3),(1620,828234020,2),(1620,846378020,3),(1620,859683620,2),(1620,877827621,3),(1620,891133221,2),(1620,909277221,3),(1620,922582822,2),(1620,941331622,3),(1620,954032422,2),(1620,972781222,3),(1620,985482022,2),(1620,1004230822,3),(1620,1017536422,2),(1620,1035680422,3),(1620,1048986022,2),(1620,1067130022,3),(1620,1080435622,2),(1620,1099184422,3),(1620,1111885222,2),(1620,1130634022,3),(1620,1143334823,2),(1620,1162083623,3),(1620,1174784423,2),(1620,1193533223,3),(1620,1206838823,2),(1620,1224982823,3),(1620,1238288424,2),(1620,1256432424,3),(1620,1269738024,2),(1620,1288486824,3),(1620,1301187624,2),(1620,1319936424,3),(1620,1332637224,2),(1620,1351386025,3),(1620,1364691625,2),(1620,1382835625,3),(1620,1396141225,2),(1620,1414285225,3),(1620,1427590825,2),(1620,1445734826,3),(1620,1459040426,2),(1620,1477789226,3),(1620,1490490027,2),(1620,1509238827,3),(1620,1521939627,2),(1620,1540688427,3),(1620,1553994027,2),(1620,1572138027,3),(1620,1585443627,2),(1620,1603587627,3),(1620,1616893227,2),(1620,1635642027,3),(1620,1648342827,2),(1620,1667091627,3),(1620,1679792427,2),(1620,1698541227,3),(1620,1711846827,2),(1620,1729990827,3),(1620,1743296427,2),(1620,1761440427,3),(1620,1774746027,2),(1620,1792890027,3),(1620,1806195627,2),(1620,1824944427,3),(1620,1837645227,2),(1620,1856394027,3),(1620,1869094827,2),(1620,1887843627,3),(1620,1901149227,2),(1620,1919293227,3),(1620,1932598827,2),(1620,1950742827,3),(1620,1964048427,2),(1620,1982797227,3),(1620,1995498027,2),(1620,2014246827,3),(1620,2026947627,2),(1620,2045696427,3),(1620,2058397227,2),(1620,2077146027,3),(1620,2090451627,2),(1620,2108595627,3),(1620,2121901227,2),(1620,2140045227,3),(1621,-1637114100,1),(1621,-1213148664,4),(1621,-1187056800,2),(1621,-1175479200,3),(1621,-1159754400,2),(1621,-1144029600,3),(1621,-1127700000,2),(1621,-1111975200,3),(1621,-1096250400,2),(1621,-1080525600,3),(1621,-1064800800,2),(1621,-1049076000,3),(1621,-1033351200,2),(1621,-1017626400,3),(1621,-1001901600,2),(1621,-986176800,3),(1621,-970452000,2),(1621,-954727200,3),(1621,-927165600,5),(1621,-898138800,8),(1621,-857257200,6),(1621,-844556400,7),(1621,-828226800,6),(1621,-812502000,7),(1621,-800157600,10),(1621,354920409,9),(1621,370728010,10),(1621,386456410,9),(1621,402264011,10),(1621,417992411,9),(1621,433800012,10),(1621,449614812,9),(1621,465346812,11),(1621,481071612,12),(1621,496796413,11),(1621,512521213,12),(1621,528246013,11),(1621,543970813,12),(1621,559695613,11),(1621,575420414,12),(1621,591145214,11),(1621,606870014,12),(1621,622594814,11),(1621,638319615,12),(1621,641944815,5),(1621,654652815,3),(1621,670377616,2),(1621,686102416,3),(1621,694216816,4),(1621,701820016,5),(1621,717541217,4),(1621,733269617,5),(1621,748990818,4),(1621,764719218,5),(1621,780440419,4),(1621,796168819,5),(1621,811890019,4),(1621,828223220,5),(1621,846363620,4),(1621,859680020,5),(1621,877824021,4),(1621,891129621,5),(1621,909273621,4),(1621,922579222,5),(1621,941328022,4),(1621,954028822,5),(1621,972777622,4),(1621,985478422,5),(1621,1004227222,4),(1621,1017532822,5),(1621,1035676822,4),(1621,1048982422,5),(1621,1067126422,4),(1621,1080432022,5),(1621,1099180822,4),(1621,1111881622,5),(1621,1130630422,4),(1621,1143331223,5),(1621,1162080023,4),(1621,1174780823,5),(1621,1193529623,4),(1621,1206835223,5),(1621,1224979223,4),(1621,1238284824,5),(1621,1256428824,4),(1621,1269734424,5),(1621,1288483224,4),(1621,1301184024,5),(1621,1319932824,4),(1621,1332633624,5),(1621,1351382425,4),(1621,1364688025,5),(1621,1382832025,4),(1621,1396137625,5),(1621,1414281625,4),(1621,1427587225,5),(1621,1445731226,4),(1621,1459036826,5),(1621,1477785626,4),(1621,1490486427,5),(1621,1509235227,4),(1621,1521936027,5),(1621,1540684827,4),(1621,1553990427,5),(1621,1572134427,4),(1621,1585440027,5),(1621,1603584027,4),(1621,1616889627,5),(1621,1635638427,4),(1621,1648339227,5),(1621,1667088027,4),(1621,1679788827,5),(1621,1698537627,4),(1621,1711843227,5),(1621,1729987227,4),(1621,1743292827,5),(1621,1761436827,4),(1621,1774742427,5),(1621,1792886427,4),(1621,1806192027,5),(1621,1824940827,4),(1621,1837641627,5),(1621,1856390427,4),(1621,1869091227,5),(1621,1887840027,4),(1621,1901145627,5),(1621,1919289627,4),(1621,1932595227,5),(1621,1950739227,4),(1621,1964044827,5),(1621,1982793627,4),(1621,1995494427,5),(1621,2014243227,4),(1621,2026944027,5),(1621,2045692827,4),(1621,2058393627,5),(1621,2077142427,4),(1621,2090448027,5),(1621,2108592027,4),(1621,2121897627,5),(1621,2140041627,4),(1622,-1692496800,0),(1622,-1680490800,1),(1622,-935110800,0),(1622,-857257200,2),(1622,-844556400,3),(1622,-828226800,2),(1622,-812502000,3),(1622,-796777200,2),(1622,-781052400,3),(1622,-769388400,2),(1622,-747010800,3),(1622,-736383600,2),(1622,-715215600,3),(1622,-706748400,2),(1622,-683161200,3),(1622,-675298800,2),(1622,315529208,1),(1622,323830809,4),(1622,338950809,5),(1622,354675609,4),(1622,370400410,5),(1622,386125210,4),(1622,401850011,5),(1622,417574811,4),(1622,433299612,5),(1622,449024412,4),(1622,465354012,5),(1622,481078812,4),(1622,496803613,5),(1622,512528413,4),(1622,528253213,5),(1622,543978013,4),(1622,559702813,5),(1622,575427614,4),(1622,591152414,5),(1622,606877214,4),(1622,622602014,5),(1622,638326815,4),(1622,654656415,5),(1622,670381216,4),(1622,686106016,5),(1622,701830816,4),(1622,717555617,5),(1622,733280417,4),(1622,749005218,5),(1622,764730018,4),(1622,780454819,5),(1622,796179619,4),(1622,811904419,5),(1622,828234020,4),(1622,846378020,5),(1622,859683620,4),(1622,877827621,5),(1622,891133221,4),(1622,909277221,5),(1622,922582822,4),(1622,941331622,5),(1622,954032422,4),(1622,972781222,5),(1622,985482022,4),(1622,1004230822,5),(1622,1017536422,4),(1622,1035680422,5),(1622,1048986022,4),(1622,1067130022,5),(1622,1080435622,4),(1622,1099184422,5),(1622,1111885222,4),(1622,1130634022,5),(1622,1143334823,4),(1622,1162083623,5),(1622,1174784423,4),(1622,1193533223,5),(1622,1206838823,4),(1622,1224982823,5),(1622,1238288424,4),(1622,1256432424,5),(1622,1269738024,4),(1622,1288486824,5),(1622,1301187624,4),(1622,1319936424,5),(1622,1332637224,4),(1622,1351386025,5),(1622,1364691625,4),(1622,1382835625,5),(1622,1396141225,4),(1622,1414285225,5),(1622,1427590825,4),(1622,1445734826,5),(1622,1459040426,4),(1622,1477789226,5),(1622,1490490027,4),(1622,1509238827,5),(1622,1521939627,4),(1622,1540688427,5),(1622,1553994027,4),(1622,1572138027,5),(1622,1585443627,4),(1622,1603587627,5),(1622,1616893227,4),(1622,1635642027,5),(1622,1648342827,4),(1622,1667091627,5),(1622,1679792427,4),(1622,1698541227,5),(1622,1711846827,4),(1622,1729990827,5),(1622,1743296427,4),(1622,1761440427,5),(1622,1774746027,4),(1622,1792890027,5),(1622,1806195627,4),(1622,1824944427,5),(1622,1837645227,4),(1622,1856394027,5),(1622,1869094827,4),(1622,1887843627,5),(1622,1901149227,4),(1622,1919293227,5),(1622,1932598827,4),(1622,1950742827,5),(1622,1964048427,4),(1622,1982797227,5),(1622,1995498027,4),(1622,2014246827,5),(1622,2026947627,4),(1622,2045696427,5),(1622,2058397227,4),(1622,2077146027,5),(1622,2090451627,4),(1622,2108595627,5),(1622,2121901227,4),(1622,2140045227,5),(1623,-1691962479,1),(1623,-1680471279,3),(1623,-1664143200,2),(1623,-1650146400,3),(1623,-1633903200,2),(1623,-1617487200,3),(1623,-1601848800,2),(1623,-1586037600,3),(1623,-1570399200,2),(1623,-1552168800,3),(1623,-1538344800,2),(1623,-1522533600,3),(1623,-1517011200,5),(1623,-1507500000,4),(1623,-1490565600,3),(1623,-1473631200,4),(1623,-1460930400,3),(1623,-1442786400,4),(1623,-1428876000,3),(1623,-1410732000,4),(1623,-1396216800,3),(1623,-1379282400,4),(1623,-1364767200,3),(1623,-1348437600,4),(1623,-1333317600,3),(1623,-1315778400,4),(1623,-1301263200,3),(1623,-1284328800,4),(1623,-1269813600,3),(1623,-1253484000,4),(1623,-1238364000,3),(1623,-1221429600,4),(1623,-1206914400,3),(1623,-1189980000,4),(1623,-1175464800,3),(1623,-1159135200,4),(1623,-1143410400,3),(1623,-1126476000,4),(1623,-1111960800,3),(1623,-1095631200,4),(1623,-1080511200,3),(1623,-1063576800,4),(1623,-1049061600,3),(1623,-1032127200,4),(1623,-1017612000,3),(1623,-1001282400,4),(1623,-986162400,3),(1623,-969228000,4),(1623,-950479200,3),(1623,-942012000,4),(1623,-733356000,3),(1623,-719445600,4),(1623,-699487200,3),(1623,-684972000,4),(1623,-668037600,3),(1623,-654732000,4),(1623,-636588000,3),(1623,-622072800,4),(1623,-605743200,3),(1623,-590623200,4),(1623,-574293600,3),(1623,-558568800,4),(1623,-542239200,3),(1623,-527119200,4),(1623,-512604000,3),(1623,-496274400,4),(1623,-481154400,3),(1623,-464220000,4),(1623,-449704800,3),(1623,-432165600,4),(1623,-417650400,3),(1623,-401320800,4),(1623,-386200800,3),(1623,-369266400,4),(1623,-354751200,3),(1623,-337816800,4),(1623,-323301600,3),(1623,-306972000,4),(1623,-291852000,3),(1623,-276732000,4),(1623,-257983200,3),(1623,-245282400,4),(1623,-226533600,3),(1623,-213228000,4),(1623,-195084000,3),(1623,-182383200,4),(1623,-163634400,3),(1623,-150933600,4),(1623,-132184800,3),(1623,-119484000,4),(1623,-100735200,3),(1623,-88034400,4),(1623,-68680800,3),(1623,-59004000,4),(1623,-37242000,6),(1623,57722400,8),(1623,69818400,4),(1623,89172001,3),(1623,101268002,4),(1623,120621602,3),(1623,132717603,4),(1623,152071203,3),(1623,164167204,4),(1623,183520804,3),(1623,196221605,4),(1623,214970405,3),(1623,227671206,4),(1623,246420006,3),(1623,259120807,4),(1623,278474407,3),(1623,290570408,4),(1623,309924008,3),(1623,322020009,4),(1623,341373609,3),(1623,354675609,7),(1623,372819610,8),(1623,386125210,7),(1623,404269211,8),(1623,417574811,7),(1623,435718812,8),(1623,449024412,7),(1623,467773212,8),(1623,481078812,7),(1623,499222813,8),(1623,512528413,7),(1623,530672413,8),(1623,543978013,7),(1623,562122013,8),(1623,575427614,7),(1623,593571614,8),(1623,606877214,7),(1623,625626014,8),(1623,638326815,7),(1623,657075615,8),(1623,670381216,7),(1623,688525216,8),(1623,701830816,7),(1623,719974817,8),(1623,733280417,7),(1623,751424418,8),(1623,764730018,7),(1623,782874019,8),(1623,796179619,7),(1623,814323619,8),(1623,820454420,5),(1623,828234020,7),(1623,846378020,8),(1623,859683620,7),(1623,877827621,8),(1623,891133221,7),(1623,909277221,8),(1623,922582822,7),(1623,941331622,8),(1623,954032422,7),(1623,972781222,8),(1623,985482022,7),(1623,1004230822,8),(1623,1017536422,7),(1623,1035680422,8),(1623,1048986022,7),(1623,1067130022,8),(1623,1080435622,7),(1623,1099184422,8),(1623,1111885222,7),(1623,1130634022,8),(1623,1143334823,7),(1623,1162083623,8),(1623,1174784423,7),(1623,1193533223,8),(1623,1206838823,7),(1623,1224982823,8),(1623,1238288424,7),(1623,1256432424,8),(1623,1269738024,7),(1623,1288486824,8),(1623,1301187624,7),(1623,1319936424,8),(1623,1332637224,7),(1623,1351386025,8),(1623,1364691625,7),(1623,1382835625,8),(1623,1396141225,7),(1623,1414285225,8),(1623,1427590825,7),(1623,1445734826,8),(1623,1459040426,7),(1623,1477789226,8),(1623,1490490027,7),(1623,1509238827,8),(1623,1521939627,7),(1623,1540688427,8),(1623,1553994027,7),(1623,1572138027,8),(1623,1585443627,7),(1623,1603587627,8),(1623,1616893227,7),(1623,1635642027,8),(1623,1648342827,7),(1623,1667091627,8),(1623,1679792427,7),(1623,1698541227,8),(1623,1711846827,7),(1623,1729990827,8),(1623,1743296427,7),(1623,1761440427,8),(1623,1774746027,7),(1623,1792890027,8),(1623,1806195627,7),(1623,1824944427,8),(1623,1837645227,7),(1623,1856394027,8),(1623,1869094827,7),(1623,1887843627,8),(1623,1901149227,7),(1623,1919293227,8),(1623,1932598827,7),(1623,1950742827,8),(1623,1964048427,7),(1623,1982797227,8),(1623,1995498027,7),(1623,2014246827,8),(1623,2026947627,7),(1623,2045696427,8),(1623,2058397227,7),(1623,2077146027,8),(1623,2090451627,7),(1623,2108595627,8),(1623,2121901227,7),(1623,2140045227,8),(1624,-1691964000,0),(1624,-1680472800,1),(1624,-1664143200,0),(1624,-1650146400,1),(1624,-1633903200,0),(1624,-1617487200,1),(1624,-1601848800,0),(1624,-1586037600,1),(1624,-1570399200,0),(1624,-1552168800,1),(1624,-1538344800,0),(1624,-1522533600,1),(1624,-1507500000,0),(1624,-1490565600,1),(1624,-1473631200,0),(1624,-1460930400,1),(1624,-1442786400,0),(1624,-1428876000,1),(1624,-1410732000,0),(1624,-1396216800,1),(1624,-1379282400,0),(1624,-1364767200,1),(1624,-1348437600,0),(1624,-1333317600,1),(1624,-1315778400,0),(1624,-1301263200,1),(1624,-1284328800,0),(1624,-1269813600,1),(1624,-1253484000,0),(1624,-1238364000,1),(1624,-1221429600,0),(1624,-1206914400,1),(1624,-1189980000,0),(1624,-1175464800,1),(1624,-1159135200,0),(1624,-1143410400,1),(1624,-1126476000,0),(1624,-1111960800,1),(1624,-1095631200,0),(1624,-1080511200,1),(1624,-1063576800,0),(1624,-1049061600,1),(1624,-1032127200,0),(1624,-1017612000,1),(1624,-1001282400,0),(1624,-986162400,1),(1624,-969228000,0),(1624,-950479200,1),(1624,-942012000,0),(1624,-904518000,2),(1624,-896050800,0),(1624,-875487600,2),(1624,-864601200,0),(1624,-844038000,2),(1624,-832546800,0),(1624,-812588400,2),(1624,-798073200,0),(1624,-781052400,2),(1624,-772066800,0),(1624,-764805600,1),(1624,-748476000,0),(1624,-733356000,1),(1624,-719445600,0),(1624,-717030000,2),(1624,-706748400,0),(1624,-699487200,1),(1624,-687996000,0),(1624,-668037600,1),(1624,-654732000,0),(1624,-636588000,1),(1624,-622072800,0),(1624,-605743200,1),(1624,-590623200,0),(1624,-574293600,1),(1624,-558568800,0),(1624,-542239200,1),(1624,-527119200,0),(1624,-512604000,1),(1624,-496274400,0),(1624,-481154400,1),(1624,-464220000,0),(1624,-449704800,1),(1624,-432165600,0),(1624,-417650400,1),(1624,-401320800,3),(1624,386125210,4),(1624,401850011,5),(1624,417574811,4),(1624,433299612,5),(1624,449024412,4),(1624,465354012,5),(1624,481078812,4),(1624,496803613,5),(1624,512528413,4),(1624,528253213,5),(1624,543978013,4),(1624,559702813,5),(1624,575427614,4),(1624,591152414,5),(1624,606877214,4),(1624,622602014,5),(1624,638326815,4),(1624,654656415,5),(1624,670381216,4),(1624,686106016,5),(1624,701830816,4),(1624,717555617,5),(1624,733280417,4),(1624,749005218,5),(1624,764730018,4),(1624,780454819,5),(1624,796179619,4),(1624,811904419,5),(1624,828234020,4),(1624,846378020,5),(1624,859683620,4),(1624,877827621,5),(1624,891133221,4),(1624,909277221,5),(1624,922582822,4),(1624,941331622,5),(1624,954032422,4),(1624,972781222,5),(1624,985482022,4),(1624,1004230822,5),(1624,1017536422,4),(1624,1035680422,5),(1624,1048986022,4),(1624,1067130022,5),(1624,1080435622,4),(1624,1099184422,5),(1624,1111885222,4),(1624,1130634022,5),(1624,1143334823,4),(1624,1162083623,5),(1624,1174784423,4),(1624,1193533223,5),(1624,1206838823,4),(1624,1224982823,5),(1624,1238288424,4),(1624,1256432424,5),(1624,1269738024,4),(1624,1288486824,5),(1624,1301187624,4),(1624,1319936424,5),(1624,1332637224,4),(1624,1351386025,5),(1624,1364691625,4),(1624,1382835625,5),(1624,1396141225,4),(1624,1414285225,5),(1624,1427590825,4),(1624,1445734826,5),(1624,1459040426,4),(1624,1477789226,5),(1624,1490490027,4),(1624,1509238827,5),(1624,1521939627,4),(1624,1540688427,5),(1624,1553994027,4),(1624,1572138027,5),(1624,1585443627,4),(1624,1603587627,5),(1624,1616893227,4),(1624,1635642027,5),(1624,1648342827,4),(1624,1667091627,5),(1624,1679792427,4),(1624,1698541227,5),(1624,1711846827,4),(1624,1729990827,5),(1624,1743296427,4),(1624,1761440427,5),(1624,1774746027,4),(1624,1792890027,5),(1624,1806195627,4),(1624,1824944427,5),(1624,1837645227,4),(1624,1856394027,5),(1624,1869094827,4),(1624,1887843627,5),(1624,1901149227,4),(1624,1919293227,5),(1624,1932598827,4),(1624,1950742827,5),(1624,1964048427,4),(1624,1982797227,5),(1624,1995498027,4),(1624,2014246827,5),(1624,2026947627,4),(1624,2045696427,5),(1624,2058397227,4),(1624,2077146027,5),(1624,2090451627,4),(1624,2108595627,5),(1624,2121901227,4),(1624,2140045227,5),(1625,-1691964000,0),(1625,-1680472800,1),(1625,-1664143200,0),(1625,-1650146400,1),(1625,-1633903200,0),(1625,-1617487200,1),(1625,-1601848800,0),(1625,-1586037600,1),(1625,-1570399200,0),(1625,-1552168800,1),(1625,-1538344800,0),(1625,-1522533600,1),(1625,-1507500000,0),(1625,-1490565600,1),(1625,-1473631200,0),(1625,-1460930400,1),(1625,-1442786400,0),(1625,-1428876000,1),(1625,-1410732000,0),(1625,-1396216800,1),(1625,-1379282400,0),(1625,-1364767200,1),(1625,-1348437600,0),(1625,-1333317600,1),(1625,-1315778400,0),(1625,-1301263200,1),(1625,-1284328800,0),(1625,-1269813600,1),(1625,-1253484000,0),(1625,-1238364000,1),(1625,-1221429600,0),(1625,-1206914400,1),(1625,-1189980000,0),(1625,-1175464800,1),(1625,-1159135200,0),(1625,-1143410400,1),(1625,-1126476000,0),(1625,-1111960800,1),(1625,-1095631200,0),(1625,-1080511200,1),(1625,-1063576800,0),(1625,-1049061600,1),(1625,-1032127200,0),(1625,-1017612000,1),(1625,-1001282400,0),(1625,-986162400,1),(1625,-969228000,0),(1625,-950479200,1),(1625,-942012000,0),(1625,-904518000,2),(1625,-896050800,0),(1625,-875487600,2),(1625,-864601200,0),(1625,-844038000,2),(1625,-832546800,0),(1625,-812588400,2),(1625,-798073200,0),(1625,-781052400,2),(1625,-772066800,0),(1625,-764805600,1),(1625,-748476000,0),(1625,-733356000,1),(1625,-719445600,0),(1625,-717030000,2),(1625,-706748400,0),(1625,-699487200,1),(1625,-687996000,0),(1625,-668037600,1),(1625,-654732000,0),(1625,-636588000,1),(1625,-622072800,0),(1625,-605743200,1),(1625,-590623200,0),(1625,-574293600,1),(1625,-558568800,0),(1625,-542239200,1),(1625,-527119200,0),(1625,-512604000,1),(1625,-496274400,0),(1625,-481154400,1),(1625,-464220000,0),(1625,-449704800,1),(1625,-432165600,0),(1625,-417650400,1),(1625,-401320800,0),(1625,-386200800,1),(1625,-369266400,0),(1625,-354751200,1),(1625,-337816800,0),(1625,-323301600,1),(1625,-306972000,0),(1625,-291852000,1),(1625,-276732000,0),(1625,-257983200,1),(1625,-245282400,0),(1625,-226533600,1),(1625,-213228000,0),(1625,-195084000,1),(1625,-182383200,0),(1625,-163634400,1),(1625,-150933600,0),(1625,-132184800,1),(1625,-119484000,0),(1625,-100735200,1),(1625,-88034400,0),(1625,-68680800,1),(1625,-59004000,0),(1625,-37242000,3),(1625,57722400,5),(1625,69818400,0),(1625,89172001,1),(1625,101268002,0),(1625,120621602,1),(1625,132717603,0),(1625,152071203,1),(1625,164167204,0),(1625,183520804,1),(1625,196221605,0),(1625,214970405,1),(1625,227671206,0),(1625,246420006,1),(1625,259120807,0),(1625,278474407,1),(1625,290570408,0),(1625,309924008,1),(1625,322020009,0),(1625,341373609,1),(1625,354675609,4),(1625,372819610,5),(1625,386125210,4),(1625,404269211,5),(1625,417574811,4),(1625,435718812,5),(1625,449024412,4),(1625,467773212,5),(1625,481078812,4),(1625,499222813,5),(1625,512528413,4),(1625,530672413,5),(1625,543978013,4),(1625,562122013,5),(1625,575427614,4),(1625,593571614,5),(1625,606877214,4),(1625,625626014,5),(1625,638326815,4),(1625,657075615,5),(1625,670381216,4),(1625,688525216,5),(1625,701830816,4),(1625,719974817,5),(1625,733280417,4),(1625,751424418,5),(1625,764730018,4),(1625,782874019,5),(1625,796179619,4),(1625,814323619,5),(1625,820454420,6),(1625,828234020,4),(1625,846378020,5),(1625,859683620,4),(1625,877827621,5),(1625,891133221,4),(1625,909277221,5),(1625,922582822,4),(1625,941331622,5),(1625,954032422,4),(1625,972781222,5),(1625,985482022,4),(1625,1004230822,5),(1625,1017536422,4),(1625,1035680422,5),(1625,1048986022,4),(1625,1067130022,5),(1625,1080435622,4),(1625,1099184422,5),(1625,1111885222,4),(1625,1130634022,5),(1625,1143334823,4),(1625,1162083623,5),(1625,1174784423,4),(1625,1193533223,5),(1625,1206838823,4),(1625,1224982823,5),(1625,1238288424,4),(1625,1256432424,5),(1625,1269738024,4),(1625,1288486824,5),(1625,1301187624,4),(1625,1319936424,5),(1625,1332637224,4),(1625,1351386025,5),(1625,1364691625,4),(1625,1382835625,5),(1625,1396141225,4),(1625,1414285225,5),(1625,1427590825,4),(1625,1445734826,5),(1625,1459040426,4),(1625,1477789226,5),(1625,1490490027,4),(1625,1509238827,5),(1625,1521939627,4),(1625,1540688427,5),(1625,1553994027,4),(1625,1572138027,5),(1625,1585443627,4),(1625,1603587627,5),(1625,1616893227,4),(1625,1635642027,5),(1625,1648342827,4),(1625,1667091627,5),(1625,1679792427,4),(1625,1698541227,5),(1625,1711846827,4),(1625,1729990827,5),(1625,1743296427,4),(1625,1761440427,5),(1625,1774746027,4),(1625,1792890027,5),(1625,1806195627,4),(1625,1824944427,5),(1625,1837645227,4),(1625,1856394027,5),(1625,1869094827,4),(1625,1887843627,5),(1625,1901149227,4),(1625,1919293227,5),(1625,1932598827,4),(1625,1950742827,5),(1625,1964048427,4),(1625,1982797227,5),(1625,1995498027,4),(1625,2014246827,5),(1625,2026947627,4),(1625,2045696427,5),(1625,2058397227,4),(1625,2077146027,5),(1625,2090451627,4),(1625,2108595627,5),(1625,2121901227,4),(1625,2140045227,5),(1626,-1535938789,2),(1626,-875671200,1),(1626,-859773600,2),(1626,354672009,1),(1626,370396810,2),(1626,386121610,1),(1626,401846411,2),(1626,417574811,3),(1626,433299612,4),(1626,449024412,3),(1626,465354012,4),(1626,481078812,3),(1626,496803613,4),(1626,512528413,3),(1626,528253213,4),(1626,543978013,3),(1626,559702813,4),(1626,575427614,3),(1626,591152414,4),(1626,606877214,3),(1626,622602014,4),(1626,638326815,3),(1626,654656415,4),(1626,670381216,3),(1626,686106016,4),(1626,701830816,3),(1626,717555617,4),(1626,733280417,3),(1626,749005218,4),(1626,764730018,3),(1626,780454819,4),(1626,796179619,3),(1626,811904419,4),(1626,828234020,3),(1626,846378020,4),(1626,859683620,3),(1626,877827621,4),(1626,891133221,3),(1626,909277221,4),(1626,922582822,3),(1626,941331622,4),(1626,954032422,3),(1626,972781222,4),(1626,985482022,3),(1626,1004230822,4),(1626,1017536422,3),(1626,1035680422,4),(1626,1048986022,3),(1626,1067130022,4),(1626,1080435622,3),(1626,1099184422,4),(1626,1111885222,3),(1626,1130634022,4),(1626,1143334823,3),(1626,1162083623,4),(1626,1174784423,3),(1626,1193533223,4),(1626,1206838823,3),(1626,1224982823,4),(1626,1238288424,3),(1626,1256432424,4),(1626,1269738024,3),(1626,1288486824,4),(1626,1301187624,3),(1626,1319936424,4),(1626,1332637224,3),(1626,1351386025,4),(1626,1364691625,3),(1626,1382835625,4),(1626,1396141225,3),(1626,1414285225,4),(1626,1427590825,3),(1626,1445734826,4),(1626,1459040426,3),(1626,1477789226,4),(1626,1490490027,3),(1626,1509238827,4),(1626,1521939627,3),(1626,1540688427,4),(1626,1553994027,3),(1626,1572138027,4),(1626,1585443627,3),(1626,1603587627,4),(1626,1616893227,3),(1626,1635642027,4),(1626,1648342827,3),(1626,1667091627,4),(1626,1679792427,3),(1626,1698541227,4),(1626,1711846827,3),(1626,1729990827,4),(1626,1743296427,3),(1626,1761440427,4),(1626,1774746027,3),(1626,1792890027,4),(1626,1806195627,3),(1626,1824944427,4),(1626,1837645227,3),(1626,1856394027,4),(1626,1869094827,3),(1626,1887843627,4),(1626,1901149227,3),(1626,1919293227,4),(1626,1932598827,3),(1626,1950742827,4),(1626,1964048427,3),(1626,1982797227,4),(1626,1995498027,3),(1626,2014246827,4),(1626,2026947627,3),(1626,2045696427,4),(1626,2058397227,3),(1626,2077146027,4),(1626,2090451627,3),(1626,2108595627,4),(1626,2121901227,3),(1626,2140045227,4),(1627,-1691964000,0),(1627,-1680472800,1),(1627,-1664143200,0),(1627,-1650146400,1),(1627,-1633903200,0),(1627,-1617487200,1),(1627,-1601848800,0),(1627,-1586037600,1),(1627,-1570399200,0),(1627,-1552168800,1),(1627,-1538344800,0),(1627,-1522533600,1),(1627,-1507500000,0),(1627,-1490565600,1),(1627,-1473631200,0),(1627,-1460930400,1),(1627,-1442786400,0),(1627,-1428876000,1),(1627,-1410732000,0),(1627,-1396216800,1),(1627,-1379282400,0),(1627,-1364767200,1),(1627,-1348437600,0),(1627,-1333317600,1),(1627,-1315778400,0),(1627,-1301263200,1),(1627,-1284328800,0),(1627,-1269813600,1),(1627,-1253484000,0),(1627,-1238364000,1),(1627,-1221429600,0),(1627,-1206914400,1),(1627,-1189980000,0),(1627,-1175464800,1),(1627,-1159135200,0),(1627,-1143410400,1),(1627,-1126476000,0),(1627,-1111960800,1),(1627,-1095631200,0),(1627,-1080511200,1),(1627,-1063576800,0),(1627,-1049061600,1),(1627,-1032127200,0),(1627,-1017612000,1),(1627,-1001282400,0),(1627,-986162400,1),(1627,-969228000,0),(1627,-950479200,1),(1627,-942012000,0),(1627,-904518000,2),(1627,-896050800,0),(1627,-875487600,2),(1627,-864601200,0),(1627,-844038000,2),(1627,-832546800,0),(1627,-812588400,2),(1627,-798073200,0),(1627,-781052400,2),(1627,-772066800,0),(1627,-764805600,1),(1627,-748476000,0),(1627,-733356000,1),(1627,-719445600,0),(1627,-717030000,2),(1627,-706748400,0),(1627,-699487200,1),(1627,-687996000,0),(1627,-668037600,1),(1627,-654732000,0),(1627,-636588000,1),(1627,-622072800,0),(1627,-605743200,1),(1627,-590623200,0),(1627,-574293600,1),(1627,-558568800,0),(1627,-542239200,1),(1627,-527119200,0),(1627,-512604000,1),(1627,-496274400,0),(1627,-481154400,1),(1627,-464220000,0),(1627,-449704800,1),(1627,-432165600,0),(1627,-417650400,1),(1627,-401320800,0),(1627,-386200800,1),(1627,-369266400,0),(1627,-354751200,1),(1627,-337816800,0),(1627,-323301600,1),(1627,-306972000,0),(1627,-291852000,1),(1627,-276732000,0),(1627,-257983200,1),(1627,-245282400,0),(1627,-226533600,1),(1627,-213228000,0),(1627,-195084000,1),(1627,-182383200,0),(1627,-163634400,1),(1627,-150933600,0),(1627,-132184800,1),(1627,-119484000,0),(1627,-100735200,1),(1627,-88034400,0),(1627,-68680800,1),(1627,-59004000,0),(1627,-37242000,3),(1627,57722400,5),(1627,69818400,0),(1627,89172001,1),(1627,101268002,0),(1627,120621602,1),(1627,132717603,0),(1627,152071203,1),(1627,164167204,0),(1627,183520804,1),(1627,196221605,0),(1627,214970405,1),(1627,227671206,0),(1627,246420006,1),(1627,259120807,0),(1627,278474407,1),(1627,290570408,0),(1627,309924008,1),(1627,322020009,0),(1627,341373609,1),(1627,354675609,4),(1627,372819610,5),(1627,386125210,4),(1627,404269211,5),(1627,417574811,4),(1627,435718812,5),(1627,449024412,4),(1627,467773212,5),(1627,481078812,4),(1627,499222813,5),(1627,512528413,4),(1627,530672413,5),(1627,543978013,4),(1627,562122013,5),(1627,575427614,4),(1627,593571614,5),(1627,606877214,4),(1627,625626014,5),(1627,638326815,4),(1627,657075615,5),(1627,670381216,4),(1627,688525216,5),(1627,701830816,4),(1627,719974817,5),(1627,733280417,4),(1627,751424418,5),(1627,764730018,4),(1627,782874019,5),(1627,796179619,4),(1627,814323619,5),(1627,820454420,6),(1627,828234020,4),(1627,846378020,5),(1627,859683620,4),(1627,877827621,5),(1627,891133221,4),(1627,909277221,5),(1627,922582822,4),(1627,941331622,5),(1627,954032422,4),(1627,972781222,5),(1627,985482022,4),(1627,1004230822,5),(1627,1017536422,4),(1627,1035680422,5),(1627,1048986022,4),(1627,1067130022,5),(1627,1080435622,4),(1627,1099184422,5),(1627,1111885222,4),(1627,1130634022,5),(1627,1143334823,4),(1627,1162083623,5),(1627,1174784423,4),(1627,1193533223,5),(1627,1206838823,4),(1627,1224982823,5),(1627,1238288424,4),(1627,1256432424,5),(1627,1269738024,4),(1627,1288486824,5),(1627,1301187624,4),(1627,1319936424,5),(1627,1332637224,4),(1627,1351386025,5),(1627,1364691625,4),(1627,1382835625,5),(1627,1396141225,4),(1627,1414285225,5),(1627,1427590825,4),(1627,1445734826,5),(1627,1459040426,4),(1627,1477789226,5),(1627,1490490027,4),(1627,1509238827,5),(1627,1521939627,4),(1627,1540688427,5),(1627,1553994027,4),(1627,1572138027,5),(1627,1585443627,4),(1627,1603587627,5),(1627,1616893227,4),(1627,1635642027,5),(1627,1648342827,4),(1627,1667091627,5),(1627,1679792427,4),(1627,1698541227,5),(1627,1711846827,4),(1627,1729990827,5),(1627,1743296427,4),(1627,1761440427,5),(1627,1774746027,4),(1627,1792890027,5),(1627,1806195627,4),(1627,1824944427,5),(1627,1837645227,4),(1627,1856394027,5),(1627,1869094827,4),(1627,1887843627,5),(1627,1901149227,4),(1627,1919293227,5),(1627,1932598827,4),(1627,1950742827,5),(1627,1964048427,4),(1627,1982797227,5),(1627,1995498027,4),(1627,2014246827,5),(1627,2026947627,4),(1627,2045696427,5),(1627,2058397227,4),(1627,2077146027,5),(1627,2090451627,4),(1627,2108595627,5),(1627,2121901227,4),(1627,2140045227,5),(1628,-1869875816,2),(1628,-1693706400,1),(1628,-1680490800,2),(1628,-1570413600,1),(1628,-1552186800,2),(1628,-1538359200,1),(1628,-1522551600,2),(1628,-1507514400,1),(1628,-1490583600,2),(1628,-1440208800,1),(1628,-1428030000,2),(1628,-1409709600,1),(1628,-1396494000,2),(1628,-931140000,1),(1628,-922762800,2),(1628,-917834400,1),(1628,-892436400,2),(1628,-875844000,1),(1628,-857358000,2),(1628,-781063200,1),(1628,-764737200,2),(1628,-744343200,1),(1628,-733806000,2),(1628,-716436000,1),(1628,-701924400,2),(1628,-684986400,1),(1628,-670474800,2),(1628,-654141600,1),(1628,-639025200,2),(1628,-621828000,1),(1628,-606970800,2),(1628,-590032800,1),(1628,-575434800,2),(1628,-235620000,1),(1628,-228279600,2),(1628,-177732000,1),(1628,-165726000,2),(1628,10533600,1),(1628,23835600,2),(1628,41983200,1),(1628,55285200,2),(1628,74037600,1),(1628,87339601,2),(1628,107910002,1),(1628,121219202,2),(1628,133920003,1),(1628,152676003,2),(1628,165362404,1),(1628,183502804,2),(1628,202428005,1),(1628,215557205,2),(1628,228866406,1),(1628,245797206,2),(1628,260316007,1),(1628,277246807,3),(1628,308779208,4),(1628,323827209,3),(1628,340228809,4),(1628,354672009,3),(1628,371678410,4),(1628,386121610,3),(1628,403128011,4),(1628,428446812,3),(1628,433886412,4),(1628,482792412,1),(1628,496702813,2),(1628,512521213,5),(1628,528246013,6),(1628,543970813,5),(1628,559695613,6),(1628,575420414,5),(1628,591145214,6),(1628,606870014,5),(1628,622594814,6),(1628,638319615,5),(1628,654649215,6),(1628,670374016,5),(1628,686098816,6),(1628,701823616,5),(1628,717548417,6),(1628,733273217,5),(1628,748998018,6),(1628,764118018,5),(1628,780447619,6),(1628,796172419,5),(1628,811897219,6),(1628,828226820,5),(1628,846370820,6),(1628,859676420,5),(1628,877820421,6),(1628,891126021,5),(1628,909270021,6),(1628,922575622,5),(1628,941324422,6),(1628,954025222,5),(1628,972774022,6),(1628,985474822,5),(1628,1004223622,6),(1628,1017529222,5),(1628,1035673222,6),(1628,1048978822,5),(1628,1067122822,6),(1628,1080428422,5),(1628,1099177222,6),(1628,1111878022,5),(1628,1130626822,6),(1628,1143327623,5),(1628,1162076423,6),(1628,1167602423,2),(1628,1174784423,7),(1628,1193533223,8),(1628,1206838823,7),(1628,1224982823,8),(1628,1238288424,7),(1628,1256432424,8),(1628,1269738024,7),(1628,1288486824,8),(1628,1301274024,7),(1628,1319936424,8),(1628,1332637224,7),(1628,1351386025,8),(1628,1364691625,7),(1628,1382835625,8),(1628,1396227625,7),(1628,1414285225,8),(1628,1427590825,7),(1628,1446944426,8),(1628,1459040426,7),(1628,1473195626,4),(1629,-1691964000,0),(1629,-1680472800,1),(1629,-1664143200,0),(1629,-1650146400,1),(1629,-1633903200,0),(1629,-1617487200,1),(1629,-1601848800,0),(1629,-1586037600,1),(1629,-1570399200,0),(1629,-1552168800,1),(1629,-1538344800,0),(1629,-1522533600,1),(1629,-1507500000,0),(1629,-1490565600,1),(1629,-1473631200,0),(1629,-1460930400,1),(1629,-1442786400,0),(1629,-1428876000,1),(1629,-1410732000,0),(1629,-1396216800,1),(1629,-1379282400,0),(1629,-1364767200,1),(1629,-1348437600,0),(1629,-1333317600,1),(1629,-1315778400,0),(1629,-1301263200,1),(1629,-1284328800,0),(1629,-1269813600,1),(1629,-1253484000,0),(1629,-1238364000,1),(1629,-1221429600,0),(1629,-1206914400,1),(1629,-1189980000,0),(1629,-1175464800,1),(1629,-1159135200,0),(1629,-1143410400,1),(1629,-1126476000,0),(1629,-1111960800,1),(1629,-1095631200,0),(1629,-1080511200,1),(1629,-1063576800,0),(1629,-1049061600,1),(1629,-1032127200,0),(1629,-1017612000,1),(1629,-1001282400,0),(1629,-986162400,1),(1629,-969228000,0),(1629,-950479200,1),(1629,-942012000,0),(1629,-904518000,2),(1629,-896050800,0),(1629,-875487600,2),(1629,-864601200,0),(1629,-844038000,2),(1629,-832546800,0),(1629,-812588400,2),(1629,-798073200,0),(1629,-781052400,2),(1629,-772066800,0),(1629,-764805600,1),(1629,-748476000,0),(1629,-733356000,1),(1629,-719445600,0),(1629,-717030000,2),(1629,-706748400,0),(1629,-699487200,1),(1629,-687996000,0),(1629,-668037600,1),(1629,-654732000,0),(1629,-636588000,1),(1629,-622072800,0),(1629,-605743200,1),(1629,-590623200,0),(1629,-574293600,1),(1629,-558568800,0),(1629,-542239200,1),(1629,-527119200,0),(1629,-512604000,1),(1629,-496274400,0),(1629,-481154400,1),(1629,-464220000,0),(1629,-449704800,1),(1629,-432165600,0),(1629,-417650400,1),(1629,-401320800,0),(1629,-386200800,1),(1629,-369266400,0),(1629,-354751200,1),(1629,-337816800,0),(1629,-323301600,1),(1629,-306972000,0),(1629,-291852000,1),(1629,-276732000,0),(1629,-257983200,1),(1629,-245282400,0),(1629,-226533600,1),(1629,-213228000,0),(1629,-195084000,1),(1629,-182383200,0),(1629,-163634400,1),(1629,-150933600,0),(1629,-132184800,1),(1629,-119484000,0),(1629,-100735200,1),(1629,-88034400,0),(1629,-68680800,1),(1629,-59004000,0),(1629,-37242000,3),(1629,57722400,5),(1629,69818400,0),(1629,89172001,1),(1629,101268002,0),(1629,120621602,1),(1629,132717603,0),(1629,152071203,1),(1629,164167204,0),(1629,183520804,1),(1629,196221605,0),(1629,214970405,1),(1629,227671206,0),(1629,246420006,1),(1629,259120807,0),(1629,278474407,1),(1629,290570408,0),(1629,309924008,1),(1629,322020009,0),(1629,341373609,1),(1629,354675609,4),(1629,372819610,5),(1629,386125210,4),(1629,404269211,5),(1629,417574811,4),(1629,435718812,5),(1629,449024412,4),(1629,467773212,5),(1629,481078812,4),(1629,499222813,5),(1629,512528413,4),(1629,530672413,5),(1629,543978013,4),(1629,562122013,5),(1629,575427614,4),(1629,593571614,5),(1629,606877214,4),(1629,625626014,5),(1629,638326815,4),(1629,657075615,5),(1629,670381216,4),(1629,688525216,5),(1629,701830816,4),(1629,719974817,5),(1629,733280417,4),(1629,751424418,5),(1629,764730018,4),(1629,782874019,5),(1629,796179619,4),(1629,814323619,5),(1629,820454420,6),(1629,828234020,4),(1629,846378020,5),(1629,859683620,4),(1629,877827621,5),(1629,891133221,4),(1629,909277221,5),(1629,922582822,4),(1629,941331622,5),(1629,954032422,4),(1629,972781222,5),(1629,985482022,4),(1629,1004230822,5),(1629,1017536422,4),(1629,1035680422,5),(1629,1048986022,4),(1629,1067130022,5),(1629,1080435622,4),(1629,1099184422,5),(1629,1111885222,4),(1629,1130634022,5),(1629,1143334823,4),(1629,1162083623,5),(1629,1174784423,4),(1629,1193533223,5),(1629,1206838823,4),(1629,1224982823,5),(1629,1238288424,4),(1629,1256432424,5),(1629,1269738024,4),(1629,1288486824,5),(1629,1301187624,4),(1629,1319936424,5),(1629,1332637224,4),(1629,1351386025,5),(1629,1364691625,4),(1629,1382835625,5),(1629,1396141225,4),(1629,1414285225,5),(1629,1427590825,4),(1629,1445734826,5),(1629,1459040426,4),(1629,1477789226,5),(1629,1490490027,4),(1629,1509238827,5),(1629,1521939627,4),(1629,1540688427,5),(1629,1553994027,4),(1629,1572138027,5),(1629,1585443627,4),(1629,1603587627,5),(1629,1616893227,4),(1629,1635642027,5),(1629,1648342827,4),(1629,1667091627,5),(1629,1679792427,4),(1629,1698541227,5),(1629,1711846827,4),(1629,1729990827,5),(1629,1743296427,4),(1629,1761440427,5),(1629,1774746027,4),(1629,1792890027,5),(1629,1806195627,4),(1629,1824944427,5),(1629,1837645227,4),(1629,1856394027,5),(1629,1869094827,4),(1629,1887843627,5),(1629,1901149227,4),(1629,1919293227,5),(1629,1932598827,4),(1629,1950742827,5),(1629,1964048427,4),(1629,1982797227,5),(1629,1995498027,4),(1629,2014246827,5),(1629,2026947627,4),(1629,2045696427,5),(1629,2058397227,4),(1629,2077146027,5),(1629,2090451627,4),(1629,2108595627,5),(1629,2121901227,4),(1629,2140045227,5),(1630,-1693706400,0),(1630,-1680483600,1),(1630,-1663455600,2),(1630,-1650150000,3),(1630,-1632006000,2),(1630,-1618700400,3),(1630,-938905200,2),(1630,-857257200,3),(1630,-844556400,2),(1630,-828226800,3),(1630,-812502000,2),(1630,-796777200,3),(1630,-788922000,5),(1630,-778730400,4),(1630,-762663600,5),(1630,-757389600,7),(1630,354920409,6),(1630,370728010,7),(1630,386456410,6),(1630,402264011,7),(1630,417992411,6),(1630,433800012,7),(1630,449614812,6),(1630,465346812,8),(1630,481071612,9),(1630,496796413,8),(1630,512521213,9),(1630,528246013,8),(1630,543970813,9),(1630,559695613,8),(1630,575420414,9),(1630,591145214,8),(1630,606870014,10),(1630,622598414,11),(1630,638323215,10),(1630,654652815,11),(1630,670377616,10),(1630,686102416,11),(1630,701827216,10),(1630,717552017,11),(1630,733276817,10),(1630,749001618,11),(1630,764726418,10),(1630,780451219,11),(1630,796176019,10),(1630,811900819,11),(1630,828230420,10),(1630,846374420,11),(1630,859680020,10),(1630,877824021,11),(1630,891129621,10),(1630,909273621,11),(1630,922579222,10),(1630,941328022,11),(1630,954028822,10),(1630,972777622,11),(1630,985478422,10),(1630,1004227222,11),(1630,1017532822,10),(1630,1035676822,11),(1630,1048982422,10),(1630,1067126422,11),(1630,1080432022,10),(1630,1099180822,11),(1630,1111881622,10),(1630,1130630422,11),(1630,1143331223,10),(1630,1162080023,11),(1630,1174780823,10),(1630,1193529623,11),(1630,1206835223,10),(1630,1224979223,11),(1630,1238284824,10),(1630,1256428824,11),(1630,1269734424,10),(1630,1288483224,11),(1630,1301184024,12),(1630,1414278025,11),(1631,-1441159324,1),(1631,-1247536800,2),(1631,-892522800,5),(1631,-857257200,3),(1631,-844556400,4),(1631,-828226800,3),(1631,-825382800,2),(1631,354920409,6),(1631,370728010,2),(1631,386456410,6),(1631,402264011,2),(1631,417992411,6),(1631,433800012,2),(1631,449614812,6),(1631,465346812,7),(1631,481071612,8),(1631,496796413,7),(1631,512521213,8),(1631,528246013,7),(1631,543970813,8),(1631,559695613,7),(1631,575420414,8),(1631,591145214,7),(1631,606870014,8),(1631,622594814,7),(1631,638319615,8),(1631,646783215,9),(1631,686102416,1),(1631,701820016,9),(1631,717541217,1),(1631,733269617,9),(1631,748990818,1),(1631,764719218,9),(1631,780440419,1),(1631,796179619,10),(1631,811904419,11),(1631,828234020,10),(1631,846378020,11),(1631,859683620,10),(1631,877827621,11),(1631,891133221,10),(1631,909277221,11),(1631,922582822,10),(1631,941331622,11),(1631,954032422,10),(1631,972781222,11),(1631,985482022,10),(1631,1004230822,11),(1631,1017536422,10),(1631,1035680422,11),(1631,1048986022,10),(1631,1067130022,11),(1631,1080435622,10),(1631,1099184422,11),(1631,1111885222,10),(1631,1130634022,11),(1631,1143334823,10),(1631,1162083623,11),(1631,1174784423,10),(1631,1193533223,11),(1631,1206838823,10),(1631,1224982823,11),(1631,1238288424,10),(1631,1256432424,11),(1631,1269738024,10),(1631,1288486824,11),(1631,1301187624,10),(1631,1319936424,11),(1631,1332637224,10),(1631,1351386025,11),(1631,1364691625,10),(1631,1382835625,11),(1631,1396141225,10),(1631,1414285225,11),(1631,1427590825,10),(1631,1445734826,11),(1631,1459040426,10),(1631,1477789226,11),(1631,1490490027,10),(1631,1509238827,11),(1631,1521939627,10),(1631,1540688427,11),(1631,1553994027,10),(1631,1572138027,11),(1631,1585443627,10),(1631,1603587627,11),(1631,1616893227,10),(1631,1635642027,11),(1631,1648342827,10),(1631,1667091627,11),(1631,1679792427,10),(1631,1698541227,11),(1631,1711846827,10),(1631,1729990827,11),(1631,1743296427,10),(1631,1761440427,11),(1631,1774746027,10),(1631,1792890027,11),(1631,1806195627,10),(1631,1824944427,11),(1631,1837645227,10),(1631,1856394027,11),(1631,1869094827,10),(1631,1887843627,11),(1631,1901149227,10),(1631,1919293227,11),(1631,1932598827,10),(1631,1950742827,11),(1631,1964048427,10),(1631,1982797227,11),(1631,1995498027,10),(1631,2014246827,11),(1631,2026947627,10),(1631,2045696427,11),(1631,2058397227,10),(1631,2077146027,11),(1631,2090451627,10),(1631,2108595627,11),(1631,2121901227,10),(1631,2140045227,11),(1632,-1593820800,1),(1632,-1247540400,3),(1632,354916809,2),(1632,370724410,3),(1632,386452810,2),(1632,402260411,3),(1632,417988811,2),(1632,433796412,3),(1632,449611212,2),(1632,465343212,4),(1632,481068012,5),(1632,496792813,4),(1632,512517613,5),(1632,528242413,4),(1632,543967213,5),(1632,559692013,4),(1632,575416814,5),(1632,591141614,4),(1632,606866414,6),(1632,622594814,7),(1632,638319615,6),(1632,654649215,7),(1632,670374016,4),(1632,701820016,6),(1632,717548417,7),(1632,733273217,6),(1632,748998018,7),(1632,764722818,6),(1632,780447619,7),(1632,796172419,6),(1632,811897219,7),(1632,828226820,6),(1632,846370820,7),(1632,859676420,6),(1632,877820421,7),(1632,891126021,6),(1632,909270021,7),(1632,922575622,6),(1632,941324422,7),(1632,954025222,6),(1632,972774022,7),(1632,985474822,6),(1632,1004223622,7),(1632,1017529222,6),(1632,1035673222,7),(1632,1048978822,6),(1632,1067122822,7),(1632,1080428422,6),(1632,1099177222,7),(1632,1111878022,6),(1632,1130626822,7),(1632,1143327623,6),(1632,1162076423,7),(1632,1174777223,6),(1632,1193526023,7),(1632,1206831623,6),(1632,1224975623,7),(1632,1238281224,6),(1632,1256425224,7),(1632,1269730824,6),(1632,1288479624,7),(1632,1301180424,4),(1632,1414274425,7),(1633,-1830384000,6),(1633,-1689555600,1),(1633,-1677801600,2),(1633,-1667437200,3),(1633,-1647738000,4),(1633,-1635814800,3),(1633,-1616202000,4),(1633,-1604365200,3),(1633,-1584666000,4),(1633,-1572742800,3),(1633,-1553043600,4),(1633,-1541206800,3),(1633,-1521507600,4),(1633,-1442451600,3),(1633,-1426813200,4),(1633,-1379293200,3),(1633,-1364778000,4),(1633,-1348448400,3),(1633,-1333328400,4),(1633,-1316394000,3),(1633,-1301274000,4),(1633,-1284339600,3),(1633,-1269824400,4),(1633,-1221440400,3),(1633,-1206925200,4),(1633,-1191200400,3),(1633,-1175475600,4),(1633,-1127696400,3),(1633,-1111971600,4),(1633,-1096851600,3),(1633,-1080522000,4),(1633,-1063587600,3),(1633,-1049072400,4),(1633,-1033347600,3),(1633,-1017622800,4),(1633,-1002502800,3),(1633,-986173200,4),(1633,-969238800,3),(1633,-950490000,4),(1633,-942022800,3),(1633,-922669200,4),(1633,-906944400,3),(1633,-891133200,4),(1633,-877309200,3),(1633,-873684000,5),(1633,-864007200,3),(1633,-857955600,4),(1633,-845859600,3),(1633,-842839200,5),(1633,-831348000,3),(1633,-825901200,4),(1633,-814410000,3),(1633,-810784800,5),(1633,-799898400,3),(1633,-794451600,4),(1633,-782960400,3),(1633,-779335200,5),(1633,-768448800,3),(1633,-763002000,4),(1633,-749091600,3),(1633,-733366800,4),(1633,-717631200,3),(1633,-701906400,4),(1633,-686181600,3),(1633,-670456800,4),(1633,-654732000,3),(1633,-639007200,4),(1633,-591832800,3),(1633,-575503200,4),(1633,-559778400,3),(1633,-544053600,4),(1633,-528328800,3),(1633,-512604000,4),(1633,-496879200,3),(1633,-481154400,4),(1633,-465429600,3),(1633,-449704800,4),(1633,-433980000,3),(1633,-417650400,4),(1633,-401925600,3),(1633,-386200800,4),(1633,-370476000,3),(1633,-354751200,4),(1633,-339026400,3),(1633,-323301600,4),(1633,-307576800,3),(1633,-291852000,4),(1633,-276127200,3),(1633,-260402400,4),(1633,-244677600,3),(1633,-228348000,4),(1633,-212623200,3),(1633,-196898400,4),(1633,-181173600,3),(1633,-165448800,4),(1633,-149724000,3),(1633,-133999200,4),(1633,-118274400,7),(1633,212544005,2),(1633,228268806,3),(1633,243993606,4),(1633,260323207,3),(1633,276048007,4),(1633,291772808,3),(1633,307501208,4),(1633,323222409,3),(1633,338950809,4),(1633,354675609,3),(1633,370400410,4),(1633,386125210,3),(1633,401850011,4),(1633,417578411,3),(1633,433299612,4),(1633,449024412,3),(1633,465354012,4),(1633,481078812,3),(1633,496803613,4),(1633,512528413,3),(1633,528253213,4),(1633,543978013,3),(1633,559702813,4),(1633,575427614,3),(1633,591152414,4),(1633,606877214,3),(1633,622602014,4),(1633,638326815,3),(1633,654656415,4),(1633,670381216,3),(1633,686106016,4),(1633,701830816,3),(1633,717555617,8),(1633,733280417,9),(1633,749005218,8),(1633,764730018,9),(1633,780454819,8),(1633,796179619,9),(1633,811904419,8),(1633,828234020,10),(1633,846378020,6),(1633,859683620,10),(1633,877827621,6),(1633,891133221,10),(1633,909277221,6),(1633,922582822,10),(1633,941331622,6),(1633,954032422,10),(1633,972781222,6),(1633,985482022,10),(1633,1004230822,6),(1633,1017536422,10),(1633,1035680422,6),(1633,1048986022,10),(1633,1067130022,6),(1633,1080435622,10),(1633,1099184422,6),(1633,1111885222,10),(1633,1130634022,6),(1633,1143334823,10),(1633,1162083623,6),(1633,1174784423,10),(1633,1193533223,6),(1633,1206838823,10),(1633,1224982823,6),(1633,1238288424,10),(1633,1256432424,6),(1633,1269738024,10),(1633,1288486824,6),(1633,1301187624,10),(1633,1319936424,6),(1633,1332637224,10),(1633,1351386025,6),(1633,1364691625,10),(1633,1382835625,6),(1633,1396141225,10),(1633,1414285225,6),(1633,1427590825,10),(1633,1445734826,6),(1633,1459040426,10),(1633,1477789226,6),(1633,1490490027,10),(1633,1509238827,6),(1633,1521939627,10),(1633,1540688427,6),(1633,1553994027,10),(1633,1572138027,6),(1633,1585443627,10),(1633,1603587627,6),(1633,1616893227,10),(1633,1635642027,6),(1633,1648342827,10),(1633,1667091627,6),(1633,1679792427,10),(1633,1698541227,6),(1633,1711846827,10),(1633,1729990827,6),(1633,1743296427,10),(1633,1761440427,6),(1633,1774746027,10),(1633,1792890027,6),(1633,1806195627,10),(1633,1824944427,6),(1633,1837645227,10),(1633,1856394027,6),(1633,1869094827,10),(1633,1887843627,6),(1633,1901149227,10),(1633,1919293227,6),(1633,1932598827,10),(1633,1950742827,6),(1633,1964048427,10),(1633,1982797227,6),(1633,1995498027,10),(1633,2014246827,6),(1633,2026947627,10),(1633,2045696427,6),(1633,2058397227,10),(1633,2077146027,6),(1633,2090451627,10),(1633,2108595627,6),(1633,2121901227,10),(1633,2140045227,6),(1634,-905824800,3),(1634,-857257200,1),(1634,-844556400,2),(1634,-828226800,1),(1634,-812502000,2),(1634,-796777200,1),(1634,-788922000,0),(1634,-777942000,2),(1634,-766623600,1),(1634,407199611,0),(1634,417574811,4),(1634,433299612,5),(1634,449024412,4),(1634,465354012,5),(1634,481078812,4),(1634,496803613,5),(1634,512528413,4),(1634,528253213,5),(1634,543978013,4),(1634,559702813,5),(1634,575427614,4),(1634,591152414,5),(1634,606877214,4),(1634,622602014,5),(1634,638326815,4),(1634,654656415,5),(1634,670381216,4),(1634,686106016,5),(1634,701830816,4),(1634,717555617,5),(1634,733280417,4),(1634,749005218,5),(1634,764730018,4),(1634,780454819,5),(1634,796179619,4),(1634,811904419,5),(1634,828234020,4),(1634,846378020,5),(1634,859683620,4),(1634,877827621,5),(1634,891133221,4),(1634,909277221,5),(1634,922582822,4),(1634,941331622,5),(1634,954032422,4),(1634,972781222,5),(1634,985482022,4),(1634,1004230822,5),(1634,1017536422,4),(1634,1035680422,5),(1634,1048986022,4),(1634,1067130022,5),(1634,1080435622,4),(1634,1099184422,5),(1634,1111885222,4),(1634,1130634022,5),(1634,1143334823,4),(1634,1162083623,5),(1634,1174784423,4),(1634,1193533223,5),(1634,1206838823,4),(1634,1224982823,5),(1634,1238288424,4),(1634,1256432424,5),(1634,1269738024,4),(1634,1288486824,5),(1634,1301187624,4),(1634,1319936424,5),(1634,1332637224,4),(1634,1351386025,5),(1634,1364691625,4),(1634,1382835625,5),(1634,1396141225,4),(1634,1414285225,5),(1634,1427590825,4),(1634,1445734826,5),(1634,1459040426,4),(1634,1477789226,5),(1634,1490490027,4),(1634,1509238827,5),(1634,1521939627,4),(1634,1540688427,5),(1634,1553994027,4),(1634,1572138027,5),(1634,1585443627,4),(1634,1603587627,5),(1634,1616893227,4),(1634,1635642027,5),(1634,1648342827,4),(1634,1667091627,5),(1634,1679792427,4),(1634,1698541227,5),(1634,1711846827,4),(1634,1729990827,5),(1634,1743296427,4),(1634,1761440427,5),(1634,1774746027,4),(1634,1792890027,5),(1634,1806195627,4),(1634,1824944427,5),(1634,1837645227,4),(1634,1856394027,5),(1634,1869094827,4),(1634,1887843627,5),(1634,1901149227,4),(1634,1919293227,5),(1634,1932598827,4),(1634,1950742827,5),(1634,1964048427,4),(1634,1982797227,5),(1634,1995498027,4),(1634,2014246827,5),(1634,2026947627,4),(1634,2045696427,5),(1634,2058397227,4),(1634,2077146027,5),(1634,2090451627,4),(1634,2108595627,5),(1634,2121901227,4),(1634,2140045227,5),(1635,-1691964000,0),(1635,-1680472800,1),(1635,-1664143200,0),(1635,-1650146400,1),(1635,-1633903200,0),(1635,-1617487200,1),(1635,-1601848800,0),(1635,-1586037600,1),(1635,-1570399200,0),(1635,-1552168800,1),(1635,-1538344800,0),(1635,-1522533600,1),(1635,-1507500000,0),(1635,-1490565600,1),(1635,-1473631200,0),(1635,-1460930400,1),(1635,-1442786400,0),(1635,-1428876000,1),(1635,-1410732000,0),(1635,-1396216800,1),(1635,-1379282400,0),(1635,-1364767200,1),(1635,-1348437600,0),(1635,-1333317600,1),(1635,-1315778400,0),(1635,-1301263200,1),(1635,-1284328800,0),(1635,-1269813600,1),(1635,-1253484000,0),(1635,-1238364000,1),(1635,-1221429600,0),(1635,-1206914400,1),(1635,-1189980000,0),(1635,-1175464800,1),(1635,-1159135200,0),(1635,-1143410400,1),(1635,-1126476000,0),(1635,-1111960800,1),(1635,-1095631200,0),(1635,-1080511200,1),(1635,-1063576800,0),(1635,-1049061600,1),(1635,-1032127200,0),(1635,-1017612000,1),(1635,-1001282400,0),(1635,-986162400,1),(1635,-969228000,0),(1635,-950479200,1),(1635,-942012000,0),(1635,-904518000,2),(1635,-896050800,0),(1635,-875487600,2),(1635,-864601200,0),(1635,-844038000,2),(1635,-832546800,0),(1635,-812588400,2),(1635,-798073200,0),(1635,-781052400,2),(1635,-772066800,0),(1635,-764805600,1),(1635,-748476000,0),(1635,-733356000,1),(1635,-719445600,0),(1635,-717030000,2),(1635,-706748400,0),(1635,-699487200,1),(1635,-687996000,0),(1635,-668037600,1),(1635,-654732000,0),(1635,-636588000,1),(1635,-622072800,0),(1635,-605743200,1),(1635,-590623200,0),(1635,-574293600,1),(1635,-558568800,0),(1635,-542239200,1),(1635,-527119200,0),(1635,-512604000,1),(1635,-496274400,0),(1635,-481154400,1),(1635,-464220000,0),(1635,-449704800,1),(1635,-432165600,0),(1635,-417650400,1),(1635,-401320800,0),(1635,-386200800,1),(1635,-369266400,0),(1635,-354751200,1),(1635,-337816800,0),(1635,-323301600,1),(1635,-306972000,0),(1635,-291852000,1),(1635,-276732000,0),(1635,-257983200,1),(1635,-245282400,0),(1635,-226533600,1),(1635,-213228000,0),(1635,-195084000,1),(1635,-182383200,0),(1635,-163634400,1),(1635,-150933600,0),(1635,-132184800,1),(1635,-119484000,0),(1635,-100735200,1),(1635,-88034400,0),(1635,-68680800,1),(1635,-59004000,0),(1635,-37242000,3),(1635,57722400,5),(1635,69818400,0),(1635,89172001,1),(1635,101268002,0),(1635,120621602,1),(1635,132717603,0),(1635,152071203,1),(1635,164167204,0),(1635,183520804,1),(1635,196221605,0),(1635,214970405,1),(1635,227671206,0),(1635,246420006,1),(1635,259120807,0),(1635,278474407,1),(1635,290570408,0),(1635,309924008,1),(1635,322020009,0),(1635,341373609,1),(1635,354675609,4),(1635,372819610,5),(1635,386125210,4),(1635,404269211,5),(1635,417574811,4),(1635,435718812,5),(1635,449024412,4),(1635,467773212,5),(1635,481078812,4),(1635,499222813,5),(1635,512528413,4),(1635,530672413,5),(1635,543978013,4),(1635,562122013,5),(1635,575427614,4),(1635,593571614,5),(1635,606877214,4),(1635,625626014,5),(1635,638326815,4),(1635,657075615,5),(1635,670381216,4),(1635,688525216,5),(1635,701830816,4),(1635,719974817,5),(1635,733280417,4),(1635,751424418,5),(1635,764730018,4),(1635,782874019,5),(1635,796179619,4),(1635,814323619,5),(1635,820454420,6),(1635,828234020,4),(1635,846378020,5),(1635,859683620,4),(1635,877827621,5),(1635,891133221,4),(1635,909277221,5),(1635,922582822,4),(1635,941331622,5),(1635,954032422,4),(1635,972781222,5),(1635,985482022,4),(1635,1004230822,5),(1635,1017536422,4),(1635,1035680422,5),(1635,1048986022,4),(1635,1067130022,5),(1635,1080435622,4),(1635,1099184422,5),(1635,1111885222,4),(1635,1130634022,5),(1635,1143334823,4),(1635,1162083623,5),(1635,1174784423,4),(1635,1193533223,5),(1635,1206838823,4),(1635,1224982823,5),(1635,1238288424,4),(1635,1256432424,5),(1635,1269738024,4),(1635,1288486824,5),(1635,1301187624,4),(1635,1319936424,5),(1635,1332637224,4),(1635,1351386025,5),(1635,1364691625,4),(1635,1382835625,5),(1635,1396141225,4),(1635,1414285225,5),(1635,1427590825,4),(1635,1445734826,5),(1635,1459040426,4),(1635,1477789226,5),(1635,1490490027,4),(1635,1509238827,5),(1635,1521939627,4),(1635,1540688427,5),(1635,1553994027,4),(1635,1572138027,5),(1635,1585443627,4),(1635,1603587627,5),(1635,1616893227,4),(1635,1635642027,5),(1635,1648342827,4),(1635,1667091627,5),(1635,1679792427,4),(1635,1698541227,5),(1635,1711846827,4),(1635,1729990827,5),(1635,1743296427,4),(1635,1761440427,5),(1635,1774746027,4),(1635,1792890027,5),(1635,1806195627,4),(1635,1824944427,5),(1635,1837645227,4),(1635,1856394027,5),(1635,1869094827,4),(1635,1887843627,5),(1635,1901149227,4),(1635,1919293227,5),(1635,1932598827,4),(1635,1950742827,5),(1635,1964048427,4),(1635,1982797227,5),(1635,1995498027,4),(1635,2014246827,5),(1635,2026947627,4),(1635,2045696427,5),(1635,2058397227,4),(1635,2077146027,5),(1635,2090451627,4),(1635,2108595627,5),(1635,2121901227,4),(1635,2140045227,5),(1636,-2069713476,2),(1636,-1692496800,1),(1636,-1680483600,2),(1636,-1662343200,1),(1636,-1650157200,2),(1636,-1632006000,3),(1636,-1618700400,4),(1636,-1612659600,6),(1636,-1604278800,5),(1636,-1585519200,6),(1636,-1574038800,5),(1636,-1552258800,6),(1636,-1539997200,5),(1636,-1520550000,6),(1636,-1507510800,5),(1636,-1490572800,6),(1636,-1473642000,5),(1636,-1459119600,6),(1636,-1444006800,5),(1636,-1427673600,6),(1636,-1411866000,5),(1636,-1396224000,6),(1636,-1379293200,5),(1636,-1364774400,6),(1636,-1348448400,5),(1636,-1333324800,6),(1636,-1316394000,5),(1636,-1301270400,6),(1636,-1284339600,5),(1636,-1269813600,7),(1636,-1253484000,8),(1636,-1238364000,7),(1636,-1221429600,8),(1636,-1206914400,7),(1636,-1191189600,8),(1636,-1175464800,7),(1636,-1160344800,8),(1636,-1143410400,7),(1636,-1127685600,8),(1636,-1111960800,7),(1636,-1096840800,8),(1636,-1080511200,7),(1636,-1063576800,8),(1636,-1049061600,7),(1636,-1033336800,8),(1636,-1017612000,7),(1636,-1002492000,8),(1636,-986162400,7),(1636,-969228000,8),(1636,-950479200,7),(1636,-942012000,8),(1636,-935186400,11),(1636,-857257200,9),(1636,-844556400,10),(1636,-828226800,9),(1636,-812502000,10),(1636,-797986800,2),(1636,-781052400,3),(1636,-766623600,4),(1636,-745455600,3),(1636,-733273200,4),(1636,220921205,2),(1636,228877206,12),(1636,243997206,13),(1636,260326807,12),(1636,276051607,13),(1636,291776408,12),(1636,307501208,13),(1636,323830809,12),(1636,338950809,13),(1636,354675609,12),(1636,370400410,13),(1636,386125210,12),(1636,401850011,13),(1636,417574811,12),(1636,433299612,13),(1636,449024412,12),(1636,465354012,13),(1636,481078812,12),(1636,496803613,13),(1636,512528413,12),(1636,528253213,13),(1636,543978013,12),(1636,559702813,13),(1636,575427614,12),(1636,591152414,13),(1636,606877214,12),(1636,622602014,13),(1636,638326815,12),(1636,654656415,13),(1636,670381216,12),(1636,686106016,13),(1636,701830816,12),(1636,717555617,13),(1636,733280417,12),(1636,749005218,13),(1636,764730018,12),(1636,780454819,13),(1636,796179619,12),(1636,811904419,13),(1636,828234020,12),(1636,846378020,13),(1636,859683620,12),(1636,877827621,13),(1636,891133221,12),(1636,909277221,13),(1636,922582822,12),(1636,941331622,13),(1636,954032422,12),(1636,972781222,13),(1636,985482022,12),(1636,1004230822,13),(1636,1017536422,12),(1636,1035680422,13),(1636,1048986022,12),(1636,1067130022,13),(1636,1080435622,12),(1636,1099184422,13),(1636,1111885222,12),(1636,1130634022,13),(1636,1143334823,12),(1636,1162083623,13),(1636,1174784423,12),(1636,1193533223,13),(1636,1206838823,12),(1636,1224982823,13),(1636,1238288424,12),(1636,1256432424,13),(1636,1269738024,12),(1636,1288486824,13),(1636,1301187624,12),(1636,1319936424,13),(1636,1332637224,12),(1636,1351386025,13),(1636,1364691625,12),(1636,1382835625,13),(1636,1396141225,12),(1636,1414285225,13),(1636,1427590825,12),(1636,1445734826,13),(1636,1459040426,12),(1636,1477789226,13),(1636,1490490027,12),(1636,1509238827,13),(1636,1521939627,12),(1636,1540688427,13),(1636,1553994027,12),(1636,1572138027,13),(1636,1585443627,12),(1636,1603587627,13),(1636,1616893227,12),(1636,1635642027,13),(1636,1648342827,12),(1636,1667091627,13),(1636,1679792427,12),(1636,1698541227,13),(1636,1711846827,12),(1636,1729990827,13),(1636,1743296427,12),(1636,1761440427,13),(1636,1774746027,12),(1636,1792890027,13),(1636,1806195627,12),(1636,1824944427,13),(1636,1837645227,12),(1636,1856394027,13),(1636,1869094827,12),(1636,1887843627,13),(1636,1901149227,12),(1636,1919293227,13),(1636,1932598827,12),(1636,1950742827,13),(1636,1964048427,12),(1636,1982797227,13),(1636,1995498027,12),(1636,2014246827,13),(1636,2026947627,12),(1636,2045696427,13),(1636,2058397227,12),(1636,2077146027,13),(1636,2090451627,12),(1636,2108595627,13),(1636,2121901227,12),(1636,2140045227,13),(1637,-1631926800,0),(1637,-1616889600,1),(1637,-1601168400,0),(1637,-1585353600,1),(1637,-1442451600,0),(1637,-1427673600,1),(1637,-1379293200,0),(1637,-1364774400,1),(1637,-1348448400,0),(1637,-1333324800,1),(1637,-1316390400,0),(1637,-1301270400,1),(1637,-1284339600,0),(1637,-1269820800,1),(1637,-1026954000,0),(1637,-1017619200,1),(1637,-1001898000,0),(1637,-999482400,2),(1637,-986090400,0),(1637,-954115200,1),(1637,-940208400,5),(1637,-873079200,4),(1637,-862621200,5),(1637,-842839200,4),(1637,-828320400,5),(1637,-811389600,4),(1637,-796870800,5),(1637,-779940000,4),(1637,-765421200,5),(1637,-748490400,4),(1637,-733971600,5),(1637,-652327200,4),(1637,-639018000,5),(1637,135122403,4),(1637,150246003,5),(1637,166572004,4),(1637,181695604,5),(1637,196812005,4),(1637,212540405,5),(1637,228866406,4),(1637,243990006,5),(1637,260326807,6),(1637,276051607,7),(1637,283993207,5),(1637,291776408,8),(1637,307501208,9),(1637,323830809,8),(1637,338950809,9),(1637,354675609,8),(1637,370400410,9),(1637,386125210,8),(1637,401850011,9),(1637,417574811,8),(1637,433299612,9),(1637,449024412,8),(1637,465354012,9),(1637,481078812,8),(1637,496803613,9),(1637,512528413,8),(1637,528253213,9),(1637,543978013,8),(1637,559702813,9),(1637,575427614,8),(1637,591152414,9),(1637,606877214,8),(1637,622602014,9),(1637,638326815,8),(1637,654656415,9),(1637,670381216,8),(1637,686106016,9),(1637,701830816,8),(1637,717555617,9),(1637,733280417,8),(1637,749005218,9),(1637,764730018,8),(1637,780454819,9),(1637,796179619,8),(1637,811904419,9),(1637,828234020,8),(1637,846378020,9),(1637,859683620,8),(1637,877827621,9),(1637,891133221,8),(1637,909277221,9),(1637,922582822,8),(1637,941331622,9),(1637,954032422,8),(1637,972781222,9),(1637,985482022,8),(1637,1004230822,9),(1637,1017536422,8),(1637,1035680422,9),(1637,1048986022,8),(1637,1067130022,9),(1637,1080435622,8),(1637,1099184422,9),(1637,1111885222,8),(1637,1130634022,9),(1637,1143334823,8),(1637,1162083623,9),(1637,1174784423,8),(1637,1193533223,9),(1637,1206838823,8),(1637,1224982823,9),(1637,1238288424,8),(1637,1256432424,9),(1637,1269738024,8),(1637,1288486824,9),(1637,1301187624,8),(1637,1319936424,9),(1637,1332637224,8),(1637,1351386025,9),(1637,1364691625,8),(1637,1382835625,9),(1637,1396141225,8),(1637,1414285225,9),(1637,1427590825,8),(1637,1445734826,9),(1637,1459040426,8),(1637,1477789226,9),(1637,1490490027,8),(1637,1509238827,9),(1637,1521939627,8),(1637,1540688427,9),(1637,1553994027,8),(1637,1572138027,9),(1637,1585443627,8),(1637,1603587627,9),(1637,1616893227,8),(1637,1635642027,9),(1637,1648342827,8),(1637,1667091627,9),(1637,1679792427,8),(1637,1698541227,9),(1637,1711846827,8),(1637,1729990827,9),(1637,1743296427,8),(1637,1761440427,9),(1637,1774746027,8),(1637,1792890027,9),(1637,1806195627,8),(1637,1824944427,9),(1637,1837645227,8),(1637,1856394027,9),(1637,1869094827,8),(1637,1887843627,9),(1637,1901149227,8),(1637,1919293227,9),(1637,1932598827,8),(1637,1950742827,9),(1637,1964048427,8),(1637,1982797227,9),(1637,1995498027,8),(1637,2014246827,9),(1637,2026947627,8),(1637,2045696427,9),(1637,2058397227,8),(1637,2077146027,9),(1637,2090451627,8),(1637,2108595627,9),(1637,2121901227,8),(1637,2140045227,9),(1638,-1690765200,0),(1638,-1680487200,1),(1638,-1664758800,0),(1638,-1648951200,1),(1638,-1635123600,0),(1638,-1616896800,1),(1638,-1604278800,0),(1638,-1585533600,1),(1638,-1571014800,0),(1638,-1555293600,1),(1638,-932432400,0),(1638,-857257200,2),(1638,-844556400,3),(1638,-828226800,2),(1638,-812588400,3),(1638,-798073200,2),(1638,-781052400,0),(1638,-766717200,1),(1638,-750898800,3),(1638,-733359600,2),(1638,-719456400,3),(1638,-701917200,2),(1638,-689209200,3),(1638,-670460400,2),(1638,-114051600,3),(1638,-103168800,1),(1638,-81997200,3),(1638,-71715600,2),(1638,-50547600,3),(1638,-40266000,2),(1638,-18493200,3),(1638,-8211600,2),(1638,12956400,3),(1638,23238000,2),(1638,43801200,3),(1638,54687600,2),(1638,75855600,3),(1638,86742001,2),(1638,102380402,3),(1638,118105202,2),(1638,135730803,3),(1638,148518003,2),(1638,167187604,0),(1638,180489604,1),(1638,198637205,0),(1638,211939205,1),(1638,230086806,0),(1638,243388806,1),(1638,261536407,0),(1638,274838407,1),(1638,292986008,0),(1638,306288008,1),(1638,323312409,0),(1638,338342409,1),(1638,354675609,4),(1638,370400410,5),(1638,386125210,4),(1638,401850011,5),(1638,417574811,4),(1638,433299612,5),(1638,449024412,4),(1638,465354012,5),(1638,481078812,4),(1638,496803613,5),(1638,512528413,4),(1638,528253213,5),(1638,543978013,4),(1638,559702813,5),(1638,575427614,4),(1638,591152414,5),(1638,606877214,4),(1638,622602014,5),(1638,638326815,4),(1638,654656415,5),(1638,670381216,4),(1638,686106016,5),(1638,701830816,4),(1638,717555617,5),(1638,733280417,4),(1638,749005218,5),(1638,764730018,4),(1638,780454819,5),(1638,796179619,4),(1638,811904419,5),(1638,828234020,4),(1638,846378020,5),(1638,859683620,4),(1638,877827621,5),(1638,891133221,4),(1638,909277221,5),(1638,922582822,4),(1638,941331622,5),(1638,954032422,4),(1638,972781222,5),(1638,985482022,4),(1638,1004230822,5),(1638,1017536422,4),(1638,1035680422,5),(1638,1048986022,4),(1638,1067130022,5),(1638,1080435622,4),(1638,1099184422,5),(1638,1111885222,4),(1638,1130634022,5),(1638,1143334823,4),(1638,1162083623,5),(1638,1174784423,4),(1638,1193533223,5),(1638,1206838823,4),(1638,1224982823,5),(1638,1238288424,4),(1638,1256432424,5),(1638,1269738024,4),(1638,1288486824,5),(1638,1301187624,4),(1638,1319936424,5),(1638,1332637224,4),(1638,1351386025,5),(1638,1364691625,4),(1638,1382835625,5),(1638,1396141225,4),(1638,1414285225,5),(1638,1427590825,4),(1638,1445734826,5),(1638,1459040426,4),(1638,1477789226,5),(1638,1490490027,4),(1638,1509238827,5),(1638,1521939627,4),(1638,1540688427,5),(1638,1553994027,4),(1638,1572138027,5),(1638,1585443627,4),(1638,1603587627,5),(1638,1616893227,4),(1638,1635642027,5),(1638,1648342827,4),(1638,1667091627,5),(1638,1679792427,4),(1638,1698541227,5),(1638,1711846827,4),(1638,1729990827,5),(1638,1743296427,4),(1638,1761440427,5),(1638,1774746027,4),(1638,1792890027,5),(1638,1806195627,4),(1638,1824944427,5),(1638,1837645227,4),(1638,1856394027,5),(1638,1869094827,4),(1638,1887843627,5),(1638,1901149227,4),(1638,1919293227,5),(1638,1932598827,4),(1638,1950742827,5),(1638,1964048427,4),(1638,1982797227,5),(1638,1995498027,4),(1638,2014246827,5),(1638,2026947627,4),(1638,2045696427,5),(1638,2058397227,4),(1638,2077146027,5),(1638,2090451627,4),(1638,2108595627,5),(1638,2121901227,4),(1638,2140045227,5),(1639,-1535938789,2),(1639,-875671200,1),(1639,-859773600,2),(1639,354672009,1),(1639,370396810,2),(1639,386121610,1),(1639,401846411,2),(1639,417574811,3),(1639,433299612,4),(1639,449024412,3),(1639,465354012,4),(1639,481078812,3),(1639,496803613,4),(1639,512528413,3),(1639,528253213,4),(1639,543978013,3),(1639,559702813,4),(1639,575427614,3),(1639,591152414,4),(1639,606877214,3),(1639,622602014,4),(1639,638326815,3),(1639,654656415,4),(1639,670381216,3),(1639,686106016,4),(1639,701830816,3),(1639,717555617,4),(1639,733280417,3),(1639,749005218,4),(1639,764730018,3),(1639,780454819,4),(1639,796179619,3),(1639,811904419,4),(1639,828234020,3),(1639,846378020,4),(1639,859683620,3),(1639,877827621,4),(1639,891133221,3),(1639,909277221,4),(1639,922582822,3),(1639,941331622,4),(1639,954032422,3),(1639,972781222,4),(1639,985482022,3),(1639,1004230822,4),(1639,1017536422,3),(1639,1035680422,4),(1639,1048986022,3),(1639,1067130022,4),(1639,1080435622,3),(1639,1099184422,4),(1639,1111885222,3),(1639,1130634022,4),(1639,1143334823,3),(1639,1162083623,4),(1639,1174784423,3),(1639,1193533223,4),(1639,1206838823,3),(1639,1224982823,4),(1639,1238288424,3),(1639,1256432424,4),(1639,1269738024,3),(1639,1288486824,4),(1639,1301187624,3),(1639,1319936424,4),(1639,1332637224,3),(1639,1351386025,4),(1639,1364691625,3),(1639,1382835625,4),(1639,1396141225,3),(1639,1414285225,4),(1639,1427590825,3),(1639,1445734826,4),(1639,1459040426,3),(1639,1477789226,4),(1639,1490490027,3),(1639,1509238827,4),(1639,1521939627,3),(1639,1540688427,4),(1639,1553994027,3),(1639,1572138027,4),(1639,1585443627,3),(1639,1603587627,4),(1639,1616893227,3),(1639,1635642027,4),(1639,1648342827,3),(1639,1667091627,4),(1639,1679792427,3),(1639,1698541227,4),(1639,1711846827,3),(1639,1729990827,4),(1639,1743296427,3),(1639,1761440427,4),(1639,1774746027,3),(1639,1792890027,4),(1639,1806195627,3),(1639,1824944427,4),(1639,1837645227,3),(1639,1856394027,4),(1639,1869094827,3),(1639,1887843627,4),(1639,1901149227,3),(1639,1919293227,4),(1639,1932598827,3),(1639,1950742827,4),(1639,1964048427,3),(1639,1982797227,4),(1639,1995498027,3),(1639,2014246827,4),(1639,2026947627,3),(1639,2045696427,4),(1639,2058397227,3),(1639,2077146027,4),(1639,2090451627,3),(1639,2108595627,4),(1639,2121901227,3),(1639,2140045227,4),(1640,-1441158600,1),(1640,-1247536800,2),(1640,-899780400,5),(1640,-857257200,3),(1640,-844556400,4),(1640,-828226800,3),(1640,-812502000,4),(1640,-804650400,2),(1640,354920409,6),(1640,370728010,2),(1640,386456410,6),(1640,402264011,2),(1640,417992411,6),(1640,433800012,2),(1640,449614812,6),(1640,465346812,7),(1640,481071612,8),(1640,496796413,7),(1640,512521213,8),(1640,528246013,7),(1640,543970813,8),(1640,559695613,7),(1640,575420414,8),(1640,591145214,7),(1640,606870014,8),(1640,622594814,7),(1640,631141214,2),(1640,670374016,9),(1640,686102416,10),(1640,701827216,9),(1640,717552017,10),(1640,733276817,9),(1640,749001618,10),(1640,764726418,9),(1640,780451219,10),(1640,796176019,9),(1640,811900819,10),(1640,828230420,9),(1640,846374420,10),(1640,859680020,9),(1640,877824021,10),(1640,891129621,9),(1640,909273621,10),(1640,922579222,9),(1640,941328022,10),(1640,954028822,9),(1640,972777622,10),(1640,985478422,9),(1640,1004227222,10),(1640,1017532822,9),(1640,1035676822,10),(1640,1048982422,9),(1640,1067126422,10),(1640,1080432022,9),(1640,1099180822,10),(1640,1111881622,9),(1640,1130630422,10),(1640,1143331223,9),(1640,1162080023,10),(1640,1174780823,9),(1640,1193529623,10),(1640,1206835223,9),(1640,1224979223,10),(1640,1238284824,9),(1640,1256428824,10),(1640,1269734424,9),(1640,1288483224,10),(1640,1301184024,11),(1641,-1855958961,5),(1641,-1689814800,1),(1641,-1680397200,2),(1641,-1665363600,1),(1641,-1648342800,2),(1641,-1635123600,1),(1641,-1616893200,2),(1641,-1604278800,1),(1641,-1585443600,2),(1641,-1574038800,1),(1641,-1552266000,2),(1641,-1539997200,1),(1641,-1520557200,2),(1641,-1507510800,1),(1641,-1490576400,2),(1641,-1470618000,1),(1641,-1459126800,2),(1641,-1444006800,1),(1641,-1427677200,2),(1641,-1411952400,1),(1641,-1396227600,2),(1641,-1379293200,1),(1641,-1364778000,2),(1641,-1348448400,1),(1641,-1333328400,2),(1641,-1316394000,1),(1641,-1301274000,2),(1641,-1284339600,1),(1641,-1269824400,2),(1641,-1253494800,1),(1641,-1238374800,2),(1641,-1221440400,1),(1641,-1206925200,2),(1641,-1191200400,1),(1641,-1175475600,2),(1641,-1160355600,1),(1641,-1143421200,2),(1641,-1127696400,1),(1641,-1111971600,2),(1641,-1096851600,1),(1641,-1080522000,2),(1641,-1063587600,1),(1641,-1049072400,2),(1641,-1033347600,1),(1641,-1017622800,2),(1641,-1002502800,1),(1641,-986173200,2),(1641,-969238800,1),(1641,-950490000,2),(1641,-942012000,3),(1641,-904438800,4),(1641,-891136800,3),(1641,-877827600,4),(1641,-857257200,3),(1641,-844556400,4),(1641,-828226800,3),(1641,-812502000,4),(1641,-796266000,3),(1641,-781052400,4),(1641,-766623600,7),(1641,196819205,6),(1641,212540405,7),(1641,228877206,8),(1641,243997206,9),(1641,260326807,8),(1641,276051607,9),(1641,291776408,8),(1641,307501208,9),(1641,323830809,8),(1641,338950809,9),(1641,354675609,8),(1641,370400410,9),(1641,386125210,8),(1641,401850011,9),(1641,417574811,8),(1641,433299612,9),(1641,449024412,8),(1641,465354012,9),(1641,481078812,8),(1641,496803613,9),(1641,512528413,8),(1641,528253213,9),(1641,543978013,8),(1641,559702813,9),(1641,575427614,8),(1641,591152414,9),(1641,606877214,8),(1641,622602014,9),(1641,638326815,8),(1641,654656415,9),(1641,670381216,8),(1641,686106016,9),(1641,701830816,8),(1641,717555617,9),(1641,733280417,8),(1641,749005218,9),(1641,764730018,8),(1641,780454819,9),(1641,796179619,8),(1641,811904419,9),(1641,828234020,8),(1641,846378020,9),(1641,859683620,8),(1641,877827621,9),(1641,891133221,8),(1641,909277221,9),(1641,922582822,8),(1641,941331622,9),(1641,954032422,8),(1641,972781222,9),(1641,985482022,8),(1641,1004230822,9),(1641,1017536422,8),(1641,1035680422,9),(1641,1048986022,8),(1641,1067130022,9),(1641,1080435622,8),(1641,1099184422,9),(1641,1111885222,8),(1641,1130634022,9),(1641,1143334823,8),(1641,1162083623,9),(1641,1174784423,8),(1641,1193533223,9),(1641,1206838823,8),(1641,1224982823,9),(1641,1238288424,8),(1641,1256432424,9),(1641,1269738024,8),(1641,1288486824,9),(1641,1301187624,8),(1641,1319936424,9),(1641,1332637224,8),(1641,1351386025,9),(1641,1364691625,8),(1641,1382835625,9),(1641,1396141225,8),(1641,1414285225,9),(1641,1427590825,8),(1641,1445734826,9),(1641,1459040426,8),(1641,1477789226,9),(1641,1490490027,8),(1641,1509238827,9),(1641,1521939627,8),(1641,1540688427,9),(1641,1553994027,8),(1641,1572138027,9),(1641,1585443627,8),(1641,1603587627,9),(1641,1616893227,8),(1641,1635642027,9),(1641,1648342827,8),(1641,1667091627,9),(1641,1679792427,8),(1641,1698541227,9),(1641,1711846827,8),(1641,1729990827,9),(1641,1743296427,8),(1641,1761440427,9),(1641,1774746027,8),(1641,1792890027,9),(1641,1806195627,8),(1641,1824944427,9),(1641,1837645227,8),(1641,1856394027,9),(1641,1869094827,8),(1641,1887843627,9),(1641,1901149227,8),(1641,1919293227,9),(1641,1932598827,8),(1641,1950742827,9),(1641,1964048427,8),(1641,1982797227,9),(1641,1995498027,8),(1641,2014246827,9),(1641,2026947627,8),(1641,2045696427,9),(1641,2058397227,8),(1641,2077146027,9),(1641,2090451627,8),(1641,2108595627,9),(1641,2121901227,8),(1641,2140045227,9),(1642,-1688265017,2),(1642,-1656819079,1),(1642,-1641353479,2),(1642,-1627965079,3),(1642,-1618716679,1),(1642,-1596429079,3),(1642,-1593820800,4),(1642,-1589860800,5),(1642,-1542427200,6),(1642,-1539493200,7),(1642,-1525323600,6),(1642,-1522728000,5),(1642,-1491188400,8),(1642,-1247536800,5),(1642,354920409,6),(1642,370728010,5),(1642,386456410,6),(1642,402264011,5),(1642,417992411,6),(1642,433800012,5),(1642,449614812,6),(1642,465346812,9),(1642,481071612,10),(1642,496796413,9),(1642,512521213,10),(1642,528246013,9),(1642,543970813,10),(1642,559695613,9),(1642,575420414,10),(1642,591145214,9),(1642,606870014,10),(1642,622594814,9),(1642,638319615,10),(1642,654649215,9),(1642,670374016,11),(1642,686102416,12),(1642,695779216,9),(1642,701823616,10),(1642,717548417,9),(1642,733273217,10),(1642,748998018,9),(1642,764722818,10),(1642,780447619,9),(1642,796172419,10),(1642,811897219,9),(1642,828226820,10),(1642,846370820,9),(1642,859676420,10),(1642,877820421,9),(1642,891126021,10),(1642,909270021,9),(1642,922575622,10),(1642,941324422,9),(1642,954025222,10),(1642,972774022,9),(1642,985474822,10),(1642,1004223622,9),(1642,1017529222,10),(1642,1035673222,9),(1642,1048978822,10),(1642,1067122822,9),(1642,1080428422,10),(1642,1099177222,9),(1642,1111878022,10),(1642,1130626822,9),(1642,1143327623,10),(1642,1162076423,9),(1642,1174777223,10),(1642,1193526023,9),(1642,1206831623,10),(1642,1224975623,9),(1642,1238281224,10),(1642,1256425224,9),(1642,1269730824,10),(1642,1288479624,9),(1642,1301180424,13),(1642,1414274425,9),(1643,-1518920008,2),(1643,166572004,1),(1643,182293204,2),(1643,200959205,1),(1643,213829205,2),(1643,228866406,1),(1643,243982806,2),(1643,260316007,1),(1643,276123607,2),(1643,291765608,1),(1643,307486808,2),(1643,323820009,1),(1643,338936409,2),(1643,354664809,1),(1643,370386010,2),(1643,386114410,1),(1643,401835611,2),(1643,417564011,1),(1643,433285212,2),(1643,449013612,1),(1643,465339612,2),(1643,481068012,1),(1643,496789213,2),(1643,512517613,1),(1643,528238813,2),(1643,543967213,1),(1643,559688413,2),(1643,575416814,1),(1643,591138014,2),(1643,606866414,1),(1643,622587614,2),(1643,638316015,1),(1643,654642015,2),(1643,670370416,1),(1643,686091616,2),(1643,701820016,1),(1643,717541217,2),(1643,733269617,1),(1643,748990818,2),(1643,764719218,1),(1643,780440419,2),(1643,796168819,1),(1643,811890019,2),(1643,828223220,1),(1643,843944420,2),(1643,859672820,1),(1643,875394021,2),(1643,891122421,1),(1643,909277221,3),(1643,922582822,4),(1643,941331622,3),(1643,954032422,4),(1643,972781222,3),(1643,985482022,4),(1643,1004230822,3),(1643,1017536422,4),(1643,1035680422,3),(1643,1048986022,4),(1643,1067130022,3),(1643,1080435622,4),(1643,1099184422,3),(1643,1111885222,4),(1643,1130634022,3),(1643,1143334823,4),(1643,1162083623,3),(1643,1174784423,4),(1643,1193533223,3),(1643,1206838823,4),(1643,1224982823,3),(1643,1238288424,4),(1643,1256432424,3),(1643,1269738024,4),(1643,1288486824,3),(1643,1301187624,4),(1643,1319936424,3),(1643,1332637224,4),(1643,1351386025,3),(1643,1364691625,4),(1643,1382835625,3),(1643,1396141225,4),(1643,1414285225,3),(1643,1427590825,4),(1643,1445734826,3),(1643,1459040426,4),(1643,1477789226,3),(1643,1490490027,4),(1643,1509238827,3),(1643,1521939627,4),(1643,1540688427,3),(1643,1553994027,4),(1643,1572138027,3),(1643,1585443627,4),(1643,1603587627,3),(1643,1616893227,4),(1643,1635642027,3),(1643,1648342827,4),(1643,1667091627,3),(1643,1679792427,4),(1643,1698541227,3),(1643,1711846827,4),(1643,1729990827,3),(1643,1743296427,4),(1643,1761440427,3),(1643,1774746027,4),(1643,1792890027,3),(1643,1806195627,4),(1643,1824944427,3),(1643,1837645227,4),(1643,1856394027,3),(1643,1869094827,4),(1643,1887843627,3),(1643,1901149227,4),(1643,1919293227,3),(1643,1932598827,4),(1643,1950742827,3),(1643,1964048427,4),(1643,1982797227,3),(1643,1995498027,4),(1643,2014246827,3),(1643,2026947627,4),(1643,2045696427,3),(1643,2058397227,4),(1643,2077146027,3),(1643,2090451627,4),(1643,2108595627,3),(1643,2121901227,4),(1643,2140045227,3),(1644,-1691884800,0),(1644,-1680573600,1),(1644,-927511200,0),(1644,-857257200,2),(1644,-844556400,3),(1644,-828226800,2),(1644,-812502000,3),(1644,-796777200,2),(1644,-781052400,3),(1644,-765327600,2),(1644,-340844400,3),(1644,-324514800,2),(1644,-308790000,3),(1644,-293065200,2),(1644,-277340400,3),(1644,-261615600,2),(1644,-245890800,3),(1644,-230166000,2),(1644,-214441200,3),(1644,-198716400,2),(1644,-182991600,3),(1644,-166662000,2),(1644,-147913200,3),(1644,-135212400,2),(1644,315529208,1),(1644,323830809,4),(1644,338950809,5),(1644,354675609,4),(1644,370400410,5),(1644,386125210,4),(1644,401850011,5),(1644,417574811,4),(1644,433299612,5),(1644,449024412,4),(1644,465354012,5),(1644,481078812,4),(1644,496803613,5),(1644,512528413,4),(1644,528253213,5),(1644,543978013,4),(1644,559702813,5),(1644,575427614,4),(1644,591152414,5),(1644,606877214,4),(1644,622602014,5),(1644,638326815,4),(1644,654656415,5),(1644,670381216,4),(1644,686106016,5),(1644,701830816,4),(1644,717555617,5),(1644,733280417,4),(1644,749005218,5),(1644,764730018,4),(1644,780454819,5),(1644,796179619,4),(1644,811904419,5),(1644,828234020,4),(1644,846378020,5),(1644,859683620,4),(1644,877827621,5),(1644,891133221,4),(1644,909277221,5),(1644,922582822,4),(1644,941331622,5),(1644,954032422,4),(1644,972781222,5),(1644,985482022,4),(1644,1004230822,5),(1644,1017536422,4),(1644,1035680422,5),(1644,1048986022,4),(1644,1067130022,5),(1644,1080435622,4),(1644,1099184422,5),(1644,1111885222,4),(1644,1130634022,5),(1644,1143334823,4),(1644,1162083623,5),(1644,1174784423,4),(1644,1193533223,5),(1644,1206838823,4),(1644,1224982823,5),(1644,1238288424,4),(1644,1256432424,5),(1644,1269738024,4),(1644,1288486824,5),(1644,1301187624,4),(1644,1319936424,5),(1644,1332637224,4),(1644,1351386025,5),(1644,1364691625,4),(1644,1382835625,5),(1644,1396141225,4),(1644,1414285225,5),(1644,1427590825,4),(1644,1445734826,5),(1644,1459040426,4),(1644,1477789226,5),(1644,1490490027,4),(1644,1509238827,5),(1644,1521939627,4),(1644,1540688427,5),(1644,1553994027,4),(1644,1572138027,5),(1644,1585443627,4),(1644,1603587627,5),(1644,1616893227,4),(1644,1635642027,5),(1644,1648342827,4),(1644,1667091627,5),(1644,1679792427,4),(1644,1698541227,5),(1644,1711846827,4),(1644,1729990827,5),(1644,1743296427,4),(1644,1761440427,5),(1644,1774746027,4),(1644,1792890027,5),(1644,1806195627,4),(1644,1824944427,5),(1644,1837645227,4),(1644,1856394027,5),(1644,1869094827,4),(1644,1887843627,5),(1644,1901149227,4),(1644,1919293227,5),(1644,1932598827,4),(1644,1950742827,5),(1644,1964048427,4),(1644,1982797227,5),(1644,1995498027,4),(1644,2014246827,5),(1644,2026947627,4),(1644,2045696427,5),(1644,2058397227,4),(1644,2077146027,5),(1644,2090451627,4),(1644,2108595627,5),(1644,2121901227,4),(1644,2140045227,5),(1645,-1855958901,4),(1645,-1689814800,1),(1645,-1680397200,2),(1645,-1665363600,1),(1645,-1648342800,2),(1645,-1635123600,1),(1645,-1616893200,2),(1645,-1604278800,1),(1645,-1585443600,2),(1645,-1574038800,1),(1645,-1552266000,2),(1645,-1539997200,1),(1645,-1520557200,2),(1645,-1507510800,1),(1645,-1490576400,2),(1645,-1470618000,1),(1645,-1459126800,2),(1645,-1444006800,1),(1645,-1427677200,2),(1645,-1411952400,1),(1645,-1396227600,2),(1645,-1379293200,1),(1645,-1364778000,2),(1645,-1348448400,1),(1645,-1333328400,2),(1645,-1316394000,1),(1645,-1301274000,2),(1645,-1284339600,1),(1645,-1269824400,2),(1645,-1253494800,1),(1645,-1238374800,2),(1645,-1221440400,1),(1645,-1206925200,2),(1645,-1191200400,1),(1645,-1175475600,2),(1645,-1160355600,1),(1645,-1143421200,2),(1645,-1127696400,1),(1645,-1111971600,2),(1645,-1096851600,1),(1645,-1080522000,2),(1645,-1063587600,1),(1645,-1049072400,2),(1645,-1033347600,1),(1645,-1017622800,2),(1645,-1002502800,1),(1645,-986173200,2),(1645,-969238800,1),(1645,-950490000,2),(1645,-942012000,3),(1645,-932436000,7),(1645,-857257200,5),(1645,-844556400,6),(1645,-828226800,5),(1645,-812502000,6),(1645,-800071200,8),(1645,-796266000,3),(1645,-781052400,8),(1645,-766623600,9),(1645,196819205,7),(1645,212540405,9),(1645,228877206,10),(1645,243997206,11),(1645,260326807,10),(1645,276051607,11),(1645,291776408,10),(1645,307501208,11),(1645,323830809,10),(1645,338950809,11),(1645,354675609,10),(1645,370400410,11),(1645,386125210,10),(1645,401850011,11),(1645,417574811,10),(1645,433299612,11),(1645,449024412,10),(1645,465354012,11),(1645,481078812,10),(1645,496803613,11),(1645,512528413,10),(1645,528253213,11),(1645,543978013,10),(1645,559702813,11),(1645,575427614,10),(1645,591152414,11),(1645,606877214,10),(1645,622602014,11),(1645,638326815,10),(1645,654656415,11),(1645,670381216,10),(1645,686106016,11),(1645,701830816,10),(1645,717555617,11),(1645,733280417,10),(1645,749005218,11),(1645,764730018,10),(1645,780454819,11),(1645,796179619,10),(1645,811904419,11),(1645,828234020,10),(1645,846378020,11),(1645,859683620,10),(1645,877827621,11),(1645,891133221,10),(1645,909277221,11),(1645,922582822,10),(1645,941331622,11),(1645,954032422,10),(1645,972781222,11),(1645,985482022,10),(1645,1004230822,11),(1645,1017536422,10),(1645,1035680422,11),(1645,1048986022,10),(1645,1067130022,11),(1645,1080435622,10),(1645,1099184422,11),(1645,1111885222,10),(1645,1130634022,11),(1645,1143334823,10),(1645,1162083623,11),(1645,1174784423,10),(1645,1193533223,11),(1645,1206838823,10),(1645,1224982823,11),(1645,1238288424,10),(1645,1256432424,11),(1645,1269738024,10),(1645,1288486824,11),(1645,1301187624,10),(1645,1319936424,11),(1645,1332637224,10),(1645,1351386025,11),(1645,1364691625,10),(1645,1382835625,11),(1645,1396141225,10),(1645,1414285225,11),(1645,1427590825,10),(1645,1445734826,11),(1645,1459040426,10),(1645,1477789226,11),(1645,1490490027,10),(1645,1509238827,11),(1645,1521939627,10),(1645,1540688427,11),(1645,1553994027,10),(1645,1572138027,11),(1645,1585443627,10),(1645,1603587627,11),(1645,1616893227,10),(1645,1635642027,11),(1645,1648342827,10),(1645,1667091627,11),(1645,1679792427,10),(1645,1698541227,11),(1645,1711846827,10),(1645,1729990827,11),(1645,1743296427,10),(1645,1761440427,11),(1645,1774746027,10),(1645,1792890027,11),(1645,1806195627,10),(1645,1824944427,11),(1645,1837645227,10),(1645,1856394027,11),(1645,1869094827,10),(1645,1887843627,11),(1645,1901149227,10),(1645,1919293227,11),(1645,1932598827,10),(1645,1950742827,11),(1645,1964048427,10),(1645,1982797227,11),(1645,1995498027,10),(1645,2014246827,11),(1645,2026947627,10),(1645,2045696427,11),(1645,2058397227,10),(1645,2077146027,11),(1645,2090451627,10),(1645,2108595627,11),(1645,2121901227,10),(1645,2140045227,11),(1646,-905824800,3),(1646,-857257200,1),(1646,-844556400,2),(1646,-828226800,1),(1646,-812502000,2),(1646,-796777200,1),(1646,-788922000,0),(1646,-777942000,2),(1646,-766623600,1),(1646,407199611,0),(1646,417574811,4),(1646,433299612,5),(1646,449024412,4),(1646,465354012,5),(1646,481078812,4),(1646,496803613,5),(1646,512528413,4),(1646,528253213,5),(1646,543978013,4),(1646,559702813,5),(1646,575427614,4),(1646,591152414,5),(1646,606877214,4),(1646,622602014,5),(1646,638326815,4),(1646,654656415,5),(1646,670381216,4),(1646,686106016,5),(1646,701830816,4),(1646,717555617,5),(1646,733280417,4),(1646,749005218,5),(1646,764730018,4),(1646,780454819,5),(1646,796179619,4),(1646,811904419,5),(1646,828234020,4),(1646,846378020,5),(1646,859683620,4),(1646,877827621,5),(1646,891133221,4),(1646,909277221,5),(1646,922582822,4),(1646,941331622,5),(1646,954032422,4),(1646,972781222,5),(1646,985482022,4),(1646,1004230822,5),(1646,1017536422,4),(1646,1035680422,5),(1646,1048986022,4),(1646,1067130022,5),(1646,1080435622,4),(1646,1099184422,5),(1646,1111885222,4),(1646,1130634022,5),(1646,1143334823,4),(1646,1162083623,5),(1646,1174784423,4),(1646,1193533223,5),(1646,1206838823,4),(1646,1224982823,5),(1646,1238288424,4),(1646,1256432424,5),(1646,1269738024,4),(1646,1288486824,5),(1646,1301187624,4),(1646,1319936424,5),(1646,1332637224,4),(1646,1351386025,5),(1646,1364691625,4),(1646,1382835625,5),(1646,1396141225,4),(1646,1414285225,5),(1646,1427590825,4),(1646,1445734826,5),(1646,1459040426,4),(1646,1477789226,5),(1646,1490490027,4),(1646,1509238827,5),(1646,1521939627,4),(1646,1540688427,5),(1646,1553994027,4),(1646,1572138027,5),(1646,1585443627,4),(1646,1603587627,5),(1646,1616893227,4),(1646,1635642027,5),(1646,1648342827,4),(1646,1667091627,5),(1646,1679792427,4),(1646,1698541227,5),(1646,1711846827,4),(1646,1729990827,5),(1646,1743296427,4),(1646,1761440427,5),(1646,1774746027,4),(1646,1792890027,5),(1646,1806195627,4),(1646,1824944427,5),(1646,1837645227,4),(1646,1856394027,5),(1646,1869094827,4),(1646,1887843627,5),(1646,1901149227,4),(1646,1919293227,5),(1646,1932598827,4),(1646,1950742827,5),(1646,1964048427,4),(1646,1982797227,5),(1646,1995498027,4),(1646,2014246827,5),(1646,2026947627,4),(1646,2045696427,5),(1646,2058397227,4),(1646,2077146027,5),(1646,2090451627,4),(1646,2108595627,5),(1646,2121901227,4),(1646,2140045227,5),(1647,-1693706400,0),(1647,-1680483600,1),(1647,-1663455600,2),(1647,-1650150000,3),(1647,-1632006000,2),(1647,-1618700400,3),(1647,-938905200,2),(1647,-857257200,3),(1647,-844556400,2),(1647,-828226800,3),(1647,-812502000,2),(1647,-796777200,3),(1647,-781052400,2),(1647,-777866400,0),(1647,-765327600,3),(1647,-746578800,2),(1647,-733359600,3),(1647,-728517600,4),(1647,-721260000,1),(1647,-716425200,2),(1647,-701910000,3),(1647,-684975600,2),(1647,-670460400,3),(1647,-654217200,2),(1647,-639010800,3),(1647,283993207,1),(1647,291776408,5),(1647,307501208,6),(1647,323830809,5),(1647,338950809,6),(1647,354675609,5),(1647,370400410,6),(1647,386125210,5),(1647,401850011,6),(1647,417574811,5),(1647,433299612,6),(1647,449024412,5),(1647,465354012,6),(1647,481078812,5),(1647,496803613,6),(1647,512528413,5),(1647,528253213,6),(1647,543978013,5),(1647,559702813,6),(1647,575427614,5),(1647,591152414,6),(1647,606877214,5),(1647,622602014,6),(1647,638326815,5),(1647,654656415,6),(1647,670381216,5),(1647,686106016,6),(1647,701830816,5),(1647,717555617,6),(1647,733280417,5),(1647,749005218,6),(1647,764730018,5),(1647,780454819,6),(1647,796179619,5),(1647,811904419,6),(1647,828234020,5),(1647,846378020,6),(1647,859683620,5),(1647,877827621,6),(1647,891133221,5),(1647,909277221,6),(1647,922582822,5),(1647,941331622,6),(1647,954032422,5),(1647,972781222,6),(1647,985482022,5),(1647,1004230822,6),(1647,1017536422,5),(1647,1035680422,6),(1647,1048986022,5),(1647,1067130022,6),(1647,1080435622,5),(1647,1099184422,6),(1647,1111885222,5),(1647,1130634022,6),(1647,1143334823,5),(1647,1162083623,6),(1647,1174784423,5),(1647,1193533223,6),(1647,1206838823,5),(1647,1224982823,6),(1647,1238288424,5),(1647,1256432424,6),(1647,1269738024,5),(1647,1288486824,6),(1647,1301187624,5),(1647,1319936424,6),(1647,1332637224,5),(1647,1351386025,6),(1647,1364691625,5),(1647,1382835625,6),(1647,1396141225,5),(1647,1414285225,6),(1647,1427590825,5),(1647,1445734826,6),(1647,1459040426,5),(1647,1477789226,6),(1647,1490490027,5),(1647,1509238827,6),(1647,1521939627,5),(1647,1540688427,6),(1647,1553994027,5),(1647,1572138027,6),(1647,1585443627,5),(1647,1603587627,6),(1647,1616893227,5),(1647,1635642027,6),(1647,1648342827,5),(1647,1667091627,6),(1647,1679792427,5),(1647,1698541227,6),(1647,1711846827,5),(1647,1729990827,6),(1647,1743296427,5),(1647,1761440427,6),(1647,1774746027,5),(1647,1792890027,6),(1647,1806195627,5),(1647,1824944427,6),(1647,1837645227,5),(1647,1856394027,6),(1647,1869094827,5),(1647,1887843627,6),(1647,1901149227,5),(1647,1919293227,6),(1647,1932598827,5),(1647,1950742827,6),(1647,1964048427,5),(1647,1982797227,6),(1647,1995498027,5),(1647,2014246827,6),(1647,2026947627,5),(1647,2045696427,6),(1647,2058397227,5),(1647,2077146027,6),(1647,2090451627,5),(1647,2108595627,6),(1647,2121901227,5),(1647,2140045227,6),(1648,-1632008194,1),(1648,-1618702594,0),(1648,-1601681794,1),(1648,-1597275394,0),(1648,-1377308194,2),(1648,-928029600,3),(1648,-899521200,6),(1648,-857257200,4),(1648,-844556400,5),(1648,-828226800,4),(1648,-812502000,5),(1648,-796777200,4),(1648,-795834000,3),(1648,354920409,7),(1648,370728010,3),(1648,386456410,7),(1648,402264011,3),(1648,417992411,7),(1648,433800012,3),(1648,449614812,7),(1648,465346812,8),(1648,481071612,9),(1648,496796413,8),(1648,512521213,9),(1648,528246013,8),(1648,543970813,9),(1648,559695613,8),(1648,575420414,9),(1648,591145214,8),(1648,606870014,10),(1648,622598414,11),(1648,638323215,10),(1648,654652815,11),(1648,670377616,10),(1648,686102416,11),(1648,701827216,10),(1648,717552017,11),(1648,733276817,10),(1648,749001618,11),(1648,764726418,10),(1648,780451219,11),(1648,796176019,10),(1648,811900819,11),(1648,828230420,10),(1648,843955220,11),(1648,853797620,2),(1648,859683620,12),(1648,877827621,13),(1648,891133221,12),(1648,909277221,13),(1648,922582822,12),(1648,941331622,13),(1648,951775222,2),(1648,985482022,12),(1648,1004230822,13),(1648,1017536422,12),(1648,1035680422,13),(1648,1048986022,12),(1648,1067130022,13),(1648,1080435622,12),(1648,1099184422,13),(1648,1111885222,12),(1648,1130634022,13),(1648,1143334823,12),(1648,1162083623,13),(1648,1174784423,12),(1648,1193533223,13),(1648,1206838823,12),(1648,1224982823,13),(1648,1238288424,12),(1648,1256432424,13),(1648,1269738024,12),(1648,1288486824,13),(1648,1301187624,12),(1648,1319936424,13),(1648,1332637224,12),(1648,1351386025,13),(1648,1364691625,12),(1648,1382835625,13),(1648,1396141225,12),(1648,1414285225,13),(1648,1427590825,12),(1648,1445734826,13),(1648,1459040426,12),(1648,1477789226,13),(1648,1490490027,12),(1648,1509238827,13),(1648,1521939627,12),(1648,1540688427,13),(1648,1553994027,12),(1648,1572138027,13),(1648,1585443627,12),(1648,1603587627,13),(1648,1616893227,12),(1648,1635642027,13),(1648,1648342827,12),(1648,1667091627,13),(1648,1679792427,12),(1648,1698541227,13),(1648,1711846827,12),(1648,1729990827,13),(1648,1743296427,12),(1648,1761440427,13),(1648,1774746027,12),(1648,1792890027,13),(1648,1806195627,12),(1648,1824944427,13),(1648,1837645227,12),(1648,1856394027,13),(1648,1869094827,12),(1648,1887843627,13),(1648,1901149227,12),(1648,1919293227,13),(1648,1932598827,12),(1648,1950742827,13),(1648,1964048427,12),(1648,1982797227,13),(1648,1995498027,12),(1648,2014246827,13),(1648,2026947627,12),(1648,2045696427,13),(1648,2058397227,12),(1648,2077146027,13),(1648,2090451627,12),(1648,2108595627,13),(1648,2121901227,12),(1648,2140045227,13),(1649,-1690765200,0),(1649,-1680487200,1),(1649,-1664758800,0),(1649,-1648951200,1),(1649,-1635123600,0),(1649,-1616896800,1),(1649,-1604278800,0),(1649,-1585533600,1),(1649,-1571014800,0),(1649,-1555293600,1),(1649,-932432400,0),(1649,-857257200,2),(1649,-844556400,3),(1649,-830311200,0),(1649,-828226800,2),(1649,-812502000,3),(1649,-807156000,0),(1649,-798073200,2),(1649,-781052400,0),(1649,-766717200,1),(1649,-750898800,3),(1649,-733359600,2),(1649,-719456400,3),(1649,-701917200,2),(1649,-689209200,3),(1649,-670460400,2),(1649,-114051600,3),(1649,-103168800,1),(1649,-81997200,3),(1649,-71715600,2),(1649,-50547600,3),(1649,-40266000,2),(1649,-18493200,3),(1649,-8211600,2),(1649,12956400,3),(1649,23238000,2),(1649,43801200,3),(1649,54687600,2),(1649,75855600,3),(1649,86742001,2),(1649,107910002,3),(1649,118191602,2),(1649,138754803,3),(1649,149641203,2),(1649,170809204,3),(1649,181090804,2),(1649,202258805,3),(1649,212540405,2),(1649,233103606,3),(1649,243990006,2),(1649,265158007,3),(1649,276044407,2),(1649,296607608,3),(1649,307494008,2),(1649,315529208,1),(1649,323830809,4),(1649,338950809,5),(1649,354675609,4),(1649,370400410,5),(1649,386125210,4),(1649,401850011,5),(1649,417574811,4),(1649,433299612,5),(1649,449024412,4),(1649,465354012,5),(1649,481078812,4),(1649,496803613,5),(1649,512528413,4),(1649,528253213,5),(1649,543978013,4),(1649,559702813,5),(1649,575427614,4),(1649,591152414,5),(1649,606877214,4),(1649,622602014,5),(1649,638326815,4),(1649,654656415,5),(1649,670381216,4),(1649,686106016,5),(1649,701830816,4),(1649,717555617,5),(1649,733280417,4),(1649,749005218,5),(1649,764730018,4),(1649,780454819,5),(1649,796179619,4),(1649,811904419,5),(1649,828234020,4),(1649,846378020,5),(1649,859683620,4),(1649,877827621,5),(1649,891133221,4),(1649,909277221,5),(1649,922582822,4),(1649,941331622,5),(1649,954032422,4),(1649,972781222,5),(1649,985482022,4),(1649,1004230822,5),(1649,1017536422,4),(1649,1035680422,5),(1649,1048986022,4),(1649,1067130022,5),(1649,1080435622,4),(1649,1099184422,5),(1649,1111885222,4),(1649,1130634022,5),(1649,1143334823,4),(1649,1162083623,5),(1649,1174784423,4),(1649,1193533223,5),(1649,1206838823,4),(1649,1224982823,5),(1649,1238288424,4),(1649,1256432424,5),(1649,1269738024,4),(1649,1288486824,5),(1649,1301187624,4),(1649,1319936424,5),(1649,1332637224,4),(1649,1351386025,5),(1649,1364691625,4),(1649,1382835625,5),(1649,1396141225,4),(1649,1414285225,5),(1649,1427590825,4),(1649,1445734826,5),(1649,1459040426,4),(1649,1477789226,5),(1649,1490490027,4),(1649,1509238827,5),(1649,1521939627,4),(1649,1540688427,5),(1649,1553994027,4),(1649,1572138027,5),(1649,1585443627,4),(1649,1603587627,5),(1649,1616893227,4),(1649,1635642027,5),(1649,1648342827,4),(1649,1667091627,5),(1649,1679792427,4),(1649,1698541227,5),(1649,1711846827,4),(1649,1729990827,5),(1649,1743296427,4),(1649,1761440427,5),(1649,1774746027,4),(1649,1792890027,5),(1649,1806195627,4),(1649,1824944427,5),(1649,1837645227,4),(1649,1856394027,5),(1649,1869094827,4),(1649,1887843627,5),(1649,1901149227,4),(1649,1919293227,5),(1649,1932598827,4),(1649,1950742827,5),(1649,1964048427,4),(1649,1982797227,5),(1649,1995498027,4),(1649,2014246827,5),(1649,2026947627,4),(1649,2045696427,5),(1649,2058397227,4),(1649,2077146027,5),(1649,2090451627,4),(1649,2108595627,5),(1649,2121901227,4),(1649,2140045227,5),(1650,-1593820800,1),(1650,-1247540400,2),(1650,354916809,3),(1650,370724410,2),(1650,386452810,3),(1650,402260411,2),(1650,417988811,3),(1650,433796412,2),(1650,449611212,3),(1650,465343212,4),(1650,481068012,5),(1650,496792813,4),(1650,512517613,5),(1650,528242413,4),(1650,543967213,5),(1650,559692013,4),(1650,575416814,5),(1650,591141614,4),(1650,606866414,6),(1650,622594814,7),(1650,638319615,6),(1650,654649215,7),(1650,670374016,8),(1650,686102416,7),(1650,687916816,2),(1650,701820016,5),(1650,717544817,4),(1650,733269617,5),(1650,748994418,4),(1650,764719218,5),(1650,780444019,4),(1650,796168819,5),(1650,811893619,4),(1650,828223220,5),(1650,846367220,4),(1650,859672820,5),(1650,877816821,4),(1650,891122421,5),(1650,909266421,4),(1650,922572022,5),(1650,941320822,4),(1650,954021622,5),(1650,972770422,4),(1650,985471222,5),(1650,1004220022,4),(1650,1017525622,5),(1650,1035669622,4),(1650,1048975222,5),(1650,1067119222,4),(1650,1080424822,5),(1650,1099173622,4),(1650,1111874422,5),(1650,1130623222,4),(1650,1143324023,5),(1650,1162072823,4),(1650,1174773623,5),(1650,1193522423,4),(1650,1206828023,5),(1650,1224972023,4),(1650,1238277624,5),(1650,1256421624,4),(1650,1269727224,6),(1650,1288479624,7),(1650,1301180424,4),(1651,-1690765200,0),(1651,-1680487200,1),(1651,-1664758800,0),(1651,-1648951200,1),(1651,-1635123600,0),(1651,-1616896800,1),(1651,-1604278800,0),(1651,-1585533600,1),(1651,-1571014800,0),(1651,-1555293600,1),(1651,-932432400,0),(1651,-857257200,2),(1651,-844556400,3),(1651,-830311200,0),(1651,-828226800,2),(1651,-812502000,3),(1651,-807156000,0),(1651,-798073200,2),(1651,-781052400,0),(1651,-766717200,1),(1651,-750898800,3),(1651,-733359600,2),(1651,-719456400,3),(1651,-701917200,2),(1651,-689209200,3),(1651,-670460400,2),(1651,-114051600,3),(1651,-103168800,1),(1651,-81997200,3),(1651,-71715600,2),(1651,-50547600,3),(1651,-40266000,2),(1651,-18493200,3),(1651,-8211600,2),(1651,12956400,3),(1651,23238000,2),(1651,43801200,3),(1651,54687600,2),(1651,75855600,3),(1651,86742001,2),(1651,107910002,3),(1651,118191602,2),(1651,138754803,3),(1651,149641203,2),(1651,170809204,3),(1651,181090804,2),(1651,202258805,3),(1651,212540405,2),(1651,233103606,3),(1651,243990006,2),(1651,265158007,3),(1651,276044407,2),(1651,296607608,3),(1651,307494008,2),(1651,315529208,1),(1651,323830809,4),(1651,338950809,5),(1651,354675609,4),(1651,370400410,5),(1651,386125210,4),(1651,401850011,5),(1651,417574811,4),(1651,433299612,5),(1651,449024412,4),(1651,465354012,5),(1651,481078812,4),(1651,496803613,5),(1651,512528413,4),(1651,528253213,5),(1651,543978013,4),(1651,559702813,5),(1651,575427614,4),(1651,591152414,5),(1651,606877214,4),(1651,622602014,5),(1651,638326815,4),(1651,654656415,5),(1651,670381216,4),(1651,686106016,5),(1651,701830816,4),(1651,717555617,5),(1651,733280417,4),(1651,749005218,5),(1651,764730018,4),(1651,780454819,5),(1651,796179619,4),(1651,811904419,5),(1651,828234020,4),(1651,846378020,5),(1651,859683620,4),(1651,877827621,5),(1651,891133221,4),(1651,909277221,5),(1651,922582822,4),(1651,941331622,5),(1651,954032422,4),(1651,972781222,5),(1651,985482022,4),(1651,1004230822,5),(1651,1017536422,4),(1651,1035680422,5),(1651,1048986022,4),(1651,1067130022,5),(1651,1080435622,4),(1651,1099184422,5),(1651,1111885222,4),(1651,1130634022,5),(1651,1143334823,4),(1651,1162083623,5),(1651,1174784423,4),(1651,1193533223,5),(1651,1206838823,4),(1651,1224982823,5),(1651,1238288424,4),(1651,1256432424,5),(1651,1269738024,4),(1651,1288486824,5),(1651,1301187624,4),(1651,1319936424,5),(1651,1332637224,4),(1651,1351386025,5),(1651,1364691625,4),(1651,1382835625,5),(1651,1396141225,4),(1651,1414285225,5),(1651,1427590825,4),(1651,1445734826,5),(1651,1459040426,4),(1651,1477789226,5),(1651,1490490027,4),(1651,1509238827,5),(1651,1521939627,4),(1651,1540688427,5),(1651,1553994027,4),(1651,1572138027,5),(1651,1585443627,4),(1651,1603587627,5),(1651,1616893227,4),(1651,1635642027,5),(1651,1648342827,4),(1651,1667091627,5),(1651,1679792427,4),(1651,1698541227,5),(1651,1711846827,4),(1651,1729990827,5),(1651,1743296427,4),(1651,1761440427,5),(1651,1774746027,4),(1651,1792890027,5),(1651,1806195627,4),(1651,1824944427,5),(1651,1837645227,4),(1651,1856394027,5),(1651,1869094827,4),(1651,1887843627,5),(1651,1901149227,4),(1651,1919293227,5),(1651,1932598827,4),(1651,1950742827,5),(1651,1964048427,4),(1651,1982797227,5),(1651,1995498027,4),(1651,2014246827,5),(1651,2026947627,4),(1651,2045696427,5),(1651,2058397227,4),(1651,2077146027,5),(1651,2090451627,4),(1651,2108595627,5),(1651,2121901227,4),(1651,2140045227,5),(1652,-905824800,3),(1652,-857257200,1),(1652,-844556400,2),(1652,-828226800,1),(1652,-812502000,2),(1652,-796777200,1),(1652,-788922000,0),(1652,-777942000,2),(1652,-766623600,1),(1652,407199611,0),(1652,417574811,4),(1652,433299612,5),(1652,449024412,4),(1652,465354012,5),(1652,481078812,4),(1652,496803613,5),(1652,512528413,4),(1652,528253213,5),(1652,543978013,4),(1652,559702813,5),(1652,575427614,4),(1652,591152414,5),(1652,606877214,4),(1652,622602014,5),(1652,638326815,4),(1652,654656415,5),(1652,670381216,4),(1652,686106016,5),(1652,701830816,4),(1652,717555617,5),(1652,733280417,4),(1652,749005218,5),(1652,764730018,4),(1652,780454819,5),(1652,796179619,4),(1652,811904419,5),(1652,828234020,4),(1652,846378020,5),(1652,859683620,4),(1652,877827621,5),(1652,891133221,4),(1652,909277221,5),(1652,922582822,4),(1652,941331622,5),(1652,954032422,4),(1652,972781222,5),(1652,985482022,4),(1652,1004230822,5),(1652,1017536422,4),(1652,1035680422,5),(1652,1048986022,4),(1652,1067130022,5),(1652,1080435622,4),(1652,1099184422,5),(1652,1111885222,4),(1652,1130634022,5),(1652,1143334823,4),(1652,1162083623,5),(1652,1174784423,4),(1652,1193533223,5),(1652,1206838823,4),(1652,1224982823,5),(1652,1238288424,4),(1652,1256432424,5),(1652,1269738024,4),(1652,1288486824,5),(1652,1301187624,4),(1652,1319936424,5),(1652,1332637224,4),(1652,1351386025,5),(1652,1364691625,4),(1652,1382835625,5),(1652,1396141225,4),(1652,1414285225,5),(1652,1427590825,4),(1652,1445734826,5),(1652,1459040426,4),(1652,1477789226,5),(1652,1490490027,4),(1652,1509238827,5),(1652,1521939627,4),(1652,1540688427,5),(1652,1553994027,4),(1652,1572138027,5),(1652,1585443627,4),(1652,1603587627,5),(1652,1616893227,4),(1652,1635642027,5),(1652,1648342827,4),(1652,1667091627,5),(1652,1679792427,4),(1652,1698541227,5),(1652,1711846827,4),(1652,1729990827,5),(1652,1743296427,4),(1652,1761440427,5),(1652,1774746027,4),(1652,1792890027,5),(1652,1806195627,4),(1652,1824944427,5),(1652,1837645227,4),(1652,1856394027,5),(1652,1869094827,4),(1652,1887843627,5),(1652,1901149227,4),(1652,1919293227,5),(1652,1932598827,4),(1652,1950742827,5),(1652,1964048427,4),(1652,1982797227,5),(1652,1995498027,4),(1652,2014246827,5),(1652,2026947627,4),(1652,2045696427,5),(1652,2058397227,4),(1652,2077146027,5),(1652,2090451627,4),(1652,2108595627,5),(1652,2121901227,4),(1652,2140045227,5),(1653,-1593820800,1),(1653,-1247540400,3),(1653,354916809,2),(1653,370724410,3),(1653,386452810,2),(1653,402260411,3),(1653,417988811,2),(1653,433796412,3),(1653,449611212,2),(1653,465343212,4),(1653,481068012,5),(1653,496792813,4),(1653,512517613,5),(1653,528242413,4),(1653,543967213,5),(1653,559692013,4),(1653,575416814,6),(1653,591145214,7),(1653,606870014,6),(1653,622594814,7),(1653,638319615,6),(1653,654649215,7),(1653,670374016,4),(1653,701820016,6),(1653,717548417,7),(1653,733273217,6),(1653,748998018,7),(1653,764722818,6),(1653,780447619,7),(1653,796172419,6),(1653,811897219,7),(1653,828226820,6),(1653,846370820,7),(1653,859676420,6),(1653,877820421,7),(1653,891126021,6),(1653,909270021,7),(1653,922575622,6),(1653,941324422,7),(1653,954025222,6),(1653,972774022,7),(1653,985474822,6),(1653,1004223622,7),(1653,1017529222,6),(1653,1035673222,7),(1653,1048978822,6),(1653,1067122822,7),(1653,1080428422,6),(1653,1099177222,7),(1653,1111878022,6),(1653,1130626822,7),(1653,1143327623,6),(1653,1162076423,7),(1653,1174777223,6),(1653,1193526023,7),(1653,1206831623,6),(1653,1224975623,7),(1653,1238281224,6),(1653,1256425224,7),(1653,1269730824,6),(1653,1288479624,7),(1653,1301180424,4),(1653,1414274425,7),(1653,1480806026,4),(1654,-1441160160,1),(1654,-1247536800,2),(1654,-888894000,5),(1654,-857257200,3),(1654,-844556400,4),(1654,-828226800,3),(1654,-812502000,4),(1654,-811648800,2),(1654,354920409,6),(1654,370728010,2),(1654,386456410,6),(1654,402264011,2),(1654,417992411,6),(1654,433800012,2),(1654,449614812,6),(1654,465346812,7),(1654,481071612,8),(1654,496796413,7),(1654,512521213,8),(1654,528246013,7),(1654,543970813,8),(1654,559695613,7),(1654,575420414,8),(1654,591145214,7),(1654,606870014,8),(1654,622594814,7),(1654,631141214,2),(1654,646786815,1),(1654,701820016,9),(1654,717541217,1),(1654,733269617,9),(1654,748990818,1),(1654,764719218,9),(1654,767739618,6),(1654,780436819,2),(1654,796165219,6),(1654,811886419,2),(1654,828219620,8),(1654,846374420,7),(1654,852066020,2),(1654,859683620,10),(1654,877827621,11),(1654,891133221,10),(1654,909277221,11),(1654,922582822,10),(1654,941331622,11),(1654,954032422,10),(1654,972781222,11),(1654,985482022,10),(1654,1004230822,11),(1654,1017536422,10),(1654,1035680422,11),(1654,1048986022,10),(1654,1067130022,11),(1654,1080435622,10),(1654,1099184422,11),(1654,1111885222,10),(1654,1130634022,11),(1654,1143334823,10),(1654,1162083623,11),(1654,1174784423,10),(1654,1193533223,11),(1654,1206838823,10),(1654,1224982823,11),(1654,1238288424,10),(1654,1256432424,11),(1654,1269738024,10),(1654,1288486824,11),(1654,1301187624,10),(1654,1319936424,11),(1654,1332637224,10),(1654,1351386025,11),(1654,1364691625,10),(1654,1382835625,11),(1654,1396137625,12),(1654,1414274425,7),(1655,-905824800,3),(1655,-857257200,1),(1655,-844556400,2),(1655,-828226800,1),(1655,-812502000,2),(1655,-796777200,1),(1655,-788922000,0),(1655,-777942000,2),(1655,-766623600,1),(1655,407199611,0),(1655,417574811,4),(1655,433299612,5),(1655,449024412,4),(1655,465354012,5),(1655,481078812,4),(1655,496803613,5),(1655,512528413,4),(1655,528253213,5),(1655,543978013,4),(1655,559702813,5),(1655,575427614,4),(1655,591152414,5),(1655,606877214,4),(1655,622602014,5),(1655,638326815,4),(1655,654656415,5),(1655,670381216,4),(1655,686106016,5),(1655,701830816,4),(1655,717555617,5),(1655,733280417,4),(1655,749005218,5),(1655,764730018,4),(1655,780454819,5),(1655,796179619,4),(1655,811904419,5),(1655,828234020,4),(1655,846378020,5),(1655,859683620,4),(1655,877827621,5),(1655,891133221,4),(1655,909277221,5),(1655,922582822,4),(1655,941331622,5),(1655,954032422,4),(1655,972781222,5),(1655,985482022,4),(1655,1004230822,5),(1655,1017536422,4),(1655,1035680422,5),(1655,1048986022,4),(1655,1067130022,5),(1655,1080435622,4),(1655,1099184422,5),(1655,1111885222,4),(1655,1130634022,5),(1655,1143334823,4),(1655,1162083623,5),(1655,1174784423,4),(1655,1193533223,5),(1655,1206838823,4),(1655,1224982823,5),(1655,1238288424,4),(1655,1256432424,5),(1655,1269738024,4),(1655,1288486824,5),(1655,1301187624,4),(1655,1319936424,5),(1655,1332637224,4),(1655,1351386025,5),(1655,1364691625,4),(1655,1382835625,5),(1655,1396141225,4),(1655,1414285225,5),(1655,1427590825,4),(1655,1445734826,5),(1655,1459040426,4),(1655,1477789226,5),(1655,1490490027,4),(1655,1509238827,5),(1655,1521939627,4),(1655,1540688427,5),(1655,1553994027,4),(1655,1572138027,5),(1655,1585443627,4),(1655,1603587627,5),(1655,1616893227,4),(1655,1635642027,5),(1655,1648342827,4),(1655,1667091627,5),(1655,1679792427,4),(1655,1698541227,5),(1655,1711846827,4),(1655,1729990827,5),(1655,1743296427,4),(1655,1761440427,5),(1655,1774746027,4),(1655,1792890027,5),(1655,1806195627,4),(1655,1824944427,5),(1655,1837645227,4),(1655,1856394027,5),(1655,1869094827,4),(1655,1887843627,5),(1655,1901149227,4),(1655,1919293227,5),(1655,1932598827,4),(1655,1950742827,5),(1655,1964048427,4),(1655,1982797227,5),(1655,1995498027,4),(1655,2014246827,5),(1655,2026947627,4),(1655,2045696427,5),(1655,2058397227,4),(1655,2077146027,5),(1655,2090451627,4),(1655,2108595627,5),(1655,2121901227,4),(1655,2140045227,5),(1656,-857257200,1),(1656,-844556400,2),(1656,-828226800,1),(1656,-812502000,2),(1656,-796777200,1),(1656,-788922000,3),(1656,-781048800,0),(1656,291762008,4),(1656,307576808,0),(1656,323816409,4),(1656,339026409,0),(1656,355266009,4),(1656,370393210,0),(1656,386715610,4),(1656,401846411,5),(1656,417571211,6),(1656,433296012,5),(1656,449020812,6),(1656,465350412,5),(1656,481075212,6),(1656,496800013,5),(1656,512524813,6),(1656,528249613,5),(1656,543974413,6),(1656,559699213,5),(1656,575424014,6),(1656,591148814,5),(1656,606873614,6),(1656,622598414,5),(1656,638323215,6),(1656,654652815,5),(1656,662680815,0),(1656,670370416,4),(1656,686091616,0),(1656,701820016,4),(1656,717541217,0),(1656,733269617,4),(1656,748990818,0),(1656,764719218,4),(1656,780440419,0),(1656,796168819,4),(1656,811890019,0),(1656,828223220,4),(1656,846363620,0),(1656,859683620,7),(1656,877827621,8),(1656,891133221,7),(1656,909277221,8),(1656,922582822,7),(1656,941331622,8),(1656,954032422,7),(1656,972781222,8),(1656,985482022,7),(1656,1004230822,8),(1656,1017536422,7),(1656,1035680422,8),(1656,1048986022,7),(1656,1067130022,8),(1656,1080435622,7),(1656,1099184422,8),(1656,1111885222,7),(1656,1130634022,8),(1656,1143334823,7),(1656,1162083623,8),(1656,1174784423,7),(1656,1193533223,8),(1656,1206838823,7),(1656,1224982823,8),(1656,1238288424,7),(1656,1256432424,8),(1656,1269738024,7),(1656,1288486824,8),(1656,1301187624,7),(1656,1319936424,8),(1656,1332637224,7),(1656,1351386025,8),(1656,1364691625,7),(1656,1382835625,8),(1656,1396141225,7),(1656,1414285225,8),(1656,1427590825,7),(1656,1445734826,8),(1656,1459040426,7),(1656,1477789226,8),(1656,1490490027,7),(1656,1509238827,8),(1656,1521939627,7),(1656,1540688427,8),(1656,1553994027,7),(1656,1572138027,8),(1656,1585443627,7),(1656,1603587627,8),(1656,1616893227,7),(1656,1635642027,8),(1656,1648342827,7),(1656,1667091627,8),(1656,1679792427,7),(1656,1698541227,8),(1656,1711846827,7),(1656,1729990827,8),(1656,1743296427,7),(1656,1761440427,8),(1656,1774746027,7),(1656,1792890027,8),(1656,1806195627,7),(1656,1824944427,8),(1656,1837645227,7),(1656,1856394027,8),(1656,1869094827,7),(1656,1887843627,8),(1656,1901149227,7),(1656,1919293227,8),(1656,1932598827,7),(1656,1950742827,8),(1656,1964048427,7),(1656,1982797227,8),(1656,1995498027,7),(1656,2014246827,8),(1656,2026947627,7),(1656,2045696427,8),(1656,2058397227,7),(1656,2077146027,8),(1656,2090451627,7),(1656,2108595627,8),(1656,2121901227,7),(1656,2140045227,8),(1657,-1692496800,1),(1657,-1680483600,0),(1657,323830809,2),(1657,338950809,3),(1657,354675609,2),(1657,370400410,3),(1657,386125210,2),(1657,401850011,3),(1657,417574811,2),(1657,433299612,3),(1657,449024412,2),(1657,465354012,3),(1657,481078812,2),(1657,496803613,3),(1657,512528413,2),(1657,528253213,3),(1657,543978013,2),(1657,559702813,3),(1657,575427614,2),(1657,591152414,3),(1657,606877214,2),(1657,622602014,3),(1657,638326815,2),(1657,654656415,3),(1657,670381216,2),(1657,686106016,3),(1657,701830816,2),(1657,717555617,3),(1657,733280417,2),(1657,749005218,3),(1657,764730018,2),(1657,780454819,3),(1657,796179619,2),(1657,811904419,3),(1657,828234020,2),(1657,846378020,3),(1657,859683620,2),(1657,877827621,3),(1657,891133221,2),(1657,909277221,3),(1657,922582822,2),(1657,941331622,3),(1657,954032422,2),(1657,972781222,3),(1657,985482022,2),(1657,1004230822,3),(1657,1017536422,2),(1657,1035680422,3),(1657,1048986022,2),(1657,1067130022,3),(1657,1080435622,2),(1657,1099184422,3),(1657,1111885222,2),(1657,1130634022,3),(1657,1143334823,2),(1657,1162083623,3),(1657,1174784423,2),(1657,1193533223,3),(1657,1206838823,2),(1657,1224982823,3),(1657,1238288424,2),(1657,1256432424,3),(1657,1269738024,2),(1657,1288486824,3),(1657,1301187624,2),(1657,1319936424,3),(1657,1332637224,2),(1657,1351386025,3),(1657,1364691625,2),(1657,1382835625,3),(1657,1396141225,2),(1657,1414285225,3),(1657,1427590825,2),(1657,1445734826,3),(1657,1459040426,2),(1657,1477789226,3),(1657,1490490027,2),(1657,1509238827,3),(1657,1521939627,2),(1657,1540688427,3),(1657,1553994027,2),(1657,1572138027,3),(1657,1585443627,2),(1657,1603587627,3),(1657,1616893227,2),(1657,1635642027,3),(1657,1648342827,2),(1657,1667091627,3),(1657,1679792427,2),(1657,1698541227,3),(1657,1711846827,2),(1657,1729990827,3),(1657,1743296427,2),(1657,1761440427,3),(1657,1774746027,2),(1657,1792890027,3),(1657,1806195627,2),(1657,1824944427,3),(1657,1837645227,2),(1657,1856394027,3),(1657,1869094827,2),(1657,1887843627,3),(1657,1901149227,2),(1657,1919293227,3),(1657,1932598827,2),(1657,1950742827,3),(1657,1964048427,2),(1657,1982797227,3),(1657,1995498027,2),(1657,2014246827,3),(1657,2026947627,2),(1657,2045696427,3),(1657,2058397227,2),(1657,2077146027,3),(1657,2090451627,2),(1657,2108595627,3),(1657,2121901227,2),(1657,2140045227,3),(1658,-1638322740,3),(1658,-1632006000,1),(1658,-1618700400,2),(1658,-1593824400,0),(1658,-1535938740,4),(1658,-927943200,5),(1658,-892954800,6),(1658,-857257200,2),(1658,-844556400,1),(1658,-828226800,2),(1658,-812502000,1),(1658,-797652000,5),(1658,354920409,7),(1658,370728010,5),(1658,386456410,7),(1658,402264011,5),(1658,417992411,7),(1658,433800012,5),(1658,449614812,7),(1658,465346812,8),(1658,481071612,9),(1658,496796413,8),(1658,512521213,9),(1658,528246013,8),(1658,543970813,9),(1658,559695613,8),(1658,575420414,9),(1658,591145214,8),(1658,606870014,10),(1658,622598414,11),(1658,638323215,10),(1658,654652815,11),(1658,670377616,10),(1658,686102416,11),(1658,701827216,10),(1658,717552017,11),(1658,733276817,10),(1658,749001618,11),(1658,764726418,10),(1658,780451219,11),(1658,796176019,10),(1658,811900819,11),(1658,828230420,10),(1658,846374420,11),(1658,859680020,10),(1658,877824021,11),(1658,891129621,10),(1658,906411621,14),(1658,909277221,12),(1658,922582822,13),(1658,941331622,4),(1658,1017536422,13),(1658,1035680422,12),(1658,1048986022,13),(1658,1067130022,12),(1658,1080435622,13),(1658,1099184422,12),(1658,1111885222,13),(1658,1130634022,12),(1658,1143334823,13),(1658,1162083623,12),(1658,1174784423,13),(1658,1193533223,12),(1658,1206838823,13),(1658,1224982823,12),(1658,1238288424,13),(1658,1256432424,12),(1658,1269738024,13),(1658,1288486824,12),(1658,1301187624,13),(1658,1319936424,12),(1658,1332637224,13),(1658,1351386025,12),(1658,1364691625,13),(1658,1382835625,12),(1658,1396141225,13),(1658,1414285225,12),(1658,1427590825,13),(1658,1445734826,12),(1658,1459040426,13),(1658,1477789226,12),(1658,1490490027,13),(1658,1509238827,12),(1658,1521939627,13),(1658,1540688427,12),(1658,1553994027,13),(1658,1572138027,12),(1658,1585443627,13),(1658,1603587627,12),(1658,1616893227,13),(1658,1635642027,12),(1658,1648342827,13),(1658,1667091627,12),(1658,1679792427,13),(1658,1698541227,12),(1658,1711846827,13),(1658,1729990827,12),(1658,1743296427,13),(1658,1761440427,12),(1658,1774746027,13),(1658,1792890027,12),(1658,1806195627,13),(1658,1824944427,12),(1658,1837645227,13),(1658,1856394027,12),(1658,1869094827,13),(1658,1887843627,12),(1658,1901149227,13),(1658,1919293227,12),(1658,1932598827,13),(1658,1950742827,12),(1658,1964048427,13),(1658,1982797227,12),(1658,1995498027,13),(1658,2014246827,12),(1658,2026947627,13),(1658,2045696427,12),(1658,2058397227,13),(1658,2077146027,12),(1658,2090451627,13),(1658,2108595627,12),(1658,2121901227,13),(1658,2140045227,12),(1659,-1767230360,1),(1659,-932346000,2),(1659,-857257200,1),(1659,-844556400,2),(1659,-843519600,1),(1659,136854003,2),(1659,149896803,1),(1659,168130804,2),(1659,181432804,1),(1659,199839605,2),(1659,213141605,1),(1659,231894006,2),(1659,244591206,1),(1659,263257207,2),(1659,276040807,1),(1659,294706808,2),(1659,307490408,1),(1659,326156409,2),(1659,339458409,1),(1659,357087609,2),(1659,370389610,1),(1659,389142010,2),(1659,402444011,1),(1659,419468411,2),(1659,433807212,1),(1659,449622012,2),(1659,465354012,3),(1659,481078812,4),(1659,496803613,3),(1659,512528413,4),(1659,528253213,3),(1659,543978013,4),(1659,559702813,3),(1659,575427614,4),(1659,591152414,3),(1659,606877214,4),(1659,622602014,3),(1659,638326815,4),(1659,654656415,3),(1659,670381216,4),(1659,686106016,3),(1659,701830816,4),(1659,717555617,3),(1659,733280417,4),(1659,749005218,3),(1659,764730018,4),(1659,780454819,3),(1659,796179619,4),(1659,811904419,3),(1659,828234020,4),(1659,846378020,3),(1659,859683620,4),(1659,877827621,3),(1659,891133221,4),(1659,909277221,3),(1659,922582822,4),(1659,941331622,3),(1659,954032422,4),(1659,972781222,3),(1659,985482022,4),(1659,1004230822,3),(1659,1017536422,4),(1659,1035680422,3),(1659,1048986022,4),(1659,1067130022,3),(1659,1080435622,4),(1659,1099184422,3),(1659,1111885222,4),(1659,1130634022,3),(1659,1143334823,4),(1659,1162083623,3),(1659,1174784423,4),(1659,1193533223,3),(1659,1206838823,4),(1659,1224982823,3),(1659,1238288424,4),(1659,1256432424,3),(1659,1269738024,4),(1659,1288486824,3),(1659,1301187624,4),(1659,1319936424,3),(1659,1332637224,4),(1659,1351386025,3),(1659,1364691625,4),(1659,1382835625,3),(1659,1396141225,4),(1659,1414285225,3),(1659,1427590825,4),(1659,1445734826,3),(1659,1459040426,4),(1659,1477789226,3),(1659,1490490027,4),(1659,1509238827,3),(1659,1521939627,4),(1659,1540688427,3),(1659,1553994027,4),(1659,1572138027,3),(1659,1585443627,4),(1659,1603587627,3),(1659,1616893227,4),(1659,1635642027,3),(1659,1648342827,4),(1659,1667091627,3),(1659,1679792427,4),(1659,1698541227,3),(1659,1711846827,4),(1659,1729990827,3),(1659,1743296427,4),(1659,1761440427,3),(1659,1774746027,4),(1659,1792890027,3),(1659,1806195627,4),(1659,1824944427,3),(1659,1837645227,4),(1659,1856394027,3),(1659,1869094827,4),(1659,1887843627,3),(1659,1901149227,4),(1659,1919293227,3),(1659,1932598827,4),(1659,1950742827,3),(1659,1964048427,4),(1659,1982797227,3),(1659,1995498027,4),(1659,2014246827,3),(1659,2026947627,4),(1659,2045696427,3),(1659,2058397227,4),(1659,2077146027,3),(1659,2090451627,4),(1659,2108595627,3),(1659,2121901227,4),(1659,2140045227,3),(1660,-1637114100,1),(1660,-1213148664,4),(1660,-1187056800,2),(1660,-1175479200,3),(1660,-1159754400,2),(1660,-1144029600,3),(1660,-1127700000,2),(1660,-1111975200,3),(1660,-1096250400,2),(1660,-1080525600,3),(1660,-1064800800,2),(1660,-1049076000,3),(1660,-1033351200,2),(1660,-1017626400,3),(1660,-1001901600,2),(1660,-986176800,3),(1660,-970452000,2),(1660,-954727200,3),(1660,-927165600,5),(1660,-898138800,8),(1660,-857257200,6),(1660,-844556400,7),(1660,-828226800,6),(1660,-812502000,7),(1660,-800157600,10),(1660,354920409,9),(1660,370728010,10),(1660,386456410,9),(1660,402264011,10),(1660,417992411,9),(1660,433800012,10),(1660,449614812,9),(1660,465346812,11),(1660,481071612,12),(1660,496796413,11),(1660,512521213,12),(1660,528246013,11),(1660,543970813,12),(1660,559695613,11),(1660,575420414,12),(1660,591145214,11),(1660,606870014,12),(1660,622594814,11),(1660,638319615,12),(1660,641944815,5),(1660,654652815,3),(1660,670377616,2),(1660,686102416,3),(1660,694216816,4),(1660,701820016,5),(1660,717541217,4),(1660,733269617,5),(1660,748990818,4),(1660,764719218,5),(1660,780440419,4),(1660,796168819,5),(1660,811890019,4),(1660,828223220,5),(1660,846363620,4),(1660,859680020,5),(1660,877824021,4),(1660,891129621,5),(1660,909273621,4),(1660,922579222,5),(1660,941328022,4),(1660,954028822,5),(1660,972777622,4),(1660,985478422,5),(1660,1004227222,4),(1660,1017532822,5),(1660,1035676822,4),(1660,1048982422,5),(1660,1067126422,4),(1660,1080432022,5),(1660,1099180822,4),(1660,1111881622,5),(1660,1130630422,4),(1660,1143331223,5),(1660,1162080023,4),(1660,1174780823,5),(1660,1193529623,4),(1660,1206835223,5),(1660,1224979223,4),(1660,1238284824,5),(1660,1256428824,4),(1660,1269734424,5),(1660,1288483224,4),(1660,1301184024,5),(1660,1319932824,4),(1660,1332633624,5),(1660,1351382425,4),(1660,1364688025,5),(1660,1382832025,4),(1660,1396137625,5),(1660,1414281625,4),(1660,1427587225,5),(1660,1445731226,4),(1660,1459036826,5),(1660,1477785626,4),(1660,1490486427,5),(1660,1509235227,4),(1660,1521936027,5),(1660,1540684827,4),(1660,1553990427,5),(1660,1572134427,4),(1660,1585440027,5),(1660,1603584027,4),(1660,1616889627,5),(1660,1635638427,4),(1660,1648339227,5),(1660,1667088027,4),(1660,1679788827,5),(1660,1698537627,4),(1660,1711843227,5),(1660,1729987227,4),(1660,1743292827,5),(1660,1761436827,4),(1660,1774742427,5),(1660,1792886427,4),(1660,1806192027,5),(1660,1824940827,4),(1660,1837641627,5),(1660,1856390427,4),(1660,1869091227,5),(1660,1887840027,4),(1660,1901145627,5),(1660,1919289627,4),(1660,1932595227,5),(1660,1950739227,4),(1660,1964044827,5),(1660,1982793627,4),(1660,1995494427,5),(1660,2014243227,4),(1660,2026944027,5),(1660,2045692827,4),(1660,2058393627,5),(1660,2077142427,4),(1660,2090448027,5),(1660,2108592027,4),(1660,2121897627,5),(1660,2140041627,4),(1661,-1593820800,1),(1661,-1247540400,3),(1661,354916809,2),(1661,370724410,3),(1661,386452810,2),(1661,402260411,3),(1661,417988811,2),(1661,433796412,3),(1661,449611212,2),(1661,465343212,4),(1661,481068012,5),(1661,496792813,4),(1661,512517613,5),(1661,528242413,4),(1661,543967213,5),(1661,559692013,4),(1661,575416814,5),(1661,591141614,4),(1661,606866414,6),(1661,622594814,7),(1661,638319615,6),(1661,654649215,7),(1661,670374016,8),(1661,686102416,9),(1661,695779216,7),(1661,701823616,6),(1661,717548417,7),(1661,733273217,6),(1661,748998018,7),(1661,764722818,6),(1661,780447619,7),(1661,796172419,6),(1661,811897219,7),(1661,828226820,6),(1661,846370820,7),(1661,859676420,6),(1661,877820421,7),(1661,891126021,6),(1661,909270021,7),(1661,922575622,6),(1661,941324422,7),(1661,954025222,6),(1661,972774022,7),(1661,985474822,6),(1661,1004223622,7),(1661,1017529222,6),(1661,1035673222,7),(1661,1048978822,6),(1661,1067122822,7),(1661,1080428422,6),(1661,1099177222,7),(1661,1111878022,6),(1661,1130626822,7),(1661,1143327623,6),(1661,1162076423,7),(1661,1174777223,6),(1661,1193526023,7),(1661,1206831623,6),(1661,1224975623,7),(1661,1238281224,6),(1661,1256425224,7),(1661,1269730824,6),(1661,1288479624,7),(1661,1301180424,4),(1661,1414274425,7),(1661,1459033226,4),(1662,-938905200,1),(1662,-857257200,2),(1662,-844556400,1),(1662,-828226800,2),(1662,-812502000,1),(1662,-796874400,3),(1662,-794714400,0),(1662,-773456400,5),(1662,354920409,4),(1662,370728010,5),(1662,386456410,4),(1662,402264011,5),(1662,417992411,4),(1662,433800012,5),(1662,449614812,4),(1662,465346812,6),(1662,481071612,7),(1662,496796413,6),(1662,512521213,7),(1662,528246013,6),(1662,543970813,7),(1662,559695613,6),(1662,575420414,7),(1662,591145214,6),(1662,606870014,7),(1662,622594814,6),(1662,631141214,5),(1662,646786815,0),(1662,670384816,8),(1662,701820016,9),(1662,717541217,8),(1662,733269617,9),(1662,748990818,8),(1662,764719218,9),(1662,780440419,8),(1662,796179619,10),(1662,811904419,11),(1662,828234020,10),(1662,846378020,11),(1662,859683620,10),(1662,877827621,11),(1662,891133221,10),(1662,909277221,11),(1662,922582822,10),(1662,941331622,11),(1662,954032422,10),(1662,972781222,11),(1662,985482022,10),(1662,1004230822,11),(1662,1017536422,10),(1662,1035680422,11),(1662,1048986022,10),(1662,1067130022,11),(1662,1080435622,10),(1662,1099184422,11),(1662,1111885222,10),(1662,1130634022,11),(1662,1143334823,10),(1662,1162083623,11),(1662,1174784423,10),(1662,1193533223,11),(1662,1206838823,10),(1662,1224982823,11),(1662,1238288424,10),(1662,1256432424,11),(1662,1269738024,10),(1662,1288486824,11),(1662,1301187624,10),(1662,1319936424,11),(1662,1332637224,10),(1662,1351386025,11),(1662,1364691625,10),(1662,1382835625,11),(1662,1396141225,10),(1662,1414285225,11),(1662,1427590825,10),(1662,1445734826,11),(1662,1459040426,10),(1662,1477789226,11),(1662,1490490027,10),(1662,1509238827,11),(1662,1521939627,10),(1662,1540688427,11),(1662,1553994027,10),(1662,1572138027,11),(1662,1585443627,10),(1662,1603587627,11),(1662,1616893227,10),(1662,1635642027,11),(1662,1648342827,10),(1662,1667091627,11),(1662,1679792427,10),(1662,1698541227,11),(1662,1711846827,10),(1662,1729990827,11),(1662,1743296427,10),(1662,1761440427,11),(1662,1774746027,10),(1662,1792890027,11),(1662,1806195627,10),(1662,1824944427,11),(1662,1837645227,10),(1662,1856394027,11),(1662,1869094827,10),(1662,1887843627,11),(1662,1901149227,10),(1662,1919293227,11),(1662,1932598827,10),(1662,1950742827,11),(1662,1964048427,10),(1662,1982797227,11),(1662,1995498027,10),(1662,2014246827,11),(1662,2026947627,10),(1662,2045696427,11),(1662,2058397227,10),(1662,2077146027,11),(1662,2090451627,10),(1662,2108595627,11),(1662,2121901227,10),(1662,2140045227,11),(1663,-904435200,0),(1663,-891129600,1),(1663,-872985600,0),(1663,-859680000,1),(1663,354675609,2),(1663,370400410,3),(1663,386125210,2),(1663,401850011,3),(1663,417574811,2),(1663,433299612,3),(1663,449024412,2),(1663,465354012,3),(1663,481078812,2),(1663,496803613,3),(1663,512528413,2),(1663,528253213,3),(1663,543978013,2),(1663,559702813,3),(1663,575427614,2),(1663,591152414,3),(1663,606877214,2),(1663,622602014,3),(1663,638326815,2),(1663,654656415,3),(1663,670381216,2),(1663,686106016,3),(1663,701830816,2),(1663,717555617,3),(1663,733280417,2),(1663,749005218,3),(1663,764730018,2),(1663,780454819,3),(1663,796179619,2),(1663,811904419,3),(1663,828234020,2),(1663,846378020,3),(1663,859683620,2),(1663,877827621,3),(1663,891133221,2),(1663,909277221,3),(1663,922582822,2),(1663,941331622,3),(1663,954032422,2),(1663,972781222,3),(1663,985482022,2),(1663,1004230822,3),(1663,1017536422,2),(1663,1035680422,3),(1663,1048986022,2),(1663,1067130022,3),(1663,1080435622,2),(1663,1099184422,3),(1663,1111885222,2),(1663,1130634022,3),(1663,1143334823,2),(1663,1162083623,3),(1663,1174784423,2),(1663,1193533223,3),(1663,1206838823,2),(1663,1224982823,3),(1663,1238288424,2),(1663,1256432424,3),(1663,1269738024,2),(1663,1288486824,3),(1663,1301187624,2),(1663,1319936424,3),(1663,1332637224,2),(1663,1351386025,3),(1663,1364691625,2),(1663,1382835625,3),(1663,1396141225,2),(1663,1414285225,3),(1663,1427590825,2),(1663,1445734826,3),(1663,1459040426,2),(1663,1477789226,3),(1663,1490490027,2),(1663,1509238827,3),(1663,1521939627,2),(1663,1540688427,3),(1663,1553994027,2),(1663,1572138027,3),(1663,1585443627,2),(1663,1603587627,3),(1663,1616893227,2),(1663,1635642027,3),(1663,1648342827,2),(1663,1667091627,3),(1663,1679792427,2),(1663,1698541227,3),(1663,1711846827,2),(1663,1729990827,3),(1663,1743296427,2),(1663,1761440427,3),(1663,1774746027,2),(1663,1792890027,3),(1663,1806195627,2),(1663,1824944427,3),(1663,1837645227,2),(1663,1856394027,3),(1663,1869094827,2),(1663,1887843627,3),(1663,1901149227,2),(1663,1919293227,3),(1663,1932598827,2),(1663,1950742827,3),(1663,1964048427,2),(1663,1982797227,3),(1663,1995498027,2),(1663,2014246827,3),(1663,2026947627,2),(1663,2045696427,3),(1663,2058397227,2),(1663,2077146027,3),(1663,2090451627,2),(1663,2108595627,3),(1663,2121901227,2),(1663,2140045227,3),(1664,-1690765200,0),(1664,-1680487200,1),(1664,-1664758800,0),(1664,-1648951200,1),(1664,-1635123600,0),(1664,-1616896800,1),(1664,-1604278800,0),(1664,-1585533600,1),(1664,-1571014800,0),(1664,-1555293600,1),(1664,-932432400,0),(1664,-857257200,2),(1664,-844556400,3),(1664,-830311200,0),(1664,-828226800,2),(1664,-812502000,3),(1664,-807156000,0),(1664,-798073200,2),(1664,-781052400,0),(1664,-766717200,1),(1664,-750898800,3),(1664,-733359600,2),(1664,-719456400,3),(1664,-701917200,2),(1664,-689209200,3),(1664,-670460400,2),(1664,-114051600,3),(1664,-103168800,1),(1664,-81997200,3),(1664,-71715600,2),(1664,-50547600,3),(1664,-40266000,2),(1664,-18493200,3),(1664,-8211600,2),(1664,12956400,3),(1664,23238000,2),(1664,43801200,3),(1664,54687600,2),(1664,75855600,3),(1664,86742001,2),(1664,107910002,3),(1664,118191602,2),(1664,138754803,3),(1664,149641203,2),(1664,170809204,3),(1664,181090804,2),(1664,202258805,3),(1664,212540405,2),(1664,233103606,3),(1664,243990006,2),(1664,265158007,3),(1664,276044407,2),(1664,296607608,3),(1664,307494008,2),(1664,315529208,1),(1664,323830809,4),(1664,338950809,5),(1664,354675609,4),(1664,370400410,5),(1664,386125210,4),(1664,401850011,5),(1664,417574811,4),(1664,433299612,5),(1664,449024412,4),(1664,465354012,5),(1664,481078812,4),(1664,496803613,5),(1664,512528413,4),(1664,528253213,5),(1664,543978013,4),(1664,559702813,5),(1664,575427614,4),(1664,591152414,5),(1664,606877214,4),(1664,622602014,5),(1664,638326815,4),(1664,654656415,5),(1664,670381216,4),(1664,686106016,5),(1664,701830816,4),(1664,717555617,5),(1664,733280417,4),(1664,749005218,5),(1664,764730018,4),(1664,780454819,5),(1664,796179619,4),(1664,811904419,5),(1664,828234020,4),(1664,846378020,5),(1664,859683620,4),(1664,877827621,5),(1664,891133221,4),(1664,909277221,5),(1664,922582822,4),(1664,941331622,5),(1664,954032422,4),(1664,972781222,5),(1664,985482022,4),(1664,1004230822,5),(1664,1017536422,4),(1664,1035680422,5),(1664,1048986022,4),(1664,1067130022,5),(1664,1080435622,4),(1664,1099184422,5),(1664,1111885222,4),(1664,1130634022,5),(1664,1143334823,4),(1664,1162083623,5),(1664,1174784423,4),(1664,1193533223,5),(1664,1206838823,4),(1664,1224982823,5),(1664,1238288424,4),(1664,1256432424,5),(1664,1269738024,4),(1664,1288486824,5),(1664,1301187624,4),(1664,1319936424,5),(1664,1332637224,4),(1664,1351386025,5),(1664,1364691625,4),(1664,1382835625,5),(1664,1396141225,4),(1664,1414285225,5),(1664,1427590825,4),(1664,1445734826,5),(1664,1459040426,4),(1664,1477789226,5),(1664,1490490027,4),(1664,1509238827,5),(1664,1521939627,4),(1664,1540688427,5),(1664,1553994027,4),(1664,1572138027,5),(1664,1585443627,4),(1664,1603587627,5),(1664,1616893227,4),(1664,1635642027,5),(1664,1648342827,4),(1664,1667091627,5),(1664,1679792427,4),(1664,1698541227,5),(1664,1711846827,4),(1664,1729990827,5),(1664,1743296427,4),(1664,1761440427,5),(1664,1774746027,4),(1664,1792890027,5),(1664,1806195627,4),(1664,1824944427,5),(1664,1837645227,4),(1664,1856394027,5),(1664,1869094827,4),(1664,1887843627,5),(1664,1901149227,4),(1664,1919293227,5),(1664,1932598827,4),(1664,1950742827,5),(1664,1964048427,4),(1664,1982797227,5),(1664,1995498027,4),(1664,2014246827,5),(1664,2026947627,4),(1664,2045696427,5),(1664,2058397227,4),(1664,2077146027,5),(1664,2090451627,4),(1664,2108595627,5),(1664,2121901227,4),(1664,2140045227,5),(1665,-1693706400,0),(1665,-1680483600,1),(1665,-1663455600,2),(1665,-1650150000,3),(1665,-1632006000,2),(1665,-1618700400,3),(1665,-1577926800,1),(1665,-1569711600,2),(1665,-1555801200,3),(1665,-938905200,2),(1665,-857257200,3),(1665,-844556400,2),(1665,-828226800,3),(1665,-812502000,2),(1665,-796777200,3),(1665,-781052400,2),(1665,-780188400,3),(1665,-757386000,1),(1665,-748479600,2),(1665,-733359600,3),(1665,-717634800,2),(1665,-701910000,3),(1665,-684975600,2),(1665,-670460400,3),(1665,323823609,0),(1665,338940009,1),(1665,354675609,4),(1665,370400410,5),(1665,386125210,4),(1665,401850011,5),(1665,417574811,4),(1665,433299612,5),(1665,449024412,4),(1665,465354012,5),(1665,481078812,4),(1665,496803613,5),(1665,512528413,4),(1665,528253213,5),(1665,543978013,4),(1665,559702813,5),(1665,575427614,4),(1665,591152414,5),(1665,606877214,4),(1665,622602014,5),(1665,638326815,4),(1665,654656415,5),(1665,670381216,4),(1665,686106016,5),(1665,701830816,4),(1665,717555617,5),(1665,733280417,4),(1665,749005218,5),(1665,764730018,4),(1665,780454819,5),(1665,796179619,4),(1665,811904419,5),(1665,828234020,4),(1665,846378020,5),(1665,859683620,4),(1665,877827621,5),(1665,891133221,4),(1665,909277221,5),(1665,922582822,4),(1665,941331622,5),(1665,954032422,4),(1665,972781222,5),(1665,985482022,4),(1665,1004230822,5),(1665,1017536422,4),(1665,1035680422,5),(1665,1048986022,4),(1665,1067130022,5),(1665,1080435622,4),(1665,1099184422,5),(1665,1111885222,4),(1665,1130634022,5),(1665,1143334823,4),(1665,1162083623,5),(1665,1174784423,4),(1665,1193533223,5),(1665,1206838823,4),(1665,1224982823,5),(1665,1238288424,4),(1665,1256432424,5),(1665,1269738024,4),(1665,1288486824,5),(1665,1301187624,4),(1665,1319936424,5),(1665,1332637224,4),(1665,1351386025,5),(1665,1364691625,4),(1665,1382835625,5),(1665,1396141225,4),(1665,1414285225,5),(1665,1427590825,4),(1665,1445734826,5),(1665,1459040426,4),(1665,1477789226,5),(1665,1490490027,4),(1665,1509238827,5),(1665,1521939627,4),(1665,1540688427,5),(1665,1553994027,4),(1665,1572138027,5),(1665,1585443627,4),(1665,1603587627,5),(1665,1616893227,4),(1665,1635642027,5),(1665,1648342827,4),(1665,1667091627,5),(1665,1679792427,4),(1665,1698541227,5),(1665,1711846827,4),(1665,1729990827,5),(1665,1743296427,4),(1665,1761440427,5),(1665,1774746027,4),(1665,1792890027,5),(1665,1806195627,4),(1665,1824944427,5),(1665,1837645227,4),(1665,1856394027,5),(1665,1869094827,4),(1665,1887843627,5),(1665,1901149227,4),(1665,1919293227,5),(1665,1932598827,4),(1665,1950742827,5),(1665,1964048427,4),(1665,1982797227,5),(1665,1995498027,4),(1665,2014246827,5),(1665,2026947627,4),(1665,2045696427,5),(1665,2058397227,4),(1665,2077146027,5),(1665,2090451627,4),(1665,2108595627,5),(1665,2121901227,4),(1665,2140045227,5),(1666,-1672536240,1),(1666,-1585100136,2),(1666,-1561251600,3),(1666,-1553565600,2),(1666,-928198800,4),(1666,-900126000,7),(1666,-857257200,5),(1666,-844556400,6),(1666,-828226800,5),(1666,-812502000,6),(1666,-802144800,4),(1666,354920409,8),(1666,370728010,4),(1666,386456410,8),(1666,402264011,4),(1666,417992411,8),(1666,433800012,4),(1666,449614812,8),(1666,465346812,9),(1666,481071612,10),(1666,496796413,9),(1666,512521213,10),(1666,528246013,9),(1666,543970813,10),(1666,559695613,9),(1666,575420414,10),(1666,591145214,9),(1666,606870014,11),(1666,622598414,12),(1666,638323215,11),(1666,654652815,12),(1666,670377616,11),(1666,686102416,12),(1666,701827216,11),(1666,717552017,12),(1666,733276817,11),(1666,749001618,12),(1666,764726418,11),(1666,780451219,12),(1666,796176019,11),(1666,811900819,12),(1666,828230420,11),(1666,846374420,12),(1666,859680020,11),(1666,877824021,12),(1666,883605621,3),(1666,891133221,13),(1666,909277221,14),(1666,922582822,13),(1666,941331622,15),(1666,1041372022,3),(1666,1048986022,16),(1666,1067130022,15),(1666,1080435622,16),(1666,1099184422,15),(1666,1111885222,16),(1666,1130634022,15),(1666,1143334823,16),(1666,1162083623,15),(1666,1174784423,16),(1666,1193533223,15),(1666,1206838823,16),(1666,1224982823,15),(1666,1238288424,16),(1666,1256432424,15),(1666,1269738024,16),(1666,1288486824,15),(1666,1301187624,16),(1666,1319936424,15),(1666,1332637224,16),(1666,1351386025,15),(1666,1364691625,16),(1666,1382835625,15),(1666,1396141225,16),(1666,1414285225,15),(1666,1427590825,16),(1666,1445734826,15),(1666,1459040426,16),(1666,1477789226,15),(1666,1490490027,16),(1666,1509238827,15),(1666,1521939627,16),(1666,1540688427,15),(1666,1553994027,16),(1666,1572138027,15),(1666,1585443627,16),(1666,1603587627,15),(1666,1616893227,16),(1666,1635642027,15),(1666,1648342827,16),(1666,1667091627,15),(1666,1679792427,16),(1666,1698541227,15),(1666,1711846827,16),(1666,1729990827,15),(1666,1743296427,16),(1666,1761440427,15),(1666,1774746027,16),(1666,1792890027,15),(1666,1806195627,16),(1666,1824944427,15),(1666,1837645227,16),(1666,1856394027,15),(1666,1869094827,16),(1666,1887843627,15),(1666,1901149227,16),(1666,1919293227,15),(1666,1932598827,16),(1666,1950742827,15),(1666,1964048427,16),(1666,1982797227,15),(1666,1995498027,16),(1666,2014246827,15),(1666,2026947627,16),(1666,2045696427,15),(1666,2058397227,16),(1666,2077146027,15),(1666,2090451627,16),(1666,2108595627,15),(1666,2121901227,16),(1666,2140045227,15),(1667,-1577761060,1),(1667,-1247540400,2),(1667,354916809,3),(1667,370724410,2),(1667,386452810,3),(1667,402260411,2),(1667,417988811,3),(1667,433796412,2),(1667,449611212,3),(1667,465343212,4),(1667,481068012,5),(1667,496792813,4),(1667,512517613,5),(1667,528242413,4),(1667,543967213,5),(1667,559692013,4),(1667,575416814,6),(1667,591145214,7),(1667,606870014,6),(1667,622594814,7),(1667,638319615,6),(1667,654649215,7),(1667,670374016,4),(1667,701820016,6),(1667,717548417,7),(1667,733273217,6),(1667,748998018,7),(1667,764722818,6),(1667,780447619,7),(1667,796172419,6),(1667,811897219,7),(1667,828226820,6),(1667,846370820,7),(1667,859676420,6),(1667,877820421,7),(1667,891126021,6),(1667,909270021,7),(1667,922575622,6),(1667,941324422,7),(1667,954025222,6),(1667,972774022,7),(1667,985474822,6),(1667,1004223622,7),(1667,1017529222,6),(1667,1035673222,7),(1667,1048978822,6),(1667,1067122822,7),(1667,1080428422,6),(1667,1099177222,7),(1667,1111878022,6),(1667,1130626822,7),(1667,1143327623,6),(1667,1162076423,7),(1667,1174777223,6),(1667,1193526023,7),(1667,1206831623,6),(1667,1224975623,7),(1667,1238281224,6),(1667,1256425224,7),(1667,1269730824,6),(1667,1288479624,7),(1667,1301180424,4),(1667,1414274425,7),(1668,-1717032240,2),(1668,-1693706400,1),(1668,-1680483600,2),(1668,-1663455600,3),(1668,-1650150000,4),(1668,-1632006000,3),(1668,-1618700400,7),(1668,-1600473600,5),(1668,-1587168000,6),(1668,-1501725600,2),(1668,-931734000,1),(1668,-857257200,4),(1668,-844556400,3),(1668,-828226800,4),(1668,-812502000,3),(1668,-796874400,1),(1668,-796608000,2),(1668,-778726800,1),(1668,-762660000,2),(1668,-748486800,3),(1668,-733273200,4),(1668,-715215600,3),(1668,-701910000,4),(1668,-684975600,3),(1668,-670460400,4),(1668,-654130800,3),(1668,-639010800,4),(1668,-397094400,3),(1668,-386812800,4),(1668,-371088000,3),(1668,-355363200,4),(1668,-334195200,3),(1668,-323308800,4),(1668,-307584000,3),(1668,-291859200,4),(1668,-271296000,3),(1668,-260409600,4),(1668,-239846400,3),(1668,-228960000,4),(1668,-208396800,3),(1668,-197510400,4),(1668,-176342400,3),(1668,-166060800,4),(1668,220921205,2),(1668,228873606,3),(1668,243993606,4),(1668,260323207,3),(1668,276048007,4),(1668,291772808,3),(1668,307497608,4),(1668,323827209,3),(1668,338947209,4),(1668,354672009,3),(1668,370396810,4),(1668,386121610,3),(1668,401846411,4),(1668,417571211,3),(1668,433296012,4),(1668,449020812,3),(1668,465350412,4),(1668,481075212,3),(1668,496800013,4),(1668,512524813,3),(1668,528249613,4),(1668,543974413,3),(1668,559699213,4),(1668,567990013,2),(1668,575427614,8),(1668,591152414,9),(1668,606877214,8),(1668,622602014,9),(1668,638326815,8),(1668,654656415,9),(1668,670381216,8),(1668,686106016,9),(1668,701830816,8),(1668,717555617,9),(1668,733280417,8),(1668,749005218,9),(1668,764730018,8),(1668,780454819,9),(1668,796179619,8),(1668,811904419,9),(1668,828234020,8),(1668,846378020,9),(1668,859683620,8),(1668,877827621,9),(1668,891133221,8),(1668,909277221,9),(1668,922582822,8),(1668,941331622,9),(1668,954032422,8),(1668,972781222,9),(1668,985482022,8),(1668,1004230822,9),(1668,1017536422,8),(1668,1035680422,9),(1668,1048986022,8),(1668,1067130022,9),(1668,1080435622,8),(1668,1099184422,9),(1668,1111885222,8),(1668,1130634022,9),(1668,1143334823,8),(1668,1162083623,9),(1668,1174784423,8),(1668,1193533223,9),(1668,1206838823,8),(1668,1224982823,9),(1668,1238288424,8),(1668,1256432424,9),(1668,1269738024,8),(1668,1288486824,9),(1668,1301187624,8),(1668,1319936424,9),(1668,1332637224,8),(1668,1351386025,9),(1668,1364691625,8),(1668,1382835625,9),(1668,1396141225,8),(1668,1414285225,9),(1668,1427590825,8),(1668,1445734826,9),(1668,1459040426,8),(1668,1477789226,9),(1668,1490490027,8),(1668,1509238827,9),(1668,1521939627,8),(1668,1540688427,9),(1668,1553994027,8),(1668,1572138027,9),(1668,1585443627,8),(1668,1603587627,9),(1668,1616893227,8),(1668,1635642027,9),(1668,1648342827,8),(1668,1667091627,9),(1668,1679792427,8),(1668,1698541227,9),(1668,1711846827,8),(1668,1729990827,9),(1668,1743296427,8),(1668,1761440427,9),(1668,1774746027,8),(1668,1792890027,9),(1668,1806195627,8),(1668,1824944427,9),(1668,1837645227,8),(1668,1856394027,9),(1668,1869094827,8),(1668,1887843627,9),(1668,1901149227,8),(1668,1919293227,9),(1668,1932598827,8),(1668,1950742827,9),(1668,1964048427,8),(1668,1982797227,9),(1668,1995498027,8),(1668,2014246827,9),(1668,2026947627,8),(1668,2045696427,9),(1668,2058397227,8),(1668,2077146027,9),(1668,2090451627,8),(1668,2108595627,9),(1668,2121901227,8),(1668,2140045227,9),(1669,-905824800,3),(1669,-857257200,1),(1669,-844556400,2),(1669,-828226800,1),(1669,-812502000,2),(1669,-796777200,1),(1669,-788922000,0),(1669,-777942000,2),(1669,-766623600,1),(1669,407199611,0),(1669,417574811,4),(1669,433299612,5),(1669,449024412,4),(1669,465354012,5),(1669,481078812,4),(1669,496803613,5),(1669,512528413,4),(1669,528253213,5),(1669,543978013,4),(1669,559702813,5),(1669,575427614,4),(1669,591152414,5),(1669,606877214,4),(1669,622602014,5),(1669,638326815,4),(1669,654656415,5),(1669,670381216,4),(1669,686106016,5),(1669,701830816,4),(1669,717555617,5),(1669,733280417,4),(1669,749005218,5),(1669,764730018,4),(1669,780454819,5),(1669,796179619,4),(1669,811904419,5),(1669,828234020,4),(1669,846378020,5),(1669,859683620,4),(1669,877827621,5),(1669,891133221,4),(1669,909277221,5),(1669,922582822,4),(1669,941331622,5),(1669,954032422,4),(1669,972781222,5),(1669,985482022,4),(1669,1004230822,5),(1669,1017536422,4),(1669,1035680422,5),(1669,1048986022,4),(1669,1067130022,5),(1669,1080435622,4),(1669,1099184422,5),(1669,1111885222,4),(1669,1130634022,5),(1669,1143334823,4),(1669,1162083623,5),(1669,1174784423,4),(1669,1193533223,5),(1669,1206838823,4),(1669,1224982823,5),(1669,1238288424,4),(1669,1256432424,5),(1669,1269738024,4),(1669,1288486824,5),(1669,1301187624,4),(1669,1319936424,5),(1669,1332637224,4),(1669,1351386025,5),(1669,1364691625,4),(1669,1382835625,5),(1669,1396141225,4),(1669,1414285225,5),(1669,1427590825,4),(1669,1445734826,5),(1669,1459040426,4),(1669,1477789226,5),(1669,1490490027,4),(1669,1509238827,5),(1669,1521939627,4),(1669,1540688427,5),(1669,1553994027,4),(1669,1572138027,5),(1669,1585443627,4),(1669,1603587627,5),(1669,1616893227,4),(1669,1635642027,5),(1669,1648342827,4),(1669,1667091627,5),(1669,1679792427,4),(1669,1698541227,5),(1669,1711846827,4),(1669,1729990827,5),(1669,1743296427,4),(1669,1761440427,5),(1669,1774746027,4),(1669,1792890027,5),(1669,1806195627,4),(1669,1824944427,5),(1669,1837645227,4),(1669,1856394027,5),(1669,1869094827,4),(1669,1887843627,5),(1669,1901149227,4),(1669,1919293227,5),(1669,1932598827,4),(1669,1950742827,5),(1669,1964048427,4),(1669,1982797227,5),(1669,1995498027,4),(1669,2014246827,5),(1669,2026947627,4),(1669,2045696427,5),(1669,2058397227,4),(1669,2077146027,5),(1669,2090451627,4),(1669,2108595627,5),(1669,2121901227,4),(1669,2140045227,5),(1670,-1441160400,1),(1670,-1247536800,2),(1670,-894769200,5),(1670,-857257200,3),(1670,-844556400,4),(1670,-828226800,3),(1670,-826419600,2),(1670,354920409,6),(1670,370728010,2),(1670,386456410,6),(1670,402264011,2),(1670,417992411,6),(1670,433800012,2),(1670,449614812,6),(1670,465346812,7),(1670,481071612,8),(1670,496796413,7),(1670,512521213,8),(1670,528246013,7),(1670,543970813,8),(1670,559695613,7),(1670,575420414,8),(1670,591145214,7),(1670,606870014,8),(1670,622594814,7),(1670,638319615,8),(1670,654649215,7),(1670,670374016,9),(1670,686091616,1),(1670,701820016,9),(1670,717541217,1),(1670,733269617,9),(1670,748990818,1),(1670,764719218,9),(1670,780440419,1),(1670,796179619,10),(1670,811904419,11),(1670,828234020,10),(1670,846378020,11),(1670,859683620,10),(1670,877827621,11),(1670,891133221,10),(1670,909277221,11),(1670,922582822,10),(1670,941331622,11),(1670,954032422,10),(1670,972781222,11),(1670,985482022,10),(1670,1004230822,11),(1670,1017536422,10),(1670,1035680422,11),(1670,1048986022,10),(1670,1067130022,11),(1670,1080435622,10),(1670,1099184422,11),(1670,1111885222,10),(1670,1130634022,11),(1670,1143334823,10),(1670,1162083623,11),(1670,1174784423,10),(1670,1193533223,11),(1670,1206838823,10),(1670,1224982823,11),(1670,1238288424,10),(1670,1256432424,11),(1670,1269738024,10),(1670,1288486824,11),(1670,1301187624,10),(1670,1319936424,11),(1670,1332637224,10),(1670,1351386025,11),(1670,1364691625,10),(1670,1382835625,11),(1670,1396141225,10),(1670,1414285225,11),(1670,1427590825,10),(1670,1445734826,11),(1670,1459040426,10),(1670,1477789226,11),(1670,1490490027,10),(1670,1509238827,11),(1670,1521939627,10),(1670,1540688427,11),(1670,1553994027,10),(1670,1572138027,11),(1670,1585443627,10),(1670,1603587627,11),(1670,1616893227,10),(1670,1635642027,11),(1670,1648342827,10),(1670,1667091627,11),(1670,1679792427,10),(1670,1698541227,11),(1670,1711846827,10),(1670,1729990827,11),(1670,1743296427,10),(1670,1761440427,11),(1670,1774746027,10),(1670,1792890027,11),(1670,1806195627,10),(1670,1824944427,11),(1670,1837645227,10),(1670,1856394027,11),(1670,1869094827,10),(1670,1887843627,11),(1670,1901149227,10),(1670,1919293227,11),(1670,1932598827,10),(1670,1950742827,11),(1670,1964048427,10),(1670,1982797227,11),(1670,1995498027,10),(1670,2014246827,11),(1670,2026947627,10),(1670,2045696427,11),(1670,2058397227,10),(1670,2077146027,11),(1670,2090451627,10),(1670,2108595627,11),(1670,2121901227,10),(1670,2140045227,11),(1671,-904435200,0),(1671,-891129600,1),(1671,-872985600,0),(1671,-859680000,1),(1671,354675609,2),(1671,370400410,3),(1671,386125210,2),(1671,401850011,3),(1671,417574811,2),(1671,433299612,3),(1671,449024412,2),(1671,465354012,3),(1671,481078812,2),(1671,496803613,3),(1671,512528413,2),(1671,528253213,3),(1671,543978013,2),(1671,559702813,3),(1671,575427614,2),(1671,591152414,3),(1671,606877214,2),(1671,622602014,3),(1671,638326815,2),(1671,654656415,3),(1671,670381216,2),(1671,686106016,3),(1671,701830816,2),(1671,717555617,3),(1671,733280417,2),(1671,749005218,3),(1671,764730018,2),(1671,780454819,3),(1671,796179619,2),(1671,811904419,3),(1671,828234020,2),(1671,846378020,3),(1671,859683620,2),(1671,877827621,3),(1671,891133221,2),(1671,909277221,3),(1671,922582822,2),(1671,941331622,3),(1671,954032422,2),(1671,972781222,3),(1671,985482022,2),(1671,1004230822,3),(1671,1017536422,2),(1671,1035680422,3),(1671,1048986022,2),(1671,1067130022,3),(1671,1080435622,2),(1671,1099184422,3),(1671,1111885222,2),(1671,1130634022,3),(1671,1143334823,2),(1671,1162083623,3),(1671,1174784423,2),(1671,1193533223,3),(1671,1206838823,2),(1671,1224982823,3),(1671,1238288424,2),(1671,1256432424,3),(1671,1269738024,2),(1671,1288486824,3),(1671,1301187624,2),(1671,1319936424,3),(1671,1332637224,2),(1671,1351386025,3),(1671,1364691625,2),(1671,1382835625,3),(1671,1396141225,2),(1671,1414285225,3),(1671,1427590825,2),(1671,1445734826,3),(1671,1459040426,2),(1671,1477789226,3),(1671,1490490027,2),(1671,1509238827,3),(1671,1521939627,2),(1671,1540688427,3),(1671,1553994027,2),(1671,1572138027,3),(1671,1585443627,2),(1671,1603587627,3),(1671,1616893227,2),(1671,1635642027,3),(1671,1648342827,2),(1671,1667091627,3),(1671,1679792427,2),(1671,1698541227,3),(1671,1711846827,2),(1671,1729990827,3),(1671,1743296427,2),(1671,1761440427,3),(1671,1774746027,2),(1671,1792890027,3),(1671,1806195627,2),(1671,1824944427,3),(1671,1837645227,2),(1671,1856394027,3),(1671,1869094827,2),(1671,1887843627,3),(1671,1901149227,2),(1671,1919293227,3),(1671,1932598827,2),(1671,1950742827,3),(1671,1964048427,2),(1671,1982797227,3),(1671,1995498027,2),(1671,2014246827,3),(1671,2026947627,2),(1671,2045696427,3),(1671,2058397227,2),(1671,2077146027,3),(1671,2090451627,2),(1671,2108595627,3),(1671,2121901227,2),(1671,2140045227,3),(1672,-1691964000,0),(1672,-1680472800,1),(1672,-1664143200,0),(1672,-1650146400,1),(1672,-1633903200,0),(1672,-1617487200,1),(1672,-1601848800,0),(1672,-1586037600,1),(1672,-1570399200,0),(1672,-1552168800,1),(1672,-1538344800,0),(1672,-1522533600,1),(1672,-1507500000,0),(1672,-1490565600,1),(1672,-1473631200,0),(1672,-1460930400,1),(1672,-1442786400,0),(1672,-1428876000,1),(1672,-1410732000,0),(1672,-1396216800,1),(1672,-1379282400,0),(1672,-1364767200,1),(1672,-1348437600,0),(1672,-1333317600,1),(1672,-1315778400,0),(1672,-1301263200,1),(1672,-1284328800,0),(1672,-1269813600,1),(1672,-1253484000,0),(1672,-1238364000,1),(1672,-1221429600,0),(1672,-1206914400,1),(1672,-1189980000,0),(1672,-1175464800,1),(1672,-1159135200,0),(1672,-1143410400,1),(1672,-1126476000,0),(1672,-1111960800,1),(1672,-1095631200,0),(1672,-1080511200,1),(1672,-1063576800,0),(1672,-1049061600,1),(1672,-1032127200,0),(1672,-1017612000,1),(1672,-1001282400,0),(1672,-986162400,1),(1672,-969228000,0),(1672,-950479200,1),(1672,-942012000,0),(1672,-904518000,2),(1672,-896050800,0),(1672,-875487600,2),(1672,-864601200,0),(1672,-844038000,2),(1672,-832546800,0),(1672,-812588400,2),(1672,-798073200,0),(1672,-781052400,2),(1672,-772066800,0),(1672,-764805600,1),(1672,-748476000,0),(1672,-733356000,1),(1672,-719445600,0),(1672,-717030000,2),(1672,-706748400,0),(1672,-699487200,1),(1672,-687996000,0),(1672,-668037600,1),(1672,-654732000,0),(1672,-636588000,1),(1672,-622072800,0),(1672,-605743200,1),(1672,-590623200,0),(1672,-574293600,1),(1672,-558568800,0),(1672,-542239200,1),(1672,-527119200,0),(1672,-512604000,1),(1672,-496274400,0),(1672,-481154400,1),(1672,-464220000,0),(1672,-449704800,1),(1672,-432165600,0),(1672,-417650400,1),(1672,-401320800,0),(1672,-386200800,1),(1672,-369266400,0),(1672,-354751200,1),(1672,-337816800,0),(1672,-323301600,1),(1672,-306972000,0),(1672,-291852000,1),(1672,-276732000,0),(1672,-257983200,1),(1672,-245282400,0),(1672,-226533600,1),(1672,-213228000,0),(1672,-195084000,1),(1672,-182383200,0),(1672,-163634400,1),(1672,-150933600,0),(1672,-132184800,1),(1672,-119484000,0),(1672,-100735200,1),(1672,-88034400,0),(1672,-68680800,1),(1672,-59004000,0),(1672,-37242000,3),(1672,57722400,5),(1672,69818400,0),(1672,89172001,1),(1672,101268002,0),(1672,120621602,1),(1672,132717603,0),(1672,152071203,1),(1672,164167204,0),(1672,183520804,1),(1672,196221605,0),(1672,214970405,1),(1672,227671206,0),(1672,246420006,1),(1672,259120807,0),(1672,278474407,1),(1672,290570408,0),(1672,309924008,1),(1672,322020009,0),(1672,341373609,1),(1672,354675609,4),(1672,372819610,5),(1672,386125210,4),(1672,404269211,5),(1672,417574811,4),(1672,435718812,5),(1672,449024412,4),(1672,467773212,5),(1672,481078812,4),(1672,499222813,5),(1672,512528413,4),(1672,530672413,5),(1672,543978013,4),(1672,562122013,5),(1672,575427614,4),(1672,593571614,5),(1672,606877214,4),(1672,625626014,5),(1672,638326815,4),(1672,657075615,5),(1672,670381216,4),(1672,688525216,5),(1672,701830816,4),(1672,719974817,5),(1672,733280417,4),(1672,751424418,5),(1672,764730018,4),(1672,782874019,5),(1672,796179619,4),(1672,814323619,5),(1672,820454420,6),(1672,828234020,4),(1672,846378020,5),(1672,859683620,4),(1672,877827621,5),(1672,891133221,4),(1672,909277221,5),(1672,922582822,4),(1672,941331622,5),(1672,954032422,4),(1672,972781222,5),(1672,985482022,4),(1672,1004230822,5),(1672,1017536422,4),(1672,1035680422,5),(1672,1048986022,4),(1672,1067130022,5),(1672,1080435622,4),(1672,1099184422,5),(1672,1111885222,4),(1672,1130634022,5),(1672,1143334823,4),(1672,1162083623,5),(1672,1174784423,4),(1672,1193533223,5),(1672,1206838823,4),(1672,1224982823,5),(1672,1238288424,4),(1672,1256432424,5),(1672,1269738024,4),(1672,1288486824,5),(1672,1301187624,4),(1672,1319936424,5),(1672,1332637224,4),(1672,1351386025,5),(1672,1364691625,4),(1672,1382835625,5),(1672,1396141225,4),(1672,1414285225,5),(1672,1427590825,4),(1672,1445734826,5),(1672,1459040426,4),(1672,1477789226,5),(1672,1490490027,4),(1672,1509238827,5),(1672,1521939627,4),(1672,1540688427,5),(1672,1553994027,4),(1672,1572138027,5),(1672,1585443627,4),(1672,1603587627,5),(1672,1616893227,4),(1672,1635642027,5),(1672,1648342827,4),(1672,1667091627,5),(1672,1679792427,4),(1672,1698541227,5),(1672,1711846827,4),(1672,1729990827,5),(1672,1743296427,4),(1672,1761440427,5),(1672,1774746027,4),(1672,1792890027,5),(1672,1806195627,4),(1672,1824944427,5),(1672,1837645227,4),(1672,1856394027,5),(1672,1869094827,4),(1672,1887843627,5),(1672,1901149227,4),(1672,1919293227,5),(1672,1932598827,4),(1672,1950742827,5),(1672,1964048427,4),(1672,1982797227,5),(1672,1995498027,4),(1672,2014246827,5),(1672,2026947627,4),(1672,2045696427,5),(1672,2058397227,4),(1672,2077146027,5),(1672,2090451627,4),(1672,2108595627,5),(1672,2121901227,4),(1672,2140045227,5),(1673,-1691964000,0),(1673,-1680472800,1),(1673,-1664143200,0),(1673,-1650146400,1),(1673,-1633903200,0),(1673,-1617487200,1),(1673,-1601848800,0),(1673,-1586037600,1),(1673,-1570399200,0),(1673,-1552168800,1),(1673,-1538344800,0),(1673,-1522533600,1),(1673,-1507500000,0),(1673,-1490565600,1),(1673,-1473631200,0),(1673,-1460930400,1),(1673,-1442786400,0),(1673,-1428876000,1),(1673,-1410732000,0),(1673,-1396216800,1),(1673,-1379282400,0),(1673,-1364767200,1),(1673,-1348437600,0),(1673,-1333317600,1),(1673,-1315778400,0),(1673,-1301263200,1),(1673,-1284328800,0),(1673,-1269813600,1),(1673,-1253484000,0),(1673,-1238364000,1),(1673,-1221429600,0),(1673,-1206914400,1),(1673,-1189980000,0),(1673,-1175464800,1),(1673,-1159135200,0),(1673,-1143410400,1),(1673,-1126476000,0),(1673,-1111960800,1),(1673,-1095631200,0),(1673,-1080511200,1),(1673,-1063576800,0),(1673,-1049061600,1),(1673,-1032127200,0),(1673,-1017612000,1),(1673,-1001282400,0),(1673,-986162400,1),(1673,-969228000,0),(1673,-950479200,1),(1673,-942012000,0),(1673,-904518000,2),(1673,-896050800,0),(1673,-875487600,2),(1673,-864601200,0),(1673,-844038000,2),(1673,-832546800,0),(1673,-812588400,2),(1673,-798073200,0),(1673,-781052400,2),(1673,-772066800,0),(1673,-764805600,1),(1673,-748476000,0),(1673,-733356000,1),(1673,-719445600,0),(1673,-717030000,2),(1673,-706748400,0),(1673,-699487200,1),(1673,-687996000,0),(1673,-668037600,1),(1673,-654732000,0),(1673,-636588000,1),(1673,-622072800,0),(1673,-605743200,1),(1673,-590623200,0),(1673,-574293600,1),(1673,-558568800,0),(1673,-542239200,1),(1673,-527119200,0),(1673,-512604000,1),(1673,-496274400,0),(1673,-481154400,1),(1673,-464220000,0),(1673,-449704800,1),(1673,-432165600,0),(1673,-417650400,1),(1673,-401320800,0),(1673,-386200800,1),(1673,-369266400,0),(1673,-354751200,1),(1673,-337816800,0),(1673,-323301600,1),(1673,-306972000,0),(1673,-291852000,1),(1673,-276732000,0),(1673,-257983200,1),(1673,-245282400,0),(1673,-226533600,1),(1673,-213228000,0),(1673,-195084000,1),(1673,-182383200,0),(1673,-163634400,1),(1673,-150933600,0),(1673,-132184800,1),(1673,-119484000,0),(1673,-100735200,1),(1673,-88034400,0),(1673,-68680800,1),(1673,-59004000,0),(1673,-37242000,3),(1673,57722400,5),(1673,69818400,0),(1673,89172001,1),(1673,101268002,0),(1673,120621602,1),(1673,132717603,0),(1673,152071203,1),(1673,164167204,0),(1673,183520804,1),(1673,196221605,0),(1673,214970405,1),(1673,227671206,0),(1673,246420006,1),(1673,259120807,0),(1673,278474407,1),(1673,290570408,0),(1673,309924008,1),(1673,322020009,0),(1673,341373609,1),(1673,354675609,4),(1673,372819610,5),(1673,386125210,4),(1673,404269211,5),(1673,417574811,4),(1673,435718812,5),(1673,449024412,4),(1673,467773212,5),(1673,481078812,4),(1673,499222813,5),(1673,512528413,4),(1673,530672413,5),(1673,543978013,4),(1673,562122013,5),(1673,575427614,4),(1673,593571614,5),(1673,606877214,4),(1673,625626014,5),(1673,638326815,4),(1673,657075615,5),(1673,670381216,4),(1673,688525216,5),(1673,701830816,4),(1673,719974817,5),(1673,733280417,4),(1673,751424418,5),(1673,764730018,4),(1673,782874019,5),(1673,796179619,4),(1673,814323619,5),(1673,820454420,6),(1673,828234020,4),(1673,846378020,5),(1673,859683620,4),(1673,877827621,5),(1673,891133221,4),(1673,909277221,5),(1673,922582822,4),(1673,941331622,5),(1673,954032422,4),(1673,972781222,5),(1673,985482022,4),(1673,1004230822,5),(1673,1017536422,4),(1673,1035680422,5),(1673,1048986022,4),(1673,1067130022,5),(1673,1080435622,4),(1673,1099184422,5),(1673,1111885222,4),(1673,1130634022,5),(1673,1143334823,4),(1673,1162083623,5),(1673,1174784423,4),(1673,1193533223,5),(1673,1206838823,4),(1673,1224982823,5),(1673,1238288424,4),(1673,1256432424,5),(1673,1269738024,4),(1673,1288486824,5),(1673,1301187624,4),(1673,1319936424,5),(1673,1332637224,4),(1673,1351386025,5),(1673,1364691625,4),(1673,1382835625,5),(1673,1396141225,4),(1673,1414285225,5),(1673,1427590825,4),(1673,1445734826,5),(1673,1459040426,4),(1673,1477789226,5),(1673,1490490027,4),(1673,1509238827,5),(1673,1521939627,4),(1673,1540688427,5),(1673,1553994027,4),(1673,1572138027,5),(1673,1585443627,4),(1673,1603587627,5),(1673,1616893227,4),(1673,1635642027,5),(1673,1648342827,4),(1673,1667091627,5),(1673,1679792427,4),(1673,1698541227,5),(1673,1711846827,4),(1673,1729990827,5),(1673,1743296427,4),(1673,1761440427,5),(1673,1774746027,4),(1673,1792890027,5),(1673,1806195627,4),(1673,1824944427,5),(1673,1837645227,4),(1673,1856394027,5),(1673,1869094827,4),(1673,1887843627,5),(1673,1901149227,4),(1673,1919293227,5),(1673,1932598827,4),(1673,1950742827,5),(1673,1964048427,4),(1673,1982797227,5),(1673,1995498027,4),(1673,2014246827,5),(1673,2026947627,4),(1673,2045696427,5),(1673,2058397227,4),(1673,2077146027,5),(1673,2090451627,4),(1673,2108595627,5),(1673,2121901227,4),(1673,2140045227,5),(1680,-2056693002,2),(1680,-907389000,1),(1680,-891667800,2),(1680,-884246400,3),(1680,-766746000,2),(1680,-747981000,1),(1680,-728544600,2),(1680,-717049800,1),(1680,-694503000,2),(1680,-683785800,1),(1680,-668064600,2),(1680,-654755400,1),(1680,-636615000,2),(1680,-623305800,1),(1680,-605165400,2),(1680,-591856200,1),(1680,-573715800,2),(1680,-559801800,1),(1680,-542352600,2),(1680,-528352200,1),(1680,-510211800,2),(1680,-498112200,1),(1680,-478762200,2),(1680,-466662600,1),(1680,-446707800,2),(1680,-435213000,1),(1680,-415258200,2),(1680,-403158600,1),(1680,-383808600,2),(1680,-371709000,1),(1680,-352359000,2),(1680,-340259400,1),(1680,-320909400,2),(1680,-308809800,1),(1680,-288855000,2),(1680,-277360200,1),(1680,-257405400,2),(1680,-245910600,1),(1680,-225955800,2),(1680,-213856200,1),(1680,-194506200,2),(1680,-182406600,1),(1680,-163056600,2),(1680,-148537800,1),(1680,-132816600,2),(1680,-117088200,1),(1680,-101367000,2),(1680,-85638600,1),(1680,-69312600,2),(1680,-53584200,1),(1680,-37863000,2),(1680,-22134600,1),(1680,-6413400,2),(1680,9315000,1),(1680,25036200,2),(1680,40764600,1),(1680,56485800,2),(1680,72214200,1),(1680,88540201,2),(1680,104268602,1),(1680,119989802,2),(1680,126041402,1),(1680,151439403,2),(1680,167167804,1),(1680,182889004,2),(1680,198617405,1),(1680,214338605,2),(1680,295385408,1),(1680,309292208,2),(1681,-1956609120,2),(1681,-1668211200,1),(1681,-1647212400,2),(1681,-1636675200,1),(1681,-1613430000,2),(1681,-1605139200,1),(1681,-1581894000,2),(1681,-1539561600,1),(1681,-1531350000,2),(1681,-968025600,1),(1681,-952293600,2),(1681,-942008400,1),(1681,-920239200,3),(1681,-909957600,4),(1681,-888789600,3),(1681,-877903200,4),(1681,-857944800,3),(1681,-846453600,4),(1681,-826495200,3),(1681,-815004000,4),(1681,-795045600,3),(1681,-783554400,4),(1681,-762991200,3),(1681,-752104800,4),(1681,-731541600,3),(1681,-717631200,4),(1681,-700092000,3),(1681,-686181600,4),(1681,-668642400,3),(1681,-654732000,4),(1681,-636588000,3),(1681,-623282400,4),(1681,-605743200,3),(1681,-591832800,4),(1681,-573688800,3),(1681,-559778400,4),(1681,-542239200,3),(1681,-528328800,4),(1681,-510789600,3),(1681,-496879200,4),(1681,-479340000,3),(1681,-465429600,4),(1681,-447890400,3),(1681,-433980000,4),(1681,-415836000,3),(1681,-401925600,4),(1681,-384386400,3),(1681,-370476000,4),(1681,-352936800,3),(1681,-339026400,4),(1681,-321487200,3),(1681,-307576800,4),(1681,-290037600,3),(1681,-276127200,4),(1681,-258588000,3),(1681,-244677600,4),(1681,-226533600,3),(1681,-212623200,4),(1681,-195084000,3),(1681,-181173600,4),(1681,-163634400,3),(1681,-149724000,4),(1681,-132184800,3),(1681,-118274400,4),(1681,-100735200,3),(1681,-86824800,4),(1681,-68680800,3),(1681,-54770400,5),(1682,-1309746436,1),(1682,-1262314800,2),(1682,-946780200,3),(1682,-315629100,1),(1683,-1988167780,1),(1683,820436419,2),(1686,-1309746436,1),(1686,-1262314800,2),(1686,-946780200,3),(1686,-315629100,1),(1687,-631152000,1),(1688,-2006653308,1),(1689,-315636840,1),(1690,-1988164200,2),(1690,403041611,1),(1690,417034811,2),(1690,1224972023,1),(1690,1238274024,2),(1691,-1309746436,1),(1691,-1262314800,2),(1691,-946780200,3),(1691,-315629100,1),(1692,-1848886912,1),(1693,-1704165944,1),(1693,-757394744,2),(1693,247177806,4),(1693,259272007,3),(1693,277758007,4),(1693,283982407,2),(1693,290809808,5),(1693,306531008,2),(1693,322432209,5),(1693,338499009,2),(1693,673216216,5),(1693,685481416,2),(1693,701209816,5),(1693,717103817,2),(1693,732745817,5),(1693,748639818,2),(1693,764281818,5),(1693,780175819,2),(1693,795817819,5),(1693,811711819,2),(1693,827353820,5),(1693,843247820,2),(1693,858976220,5),(1693,874870221,2),(1693,890512221,5),(1693,906406221,2),(1693,922048222,5),(1693,937942222,2),(1693,953584222,5),(1693,969478222,2),(1693,985206622,5),(1693,1001100622,2),(1693,1016742622,5),(1693,1032636622,2),(1693,1048278622,5),(1693,1064172622,2),(1693,1079814622,5),(1693,1095708622,2),(1693,1111437022,5),(1693,1127331022,2),(1693,1206045023,5),(1693,1221939023,2),(1693,1237667424,5),(1693,1253561424,2),(1693,1269203424,5),(1693,1285097424,2),(1693,1300739424,5),(1693,1316633424,2),(1693,1332275424,5),(1693,1348169425,2),(1693,1363897825,5),(1693,1379791825,2),(1693,1395433825,5),(1693,1411327825,2),(1693,1426969825,5),(1693,1442863826,2),(1693,1458505826,5),(1693,1474399826,2),(1693,1490128227,5),(1693,1506022227,2),(1693,1521664227,5),(1693,1537558227,2),(1693,1553200227,5),(1693,1569094227,2),(1693,1584736227,5),(1693,1600630227,2),(1693,1616358627,5),(1693,1632252627,2),(1693,1647894627,5),(1693,1663788627,2),(1693,1679430627,5),(1693,1695324627,2),(1693,1710966627,5),(1693,1726860627,2),(1693,1742589027,5),(1693,1758483027,2),(1693,1774125027,5),(1693,1790019027,2),(1693,1805661027,5),(1693,1821555027,2),(1693,1837197027,5),(1693,1853091027,2),(1693,1868733027,5),(1693,1884627027,2),(1693,1900355427,5),(1693,1916249427,2),(1693,1931891427,5),(1693,1947785427,2),(1693,1963427427,5),(1693,1979321427,2),(1693,1994963427,5),(1693,2010857427,2),(1693,2026585827,5),(1693,2042479827,2),(1693,2058121827,5),(1693,2074015827,2),(1693,2089657827,5),(1693,2105551827,2),(1693,2121193827,5),(1693,2137087827,2),(1694,-1641003640,2),(1694,-933645600,1),(1694,-857358000,2),(1694,-844300800,1),(1694,-825822000,2),(1694,-812685600,1),(1694,-794199600,2),(1694,-779853600,1),(1694,-762656400,2),(1694,-748310400,1),(1694,-731127600,2),(1694,-681962400,3),(1694,-673243200,1),(1694,-667962000,2),(1694,-652327200,1),(1694,-636426000,2),(1694,-622087200,1),(1694,-608947200,2),(1694,-591847200,1),(1694,-572486400,2),(1694,-558576000,1),(1694,-542851200,2),(1694,-527731200,1),(1694,-514425600,2),(1694,-490845600,1),(1694,-482986800,2),(1694,-459475200,1),(1694,-451537200,2),(1694,-428551200,1),(1694,-418262400,2),(1694,-400032000,1),(1694,-387428400,2),(1694,142380003,1),(1694,150843603,2),(1694,167176804,1),(1694,178664404,2),(1694,482277612,1),(1694,495579613,2),(1694,516751213,1),(1694,526424413,2),(1694,545436013,1),(1694,558478813,2),(1694,576626414,1),(1694,589323614,2),(1694,609890414,1),(1694,620773214,2),(1694,638316015,1),(1694,651618015,2),(1694,669765616,1),(1694,683672416,2),(1694,701820016,1),(1694,715726817,2),(1694,733701617,1),(1694,747176418,2),(1694,765151218,1),(1694,778021219,2),(1694,796600819,1),(1694,810075619,2),(1694,826840820,1),(1694,842821220,2),(1694,858895220,1),(1694,874184421,2),(1694,890344821,1),(1694,905029221,2),(1694,923011222,1),(1694,936313222,2),(1694,955670422,1),(1694,970783222,2),(1694,986770822,1),(1694,1001282422,2),(1694,1017356422,1),(1694,1033941622,2),(1694,1048806022,1),(1694,1065132022,2),(1694,1081292422,1),(1694,1095804022,2),(1694,1112313622,1),(1694,1128812422,2),(1694,1143763223,1),(1694,1159657223,2),(1694,1175212823,1),(1694,1189897223,2),(1694,1206662423,1),(1694,1223161223,2),(1694,1238112024,1),(1694,1254006024,2),(1694,1269561624,1),(1694,1284246024,2),(1694,1301616024,1),(1694,1317510024,2),(1694,1333065624,1),(1694,1348354825,2),(1694,1364515225,1),(1694,1382828425,2),(1694,1395964825,1),(1694,1414278025,2),(1694,1427414425,1),(1694,1445727626,2),(1694,1458864026,1),(1694,1477782026,2),(1694,1490313627,1),(1694,1509231627,2),(1694,1521763227,1),(1694,1540681227,2),(1694,1553817627,1),(1694,1572130827,2),(1694,1585267227,1),(1694,1603580427,2),(1694,1616716827,1),(1694,1635634827,2),(1694,1648166427,1),(1694,1667084427,2),(1694,1679616027,1),(1694,1698534027,2),(1694,1711670427,1),(1694,1729983627,2),(1694,1743120027,1),(1694,1761433227,2),(1694,1774569627,1),(1694,1792882827,2),(1694,1806019227,1),(1694,1824937227,2),(1694,1837468827,1),(1694,1856386827,2),(1694,1868918427,1),(1694,1887836427,2),(1694,1900972827,1),(1694,1919286027,2),(1694,1932422427,1),(1694,1950735627,2),(1694,1963872027,1),(1694,1982790027,2),(1694,1995321627,1),(1694,2014239627,2),(1694,2026771227,1),(1694,2045689227,2),(1694,2058220827,1),(1694,2077138827,2),(1694,2090275227,1),(1694,2108588427,2),(1694,2121724827,1),(1694,2140038027,2),(1695,-1827687170,1),(1695,126687603,2),(1695,152085603,1),(1695,162370804,2),(1695,183535204,1),(1695,199263605,2),(1695,215589605,1),(1695,230713206,2),(1695,247039206,1),(1695,262767607,2),(1695,278488807,1),(1695,294217208,2),(1695,309938408,1),(1695,325666809,2),(1695,341388009,1),(1695,357116409,2),(1695,372837610,1),(1695,388566010,2),(1695,404892011,1),(1695,420015611,2),(1695,436341612,1),(1696,-683802000,0),(1696,-672314400,1),(1696,-654771600,0),(1696,-640864800,1),(1696,-620298000,0),(1696,-609415200,1),(1696,-588848400,0),(1696,-577965600,1),(1697,-7988400,1),(1697,745848018,2),(1698,-1577926364,2),(1698,-574902000,1),(1698,-568087200,2),(1698,-512175600,1),(1698,-504928800,2),(1698,-449888400,1),(1698,-441856800,2),(1698,-347158800,3),(1698,378684010,2),(1698,386463610,1),(1698,402271211,2),(1698,417999611,1),(1698,433807212,2),(1698,449622012,1),(1698,465429612,2),(1698,481590012,1),(1698,496965613,2),(1698,512953213,1),(1698,528674413,2),(1698,544230013,1),(1698,560037613,2),(1698,575852414,1),(1698,591660014,2),(1698,607388414,1),(1698,623196014,2),(1698,641775615,3),(1698,844034420,2),(1698,860108420,1),(1698,875916021,3),(1698,1352505625,2),(1698,1364515225,1),(1698,1382659225,3),(1699,-1693706400,0),(1699,-1680483600,1),(1699,-1663455600,2),(1699,-1650150000,3),(1699,-1632006000,2),(1699,-1618700400,3),(1699,-938905200,2),(1699,-857257200,3),(1699,-844556400,2),(1699,-828226800,3),(1699,-812502000,2),(1699,-796777200,3),(1699,-781052400,2),(1699,-766623600,3),(1699,228877206,2),(1699,243997206,3),(1699,260326807,2),(1699,276051607,3),(1699,291776408,2),(1699,307501208,3),(1699,323830809,2),(1699,338950809,3),(1699,354675609,2),(1699,370400410,3),(1699,386125210,2),(1699,401850011,3),(1699,417574811,2),(1699,433299612,3),(1699,449024412,2),(1699,465354012,3),(1699,481078812,2),(1699,496803613,3),(1699,512528413,2),(1699,528253213,3),(1699,543978013,2),(1699,559702813,3),(1699,575427614,2),(1699,591152414,3),(1699,606877214,2),(1699,622602014,3),(1699,638326815,2),(1699,654656415,3),(1699,670381216,2),(1699,686106016,3),(1699,701830816,2),(1699,717555617,3),(1699,733280417,2),(1699,749005218,3),(1699,764730018,2),(1699,780454819,3),(1699,796179619,2),(1699,811904419,3),(1699,828234020,2),(1699,846378020,3),(1699,859683620,2),(1699,877827621,3),(1699,891133221,2),(1699,909277221,3),(1699,922582822,2),(1699,941331622,3),(1699,954032422,2),(1699,972781222,3),(1699,985482022,2),(1699,1004230822,3),(1699,1017536422,2),(1699,1035680422,3),(1699,1048986022,2),(1699,1067130022,3),(1699,1080435622,2),(1699,1099184422,3),(1699,1111885222,2),(1699,1130634022,3),(1699,1143334823,2),(1699,1162083623,3),(1699,1174784423,2),(1699,1193533223,3),(1699,1206838823,2),(1699,1224982823,3),(1699,1238288424,2),(1699,1256432424,3),(1699,1269738024,2),(1699,1288486824,3),(1699,1301187624,2),(1699,1319936424,3),(1699,1332637224,2),(1699,1351386025,3),(1699,1364691625,2),(1699,1382835625,3),(1699,1396141225,2),(1699,1414285225,3),(1699,1427590825,2),(1699,1445734826,3),(1699,1459040426,2),(1699,1477789226,3),(1699,1490490027,2),(1699,1509238827,3),(1699,1521939627,2),(1699,1540688427,3),(1699,1553994027,2),(1699,1572138027,3),(1699,1585443627,2),(1699,1603587627,3),(1699,1616893227,2),(1699,1635642027,3),(1699,1648342827,2),(1699,1667091627,3),(1699,1679792427,2),(1699,1698541227,3),(1699,1711846827,2),(1699,1729990827,3),(1699,1743296427,2),(1699,1761440427,3),(1699,1774746027,2),(1699,1792890027,3),(1699,1806195627,2),(1699,1824944427,3),(1699,1837645227,2),(1699,1856394027,3),(1699,1869094827,2),(1699,1887843627,3),(1699,1901149227,2),(1699,1919293227,3),(1699,1932598827,2),(1699,1950742827,3),(1699,1964048427,2),(1699,1982797227,3),(1699,1995498027,2),(1699,2014246827,3),(1699,2026947627,2),(1699,2045696427,3),(1699,2058397227,2),(1699,2077146027,3),(1699,2090451627,2),(1699,2108595627,3),(1699,2121901227,2),(1699,2140045227,3),(1701,-1633273200,0),(1701,-1615132800,1),(1701,-1601823600,0),(1701,-1583683200,1),(1701,-880210800,2),(1701,-769395600,3),(1701,-765388800,1),(1701,-84380400,0),(1701,-68659200,1),(1701,-52930800,0),(1701,-37209600,1),(1701,-21481200,0),(1701,-5760000,1),(1701,9968400,0),(1701,25689600,1),(1701,41418000,0),(1701,57744000,1),(1701,73472400,0),(1701,89193601,1),(1701,104922002,0),(1701,120643202,1),(1701,126694803,0),(1701,152092803,1),(1701,162378004,0),(1701,183542404,1),(1701,199270805,0),(1701,215596805,1),(1701,230720406,0),(1701,247046406,1),(1701,262774807,0),(1701,278496007,1),(1701,294224408,0),(1701,309945608,1),(1701,325674009,0),(1701,341395209,1),(1701,357123609,0),(1701,372844810,1),(1701,388573210,0),(1701,404899211,1),(1701,420022811,0),(1701,436348812,1),(1701,452077212,0),(1701,467798412,1),(1701,483526812,0),(1701,499248013,1),(1701,514976413,0),(1701,530697613,1),(1701,544611613,0),(1701,562147213,1),(1701,576061214,0),(1701,594201614,1),(1701,607510814,0),(1701,625651214,1),(1701,638960415,0),(1701,657100815,1),(1701,671014816,0),(1701,688550416,1),(1701,702464416,0),(1701,720000017,1),(1701,733914017,0),(1701,752054418,1),(1701,765363618,0),(1701,783504019,1),(1701,796813219,0),(1701,814953619,1),(1701,828867620,0),(1701,846403220,1),(1701,860317220,0),(1701,877852821,1),(1701,891766821,0),(1701,909302421,1),(1701,923216422,0),(1701,941356822,1),(1701,954666022,0),(1701,972806422,1),(1701,986115622,0),(1701,1004256022,1),(1701,1018170022,0),(1701,1035705622,1),(1701,1049619622,0),(1701,1067155222,1),(1701,1081069222,0),(1701,1099209622,1),(1701,1112518822,0),(1701,1130659222,1),(1701,1143968423,0),(1701,1162108823,1),(1701,1173603623,0),(1701,1194163223,1),(1701,1205053223,0),(1701,1225612823,1),(1701,1236502824,0),(1701,1257062424,1),(1701,1268557224,0),(1701,1289116824,1),(1701,1300006824,0),(1701,1320566424,1),(1701,1331456424,0),(1701,1352016025,1),(1701,1362906025,0),(1701,1383465625,1),(1701,1394355625,0),(1701,1414915225,1),(1701,1425805225,0),(1701,1446364826,1),(1701,1457859626,0),(1701,1478419226,1),(1701,1489309227,0),(1701,1509868827,1),(1701,1520758827,0),(1701,1541318427,1),(1701,1552208427,0),(1701,1572768027,1),(1701,1583658027,0),(1701,1604217627,1),(1701,1615712427,0),(1701,1636272027,1),(1701,1647162027,0),(1701,1667721627,1),(1701,1678611627,0),(1701,1699171227,1),(1701,1710061227,0),(1701,1730620827,1),(1701,1741510827,0),(1701,1762070427,1),(1701,1772960427,0),(1701,1793520027,1),(1701,1805014827,0),(1701,1825574427,1),(1701,1836464427,0),(1701,1857024027,1),(1701,1867914027,0),(1701,1888473627,1),(1701,1899363627,0),(1701,1919923227,1),(1701,1930813227,0),(1701,1951372827,1),(1701,1962867627,0),(1701,1983427227,1),(1701,1994317227,0),(1701,2014876827,1),(1701,2025766827,0),(1701,2046326427,1),(1701,2057216427,0),(1701,2077776027,1),(1701,2088666027,0),(1701,2109225627,1),(1701,2120115627,0),(1701,2140675227,1),(1702,-1514736000,1),(1702,-1451667600,2),(1702,-1343062800,1),(1702,-1234803600,2),(1702,-1222963200,3),(1702,-1207242000,2),(1702,-873820800,4),(1702,-769395600,5),(1702,-761677200,2),(1702,-686073600,3),(1702,-661539600,2),(1702,-495039600,3),(1702,-481734000,2),(1702,-463590000,3),(1702,-450284400,2),(1702,-431535600,3),(1702,-418230000,2),(1702,-400086000,3),(1702,-386780400,2),(1702,-368636400,3),(1702,-355330800,2),(1702,-337186800,3),(1702,-323881200,2),(1702,-305737200,3),(1702,-292431600,2),(1702,199274405,3),(1702,215600405,2),(1702,230724006,3),(1702,247050006,2),(1702,262778407,3),(1702,278499607,2),(1702,294228008,3),(1702,309949208,2),(1702,325677609,3),(1702,341398809,2),(1702,357127209,3),(1702,372848410,2),(1702,388576810,3),(1702,404902811,2),(1702,420026411,3),(1702,436352412,2),(1702,452080812,3),(1702,467802012,2),(1702,483530412,3),(1702,499251613,2),(1702,514980013,3),(1702,530701213,2),(1702,544615213,3),(1702,562150813,2),(1702,576064814,3),(1702,594205214,2),(1702,607514414,3),(1702,625654814,2),(1702,638964015,3),(1702,657104415,2),(1702,671018416,3),(1702,688554016,2),(1702,702468016,3),(1702,720003617,2),(1702,733917617,3),(1702,752058018,2),(1702,765367218,3),(1702,783507619,2),(1702,796816819,3),(1702,814957219,2),(1702,828871220,3),(1702,846406820,2),(1702,860320820,3),(1702,877856421,2),(1702,891770421,3),(1702,909306021,2),(1702,923220022,3),(1702,941360422,2),(1702,954669622,3),(1702,972810022,2),(1702,986119222,3),(1702,1004259622,2),(1702,1018173622,3),(1702,1035709222,2),(1702,1049623222,3),(1702,1067158822,2),(1702,1081072822,3),(1702,1099213222,2),(1702,1112522422,3),(1702,1130662822,2),(1702,1143972023,3),(1702,1162112423,2),(1702,1175421623,3),(1702,1193562023,2),(1702,1207476023,3),(1702,1225011623,2),(1702,1238925624,3),(1702,1256461224,2),(1702,1268560824,3),(1702,1289120424,2),(1702,1300010424,3),(1702,1320570024,2),(1702,1331460024,3),(1702,1352019625,2),(1702,1362909625,3),(1702,1383469225,2),(1702,1394359225,3),(1702,1414918825,2),(1702,1425808825,3),(1702,1446368426,2),(1702,1457863226,3),(1702,1478422826,2),(1702,1489312827,3),(1702,1509872427,2),(1702,1520762427,3),(1702,1541322027,2),(1702,1552212027,3),(1702,1572771627,2),(1702,1583661627,3),(1702,1604221227,2),(1702,1615716027,3),(1702,1636275627,2),(1702,1647165627,3),(1702,1667725227,2),(1702,1678615227,3),(1702,1699174827,2),(1702,1710064827,3),(1702,1730624427,2),(1702,1741514427,3),(1702,1762074027,2),(1702,1772964027,3),(1702,1793523627,2),(1702,1805018427,3),(1702,1825578027,2),(1702,1836468027,3),(1702,1857027627,2),(1702,1867917627,3),(1702,1888477227,2),(1702,1899367227,3),(1702,1919926827,2),(1702,1930816827,3),(1702,1951376427,2),(1702,1962871227,3),(1702,1983430827,2),(1702,1994320827,3),(1702,2014880427,2),(1702,2025770427,3),(1702,2046330027,2),(1702,2057220027,3),(1702,2077779627,2),(1702,2088669627,3),(1702,2109229227,2),(1702,2120119227,3),(1702,2140678827,2),(1703,-1514739600,1),(1703,-1343066400,2),(1703,-1234807200,1),(1703,-1220292000,2),(1703,-1207159200,1),(1703,-1191344400,2),(1703,-873828000,1),(1703,-661539600,3),(1703,28800,1),(1703,828867620,4),(1703,846403220,1),(1703,860317220,4),(1703,877852821,1),(1703,891766821,4),(1703,909302421,1),(1703,923216422,4),(1703,941356822,1),(1703,954666022,4),(1703,972806422,1),(1703,989139622,4),(1703,1001836822,1),(1703,1018170022,4),(1703,1035705622,1),(1703,1049619622,4),(1703,1067155222,1),(1703,1081069222,4),(1703,1099209622,1),(1703,1112518822,4),(1703,1130659222,1),(1703,1143968423,4),(1703,1162108823,1),(1703,1175418023,4),(1703,1193558423,1),(1703,1207472423,4),(1703,1225008023,1),(1703,1238922024,4),(1703,1256457624,1),(1703,1270371624,4),(1703,1288512024,1),(1703,1301821224,4),(1703,1319961624,1),(1703,1333270824,4),(1703,1351411225,1),(1703,1365325225,4),(1703,1382860825,1),(1703,1396774825,4),(1703,1414310425,1),(1703,1428224425,4),(1703,1445760026,1),(1703,1459674026,4),(1703,1477814426,1),(1703,1491123627,4),(1703,1509264027,1),(1703,1522573227,4),(1703,1540713627,1),(1703,1554627627,4),(1703,1572163227,1),(1703,1586077227,4),(1703,1603612827,1),(1703,1617526827,4),(1703,1635667227,1),(1703,1648976427,4),(1703,1667116827,1),(1703,1680426027,4),(1703,1698566427,1),(1703,1712480427,4),(1703,1730016027,1),(1703,1743930027,4),(1703,1761465627,1),(1703,1775379627,4),(1703,1792915227,1),(1703,1806829227,4),(1703,1824969627,1),(1703,1838278827,4),(1703,1856419227,1),(1703,1869728427,4),(1703,1887868827,1),(1703,1901782827,4),(1703,1919318427,1),(1703,1933232427,4),(1703,1950768027,1),(1703,1964682027,4),(1703,1982822427,1),(1703,1996131627,4),(1703,2014272027,1),(1703,2027581227,4),(1703,2045721627,1),(1703,2059030827,4),(1703,2077171227,1),(1703,2091085227,4),(1703,2108620827,1),(1703,2122534827,4),(1703,2140070427,1),(1704,-1514739600,1),(1704,-1343066400,2),(1704,-1234807200,1),(1704,-1220292000,2),(1704,-1207159200,1),(1704,-1191344400,2),(1704,-975261600,3),(1704,-963169200,2),(1704,-917114400,3),(1704,-907354800,2),(1704,-821901600,4),(1704,-810068400,2),(1704,-627501600,3),(1704,-612990000,2),(1704,828864020,3),(1704,846399620,2),(1704,860313620,3),(1704,877849221,2),(1704,891763221,3),(1704,909298821,2),(1704,923212822,3),(1704,941353222,2),(1704,954662422,3),(1704,972802822,2),(1704,989136022,3),(1704,1001833222,2),(1704,1018166422,3),(1704,1035702022,2),(1704,1049616022,3),(1704,1067151622,2),(1704,1081065622,3),(1704,1099206022,2),(1704,1112515222,3),(1704,1130655622,2),(1704,1143964823,3),(1704,1162105223,2),(1704,1175414423,3),(1704,1193554823,2),(1704,1207468823,3),(1704,1225004423,2),(1704,1238918424,3),(1704,1256454024,2),(1704,1270368024,3),(1704,1288508424,2),(1704,1301817624,3),(1704,1319958024,2),(1704,1333267224,3),(1704,1351407625,2),(1704,1365321625,3),(1704,1382857225,2),(1704,1396771225,3),(1704,1414306825,2),(1704,1428220825,3),(1704,1445756426,2),(1704,1459670426,3),(1704,1477810826,2),(1704,1491120027,3),(1704,1509260427,2),(1704,1522569627,3),(1704,1540710027,2),(1704,1554624027,3),(1704,1572159627,2),(1704,1586073627,3),(1704,1603609227,2),(1704,1617523227,3),(1704,1635663627,2),(1704,1648972827,3),(1704,1667113227,2),(1704,1680422427,3),(1704,1698562827,2),(1704,1712476827,3),(1704,1730012427,2),(1704,1743926427,3),(1704,1761462027,2),(1704,1775376027,3),(1704,1792911627,2),(1704,1806825627,3),(1704,1824966027,2),(1704,1838275227,3),(1704,1856415627,2),(1704,1869724827,3),(1704,1887865227,2),(1704,1901779227,3),(1704,1919314827,2),(1704,1933228827,3),(1704,1950764427,2),(1704,1964678427,3),(1704,1982818827,2),(1704,1996128027,3),(1704,2014268427,2),(1704,2027577627,3),(1704,2045718027,2),(1704,2059027227,3),(1704,2077167627,2),(1704,2091081627,3),(1704,2108617227,2),(1704,2122531227,3),(1704,2140066827,2),(1705,-1330335000,0),(1705,-1320057000,1),(1705,-1300699800,2),(1705,-1287396000,1),(1705,-1269250200,2),(1705,-1255946400,1),(1705,-1237800600,2),(1705,-1224496800,1),(1705,-1206351000,2),(1705,-1192442400,1),(1705,-1174901400,2),(1705,-1160992800,1),(1705,-1143451800,2),(1705,-1125914400,1),(1705,-1112607000,2),(1705,-1094464800,1),(1705,-1081157400,2),(1705,-1063015200,1),(1705,-1049707800,2),(1705,-1031565600,1),(1705,-1018258200,2),(1705,-1000116000,1),(1705,-986808600,2),(1705,-968061600,1),(1705,-955359000,2),(1705,-936612000,1),(1705,-923304600,2),(1705,-757425600,5),(1705,152632803,3),(1705,162309604,4),(1705,183477604,3),(1705,194968805,4),(1705,215532005,3),(1705,226418406,4),(1705,246981606,3),(1705,257868007,4),(1705,278431207,3),(1705,289317608,4),(1705,309880808,3),(1705,320767209,4),(1705,341330409,3),(1705,352216809,4),(1705,372780010,3),(1705,384271210,4),(1705,404834411,3),(1705,415720811,4),(1705,436284012,3),(1705,447170412,4),(1705,467733612,3),(1705,478620012,4),(1705,499183213,3),(1705,510069613,4),(1705,530632813,3),(1705,541519213,4),(1705,562082413,3),(1705,573573614,4),(1705,594136814,3),(1705,605023214,4),(1705,623772014,3),(1705,637682415,4),(1705,655221615,3),(1705,669132016,4),(1705,686671216,3),(1705,700581616,4),(1705,718120817,3),(1705,732636017,4),(1705,749570418,3),(1705,764085618,4),(1705,781020019,3),(1705,795535219,4),(1705,812469619,3),(1705,826984820,4),(1705,844524020,3),(1705,858434420,4),(1705,875973621,3),(1705,889884021,4),(1705,907423221,3),(1705,921938422,4),(1705,938872822,3),(1705,953388022,4),(1705,970322422,3),(1705,984837622,4),(1705,1002376822,3),(1705,1016287222,4),(1705,1033826422,3),(1705,1047736822,4),(1705,1065276022,3),(1705,1079791222,4),(1705,1096725622,3),(1705,1111240822,4),(1705,1128175222,3),(1705,1142690423,4),(1705,1159624823,3),(1705,1174140023,4),(1705,1191074423,3),(1705,1207404023,4),(1705,1222524023,3),(1705,1238853624,4),(1705,1253973624,3),(1705,1270303224,4),(1705,1285423224,3),(1705,1301752824,4),(1705,1316872824,3),(1705,1333202424,4),(1705,1348927225,3),(1705,1365256825,4),(1705,1380376825,3),(1705,1396706425,4),(1705,1411826425,3),(1705,1428156025,4),(1705,1443276026,3),(1705,1459605626,4),(1705,1474725626,3),(1705,1491055227,4),(1705,1506175227,3),(1705,1522504827,4),(1705,1538229627,3),(1705,1554559227,4),(1705,1569679227,3),(1705,1586008827,4),(1705,1601128827,3),(1705,1617458427,4),(1705,1632578427,3),(1705,1648908027,4),(1705,1664028027,3),(1705,1680357627,4),(1705,1695477627,3),(1705,1712412027,4),(1705,1727532027,3),(1705,1743861627,4),(1705,1758981627,3),(1705,1775311227,4),(1705,1790431227,3),(1705,1806760827,4),(1705,1821880827,3),(1705,1838210427,4),(1705,1853330427,3),(1705,1869660027,4),(1705,1885384827,3),(1705,1901714427,4),(1705,1916834427,3),(1705,1933164027,4),(1705,1948284027,3),(1705,1964613627,4),(1705,1979733627,3),(1705,1996063227,4),(1705,2011183227,3),(1705,2027512827,4),(1705,2042632827,3),(1705,2058962427,4),(1705,2074687227,3),(1705,2091016827,4),(1705,2106136827,3),(1705,2122466427,4),(1705,2137586427,3),(1706,-757426500,3),(1706,152632803,1),(1706,162309604,2),(1706,183477604,1),(1706,194968805,2),(1706,215532005,1),(1706,226418406,2),(1706,246981606,1),(1706,257868007,2),(1706,278431207,1),(1706,289317608,2),(1706,309880808,1),(1706,320767209,2),(1706,341330409,1),(1706,352216809,2),(1706,372780010,1),(1706,384271210,2),(1706,404834411,1),(1706,415720811,2),(1706,436284012,1),(1706,447170412,2),(1706,467733612,1),(1706,478620012,2),(1706,499183213,1),(1706,510069613,2),(1706,530632813,1),(1706,541519213,2),(1706,562082413,1),(1706,573573614,2),(1706,594136814,1),(1706,605023214,2),(1706,623772014,1),(1706,637682415,2),(1706,655221615,1),(1706,669132016,2),(1706,686671216,1),(1706,700581616,2),(1706,718120817,1),(1706,732636017,2),(1706,749570418,1),(1706,764085618,2),(1706,781020019,1),(1706,795535219,2),(1706,812469619,1),(1706,826984820,2),(1706,844524020,1),(1706,858434420,2),(1706,875973621,1),(1706,889884021,2),(1706,907423221,1),(1706,921938422,2),(1706,938872822,1),(1706,953388022,2),(1706,970322422,1),(1706,984837622,2),(1706,1002376822,1),(1706,1016287222,2),(1706,1033826422,1),(1706,1047736822,2),(1706,1065276022,1),(1706,1079791222,2),(1706,1096725622,1),(1706,1111240822,2),(1706,1128175222,1),(1706,1142690423,2),(1706,1159624823,1),(1706,1174140023,2),(1706,1191074423,1),(1706,1207404023,2),(1706,1222524023,1),(1706,1238853624,2),(1706,1253973624,1),(1706,1270303224,2),(1706,1285423224,1),(1706,1301752824,2),(1706,1316872824,1),(1706,1333202424,2),(1706,1348927225,1),(1706,1365256825,2),(1706,1380376825,1),(1706,1396706425,2),(1706,1411826425,1),(1706,1428156025,2),(1706,1443276026,1),(1706,1459605626,2),(1706,1474725626,1),(1706,1491055227,2),(1706,1506175227,1),(1706,1522504827,2),(1706,1538229627,1),(1706,1554559227,2),(1706,1569679227,1),(1706,1586008827,2),(1706,1601128827,1),(1706,1617458427,2),(1706,1632578427,1),(1706,1648908027,2),(1706,1664028027,1),(1706,1680357627,2),(1706,1695477627,1),(1706,1712412027,2),(1706,1727532027,1),(1706,1743861627,2),(1706,1758981627,1),(1706,1775311227,2),(1706,1790431227,1),(1706,1806760827,2),(1706,1821880827,1),(1706,1838210427,2),(1706,1853330427,1),(1706,1869660027,2),(1706,1885384827,1),(1706,1901714427,2),(1706,1916834427,1),(1706,1933164027,2),(1706,1948284027,1),(1706,1964613627,2),(1706,1979733627,1),(1706,1996063227,2),(1706,2011183227,1),(1706,2027512827,2),(1706,2042632827,1),(1706,2058962427,2),(1706,2074687227,1),(1706,2091016827,2),(1706,2106136827,1),(1706,2122466427,2),(1706,2137586427,1),(1707,-1633273200,0),(1707,-1615132800,1),(1707,-1601823600,0),(1707,-1583683200,1),(1707,-1570374000,0),(1707,-1551628800,1),(1707,-1538924400,0),(1707,-1534089600,1),(1707,-880210800,2),(1707,-769395600,3),(1707,-765388800,1),(1707,-147884400,0),(1707,-131558400,1),(1707,-116434800,0),(1707,-100108800,1),(1707,-84380400,0),(1707,-68659200,1),(1707,-52930800,0),(1707,-37209600,1),(1707,-21481200,0),(1707,-5760000,1),(1707,9968400,0),(1707,25689600,1),(1707,41418000,0),(1707,57744000,1),(1707,73472400,0),(1707,89193601,1),(1707,104922002,0),(1707,120643202,1),(1707,126694803,0),(1707,152092803,1),(1707,162378004,0),(1707,183542404,1),(1707,199270805,0),(1707,215596805,1),(1707,230720406,0),(1707,247046406,1),(1707,262774807,0),(1707,278496007,1),(1707,294224408,0),(1707,309945608,1),(1707,325674009,0),(1707,341395209,1),(1707,357123609,0),(1707,372844810,1),(1707,388573210,0),(1707,404899211,1),(1707,420022811,0),(1707,436348812,1),(1707,452077212,0),(1707,467798412,1),(1707,483526812,0),(1707,499248013,1),(1707,514976413,0),(1707,530697613,1),(1707,544611613,0),(1707,562147213,1),(1707,576061214,0),(1707,594201614,1),(1707,607510814,0),(1707,625651214,1),(1707,638960415,0),(1707,657100815,1),(1707,671014816,0),(1707,688550416,1),(1707,702464416,0),(1707,720000017,1),(1707,733914017,0),(1707,752054418,1),(1707,765363618,0),(1707,783504019,1),(1707,796813219,0),(1707,814953619,1),(1707,828867620,0),(1707,846403220,1),(1707,860317220,0),(1707,877852821,1),(1707,891766821,0),(1707,909302421,1),(1707,923216422,0),(1707,941356822,1),(1707,954666022,0),(1707,972806422,1),(1707,986115622,0),(1707,1004256022,1),(1707,1018170022,0),(1707,1035705622,1),(1707,1049619622,0),(1707,1067155222,1),(1707,1081069222,0),(1707,1099209622,1),(1707,1112518822,0),(1707,1130659222,1),(1707,1143968423,0),(1707,1162108823,1),(1707,1173603623,0),(1707,1194163223,1),(1707,1205053223,0),(1707,1225612823,1),(1707,1236502824,0),(1707,1257062424,1),(1707,1268557224,0),(1707,1289116824,1),(1707,1300006824,0),(1707,1320566424,1),(1707,1331456424,0),(1707,1352016025,1),(1707,1362906025,0),(1707,1383465625,1),(1707,1394355625,0),(1707,1414915225,1),(1707,1425805225,0),(1707,1446364826,1),(1707,1457859626,0),(1707,1478419226,1),(1707,1489309227,0),(1707,1509868827,1),(1707,1520758827,0),(1707,1541318427,1),(1707,1552208427,0),(1707,1572768027,1),(1707,1583658027,0),(1707,1604217627,1),(1707,1615712427,0),(1707,1636272027,1),(1707,1647162027,0),(1707,1667721627,1),(1707,1678611627,0),(1707,1699171227,1),(1707,1710061227,0),(1707,1730620827,1),(1707,1741510827,0),(1707,1762070427,1),(1707,1772960427,0),(1707,1793520027,1),(1707,1805014827,0),(1707,1825574427,1),(1707,1836464427,0),(1707,1857024027,1),(1707,1867914027,0),(1707,1888473627,1),(1707,1899363627,0),(1707,1919923227,1),(1707,1930813227,0),(1707,1951372827,1),(1707,1962867627,0),(1707,1983427227,1),(1707,1994317227,0),(1707,2014876827,1),(1707,2025766827,0),(1707,2046326427,1),(1707,2057216427,0),(1707,2077776027,1),(1707,2088666027,0),(1707,2109225627,1),(1707,2120115627,0),(1707,2140675227,1),(1708,-933494400,0),(1708,-923130000,1),(1708,-908784000,0),(1708,-891594000,1),(1708,515520013,0),(1708,527007613,1),(1708,545155213,0),(1708,558457213,1),(1708,576604814,0),(1708,589906814,1),(1708,608659214,0),(1708,621961214,1),(1708,640108815,0),(1708,653410815,1),(1708,671558416,0),(1708,684860416,1),(1709,-1633269600,0),(1709,-1615129200,1),(1709,-1601820000,0),(1709,-1583679600,1),(1709,-880207200,2),(1709,-769395600,3),(1709,-765385200,1),(1709,-84376800,0),(1709,-68655600,1),(1709,-52927200,0),(1709,-37206000,1),(1709,-21477600,0),(1709,-5756400,1),(1709,9972000,0),(1709,25693200,1),(1709,41421600,0),(1709,57747600,1),(1709,73476000,0),(1709,89197201,1),(1709,104925602,0),(1709,120646802,1),(1709,126698403,0),(1709,152096403,1),(1709,162381604,0),(1709,183546004,1),(1709,199274405,0),(1709,215600405,1),(1709,230724006,0),(1709,247050006,1),(1709,262778407,0),(1709,278499607,1),(1709,294228008,0),(1709,309949208,1),(1709,325677609,0),(1709,341398809,1),(1709,357127209,0),(1709,372848410,1),(1709,388576810,0),(1709,404902811,1),(1709,420026411,0),(1709,436352412,1),(1709,452080812,0),(1709,467802012,1),(1709,483530412,0),(1709,499251613,1),(1709,514980013,0),(1709,530701213,1),(1709,544615213,0),(1709,562150813,1),(1709,576064814,0),(1709,594205214,1),(1709,607514414,0),(1709,625654814,1),(1709,638964015,0),(1709,657104415,1),(1709,671018416,0),(1709,688554016,1),(1709,702468016,0),(1709,720003617,1),(1709,733917617,0),(1709,752058018,1),(1709,765367218,0),(1709,783507619,1),(1709,796816819,0),(1709,814957219,1),(1709,828871220,0),(1709,846406820,1),(1709,860320820,0),(1709,877856421,1),(1709,891770421,0),(1709,909306021,1),(1709,923220022,0),(1709,941360422,1),(1709,954669622,0),(1709,972810022,1),(1709,986119222,0),(1709,1004259622,1),(1709,1018173622,0),(1709,1035709222,1),(1709,1049623222,0),(1709,1067158822,1),(1709,1081072822,0),(1709,1099213222,1),(1709,1112522422,0),(1709,1130662822,1),(1709,1143972023,0),(1709,1162112423,1),(1709,1173607223,0),(1709,1194166823,1),(1709,1205056823,0),(1709,1225616423,1),(1709,1236506424,0),(1709,1257066024,1),(1709,1268560824,0),(1709,1289120424,1),(1709,1300010424,0),(1709,1320570024,1),(1709,1331460024,0),(1709,1352019625,1),(1709,1362909625,0),(1709,1383469225,1),(1709,1394359225,0),(1709,1414918825,1),(1709,1425808825,0),(1709,1446368426,1),(1709,1457863226,0),(1709,1478422826,1),(1709,1489312827,0),(1709,1509872427,1),(1709,1520762427,0),(1709,1541322027,1),(1709,1552212027,0),(1709,1572771627,1),(1709,1583661627,0),(1709,1604221227,1),(1709,1615716027,0),(1709,1636275627,1),(1709,1647165627,0),(1709,1667725227,1),(1709,1678615227,0),(1709,1699174827,1),(1709,1710064827,0),(1709,1730624427,1),(1709,1741514427,0),(1709,1762074027,1),(1709,1772964027,0),(1709,1793523627,1),(1709,1805018427,0),(1709,1825578027,1),(1709,1836468027,0),(1709,1857027627,1),(1709,1867917627,0),(1709,1888477227,1),(1709,1899367227,0),(1709,1919926827,1),(1709,1930816827,0),(1709,1951376427,1),(1709,1962871227,0),(1709,1983430827,1),(1709,1994320827,0),(1709,2014880427,1),(1709,2025770427,0),(1709,2046330027,1),(1709,2057220027,0),(1709,2077779627,1),(1709,2088669627,0),(1709,2109229227,1),(1709,2120119227,0),(1709,2140678827,1),(1710,-1861878784,1),(1710,-631110600,3),(1710,1285498824,2),(1710,1301752824,3),(1710,1316872824,2),(1710,1325239224,5),(1710,1333202424,4),(1710,1348927225,5),(1710,1365256825,4),(1710,1380376825,5),(1710,1396706425,4),(1710,1411826425,5),(1710,1428156025,4),(1710,1443276026,5),(1710,1459605626,4),(1710,1474725626,5),(1710,1491055227,4),(1710,1506175227,5),(1710,1522504827,4),(1710,1538229627,5),(1710,1554559227,4),(1710,1569679227,5),(1710,1586008827,4),(1710,1601128827,5),(1710,1617458427,4),(1710,1632578427,5),(1710,1648908027,4),(1710,1664028027,5),(1710,1680357627,4),(1710,1695477627,5),(1710,1712412027,4),(1710,1727532027,5),(1710,1743861627,4),(1710,1758981627,5),(1710,1775311227,4),(1710,1790431227,5),(1710,1806760827,4),(1710,1821880827,5),(1710,1838210427,4),(1710,1853330427,5),(1710,1869660027,4),(1710,1885384827,5),(1710,1901714427,4),(1710,1916834427,5),(1710,1933164027,4),(1710,1948284027,5),(1710,1964613627,4),(1710,1979733627,5),(1710,1996063227,4),(1710,2011183227,5),(1710,2027512827,4),(1710,2042632827,5),(1710,2058962427,4),(1710,2074687227,5),(1710,2091016827,4),(1710,2106136827,5),(1710,2122466427,4),(1710,2137586427,5),(1711,-1330335000,0),(1711,-1320057000,1),(1711,-1300699800,2),(1711,-1287396000,1),(1711,-1269250200,2),(1711,-1255946400,1),(1711,-1237800600,2),(1711,-1224496800,1),(1711,-1206351000,2),(1711,-1192442400,1),(1711,-1174901400,2),(1711,-1160992800,1),(1711,-1143451800,2),(1711,-1125914400,1),(1711,-1112607000,2),(1711,-1094464800,1),(1711,-1081157400,2),(1711,-1063015200,1),(1711,-1049707800,2),(1711,-1031565600,1),(1711,-1018258200,2),(1711,-1000116000,1),(1711,-986808600,2),(1711,-968061600,1),(1711,-955359000,2),(1711,-936612000,1),(1711,-923304600,2),(1711,-757425600,5),(1711,152632803,3),(1711,162309604,4),(1711,183477604,3),(1711,194968805,4),(1711,215532005,3),(1711,226418406,4),(1711,246981606,3),(1711,257868007,4),(1711,278431207,3),(1711,289317608,4),(1711,309880808,3),(1711,320767209,4),(1711,341330409,3),(1711,352216809,4),(1711,372780010,3),(1711,384271210,4),(1711,404834411,3),(1711,415720811,4),(1711,436284012,3),(1711,447170412,4),(1711,467733612,3),(1711,478620012,4),(1711,499183213,3),(1711,510069613,4),(1711,530632813,3),(1711,541519213,4),(1711,562082413,3),(1711,573573614,4),(1711,594136814,3),(1711,605023214,4),(1711,623772014,3),(1711,637682415,4),(1711,655221615,3),(1711,669132016,4),(1711,686671216,3),(1711,700581616,4),(1711,718120817,3),(1711,732636017,4),(1711,749570418,3),(1711,764085618,4),(1711,781020019,3),(1711,795535219,4),(1711,812469619,3),(1711,826984820,4),(1711,844524020,3),(1711,858434420,4),(1711,875973621,3),(1711,889884021,4),(1711,907423221,3),(1711,921938422,4),(1711,938872822,3),(1711,953388022,4),(1711,970322422,3),(1711,984837622,4),(1711,1002376822,3),(1711,1016287222,4),(1711,1033826422,3),(1711,1047736822,4),(1711,1065276022,3),(1711,1079791222,4),(1711,1096725622,3),(1711,1111240822,4),(1711,1128175222,3),(1711,1142690423,4),(1711,1159624823,3),(1711,1174140023,4),(1711,1191074423,3),(1711,1207404023,4),(1711,1222524023,3),(1711,1238853624,4),(1711,1253973624,3),(1711,1270303224,4),(1711,1285423224,3),(1711,1301752824,4),(1711,1316872824,3),(1711,1333202424,4),(1711,1348927225,3),(1711,1365256825,4),(1711,1380376825,3),(1711,1396706425,4),(1711,1411826425,3),(1711,1428156025,4),(1711,1443276026,3),(1711,1459605626,4),(1711,1474725626,3),(1711,1491055227,4),(1711,1506175227,3),(1711,1522504827,4),(1711,1538229627,3),(1711,1554559227,4),(1711,1569679227,3),(1711,1586008827,4),(1711,1601128827,3),(1711,1617458427,4),(1711,1632578427,3),(1711,1648908027,4),(1711,1664028027,3),(1711,1680357627,4),(1711,1695477627,3),(1711,1712412027,4),(1711,1727532027,3),(1711,1743861627,4),(1711,1758981627,3),(1711,1775311227,4),(1711,1790431227,3),(1711,1806760827,4),(1711,1821880827,3),(1711,1838210427,4),(1711,1853330427,3),(1711,1869660027,4),(1711,1885384827,3),(1711,1901714427,4),(1711,1916834427,3),(1711,1933164027,4),(1711,1948284027,3),(1711,1964613627,4),(1711,1979733627,3),(1711,1996063227,4),(1711,2011183227,3),(1711,2027512827,4),(1711,2042632827,3),(1711,2058962427,4),(1711,2074687227,3),(1711,2091016827,4),(1711,2106136827,3),(1711,2122466427,4),(1711,2137586427,3),(1712,-868010400,1),(1712,-768906000,0),(1712,1419696025,2),(1713,-757426500,3),(1713,152632803,1),(1713,162309604,2),(1713,183477604,1),(1713,194968805,2),(1713,215532005,1),(1713,226418406,2),(1713,246981606,1),(1713,257868007,2),(1713,278431207,1),(1713,289317608,2),(1713,309880808,1),(1713,320767209,2),(1713,341330409,1),(1713,352216809,2),(1713,372780010,1),(1713,384271210,2),(1713,404834411,1),(1713,415720811,2),(1713,436284012,1),(1713,447170412,2),(1713,467733612,1),(1713,478620012,2),(1713,499183213,1),(1713,510069613,2),(1713,530632813,1),(1713,541519213,2),(1713,562082413,1),(1713,573573614,2),(1713,594136814,1),(1713,605023214,2),(1713,623772014,1),(1713,637682415,2),(1713,655221615,1),(1713,669132016,2),(1713,686671216,1),(1713,700581616,2),(1713,718120817,1),(1713,732636017,2),(1713,749570418,1),(1713,764085618,2),(1713,781020019,1),(1713,795535219,2),(1713,812469619,1),(1713,826984820,2),(1713,844524020,1),(1713,858434420,2),(1713,875973621,1),(1713,889884021,2),(1713,907423221,1),(1713,921938422,2),(1713,938872822,1),(1713,953388022,2),(1713,970322422,1),(1713,984837622,2),(1713,1002376822,1),(1713,1016287222,2),(1713,1033826422,1),(1713,1047736822,2),(1713,1065276022,1),(1713,1079791222,2),(1713,1096725622,1),(1713,1111240822,2),(1713,1128175222,1),(1713,1142690423,2),(1713,1159624823,1),(1713,1174140023,2),(1713,1191074423,1),(1713,1207404023,2),(1713,1222524023,1),(1713,1238853624,2),(1713,1253973624,1),(1713,1270303224,2),(1713,1285423224,1),(1713,1301752824,2),(1713,1316872824,1),(1713,1333202424,2),(1713,1348927225,1),(1713,1365256825,2),(1713,1380376825,1),(1713,1396706425,2),(1713,1411826425,1),(1713,1428156025,2),(1713,1443276026,1),(1713,1459605626,2),(1713,1474725626,1),(1713,1491055227,2),(1713,1506175227,1),(1713,1522504827,2),(1713,1538229627,1),(1713,1554559227,2),(1713,1569679227,1),(1713,1586008827,2),(1713,1601128827,1),(1713,1617458427,2),(1713,1632578427,1),(1713,1648908027,2),(1713,1664028027,1),(1713,1680357627,2),(1713,1695477627,1),(1713,1712412027,2),(1713,1727532027,1),(1713,1743861627,2),(1713,1758981627,1),(1713,1775311227,2),(1713,1790431227,1),(1713,1806760827,2),(1713,1821880827,1),(1713,1838210427,2),(1713,1853330427,1),(1713,1869660027,2),(1713,1885384827,1),(1713,1901714427,2),(1713,1916834427,1),(1713,1933164027,2),(1713,1948284027,1),(1713,1964613627,2),(1713,1979733627,1),(1713,1996063227,2),(1713,2011183227,1),(1713,2027512827,2),(1713,2042632827,1),(1713,2058962427,2),(1713,2074687227,1),(1713,2091016827,2),(1713,2106136827,1),(1713,2122466427,2),(1713,2137586427,1),(1715,-1178124152,3),(1715,-36619200,1),(1715,-23922000,2),(1715,-3355200,1),(1715,7527600,2),(1715,24465600,1),(1715,37767600,2),(1715,55915200,1),(1715,69217200,2),(1715,87969601,1),(1715,100666802,2),(1715,118209602,1),(1715,132116403,2),(1715,150868803,1),(1715,163566004,2),(1715,182318404,1),(1715,195620405,2),(1715,213768005,1),(1715,227070006,2),(1715,245217606,1),(1715,258519607,2),(1715,277272007,1),(1715,289969208,2),(1715,308721608,1),(1715,321418809,2),(1715,340171209,1),(1715,353473209,2),(1715,371620810,1),(1715,384922810,4),(1715,403070411,5),(1715,416372411,4),(1715,434520012,5),(1715,447822012,4),(1715,466574412,5),(1715,479271612,4),(1715,498024013,5),(1715,510721213,4),(1715,529473613,5),(1715,545194813,4),(1715,560923213,5),(1715,574225214,4),(1715,592372814,5),(1715,605674814,4),(1715,624427214,5),(1715,637124415,4),(1715,653457615,5),(1715,668574016,4),(1715,687326416,5),(1715,700628416,4),(1715,718776017,5),(1715,732078017,4),(1715,750225618,5),(1715,763527618,4),(1715,781675219,5),(1715,794977219,4),(1715,813729619,5),(1715,826426820,4),(1715,845179220,5),(1715,859690820,4),(1715,876628821,5),(1715,889930821,4),(1715,906868821,5),(1715,923194822,4),(1715,939528022,5),(1715,952830022,4),(1715,971582422,5),(1715,984279622,4),(1715,1003032022,5),(1715,1015729222,4),(1715,1034481622,5),(1715,1047178822,4),(1715,1065931222,5),(1715,1079233222,4),(1715,1097380822,5),(1715,1110682822,4),(1715,1128830422,5),(1715,1142132423,4),(1715,1160884823,5),(1715,1173582023,4),(1715,1192334423,5),(1715,1206846023,4),(1715,1223784023,5),(1715,1237086024,4),(1715,1255233624,5),(1715,1270350024,4),(1715,1286683224,5),(1715,1304823624,4),(1715,1313899224,5),(1715,1335668424,4),(1715,1346558425,5),(1715,1367118025,4),(1715,1378612825,5),(1715,1398567625,4),(1715,1410062425,5),(1715,1463281226,4),(1715,1471147226,5),(1715,1494730827,4),(1715,1502596827,5),(1715,1526180427,4),(1715,1534046427,5),(1715,1557630027,4),(1715,1565496027,5),(1715,1589079627,4),(1715,1596945627,5),(1715,1620529227,4),(1715,1629000027,5),(1715,1652583627,4),(1715,1660449627,5),(1715,1684033227,4),(1715,1691899227,5),(1715,1715482827,4),(1715,1723348827,5),(1715,1746932427,4),(1715,1754798427,5),(1715,1778382027,4),(1715,1786248027,5),(1715,1809831627,4),(1715,1818302427,5),(1715,1841886027,4),(1715,1849752027,5),(1715,1873335627,4),(1715,1881201627,5),(1715,1904785227,4),(1715,1912651227,5),(1715,1936234827,4),(1715,1944100827,5),(1715,1967684427,4),(1715,1976155227,5),(1715,1999738827,4),(1715,2007604827,5),(1715,2031188427,4),(1715,2039054427,5),(1715,2062638027,4),(1715,2070504027,5),(1715,2094087627,4),(1715,2101953627,5),(1715,2125537227,4),(1715,2133403227,5),(1716,-1829387596,2),(1716,433256412,1),(1716,448977612,2),(1716,467298012,1),(1716,480427212,2),(1716,496760413,1),(1716,511876813,2),(1716,528210013,1),(1716,543931213,2),(1716,559659613,1),(1716,575380814,2),(1716,591109214,1),(1716,606830414,2),(1716,622558814,1),(1716,638280015,2),(1716,654008415,1),(1716,669729616,2),(1716,686062816,1),(1716,696340816,2),(1716,719931617,1),(1716,727790417,2),(1717,307627208,1),(1717,788871619,2),(1718,1325242824,1),(1719,-1709985344,2),(1719,909842421,1),(1719,920124022,2),(1719,941896822,1),(1719,951573622,2),(1719,1259416824,1),(1719,1269698424,2),(1719,1287842424,1),(1719,1299333624,2),(1719,1319292024,1),(1719,1327154424,2),(1719,1350741625,1),(1719,1358604025,2),(1719,1382796025,1),(1719,1390050025,2),(1719,1414850425,1),(1719,1421503225,2),(1719,1446300026,1),(1719,1452952826,2),(1719,1478354426,1),(1719,1484402427,2),(1719,1509804027,1),(1719,1515852027,2),(1719,1541253627,1),(1719,1547906427,2),(1719,1572703227,1),(1719,1579356027,2),(1719,1604152827,1),(1719,1610805627,2),(1719,1636207227,1),(1719,1642255227,2),(1719,1667656827,1),(1719,1673704827,2),(1719,1699106427,1),(1719,1705154427,2),(1719,1730556027,1),(1719,1737208827,2),(1719,1762005627,1),(1719,1768658427,2),(1719,1793455227,1),(1719,1800108027,2),(1719,1825509627,1),(1719,1831557627,2),(1719,1856959227,1),(1719,1863007227,2),(1719,1888408827,1),(1719,1895061627,2),(1719,1919858427,1),(1719,1926511227,2),(1719,1951308027,1),(1719,1957960827,2),(1719,1983362427,1),(1719,1989410427,2),(1719,2014812027,1),(1719,2020860027,2),(1719,2046261627,1),(1719,2052309627,2),(1719,2077711227,1),(1719,2084364027,2),(1719,2109160827,1),(1719,2115813627,2),(1719,2140610427,1),(1719,2147263227,2),(1721,-1230746496,1),(1721,504939613,3),(1721,722930417,2),(1721,728888417,3),(1722,-1806678012,1),(1723,-1806748788,1),(1724,977493622,1),(1725,-1157283000,1),(1725,-1155436200,0),(1725,-880198200,1),(1725,-765376200,0),(1725,-712150200,2),(1726,-1157283000,1),(1726,-1155436200,0),(1726,-880198200,1),(1726,-765376200,0),(1726,-712150200,2),(1727,307622408,1),(1727,788868019,2),(1728,-7988400,1),(1728,915105621,0),(1729,-7988400,1),(1729,745848018,2),(1730,-7988400,1),(1731,-1806676920,1),(1732,-1861879032,1),(1733,-1545131260,1),(1733,-877347000,2),(1733,-800960400,1),(1733,294323408,3),(1734,-599575200,1),(1734,276089407,2),(1735,-599656320,1),(1735,152029803,2),(1735,162912604,1),(1735,1443882626,3),(1736,-1829387148,2),(1736,250002006,1),(1736,257342407,2),(1736,281451607,1),(1736,288878408,2),(1736,849366020,3),(1736,857228420,4),(1737,-1861879032,1),(1739,893665821,1),(1743,279714607,2),(1743,289387808,1),(1743,309952808,2),(1743,320837409,1),(1743,341402409,2),(1743,352287009,1),(1743,372852010,2),(1743,384341410,1),(1743,404906411,2),(1743,415791011,1),(1743,436356012,2),(1743,447240612,1),(1743,467805612,2),(1743,478690212,1),(1743,499255213,2),(1743,510139813,1),(1743,530704813,2),(1743,541589413,1),(1743,562154413,2),(1743,573643814,1),(1743,594208814,2),(1743,605093414,1),(1743,625658414,2),(1743,636543015,1),(1743,657108015,2),(1743,667992616,1),(1744,977493622,1),(1745,-1861879032,1),(1746,-1806674504,1),(1748,-915193200,1),(1748,939214822,2),(1748,953384422,3),(1748,973342822,4),(1748,980596822,1),(1748,1004792422,4),(1748,1012046422,1),(1748,1478350826,4),(1748,1484398827,1),(1753,-1717032240,2),(1753,-1693706400,1),(1753,-1680483600,2),(1753,-1663455600,3),(1753,-1650150000,4),(1753,-1632006000,3),(1753,-1618700400,7),(1753,-1600473600,5),(1753,-1587168000,6),(1753,-1501725600,2),(1753,-931734000,1),(1753,-857257200,4),(1753,-844556400,3),(1753,-828226800,4),(1753,-812502000,3),(1753,-796874400,1),(1753,-796608000,2),(1753,-778726800,1),(1753,-762660000,2),(1753,-748486800,3),(1753,-733273200,4),(1753,-715215600,3),(1753,-701910000,4),(1753,-684975600,3),(1753,-670460400,4),(1753,-654130800,3),(1753,-639010800,4),(1753,-397094400,3),(1753,-386812800,4),(1753,-371088000,3),(1753,-355363200,4),(1753,-334195200,3),(1753,-323308800,4),(1753,-307584000,3),(1753,-291859200,4),(1753,-271296000,3),(1753,-260409600,4),(1753,-239846400,3),(1753,-228960000,4),(1753,-208396800,3),(1753,-197510400,4),(1753,-176342400,3),(1753,-166060800,4),(1753,220921205,2),(1753,228873606,3),(1753,243993606,4),(1753,260323207,3),(1753,276048007,4),(1753,291772808,3),(1753,307497608,4),(1753,323827209,3),(1753,338947209,4),(1753,354672009,3),(1753,370396810,4),(1753,386121610,3),(1753,401846411,4),(1753,417571211,3),(1753,433296012,4),(1753,449020812,3),(1753,465350412,4),(1753,481075212,3),(1753,496800013,4),(1753,512524813,3),(1753,528249613,4),(1753,543974413,3),(1753,559699213,4),(1753,567990013,2),(1753,575427614,8),(1753,591152414,9),(1753,606877214,8),(1753,622602014,9),(1753,638326815,8),(1753,654656415,9),(1753,670381216,8),(1753,686106016,9),(1753,701830816,8),(1753,717555617,9),(1753,733280417,8),(1753,749005218,9),(1753,764730018,8),(1753,780454819,9),(1753,796179619,8),(1753,811904419,9),(1753,828234020,8),(1753,846378020,9),(1753,859683620,8),(1753,877827621,9),(1753,891133221,8),(1753,909277221,9),(1753,922582822,8),(1753,941331622,9),(1753,954032422,8),(1753,972781222,9),(1753,985482022,8),(1753,1004230822,9),(1753,1017536422,8),(1753,1035680422,9),(1753,1048986022,8),(1753,1067130022,9),(1753,1080435622,8),(1753,1099184422,9),(1753,1111885222,8),(1753,1130634022,9),(1753,1143334823,8),(1753,1162083623,9),(1753,1174784423,8),(1753,1193533223,9),(1753,1206838823,8),(1753,1224982823,9),(1753,1238288424,8),(1753,1256432424,9),(1753,1269738024,8),(1753,1288486824,9),(1753,1301187624,8),(1753,1319936424,9),(1753,1332637224,8),(1753,1351386025,9),(1753,1364691625,8),(1753,1382835625,9),(1753,1396141225,8),(1753,1414285225,9),(1753,1427590825,8),(1753,1445734826,9),(1753,1459040426,8),(1753,1477789226,9),(1753,1490490027,8),(1753,1509238827,9),(1753,1521939627,8),(1753,1540688427,9),(1753,1553994027,8),(1753,1572138027,9),(1753,1585443627,8),(1753,1603587627,9),(1753,1616893227,8),(1753,1635642027,9),(1753,1648342827,8),(1753,1667091627,9),(1753,1679792427,8),(1753,1698541227,9),(1753,1711846827,8),(1753,1729990827,9),(1753,1743296427,8),(1753,1761440427,9),(1753,1774746027,8),(1753,1792890027,9),(1753,1806195627,8),(1753,1824944427,9),(1753,1837645227,8),(1753,1856394027,9),(1753,1869094827,8),(1753,1887843627,9),(1753,1901149227,8),(1753,1919293227,9),(1753,1932598827,8),(1753,1950742827,9),(1753,1964048427,8),(1753,1982797227,9),(1753,1995498027,8),(1753,2014246827,9),(1753,2026947627,8),(1753,2045696427,9),(1753,2058397227,8),(1753,2077146027,9),(1753,2090451627,8),(1753,2108595627,9),(1753,2121901227,8),(1753,2140045227,9),(1754,-1830384000,6),(1754,-1689555600,1),(1754,-1677801600,2),(1754,-1667437200,3),(1754,-1647738000,4),(1754,-1635814800,3),(1754,-1616202000,4),(1754,-1604365200,3),(1754,-1584666000,4),(1754,-1572742800,3),(1754,-1553043600,4),(1754,-1541206800,3),(1754,-1521507600,4),(1754,-1442451600,3),(1754,-1426813200,4),(1754,-1379293200,3),(1754,-1364778000,4),(1754,-1348448400,3),(1754,-1333328400,4),(1754,-1316394000,3),(1754,-1301274000,4),(1754,-1284339600,3),(1754,-1269824400,4),(1754,-1221440400,3),(1754,-1206925200,4),(1754,-1191200400,3),(1754,-1175475600,4),(1754,-1127696400,3),(1754,-1111971600,4),(1754,-1096851600,3),(1754,-1080522000,4),(1754,-1063587600,3),(1754,-1049072400,4),(1754,-1033347600,3),(1754,-1017622800,4),(1754,-1002502800,3),(1754,-986173200,4),(1754,-969238800,3),(1754,-950490000,4),(1754,-942022800,3),(1754,-922669200,4),(1754,-906944400,3),(1754,-891133200,4),(1754,-877309200,3),(1754,-873684000,5),(1754,-864007200,3),(1754,-857955600,4),(1754,-845859600,3),(1754,-842839200,5),(1754,-831348000,3),(1754,-825901200,4),(1754,-814410000,3),(1754,-810784800,5),(1754,-799898400,3),(1754,-794451600,4),(1754,-782960400,3),(1754,-779335200,5),(1754,-768448800,3),(1754,-763002000,4),(1754,-749091600,3),(1754,-733366800,4),(1754,-717631200,3),(1754,-701906400,4),(1754,-686181600,3),(1754,-670456800,4),(1754,-654732000,3),(1754,-639007200,4),(1754,-591832800,3),(1754,-575503200,4),(1754,-559778400,3),(1754,-544053600,4),(1754,-528328800,3),(1754,-512604000,4),(1754,-496879200,3),(1754,-481154400,4),(1754,-465429600,3),(1754,-449704800,4),(1754,-433980000,3),(1754,-417650400,4),(1754,-401925600,3),(1754,-386200800,4),(1754,-370476000,3),(1754,-354751200,4),(1754,-339026400,3),(1754,-323301600,4),(1754,-307576800,3),(1754,-291852000,4),(1754,-276127200,3),(1754,-260402400,4),(1754,-244677600,3),(1754,-228348000,4),(1754,-212623200,3),(1754,-196898400,4),(1754,-181173600,3),(1754,-165448800,4),(1754,-149724000,3),(1754,-133999200,4),(1754,-118274400,7),(1754,212544005,2),(1754,228268806,3),(1754,243993606,4),(1754,260323207,3),(1754,276048007,4),(1754,291772808,3),(1754,307501208,4),(1754,323222409,3),(1754,338950809,4),(1754,354675609,3),(1754,370400410,4),(1754,386125210,3),(1754,401850011,4),(1754,417578411,3),(1754,433299612,4),(1754,449024412,3),(1754,465354012,4),(1754,481078812,3),(1754,496803613,4),(1754,512528413,3),(1754,528253213,4),(1754,543978013,3),(1754,559702813,4),(1754,575427614,3),(1754,591152414,4),(1754,606877214,3),(1754,622602014,4),(1754,638326815,3),(1754,654656415,4),(1754,670381216,3),(1754,686106016,4),(1754,701830816,3),(1754,717555617,8),(1754,733280417,9),(1754,749005218,8),(1754,764730018,9),(1754,780454819,8),(1754,796179619,9),(1754,811904419,8),(1754,828234020,10),(1754,846378020,6),(1754,859683620,10),(1754,877827621,6),(1754,891133221,10),(1754,909277221,6),(1754,922582822,10),(1754,941331622,6),(1754,954032422,10),(1754,972781222,6),(1754,985482022,10),(1754,1004230822,6),(1754,1017536422,10),(1754,1035680422,6),(1754,1048986022,10),(1754,1067130022,6),(1754,1080435622,10),(1754,1099184422,6),(1754,1111885222,10),(1754,1130634022,6),(1754,1143334823,10),(1754,1162083623,6),(1754,1174784423,10),(1754,1193533223,6),(1754,1206838823,10),(1754,1224982823,6),(1754,1238288424,10),(1754,1256432424,6),(1754,1269738024,10),(1754,1288486824,6),(1754,1301187624,10),(1754,1319936424,6),(1754,1332637224,10),(1754,1351386025,6),(1754,1364691625,10),(1754,1382835625,6),(1754,1396141225,10),(1754,1414285225,6),(1754,1427590825,10),(1754,1445734826,6),(1754,1459040426,10),(1754,1477789226,6),(1754,1490490027,10),(1754,1509238827,6),(1754,1521939627,10),(1754,1540688427,6),(1754,1553994027,10),(1754,1572138027,6),(1754,1585443627,10),(1754,1603587627,6),(1754,1616893227,10),(1754,1635642027,6),(1754,1648342827,10),(1754,1667091627,6),(1754,1679792427,10),(1754,1698541227,6),(1754,1711846827,10),(1754,1729990827,6),(1754,1743296427,10),(1754,1761440427,6),(1754,1774746027,10),(1754,1792890027,6),(1754,1806195627,10),(1754,1824944427,6),(1754,1837645227,10),(1754,1856394027,6),(1754,1869094827,10),(1754,1887843627,6),(1754,1901149227,10),(1754,1919293227,6),(1754,1932598827,10),(1754,1950742827,6),(1754,1964048427,10),(1754,1982797227,6),(1754,1995498027,10),(1754,2014246827,6),(1754,2026947627,10),(1754,2045696427,6),(1754,2058397227,10),(1754,2077146027,6),(1754,2090451627,10),(1754,2108595627,6),(1754,2121901227,10),(1754,2140045227,6),(1755,-1017820800,1),(1755,-766224000,0),(1755,-745833600,2),(1755,-733827600,0),(1755,-716889600,2),(1755,-699613200,0),(1755,-683884800,2),(1755,-670669200,0),(1755,-652348800,2),(1755,-639133200,0),(1755,-620812800,2),(1755,-607597200,0),(1755,-589276800,2),(1755,-576061200,0),(1755,-562924800,2),(1755,-541760400,0),(1755,-528710400,2),(1755,-510224400,0),(1755,-497174400,2),(1755,-478688400,0),(1755,-465638400,2),(1755,-449830800,0),(1755,-434016000,2),(1755,-418208400,0),(1755,-402480000,2),(1755,-386672400,0),(1755,-370944000,2),(1755,-355136400,0),(1755,-339408000,2),(1755,-323600400,0),(1755,-302515200,2),(1755,-291978000,0),(1755,-270979200,2),(1755,-260442000,0),(1755,133977603,2),(1755,149785203,0),(1755,165513604,2),(1755,181321204,0),(1755,299606408,2),(1755,307551608,0),(1756,-1948782472,1),(1756,-1830414600,2),(1756,-767350800,3),(1756,-498128400,1),(1756,-462702600,4),(1756,-451733400,1),(1756,-429784200,4),(1756,-418296600,1),(1756,-399544200,4),(1756,-387451800,1),(1756,-368094600,4),(1756,-356002200,1),(1756,-336645000,4),(1756,-324552600,1),(1756,-305195400,4),(1756,-293103000,1),(1756,-264933000,3),(1756,547578013,5),(1756,560883613,3),(1756,579027614,5),(1756,592333214,3),(1757,-2038200925,1),(1757,-1167634800,2),(1757,-1073028000,3),(1757,-894180000,4),(1757,-879665400,5),(1757,-767005200,4),(1757,378664210,6),(1758,-1869875816,2),(1758,-1693706400,1),(1758,-1680490800,2),(1758,-1570413600,1),(1758,-1552186800,2),(1758,-1538359200,1),(1758,-1522551600,2),(1758,-1507514400,1),(1758,-1490583600,2),(1758,-1440208800,1),(1758,-1428030000,2),(1758,-1409709600,1),(1758,-1396494000,2),(1758,-931140000,1),(1758,-922762800,2),(1758,-917834400,1),(1758,-892436400,2),(1758,-875844000,1),(1758,-857358000,2),(1758,-781063200,1),(1758,-764737200,2),(1758,-744343200,1),(1758,-733806000,2),(1758,-716436000,1),(1758,-701924400,2),(1758,-684986400,1),(1758,-670474800,2),(1758,-654141600,1),(1758,-639025200,2),(1758,-621828000,1),(1758,-606970800,2),(1758,-590032800,1),(1758,-575434800,2),(1758,-235620000,1),(1758,-228279600,2),(1758,-177732000,1),(1758,-165726000,2),(1758,10533600,1),(1758,23835600,2),(1758,41983200,1),(1758,55285200,2),(1758,74037600,1),(1758,87339601,2),(1758,107910002,1),(1758,121219202,2),(1758,133920003,1),(1758,152676003,2),(1758,165362404,1),(1758,183502804,2),(1758,202428005,1),(1758,215557205,2),(1758,228866406,1),(1758,245797206,2),(1758,260316007,1),(1758,277246807,3),(1758,308779208,4),(1758,323827209,3),(1758,340228809,4),(1758,354672009,3),(1758,371678410,4),(1758,386121610,3),(1758,403128011,4),(1758,428446812,3),(1758,433886412,4),(1758,482792412,1),(1758,496702813,2),(1758,512521213,5),(1758,528246013,6),(1758,543970813,5),(1758,559695613,6),(1758,575420414,5),(1758,591145214,6),(1758,606870014,5),(1758,622594814,6),(1758,638319615,5),(1758,654649215,6),(1758,670374016,5),(1758,686098816,6),(1758,701823616,5),(1758,717548417,6),(1758,733273217,5),(1758,748998018,6),(1758,764118018,5),(1758,780447619,6),(1758,796172419,5),(1758,811897219,6),(1758,828226820,5),(1758,846370820,6),(1758,859676420,5),(1758,877820421,6),(1758,891126021,5),(1758,909270021,6),(1758,922575622,5),(1758,941324422,6),(1758,954025222,5),(1758,972774022,6),(1758,985474822,5),(1758,1004223622,6),(1758,1017529222,5),(1758,1035673222,6),(1758,1048978822,5),(1758,1067122822,6),(1758,1080428422,5),(1758,1099177222,6),(1758,1111878022,5),(1758,1130626822,6),(1758,1143327623,5),(1758,1162076423,6),(1758,1167602423,2),(1758,1174784423,7),(1758,1193533223,8),(1758,1206838823,7),(1758,1224982823,8),(1758,1238288424,7),(1758,1256432424,8),(1758,1269738024,7),(1758,1288486824,8),(1758,1301274024,7),(1758,1319936424,8),(1758,1332637224,7),(1758,1351386025,8),(1758,1364691625,7),(1758,1382835625,8),(1758,1396227625,7),(1758,1414285225,8),(1758,1427590825,7),(1758,1446944426,8),(1758,1459040426,7),(1758,1473195626,4),(1760,-880200000,1),(1760,-769395600,2),(1760,-765378000,0),(1760,-86882400,3),(1760,-21470400,4),(1760,-5749200,3),(1760,9979200,4),(1760,25700400,3),(1760,41428800,4),(1760,57754800,3),(1760,73483200,4),(1760,89204401,3),(1760,104932802,4),(1760,120654002,3),(1760,126705603,4),(1760,152103603,3),(1760,162388804,4),(1760,183553204,3),(1760,199281605,4),(1760,215607605,3),(1760,230731206,4),(1760,247057206,3),(1760,262785607,4),(1760,278506807,3),(1760,294235208,4),(1760,309956408,3),(1760,325684809,4),(1760,341406009,3),(1760,357134409,4),(1760,372855610,3),(1760,388584010,4),(1760,404910011,3),(1760,420033611,4),(1760,436359612,5),(1760,439030812,7),(1760,452084412,6),(1760,467805612,7),(1760,483534012,6),(1760,499255213,7),(1760,514983613,6),(1760,530704813,7),(1760,544618813,6),(1760,562154413,7),(1760,576068414,6),(1760,594208814,7),(1760,607518014,6),(1760,625658414,7),(1760,638967615,6),(1760,657108015,7),(1760,671022016,6),(1760,688557616,7),(1760,702471616,6),(1760,720007217,7),(1760,733921217,6),(1760,752061618,7),(1760,765370818,6),(1760,783511219,7),(1760,796820419,6),(1760,814960819,7),(1760,828874820,6),(1760,846410420,7),(1760,860324420,6),(1760,877860021,7),(1760,891774021,6),(1760,909309621,7),(1760,923223622,6),(1760,941364022,7),(1760,954673222,6),(1760,972813622,7),(1760,986122822,6),(1760,1004263222,7),(1760,1018177222,6),(1760,1035712822,7),(1760,1049626822,6),(1760,1067162422,7),(1760,1081076422,6),(1760,1099216822,7),(1760,1112526022,6),(1760,1130666422,7),(1760,1143975623,6),(1760,1162116023,7),(1760,1173610823,6),(1760,1194170423,7),(1760,1205060423,6),(1760,1225620023,7),(1760,1236510024,6),(1760,1257069624,7),(1760,1268564424,6),(1760,1289124024,7),(1760,1300014024,6),(1760,1320573624,7),(1760,1331463624,6),(1760,1352023225,7),(1760,1362913225,6),(1760,1383472825,7),(1760,1394362825,6),(1760,1414922425,7),(1760,1425812425,6),(1760,1446372026,7),(1760,1457866826,6),(1760,1478426426,7),(1760,1489316427,6),(1760,1509876027,7),(1760,1520766027,6),(1760,1541325627,7),(1760,1552215627,6),(1760,1572775227,7),(1760,1583665227,6),(1760,1604224827,7),(1760,1615719627,6),(1760,1636279227,7),(1760,1647169227,6),(1760,1667728827,7),(1760,1678618827,6),(1760,1699178427,7),(1760,1710068427,6),(1760,1730628027,7),(1760,1741518027,6),(1760,1762077627,7),(1760,1772967627,6),(1760,1793527227,7),(1760,1805022027,6),(1760,1825581627,7),(1760,1836471627,6),(1760,1857031227,7),(1760,1867921227,6),(1760,1888480827,7),(1760,1899370827,6),(1760,1919930427,7),(1760,1930820427,6),(1760,1951380027,7),(1760,1962874827,6),(1760,1983434427,7),(1760,1994324427,6),(1760,2014884027,7),(1760,2025774027,6),(1760,2046333627,7),(1760,2057223627,6),(1760,2077783227,7),(1760,2088673227,6),(1760,2109232827,7),(1760,2120122827,6),(1760,2140682427,7),(1761,-880196400,1),(1761,-769395600,2),(1761,-765374400,0),(1761,-86878800,3),(1761,-21466800,4),(1761,-5745600,3),(1761,9982800,4),(1761,25704000,3),(1761,41432400,4),(1761,57758400,3),(1761,73486800,4),(1761,89208001,3),(1761,104936402,4),(1761,120657602,3),(1761,126709203,4),(1761,152107203,3),(1761,162392404,4),(1761,183556804,3),(1761,199285205,4),(1761,215611205,3),(1761,230734806,4),(1761,247060806,3),(1761,262789207,4),(1761,278510407,3),(1761,294238808,4),(1761,309960008,3),(1761,325688409,4),(1761,341409609,3),(1761,357138009,4),(1761,372859210,3),(1761,388587610,4),(1761,404913611,3),(1761,420037211,4),(1761,436363212,5),(1761,439034412,7),(1761,452088012,6),(1761,467809212,7),(1761,483537612,6),(1761,499258813,7),(1761,514987213,6),(1761,530708413,7),(1761,544622413,6),(1761,562158013,7),(1761,576072014,6),(1761,594212414,7),(1761,607521614,6),(1761,625662014,7),(1761,638971215,6),(1761,657111615,7),(1761,671025616,6),(1761,688561216,7),(1761,702475216,6),(1761,720010817,7),(1761,733924817,6),(1761,752065218,7),(1761,765374418,6),(1761,783514819,7),(1761,796824019,6),(1761,814964419,7),(1761,828878420,6),(1761,846414020,7),(1761,860328020,6),(1761,877863621,7),(1761,891777621,6),(1761,909313221,7),(1761,923227222,6),(1761,941367622,7),(1761,954676822,6),(1761,972817222,7),(1761,986126422,6),(1761,1004266822,7),(1761,1018180822,6),(1761,1035716422,7),(1761,1049630422,6),(1761,1067166022,7),(1761,1081080022,6),(1761,1099220422,7),(1761,1112529622,6),(1761,1130670022,7),(1761,1143979223,6),(1761,1162119623,7),(1761,1173614423,6),(1761,1194174023,7),(1761,1205064023,6),(1761,1225623623,7),(1761,1236513624,6),(1761,1257073224,7),(1761,1268568024,6),(1761,1289127624,7),(1761,1300017624,6),(1761,1320577224,7),(1761,1331467224,6),(1761,1352026825,7),(1761,1362916825,6),(1761,1383476425,7),(1761,1394366425,6),(1761,1414926025,7),(1761,1425816025,6),(1761,1446375626,7),(1761,1457870426,6),(1761,1478430026,7),(1761,1489320027,6),(1761,1509879627,7),(1761,1520769627,6),(1761,1541329227,7),(1761,1552219227,6),(1761,1572778827,7),(1761,1583668827,6),(1761,1604228427,7),(1761,1615723227,6),(1761,1636282827,7),(1761,1647172827,6),(1761,1667732427,7),(1761,1678622427,6),(1761,1699182027,7),(1761,1710072027,6),(1761,1730631627,7),(1761,1741521627,6),(1761,1762081227,7),(1761,1772971227,6),(1761,1793530827,7),(1761,1805025627,6),(1761,1825585227,7),(1761,1836475227,6),(1761,1857034827,7),(1761,1867924827,6),(1761,1888484427,7),(1761,1899374427,6),(1761,1919934027,7),(1761,1930824027,6),(1761,1951383627,7),(1761,1962878427,6),(1761,1983438027,7),(1761,1994328027,6),(1761,2014887627,7),(1761,2025777627,6),(1761,2046337227,7),(1761,2057227227,6),(1761,2077786827,7),(1761,2088676827,6),(1761,2109236427,7),(1761,2120126427,6),(1761,2140686027,7),(1762,-1633273200,0),(1762,-1615132800,1),(1762,-1601823600,0),(1762,-1583683200,1),(1762,-880210800,2),(1762,-820519140,1),(1762,-812653140,2),(1762,-796845540,1),(1762,-84380400,0),(1762,-68659200,1),(1763,-1633276800,0),(1763,-1615136400,1),(1763,-1601827200,0),(1763,-1583686800,1),(1763,-1563724800,0),(1763,-1551632400,1),(1763,-1538928000,0),(1763,-1520182800,1),(1763,-1504454400,0),(1763,-1491757200,1),(1763,-1473004800,0),(1763,-1459702800,1),(1763,-1441555200,0),(1763,-1428253200,1),(1763,-1410105600,0),(1763,-1396803600,1),(1763,-1378656000,0),(1763,-1365354000,1),(1763,-1347206400,0),(1763,-1333904400,1),(1763,-1315152000,0),(1763,-1301850000,1),(1763,-1283702400,0),(1763,-1270400400,1),(1763,-1252252800,0),(1763,-1238950800,1),(1763,-1220803200,0),(1763,-1207501200,1),(1763,-1189353600,0),(1763,-1176051600,1),(1763,-1157299200,0),(1763,-1144602000,1),(1763,-1125849600,0),(1763,-1112547600,1),(1763,-1094400000,0),(1763,-1081098000,1),(1763,-1067788800,2),(1763,-1045414800,1),(1763,-1031500800,0),(1763,-1018198800,1),(1763,-1000051200,0),(1763,-986749200,1),(1763,-967996800,0),(1763,-955299600,1),(1763,-936547200,0),(1763,-923245200,1),(1763,-905097600,0),(1763,-891795600,1),(1763,-880214400,3),(1763,-769395600,4),(1763,-765392400,1),(1763,-747244800,0),(1763,-733942800,1),(1763,-715795200,0),(1763,-702493200,1),(1763,-684345600,0),(1763,-671043600,1),(1763,-652896000,0),(1763,-639594000,1),(1763,-620841600,0),(1763,-608144400,1),(1763,-589392000,0),(1763,-576090000,1),(1763,-557942400,0),(1763,-544640400,1),(1763,-526492800,0),(1763,-513190800,1),(1763,-495043200,0),(1763,-481741200,1),(1763,-463593600,0),(1763,-447267600,1),(1763,-431539200,0),(1763,-415818000,1),(1763,-400089600,0),(1763,-384368400,1),(1763,-368640000,0),(1763,-352918800,1),(1763,-337190400,0),(1763,-321469200,1),(1763,-305740800,0),(1763,-289414800,1),(1763,-273686400,0),(1763,-257965200,1),(1763,-242236800,0),(1763,-226515600,1),(1763,-210787200,0),(1763,-195066000,1),(1763,-179337600,0),(1763,-163616400,1),(1763,-147888000,0),(1763,-131562000,1),(1763,-116438400,0),(1763,-100112400,1),(1763,-84384000,0),(1763,-68662800,1),(1763,-52934400,0),(1763,-37213200,1),(1763,-21484800,0),(1763,-5763600,1),(1763,9964800,0),(1763,25686000,1),(1763,41414400,0),(1763,57740400,1),(1763,73468800,0),(1763,89190001,1),(1763,104918402,0),(1763,120639602,1),(1763,126691203,0),(1763,152089203,1),(1763,162374404,0),(1763,183538804,1),(1763,199267205,0),(1763,215593205,1),(1763,230716806,0),(1763,247042806,1),(1763,262771207,0),(1763,278492407,1),(1763,294220808,0),(1763,309942008,1),(1763,325670409,0),(1763,341391609,1),(1763,357120009,0),(1763,372841210,1),(1763,388569610,0),(1763,404895611,1),(1763,420019211,0),(1763,436345212,1),(1763,452073612,0),(1763,467794812,1),(1763,483523212,0),(1763,499244413,1),(1763,514972813,0),(1763,530694013,1),(1763,544608013,0),(1763,562143613,1),(1763,576057614,0),(1763,594198014,1),(1763,607507214,0),(1763,625647614,1),(1763,638956815,0),(1763,657097215,1),(1763,671011216,0),(1763,688546816,1),(1763,702460816,0),(1763,719996417,1),(1763,733910417,0),(1763,752050818,1),(1763,765360018,0),(1763,783500419,1),(1763,796809619,0),(1763,814950019,1),(1763,828864020,0),(1763,846399620,1),(1763,860313620,0),(1763,877849221,1),(1763,891763221,0),(1763,909298821,1),(1763,923212822,0),(1763,941353222,1),(1763,954662422,0),(1763,972802822,1),(1763,986112022,0),(1763,1004252422,1),(1763,1018166422,0),(1763,1035702022,1),(1763,1049616022,0),(1763,1067151622,1),(1763,1081065622,0),(1763,1099206022,1),(1763,1112515222,0),(1763,1130655622,1),(1763,1143964823,0),(1763,1162105223,1),(1763,1173600023,0),(1763,1194159623,1),(1763,1205049623,0),(1763,1225609223,1),(1763,1236499224,0),(1763,1257058824,1),(1763,1268553624,0),(1763,1289113224,1),(1763,1300003224,0),(1763,1320562824,1),(1763,1331452824,0),(1763,1352012425,1),(1763,1362902425,0),(1763,1383462025,1),(1763,1394352025,0),(1763,1414911625,1),(1763,1425801625,0),(1763,1446361226,1),(1763,1457856026,0),(1763,1478415626,1),(1763,1489305627,0),(1763,1509865227,1),(1763,1520755227,0),(1763,1541314827,1),(1763,1552204827,0),(1763,1572764427,1),(1763,1583654427,0),(1763,1604214027,1),(1763,1615708827,0),(1763,1636268427,1),(1763,1647158427,0),(1763,1667718027,1),(1763,1678608027,0),(1763,1699167627,1),(1763,1710057627,0),(1763,1730617227,1),(1763,1741507227,0),(1763,1762066827,1),(1763,1772956827,0),(1763,1793516427,1),(1763,1805011227,0),(1763,1825570827,1),(1763,1836460827,0),(1763,1857020427,1),(1763,1867910427,0),(1763,1888470027,1),(1763,1899360027,0),(1763,1919919627,1),(1763,1930809627,0),(1763,1951369227,1),(1763,1962864027,0),(1763,1983423627,1),(1763,1994313627,0),(1763,2014873227,1),(1763,2025763227,0),(1763,2046322827,1),(1763,2057212827,0),(1763,2077772427,1),(1763,2088662427,0),(1763,2109222027,1),(1763,2120112027,0),(1763,2140671627,1),(1764,-1633276800,0),(1764,-1615136400,1),(1764,-1601827200,0),(1764,-1583686800,1),(1764,-900259200,0),(1764,-891795600,1),(1764,-880214400,2),(1764,-769395600,3),(1764,-765392400,1),(1764,-747244800,0),(1764,-733942800,1),(1764,-715795200,0),(1764,-702493200,1),(1764,-684345600,0),(1764,-671043600,1),(1764,-652896000,0),(1764,-639594000,1),(1764,-620841600,0),(1764,-608144400,1),(1764,-589392000,0),(1764,-576090000,1),(1764,-557942400,0),(1764,-544640400,1),(1764,-526492800,0),(1764,-513190800,1),(1764,-495043200,0),(1764,-481741200,1),(1764,-463593600,4),(1764,-386787600,1),(1764,-368640000,4),(1764,-21488400,5),(1764,-5767200,4),(1764,9961200,5),(1764,25682400,4),(1764,1143961223,5),(1764,1162101623,4),(1764,1173596423,5),(1764,1194156023,4),(1764,1205046023,5),(1764,1225605623,4),(1764,1236495624,5),(1764,1257055224,4),(1764,1268550024,5),(1764,1289109624,4),(1764,1299999624,5),(1764,1320559224,4),(1764,1331449224,5),(1764,1352008825,4),(1764,1362898825,5),(1764,1383458425,4),(1764,1394348425,5),(1764,1414908025,4),(1764,1425798025,5),(1764,1446357626,4),(1764,1457852426,5),(1764,1478412026,4),(1764,1489302027,5),(1764,1509861627,4),(1764,1520751627,5),(1764,1541311227,4),(1764,1552201227,5),(1764,1572760827,4),(1764,1583650827,5),(1764,1604210427,4),(1764,1615705227,5),(1764,1636264827,4),(1764,1647154827,5),(1764,1667714427,4),(1764,1678604427,5),(1764,1699164027,4),(1764,1710054027,5),(1764,1730613627,4),(1764,1741503627,5),(1764,1762063227,4),(1764,1772953227,5),(1764,1793512827,4),(1764,1805007627,5),(1764,1825567227,4),(1764,1836457227,5),(1764,1857016827,4),(1764,1867906827,5),(1764,1888466427,4),(1764,1899356427,5),(1764,1919916027,4),(1764,1930806027,5),(1764,1951365627,4),(1764,1962860427,5),(1764,1983420027,4),(1764,1994310027,5),(1764,2014869627,4),(1764,2025759627,5),(1764,2046319227,4),(1764,2057209227,5),(1764,2077768827,4),(1764,2088658827,5),(1764,2109218427,4),(1764,2120108427,5),(1764,2140668027,4),(1765,-1633280400,0),(1765,-1615140000,1),(1765,-1601830800,0),(1765,-1583690400,1),(1765,-1570381200,0),(1765,-1551636000,1),(1765,-1536512400,0),(1765,-1523210400,1),(1765,-1504458000,0),(1765,-1491760800,1),(1765,-1473008400,0),(1765,-1459706400,1),(1765,-1441558800,0),(1765,-1428256800,1),(1765,-1410109200,0),(1765,-1396807200,1),(1765,-1378659600,0),(1765,-1365357600,1),(1765,-1347210000,0),(1765,-1333908000,1),(1765,-1315155600,0),(1765,-1301853600,1),(1765,-1283706000,0),(1765,-1270404000,1),(1765,-1252256400,0),(1765,-1238954400,1),(1765,-1220806800,0),(1765,-1207504800,1),(1765,-1189357200,0),(1765,-1176055200,1),(1765,-1157302800,0),(1765,-1144605600,1),(1765,-1125853200,0),(1765,-1112551200,1),(1765,-1094403600,0),(1765,-1081101600,1),(1765,-1062954000,0),(1765,-1049652000,1),(1765,-1031504400,0),(1765,-1018202400,1),(1765,-1000054800,0),(1765,-986752800,1),(1765,-968000400,0),(1765,-955303200,1),(1765,-936550800,0),(1765,-923248800,1),(1765,-905101200,0),(1765,-891799200,1),(1765,-880218000,2),(1765,-769395600,3),(1765,-765396000,1),(1765,-747248400,0),(1765,-733946400,1),(1765,-715798800,0),(1765,-702496800,1),(1765,-684349200,0),(1765,-671047200,1),(1765,-652899600,0),(1765,-639597600,1),(1765,-620845200,0),(1765,-608148000,1),(1765,-589395600,0),(1765,-576093600,1),(1765,-557946000,0),(1765,-544644000,1),(1765,-526496400,0),(1765,-513194400,1),(1765,-495046800,0),(1765,-481744800,1),(1765,-463597200,0),(1765,-447271200,1),(1765,-431542800,0),(1765,-415821600,1),(1765,-400093200,0),(1765,-384372000,1),(1765,-368643600,0),(1765,-352922400,1),(1765,-337194000,0),(1765,-321472800,1),(1765,-305744400,0),(1765,-289418400,1),(1765,-273690000,0),(1765,-257968800,1),(1765,-242240400,0),(1765,-226519200,1),(1765,-210790800,0),(1765,-195069600,1),(1765,-179341200,0),(1765,-163620000,1),(1765,-147891600,0),(1765,-131565600,1),(1765,-116442000,0),(1765,-100116000,1),(1765,-84387600,0),(1765,-68666400,1),(1765,-52938000,0),(1765,-37216800,1),(1765,-21488400,0),(1765,-5767200,1),(1765,9961200,0),(1765,25682400,1),(1765,41410800,0),(1765,57736800,1),(1765,73465200,0),(1765,89186401,1),(1765,104914802,0),(1765,120636002,1),(1765,126687603,0),(1765,152085603,1),(1765,162370804,0),(1765,183535204,1),(1765,199263605,0),(1765,215589605,1),(1765,230713206,0),(1765,247039206,1),(1765,262767607,0),(1765,278488807,1),(1765,294217208,0),(1765,309938408,1),(1765,325666809,0),(1765,341388009,1),(1765,357116409,0),(1765,372837610,1),(1765,388566010,0),(1765,404892011,1),(1765,420015611,0),(1765,436341612,1),(1765,452070012,0),(1765,467791212,1),(1765,483519612,0),(1765,499240813,1),(1765,514969213,0),(1765,530690413,1),(1765,544604413,0),(1765,562140013,1),(1765,576054014,0),(1765,594194414,1),(1765,607503614,0),(1765,625644014,1),(1765,638953215,0),(1765,657093615,1),(1765,671007616,0),(1765,688543216,1),(1765,702457216,0),(1765,719992817,1),(1765,733906817,0),(1765,752047218,1),(1765,765356418,0),(1765,783496819,1),(1765,796806019,0),(1765,814946419,1),(1765,828860420,0),(1765,846396020,1),(1765,860310020,0),(1765,877845621,1),(1765,891759621,0),(1765,909295221,1),(1765,923209222,0),(1765,941349622,1),(1765,954658822,0),(1765,972799222,1),(1765,986108422,0),(1765,1004248822,1),(1765,1018162822,0),(1765,1035698422,1),(1765,1049612422,0),(1765,1067148022,1),(1765,1081062022,0),(1765,1099202422,1),(1765,1112511622,0),(1765,1130652022,1),(1765,1143961223,0),(1765,1162101623,1),(1765,1173596423,0),(1765,1194156023,1),(1765,1205046023,0),(1765,1225605623,1),(1765,1236495624,0),(1765,1257055224,1),(1765,1268550024,0),(1765,1289109624,1),(1765,1299999624,0),(1765,1320559224,1),(1765,1331449224,0),(1765,1352008825,1),(1765,1362898825,0),(1765,1383458425,1),(1765,1394348425,0),(1765,1414908025,1),(1765,1425798025,0),(1765,1446357626,1),(1765,1457852426,0),(1765,1478412026,1),(1765,1489302027,0),(1765,1509861627,1),(1765,1520751627,0),(1765,1541311227,1),(1765,1552201227,0),(1765,1572760827,1),(1765,1583650827,0),(1765,1604210427,1),(1765,1615705227,0),(1765,1636264827,1),(1765,1647154827,0),(1765,1667714427,1),(1765,1678604427,0),(1765,1699164027,1),(1765,1710054027,0),(1765,1730613627,1),(1765,1741503627,0),(1765,1762063227,1),(1765,1772953227,0),(1765,1793512827,1),(1765,1805007627,0),(1765,1825567227,1),(1765,1836457227,0),(1765,1857016827,1),(1765,1867906827,0),(1765,1888466427,1),(1765,1899356427,0),(1765,1919916027,1),(1765,1930806027,0),(1765,1951365627,1),(1765,1962860427,0),(1765,1983420027,1),(1765,1994310027,0),(1765,2014869627,1),(1765,2025759627,0),(1765,2046319227,1),(1765,2057209227,0),(1765,2077768827,1),(1765,2088658827,0),(1765,2109218427,1),(1765,2120108427,0),(1765,2140668027,1),(1766,-1157283000,1),(1766,-1155436200,0),(1766,-880198200,1),(1766,-765376200,0),(1766,-712150200,2),(1767,-1633276800,0),(1767,-1615136400,1),(1767,-1601827200,0),(1767,-1583686800,1),(1767,-880214400,2),(1767,-769395600,3),(1767,-765392400,1),(1767,-715795200,0),(1767,-702493200,1),(1767,-684345600,0),(1767,-671043600,1),(1767,-652896000,0),(1767,-639594000,1),(1767,-620841600,0),(1767,-608144400,1),(1767,-589392000,0),(1767,-576090000,1),(1767,-557942400,0),(1767,-544640400,1),(1767,-526492800,0),(1767,-513190800,1),(1767,-495043200,0),(1767,-481741200,1),(1767,-463593600,0),(1767,-447267600,1),(1767,-431539200,0),(1767,-415818000,1),(1767,-400089600,0),(1767,-386787600,1),(1767,-368640000,0),(1767,-355338000,1),(1767,-337190400,0),(1767,-321469200,1),(1767,-305740800,0),(1767,-289414800,1),(1767,-273686400,0),(1767,-257965200,1),(1767,-242236800,4),(1767,-195066000,1),(1767,-84384000,0),(1767,-68662800,1),(1767,-52934400,0),(1767,-37213200,1),(1767,-21484800,0),(1767,-5763600,1),(1767,9964800,0),(1767,25686000,1),(1767,41414400,0),(1767,57740400,1),(1767,73468800,0),(1767,89190001,1),(1767,104918402,0),(1767,120639602,1),(1767,126691203,0),(1767,152089203,1),(1767,162374404,0),(1767,183538804,1),(1767,199267205,0),(1767,215593205,1),(1767,230716806,0),(1767,247042806,1),(1767,262771207,0),(1767,278492407,1),(1767,294220808,0),(1767,309942008,1),(1767,325670409,0),(1767,341391609,1),(1767,357120009,0),(1767,372841210,1),(1767,388569610,0),(1767,404895611,1),(1767,420019211,0),(1767,436345212,1),(1767,452073612,0),(1767,467794812,1),(1767,483523212,0),(1767,499244413,1),(1767,514972813,0),(1767,530694013,1),(1767,544608013,0),(1767,562143613,1),(1767,576057614,0),(1767,594198014,1),(1767,607507214,0),(1767,625647614,1),(1767,638956815,0),(1767,657097215,1),(1767,671011216,0),(1767,688546816,4),(1767,1143961223,0),(1767,1162105223,1),(1767,1173600023,0),(1767,1194159623,1),(1767,1205049623,0),(1767,1225609223,1),(1767,1236499224,0),(1767,1257058824,1),(1767,1268553624,0),(1767,1289113224,1),(1767,1300003224,0),(1767,1320562824,1),(1767,1331452824,0),(1767,1352012425,1),(1767,1362902425,0),(1767,1383462025,1),(1767,1394352025,0),(1767,1414911625,1),(1767,1425801625,0),(1767,1446361226,1),(1767,1457856026,0),(1767,1478415626,1),(1767,1489305627,0),(1767,1509865227,1),(1767,1520755227,0),(1767,1541314827,1),(1767,1552204827,0),(1767,1572764427,1),(1767,1583654427,0),(1767,1604214027,1),(1767,1615708827,0),(1767,1636268427,1),(1767,1647158427,0),(1767,1667718027,1),(1767,1678608027,0),(1767,1699167627,1),(1767,1710057627,0),(1767,1730617227,1),(1767,1741507227,0),(1767,1762066827,1),(1767,1772956827,0),(1767,1793516427,1),(1767,1805011227,0),(1767,1825570827,1),(1767,1836460827,0),(1767,1857020427,1),(1767,1867910427,0),(1767,1888470027,1),(1767,1899360027,0),(1767,1919919627,1),(1767,1930809627,0),(1767,1951369227,1),(1767,1962864027,0),(1767,1983423627,1),(1767,1994313627,0),(1767,2014873227,1),(1767,2025763227,0),(1767,2046322827,1),(1767,2057212827,0),(1767,2077772427,1),(1767,2088662427,0),(1767,2109222027,1),(1767,2120112027,0),(1767,2140671627,1),(1768,-2051202469,1),(1768,-1724083200,2),(1768,-880218000,3),(1768,-769395600,4),(1768,-765396000,2),(1768,-684349200,5),(1768,-671047200,2),(1768,104914802,5),(1768,120636002,2),(1768,126687603,5),(1768,152085603,2),(1768,167814004,5),(1768,183535204,2),(1768,199263605,5),(1768,215589605,2),(1768,230713206,5),(1768,247039206,2),(1768,262767607,5),(1768,278488807,2),(1768,294217208,5),(1768,309938408,2),(1768,325666809,5),(1768,341388009,2),(1768,357116409,5),(1768,372837610,2),(1768,388566010,5),(1768,404892011,2),(1768,420015611,5),(1768,436341612,2),(1768,452070012,5),(1768,467791212,2),(1768,483519612,5),(1768,499240813,2),(1768,514969213,5),(1768,530690413,2),(1768,544604413,5),(1768,562140013,2),(1768,576054014,5),(1768,594194414,2),(1768,607503614,5),(1768,625644014,2),(1768,638953215,5),(1768,657093615,2),(1768,671007616,5),(1768,688543216,2),(1768,702457216,5),(1768,719992817,2),(1768,733906817,5),(1768,752047218,2),(1768,765356418,5),(1768,783496819,2),(1768,796806019,5),(1768,814946419,2),(1768,828860420,5),(1768,846396020,2),(1768,860310020,5),(1768,877845621,2),(1768,891759621,5),(1768,909295221,2),(1768,923209222,5),(1768,941349622,2),(1768,954658822,5),(1768,972799222,2),(1768,986108422,5),(1768,1004248822,2),(1768,1018162822,5),(1768,1035698422,2),(1768,1049612422,5),(1768,1067148022,2),(1768,1081062022,5),(1768,1099202422,2),(1768,1112511622,5),(1768,1130652022,2),(1768,1143961223,5),(1768,1162101623,2),(1768,1173596423,5),(1768,1194156023,2),(1768,1205046023,5),(1768,1225605623,2),(1768,1236495624,5),(1768,1257055224,2),(1768,1268550024,5),(1768,1289109624,2),(1768,1299999624,5),(1768,1320559224,2),(1768,1331449224,5),(1768,1352008825,2),(1768,1362898825,5),(1768,1383458425,2),(1768,1394348425,5),(1768,1414908025,2),(1768,1425798025,5),(1768,1446357626,2),(1768,1457852426,5),(1768,1478412026,2),(1768,1489302027,5),(1768,1509861627,2),(1768,1520751627,5),(1768,1541311227,2),(1768,1552201227,5),(1768,1572760827,2),(1768,1583650827,5),(1768,1604210427,2),(1768,1615705227,5),(1768,1636264827,2),(1768,1647154827,5),(1768,1667714427,2),(1768,1678604427,5),(1768,1699164027,2),(1768,1710054027,5),(1768,1730613627,2),(1768,1741503627,5),(1768,1762063227,2),(1768,1772953227,5),(1768,1793512827,2),(1768,1805007627,5),(1768,1825567227,2),(1768,1836457227,5),(1768,1857016827,2),(1768,1867906827,5),(1768,1888466427,2),(1768,1899356427,5),(1768,1919916027,2),(1768,1930806027,5),(1768,1951365627,2),(1768,1962860427,5),(1768,1983420027,2),(1768,1994310027,5),(1768,2014869627,2),(1768,2025759627,5),(1768,2046319227,2),(1768,2057209227,5),(1768,2077768827,2),(1768,2088658827,5),(1768,2109218427,2),(1768,2120108427,5),(1768,2140668027,2),(1769,-1633273200,0),(1769,-1615132800,1),(1769,-1601823600,0),(1769,-1583683200,1),(1769,-1570374000,0),(1769,-1551628800,1),(1769,-1538924400,0),(1769,-1534089600,1),(1769,-880210800,2),(1769,-769395600,3),(1769,-765388800,1),(1769,-147884400,0),(1769,-131558400,1),(1769,-116434800,0),(1769,-100108800,1),(1769,-84380400,0),(1769,-68659200,1),(1769,-52930800,0),(1769,-37209600,1),(1769,-21481200,0),(1769,-5760000,1),(1769,9968400,0),(1769,25689600,1),(1769,41418000,0),(1769,57744000,1),(1769,73472400,0),(1769,89193601,1),(1769,104922002,0),(1769,120643202,1),(1769,126694803,0),(1769,152092803,1),(1769,162378004,0),(1769,183542404,1),(1769,199270805,0),(1769,215596805,1),(1769,230720406,0),(1769,247046406,1),(1769,262774807,0),(1769,278496007,1),(1769,294224408,0),(1769,309945608,1),(1769,325674009,0),(1769,341395209,1),(1769,357123609,0),(1769,372844810,1),(1769,388573210,0),(1769,404899211,1),(1769,420022811,0),(1769,436348812,1),(1769,452077212,0),(1769,467798412,1),(1769,483526812,0),(1769,499248013,1),(1769,514976413,0),(1769,530697613,1),(1769,544611613,0),(1769,562147213,1),(1769,576061214,0),(1769,594201614,1),(1769,607510814,0),(1769,625651214,1),(1769,638960415,0),(1769,657100815,1),(1769,671014816,0),(1769,688550416,1),(1769,702464416,0),(1769,720000017,1),(1769,733914017,0),(1769,752054418,1),(1769,765363618,0),(1769,783504019,1),(1769,796813219,0),(1769,814953619,1),(1769,828867620,0),(1769,846403220,1),(1769,860317220,0),(1769,877852821,1),(1769,891766821,0),(1769,909302421,1),(1769,923216422,0),(1769,941356822,1),(1769,954666022,0),(1769,972806422,1),(1769,986115622,0),(1769,1004256022,1),(1769,1018170022,0),(1769,1035705622,1),(1769,1049619622,0),(1769,1067155222,1),(1769,1081069222,0),(1769,1099209622,1),(1769,1112518822,0),(1769,1130659222,1),(1769,1143968423,0),(1769,1162108823,1),(1769,1173603623,0),(1769,1194163223,1),(1769,1205053223,0),(1769,1225612823,1),(1769,1236502824,0),(1769,1257062424,1),(1769,1268557224,0),(1769,1289116824,1),(1769,1300006824,0),(1769,1320566424,1),(1769,1331456424,0),(1769,1352016025,1),(1769,1362906025,0),(1769,1383465625,1),(1769,1394355625,0),(1769,1414915225,1),(1769,1425805225,0),(1769,1446364826,1),(1769,1457859626,0),(1769,1478419226,1),(1769,1489309227,0),(1769,1509868827,1),(1769,1520758827,0),(1769,1541318427,1),(1769,1552208427,0),(1769,1572768027,1),(1769,1583658027,0),(1769,1604217627,1),(1769,1615712427,0),(1769,1636272027,1),(1769,1647162027,0),(1769,1667721627,1),(1769,1678611627,0),(1769,1699171227,1),(1769,1710061227,0),(1769,1730620827,1),(1769,1741510827,0),(1769,1762070427,1),(1769,1772960427,0),(1769,1793520027,1),(1769,1805014827,0),(1769,1825574427,1),(1769,1836464427,0),(1769,1857024027,1),(1769,1867914027,0),(1769,1888473627,1),(1769,1899363627,0),(1769,1919923227,1),(1769,1930813227,0),(1769,1951372827,1),(1769,1962867627,0),(1769,1983427227,1),(1769,1994317227,0),(1769,2014876827,1),(1769,2025766827,0),(1769,2046326427,1),(1769,2057216427,0),(1769,2077776027,1),(1769,2088666027,0),(1769,2109225627,1),(1769,2120115627,0),(1769,2140675227,1),(1770,-1633269600,0),(1770,-1615129200,1),(1770,-1601820000,0),(1770,-1583679600,1),(1770,-880207200,2),(1770,-769395600,3),(1770,-765385200,1),(1770,-687967140,0),(1770,-662655600,1),(1770,-620838000,0),(1770,-608137200,1),(1770,-589388400,0),(1770,-576082800,1),(1770,-557938800,0),(1770,-544633200,1),(1770,-526489200,0),(1770,-513183600,1),(1770,-495039600,0),(1770,-481734000,1),(1770,-463590000,0),(1770,-450284400,1),(1770,-431535600,0),(1770,-418230000,1),(1770,-400086000,0),(1770,-386780400,1),(1770,-368636400,0),(1770,-355330800,1),(1770,-337186800,0),(1770,-323881200,1),(1770,-305737200,0),(1770,-292431600,1),(1770,-273682800,0),(1770,-260982000,1),(1770,-242233200,0),(1770,-226508400,1),(1770,-210783600,0),(1770,-195058800,1),(1770,-179334000,0),(1770,-163609200,1),(1770,-147884400,0),(1770,-131554800,1),(1770,-116434800,0),(1770,-100105200,1),(1770,-84376800,0),(1770,-68655600,1),(1770,-52927200,0),(1770,-37206000,1),(1770,-21477600,0),(1770,-5756400,1),(1770,9972000,0),(1770,25693200,1),(1770,41421600,0),(1770,57747600,1),(1770,73476000,0),(1770,89197201,1),(1770,104925602,0),(1770,120646802,1),(1770,126698403,0),(1770,152096403,1),(1770,162381604,0),(1770,183546004,1),(1770,199274405,0),(1770,215600405,1),(1770,230724006,0),(1770,247050006,1),(1770,262778407,0),(1770,278499607,1),(1770,294228008,0),(1770,309949208,1),(1770,325677609,0),(1770,341398809,1),(1770,357127209,0),(1770,372848410,1),(1770,388576810,0),(1770,404902811,1),(1770,420026411,0),(1770,436352412,1),(1770,452080812,0),(1770,467802012,1),(1770,483530412,0),(1770,499251613,1),(1770,514980013,0),(1770,530701213,1),(1770,544615213,0),(1770,562150813,1),(1770,576064814,0),(1770,594205214,1),(1770,607514414,0),(1770,625654814,1),(1770,638964015,0),(1770,657104415,1),(1770,671018416,0),(1770,688554016,1),(1770,702468016,0),(1770,720003617,1),(1770,733917617,0),(1770,752058018,1),(1770,765367218,0),(1770,783507619,1),(1770,796816819,0),(1770,814957219,1),(1770,828871220,0),(1770,846406820,1),(1770,860320820,0),(1770,877856421,1),(1770,891770421,0),(1770,909306021,1),(1770,923220022,0),(1770,941360422,1),(1770,954669622,0),(1770,972810022,1),(1770,986119222,0),(1770,1004259622,1),(1770,1018173622,0),(1770,1035709222,1),(1770,1049623222,0),(1770,1067158822,1),(1770,1081072822,0),(1770,1099213222,1),(1770,1112522422,0),(1770,1130662822,1),(1770,1143972023,0),(1770,1162112423,1),(1770,1173607223,0),(1770,1194166823,1),(1770,1205056823,0),(1770,1225616423,1),(1770,1236506424,0),(1770,1257066024,1),(1770,1268560824,0),(1770,1289120424,1),(1770,1300010424,0),(1770,1320570024,1),(1770,1331460024,0),(1770,1352019625,1),(1770,1362909625,0),(1770,1383469225,1),(1770,1394359225,0),(1770,1414918825,1),(1770,1425808825,0),(1770,1446368426,1),(1770,1457863226,0),(1770,1478422826,1),(1770,1489312827,0),(1770,1509872427,1),(1770,1520762427,0),(1770,1541322027,1),(1770,1552212027,0),(1770,1572771627,1),(1770,1583661627,0),(1770,1604221227,1),(1770,1615716027,0),(1770,1636275627,1),(1770,1647165627,0),(1770,1667725227,1),(1770,1678615227,0),(1770,1699174827,1),(1770,1710064827,0),(1770,1730624427,1),(1770,1741514427,0),(1770,1762074027,1),(1770,1772964027,0),(1770,1793523627,1),(1770,1805018427,0),(1770,1825578027,1),(1770,1836468027,0),(1770,1857027627,1),(1770,1867917627,0),(1770,1888477227,1),(1770,1899367227,0),(1770,1919926827,1),(1770,1930816827,0),(1770,1951376427,1),(1770,1962871227,0),(1770,1983430827,1),(1770,1994320827,0),(1770,2014880427,1),(1770,2025770427,0),(1770,2046330027,1),(1770,2057220027,0),(1770,2077779627,1),(1770,2088669627,0),(1770,2109229227,1),(1770,2120119227,0),(1770,2140678827,1),(1771,-1633269600,0),(1771,-1615129200,1),(1771,-1601820000,0),(1771,-1583679600,1),(1771,-880207200,2),(1771,-769395600,3),(1771,-765385200,1),(1771,-687967140,0),(1771,-662655600,1),(1771,-620838000,0),(1771,-608137200,1),(1771,-589388400,0),(1771,-576082800,1),(1771,-557938800,0),(1771,-544633200,1),(1771,-526489200,0),(1771,-513183600,1),(1771,-495039600,0),(1771,-481734000,1),(1771,-463590000,0),(1771,-450284400,1),(1771,-431535600,0),(1771,-418230000,1),(1771,-400086000,0),(1771,-386780400,1),(1771,-368636400,0),(1771,-355330800,1),(1771,-337186800,0),(1771,-323881200,1),(1771,-305737200,0),(1771,-292431600,1),(1771,-273682800,0),(1771,-260982000,1),(1771,-242233200,0),(1771,-226508400,1),(1771,-210783600,0),(1771,-195058800,1),(1771,-179334000,0),(1771,-163609200,1),(1771,-147884400,0),(1771,-131554800,1),(1771,-116434800,0),(1771,-100105200,1),(1771,-84376800,0),(1771,-68655600,1),(1771,-52927200,0),(1771,-37206000,1),(1771,-21477600,0),(1771,-5756400,1),(1771,9972000,0),(1771,25693200,1),(1771,41421600,0),(1771,57747600,1),(1771,73476000,0),(1771,89197201,1),(1771,104925602,0),(1771,120646802,1),(1771,126698403,0),(1771,152096403,1),(1771,162381604,0),(1771,183546004,1),(1771,199274405,0),(1771,215600405,1),(1771,230724006,0),(1771,247050006,1),(1771,262778407,0),(1771,278499607,1),(1771,294228008,0),(1771,309949208,1),(1771,325677609,0),(1771,341398809,1),(1771,357127209,0),(1771,372848410,1),(1771,388576810,0),(1771,404902811,1),(1771,420026411,0),(1771,436352412,1),(1771,452080812,0),(1771,467802012,1),(1771,483530412,0),(1771,499251613,1),(1771,514980013,0),(1771,530701213,1),(1771,544615213,0),(1771,562150813,1),(1771,576064814,0),(1771,594205214,1),(1771,607514414,0),(1771,625654814,1),(1771,638964015,0),(1771,657104415,1),(1771,671018416,0),(1771,688554016,1),(1771,702468016,0),(1771,720003617,1),(1771,733917617,0),(1771,752058018,1),(1771,765367218,0),(1771,783507619,1),(1771,796816819,0),(1771,814957219,1),(1771,828871220,0),(1771,846406820,1),(1771,860320820,0),(1771,877856421,1),(1771,891770421,0),(1771,909306021,1),(1771,923220022,0),(1771,941360422,1),(1771,954669622,0),(1771,972810022,1),(1771,986119222,0),(1771,1004259622,1),(1771,1018173622,0),(1771,1035709222,1),(1771,1049623222,0),(1771,1067158822,1),(1771,1081072822,0),(1771,1099213222,1),(1771,1112522422,0),(1771,1130662822,1),(1771,1143972023,0),(1771,1162112423,1),(1771,1173607223,0),(1771,1194166823,1),(1771,1205056823,0),(1771,1225616423,1),(1771,1236506424,0),(1771,1257066024,1),(1771,1268560824,0),(1771,1289120424,1),(1771,1300010424,0),(1771,1320570024,1),(1771,1331460024,0),(1771,1352019625,1),(1771,1362909625,0),(1771,1383469225,1),(1771,1394359225,0),(1771,1414918825,1),(1771,1425808825,0),(1771,1446368426,1),(1771,1457863226,0),(1771,1478422826,1),(1771,1489312827,0),(1771,1509872427,1),(1771,1520762427,0),(1771,1541322027,1),(1771,1552212027,0),(1771,1572771627,1),(1771,1583661627,0),(1771,1604221227,1),(1771,1615716027,0),(1771,1636275627,1),(1771,1647165627,0),(1771,1667725227,1),(1771,1678615227,0),(1771,1699174827,1),(1771,1710064827,0),(1771,1730624427,1),(1771,1741514427,0),(1771,1762074027,1),(1771,1772964027,0),(1771,1793523627,1),(1771,1805018427,0),(1771,1825578027,1),(1771,1836468027,0),(1771,1857027627,1),(1771,1867917627,0),(1771,1888477227,1),(1771,1899367227,0),(1771,1919926827,1),(1771,1930816827,0),(1771,1951376427,1),(1771,1962871227,0),(1771,1983430827,1),(1771,1994320827,0),(1771,2014880427,1),(1771,2025770427,0),(1771,2046330027,1),(1771,2057220027,0),(1771,2077779627,1),(1771,2088669627,0),(1771,2109229227,1),(1771,2120119227,0),(1771,2140678827,1),(1772,-1861879032,1),(1775,-1688265017,2),(1775,-1656819079,1),(1775,-1641353479,2),(1775,-1627965079,3),(1775,-1618716679,1),(1775,-1596429079,3),(1775,-1593820800,4),(1775,-1589860800,5),(1775,-1542427200,6),(1775,-1539493200,7),(1775,-1525323600,6),(1775,-1522728000,5),(1775,-1491188400,8),(1775,-1247536800,5),(1775,354920409,6),(1775,370728010,5),(1775,386456410,6),(1775,402264011,5),(1775,417992411,6),(1775,433800012,5),(1775,449614812,6),(1775,465346812,9),(1775,481071612,10),(1775,496796413,9),(1775,512521213,10),(1775,528246013,9),(1775,543970813,10),(1775,559695613,9),(1775,575420414,10),(1775,591145214,9),(1775,606870014,10),(1775,622594814,9),(1775,638319615,10),(1775,654649215,9),(1775,670374016,11),(1775,686102416,12),(1775,695779216,9),(1775,701823616,10),(1775,717548417,9),(1775,733273217,10),(1775,748998018,9),(1775,764722818,10),(1775,780447619,9),(1775,796172419,10),(1775,811897219,9),(1775,828226820,10),(1775,846370820,9),(1775,859676420,10),(1775,877820421,9),(1775,891126021,10),(1775,909270021,9),(1775,922575622,10),(1775,941324422,9),(1775,954025222,10),(1775,972774022,9),(1775,985474822,10),(1775,1004223622,9),(1775,1017529222,10),(1775,1035673222,9),(1775,1048978822,10),(1775,1067122822,9),(1775,1080428422,10),(1775,1099177222,9),(1775,1111878022,10),(1775,1130626822,9),(1775,1143327623,10),(1775,1162076423,9),(1775,1174777223,10),(1775,1193526023,9),(1775,1206831623,10),(1775,1224975623,9),(1775,1238281224,10),(1775,1256425224,9),(1775,1269730824,10),(1775,1288479624,9),(1775,1301180424,13),(1775,1414274425,9),(1776,228877206,0),(1776,243997206,1),(1776,260326807,0),(1776,276051607,1),(1776,291776408,0),(1776,307501208,1),(1776,323830809,0),(1776,338950809,1),(1776,354675609,0),(1776,370400410,1),(1776,386125210,0),(1776,401850011,1),(1776,417574811,0),(1776,433299612,1),(1776,449024412,0),(1776,465354012,1),(1776,481078812,0),(1776,496803613,1),(1776,512528413,0),(1776,528253213,1),(1776,543978013,0),(1776,559702813,1),(1776,575427614,0),(1776,591152414,1),(1776,606877214,0),(1776,622602014,1),(1776,638326815,0),(1776,654656415,1),(1776,670381216,0),(1776,686106016,1),(1776,701830816,0),(1776,717555617,1),(1776,733280417,0),(1776,749005218,1),(1776,764730018,0),(1776,780454819,1),(1776,796179619,0),(1776,811904419,1),(1776,828234020,0),(1776,846378020,1),(1776,859683620,0),(1776,877827621,1),(1776,891133221,0),(1776,909277221,1),(1776,922582822,0),(1776,941331622,1),(1776,954032422,0),(1776,972781222,1),(1776,985482022,0),(1776,1004230822,1),(1776,1017536422,0),(1776,1035680422,1),(1776,1048986022,0),(1776,1067130022,1),(1776,1080435622,0),(1776,1099184422,1),(1776,1111885222,0),(1776,1130634022,1),(1776,1143334823,0),(1776,1162083623,1),(1776,1174784423,0),(1776,1193533223,1),(1776,1206838823,0),(1776,1224982823,1),(1776,1238288424,0),(1776,1256432424,1),(1776,1269738024,0),(1776,1288486824,1),(1776,1301187624,0),(1776,1319936424,1),(1776,1332637224,0),(1776,1351386025,1),(1776,1364691625,0),(1776,1382835625,1),(1776,1396141225,0),(1776,1414285225,1),(1776,1427590825,0),(1776,1445734826,1),(1776,1459040426,0),(1776,1477789226,1),(1776,1490490027,0),(1776,1509238827,1),(1776,1521939627,0),(1776,1540688427,1),(1776,1553994027,0),(1776,1572138027,1),(1776,1585443627,0),(1776,1603587627,1),(1776,1616893227,0),(1776,1635642027,1),(1776,1648342827,0),(1776,1667091627,1),(1776,1679792427,0),(1776,1698541227,1),(1776,1711846827,0),(1776,1729990827,1),(1776,1743296427,0),(1776,1761440427,1),(1776,1774746027,0),(1776,1792890027,1),(1776,1806195627,0),(1776,1824944427,1),(1776,1837645227,0),(1776,1856394027,1),(1776,1869094827,0),(1776,1887843627,1),(1776,1901149227,0),(1776,1919293227,1),(1776,1932598827,0),(1776,1950742827,1),(1776,1964048427,0),(1776,1982797227,1),(1776,1995498027,0),(1776,2014246827,1),(1776,2026947627,0),(1776,2045696427,1),(1776,2058397227,0),(1776,2077146027,1),(1776,2090451627,0),(1776,2108595627,1),(1776,2121901227,0),(1776,2140045227,1);
/*!40000 ALTER TABLE `time_zone_transition` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `time_zone_transition_type`
--
DROP TABLE IF EXISTS `time_zone_transition_type`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `time_zone_transition_type` (
`Time_zone_id` int(10) unsigned NOT NULL,
`Transition_type_id` int(10) unsigned NOT NULL,
`Offset` int(11) NOT NULL DEFAULT '0',
`Is_DST` tinyint(3) unsigned NOT NULL DEFAULT '0',
`Abbreviation` char(8) NOT NULL DEFAULT '',
PRIMARY KEY (`Time_zone_id`,`Transition_type_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transition types';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `time_zone_transition_type`
--
LOCK TABLES `time_zone_transition_type` WRITE;
/*!40000 ALTER TABLE `time_zone_transition_type` DISABLE KEYS */;
INSERT INTO `time_zone_transition_type` VALUES (1,0,-968,0,'LMT'),(1,1,0,0,'GMT'),(2,0,-52,0,'LMT'),(2,1,1200,1,'+0020'),(2,2,0,0,'GMT'),(3,0,8836,0,'LMT'),(3,1,10800,0,'EAT'),(3,2,9000,0,'+0230'),(3,3,9900,0,'+0245'),(3,4,10800,0,'EAT'),(4,0,561,0,'PMT'),(4,1,3600,1,'WEST'),(4,2,0,0,'WET'),(4,3,0,0,'WET'),(4,4,7200,1,'CEST'),(4,5,3600,0,'CET'),(4,6,3600,1,'WEST'),(5,0,8836,0,'LMT'),(5,1,10800,0,'EAT'),(5,2,9000,0,'+0230'),(5,3,9900,0,'+0245'),(5,4,10800,0,'EAT'),(6,0,8836,0,'LMT'),(6,1,10800,0,'EAT'),(6,2,9000,0,'+0230'),(6,3,9900,0,'+0245'),(6,4,10800,0,'EAT'),(7,0,-968,0,'LMT'),(7,1,0,0,'GMT'),(8,0,816,0,'LMT'),(8,1,3600,0,'WAT'),(9,0,-968,0,'LMT'),(9,1,0,0,'GMT'),(10,0,-3740,0,'LMT'),(10,1,-3600,0,'-01'),(10,2,0,0,'GMT'),(11,0,7820,0,'LMT'),(11,1,7200,0,'CAT'),(12,0,816,0,'LMT'),(12,1,3600,0,'WAT'),(13,0,7820,0,'LMT'),(13,1,7200,0,'CAT'),(14,0,10800,1,'EEST'),(14,1,7200,0,'EET'),(14,2,10800,1,'EEST'),(15,0,-1820,0,'LMT'),(15,1,3600,1,'WEST'),(15,2,0,0,'WET'),(15,3,3600,0,'CET'),(15,4,0,0,'WET'),(16,0,0,0,'WET'),(16,1,3600,1,'WEST'),(16,2,0,0,'WET'),(16,3,3600,0,'CET'),(16,4,7200,1,'CEST'),(16,5,3600,0,'CET'),(17,0,-968,0,'LMT'),(17,1,0,0,'GMT'),(18,0,-968,0,'LMT'),(18,1,0,0,'GMT'),(19,0,8836,0,'LMT'),(19,1,10800,0,'EAT'),(19,2,9000,0,'+0230'),(19,3,9900,0,'+0245'),(19,4,10800,0,'EAT'),(20,0,8836,0,'LMT'),(20,1,10800,0,'EAT'),(20,2,9000,0,'+0230'),(20,3,9900,0,'+0245'),(20,4,10800,0,'EAT'),(21,0,816,0,'LMT'),(21,1,3600,0,'WAT'),(22,0,-3168,0,'LMT'),(22,1,-3600,0,'-01'),(22,2,3600,1,'WEST'),(22,3,0,0,'WET'),(23,0,-968,0,'LMT'),(23,1,0,0,'GMT'),(24,0,7820,0,'LMT'),(24,1,7200,0,'CAT'),(25,0,7820,0,'LMT'),(25,1,7200,0,'CAT'),(26,0,5400,0,'SAST'),(26,1,10800,1,'SAST'),(26,2,7200,0,'SAST'),(27,0,7588,0,'LMT'),(27,1,10800,1,'CAST'),(27,2,7200,0,'CAT'),(27,3,10800,0,'EAT'),(28,0,8836,0,'LMT'),(28,1,10800,0,'EAT'),(28,2,9000,0,'+0230'),(28,3,9900,0,'+0245'),(28,4,10800,0,'EAT'),(29,0,7808,0,'LMT'),(29,1,10800,1,'CAST'),(29,2,7200,0,'CAT'),(29,3,10800,0,'EAT'),(29,4,7200,0,'CAT'),(30,0,7820,0,'LMT'),(30,1,7200,0,'CAT'),(31,0,816,0,'LMT'),(31,1,3600,0,'WAT'),(32,0,816,0,'LMT'),(32,1,3600,0,'WAT'),(33,0,816,0,'LMT'),(33,1,3600,0,'WAT'),(34,0,-968,0,'LMT'),(34,1,0,0,'GMT'),(35,0,816,0,'LMT'),(35,1,3600,0,'WAT'),(36,0,7820,0,'LMT'),(36,1,7200,0,'CAT'),(37,0,7820,0,'LMT'),(37,1,7200,0,'CAT'),(38,0,816,0,'LMT'),(38,1,3600,0,'WAT'),(39,0,7820,0,'LMT'),(39,1,7200,0,'CAT'),(40,0,5400,0,'SAST'),(40,1,10800,1,'SAST'),(40,2,7200,0,'SAST'),(41,0,5400,0,'SAST'),(41,1,10800,1,'SAST'),(41,2,7200,0,'SAST'),(42,0,8836,0,'LMT'),(42,1,10800,0,'EAT'),(42,2,9000,0,'+0230'),(42,3,9900,0,'+0245'),(42,4,10800,0,'EAT'),(43,0,-2588,0,'MMT'),(43,1,-2670,0,'MMT'),(43,2,0,0,'GMT'),(44,0,8836,0,'LMT'),(44,1,10800,0,'EAT'),(44,2,9000,0,'+0230'),(44,3,9900,0,'+0245'),(44,4,10800,0,'EAT'),(45,0,3612,0,'LMT'),(45,1,3600,0,'WAT'),(45,2,7200,1,'WAST'),(46,0,816,0,'LMT'),(46,1,3600,0,'WAT'),(47,0,-968,0,'LMT'),(47,1,0,0,'GMT'),(48,0,-968,0,'LMT'),(48,1,0,0,'GMT'),(49,0,816,0,'LMT'),(49,1,3600,0,'WAT'),(50,0,-2205,0,'LMT'),(50,1,0,0,'GMT'),(50,2,3600,0,'WAT'),(51,0,-968,0,'LMT'),(51,1,0,0,'GMT'),(52,0,3164,0,'LMT'),(52,1,7200,1,'CEST'),(52,2,3600,0,'CET'),(52,3,7200,0,'EET'),(53,0,561,0,'PMT'),(53,1,7200,1,'CEST'),(53,2,3600,0,'CET'),(53,3,3600,0,'CET'),(53,4,7200,1,'CEST'),(54,0,5400,0,'+0130'),(54,1,7200,0,'SAST'),(54,2,10800,1,'SAST'),(54,3,7200,0,'CAT'),(54,4,3600,0,'WAT'),(54,5,7200,1,'CAT'),(54,6,7200,0,'CAT'),(55,0,-39600,0,'NST'),(55,1,-36000,1,'NWT'),(55,2,-36000,1,'NPT'),(55,3,-39600,0,'BST'),(55,4,-36000,1,'BDT'),(55,5,-36000,0,'AHST'),(55,6,-32400,1,'HDT'),(55,7,-36000,0,'HST'),(56,0,-36000,0,'AST'),(56,1,-32400,1,'AWT'),(56,2,-32400,1,'APT'),(56,3,-36000,0,'AHST'),(56,4,-32400,1,'AHDT'),(56,5,-32400,0,'YST'),(56,6,-28800,1,'AKDT'),(56,7,-32400,0,'AKST'),(57,0,-14764,0,'LMT'),(57,1,-14400,0,'AST'),(58,0,-14764,0,'LMT'),(58,1,-14400,0,'AST'),(59,0,-11568,0,'LMT'),(59,1,-7200,1,'-02'),(59,2,-10800,0,'-03'),(60,0,-15408,0,'CMT'),(60,1,-14400,0,'-04'),(60,2,-10800,1,'-03'),(60,3,-7200,1,'-02'),(60,4,-10800,0,'-03'),(61,0,-15408,0,'CMT'),(61,1,-14400,0,'-04'),(61,2,-10800,1,'-03'),(61,3,-7200,1,'-02'),(61,4,-10800,0,'-03'),(62,0,-15408,0,'CMT'),(62,1,-14400,0,'-04'),(62,2,-10800,1,'-03'),(62,3,-7200,1,'-02'),(62,4,-10800,0,'-03'),(63,0,-15408,0,'CMT'),(63,1,-14400,0,'-04'),(63,2,-10800,1,'-03'),(63,3,-7200,1,'-02'),(63,4,-10800,0,'-03'),(64,0,-15408,0,'CMT'),(64,1,-14400,0,'-04'),(64,2,-10800,1,'-03'),(64,3,-7200,1,'-02'),(64,4,-10800,0,'-03'),(65,0,-15408,0,'CMT'),(65,1,-14400,0,'-04'),(65,2,-10800,1,'-03'),(65,3,-7200,1,'-02'),(65,4,-10800,0,'-03'),(66,0,-15408,0,'CMT'),(66,1,-14400,0,'-04'),(66,2,-10800,1,'-03'),(66,3,-7200,1,'-02'),(66,4,-10800,0,'-03'),(67,0,-15408,0,'CMT'),(67,1,-14400,0,'-04'),(67,2,-10800,1,'-03'),(67,3,-7200,1,'-02'),(67,4,-10800,0,'-03'),(68,0,-15408,0,'CMT'),(68,1,-14400,0,'-04'),(68,2,-10800,1,'-03'),(68,3,-7200,1,'-02'),(68,4,-10800,0,'-03'),(69,0,-15408,0,'CMT'),(69,1,-14400,0,'-04'),(69,2,-10800,1,'-03'),(69,3,-7200,1,'-02'),(69,4,-10800,0,'-03'),(70,0,-15408,0,'CMT'),(70,1,-14400,0,'-04'),(70,2,-10800,1,'-03'),(70,3,-7200,1,'-02'),(70,4,-10800,0,'-03'),(70,5,-10800,1,'-03'),(71,0,-15408,0,'CMT'),(71,1,-14400,0,'-04'),(71,2,-10800,1,'-03'),(71,3,-7200,1,'-02'),(71,4,-10800,0,'-03'),(72,0,-15408,0,'CMT'),(72,1,-14400,0,'-04'),(72,2,-10800,1,'-03'),(72,3,-7200,1,'-02'),(72,4,-10800,0,'-03'),(73,0,-16547,0,'LMT'),(73,1,-16200,0,'-0430'),(73,2,-14400,0,'AST'),(74,0,-13840,0,'AMT'),(74,1,-14400,0,'-04'),(74,2,-10800,0,'-03'),(74,3,-10800,1,'-03'),(74,4,-14400,0,'-04'),(75,0,-18000,1,'CDT'),(75,1,-21600,0,'CST'),(75,2,-18000,1,'CWT'),(75,3,-18000,1,'CPT'),(75,4,-18000,0,'EST'),(76,0,-39600,0,'NST'),(76,1,-36000,1,'NWT'),(76,2,-36000,1,'NPT'),(76,3,-39600,0,'BST'),(76,4,-36000,1,'BDT'),(76,5,-36000,0,'AHST'),(76,6,-32400,1,'HDT'),(76,7,-36000,0,'HST'),(77,0,-9244,0,'LMT'),(77,1,-7200,1,'-02'),(77,2,-10800,0,'-03'),(78,0,-25260,0,'LMT'),(78,1,-25200,0,'MST'),(78,2,-21600,0,'CST'),(78,3,-28800,0,'PST'),(78,4,-21600,1,'MDT'),(78,5,-18000,1,'CDT'),(78,6,-21600,0,'CST'),(79,0,-14309,0,'LMT'),(79,1,-14309,0,'BMT'),(79,2,-10800,1,'ADT'),(79,3,-14400,0,'AST'),(80,0,-11636,0,'LMT'),(80,1,-7200,1,'-02'),(80,2,-10800,0,'-03'),(81,0,-21168,0,'LMT'),(81,1,-19800,1,'-0530'),(81,2,-21600,0,'CST'),(81,3,-18000,1,'CDT'),(82,0,-10800,1,'ADT'),(82,1,-14400,0,'AST'),(82,2,-10800,1,'AWT'),(82,3,-10800,1,'APT'),(83,0,-14560,0,'LMT'),(83,1,-10800,1,'-03'),(83,2,-14400,0,'-04'),(84,0,-17776,0,'BMT'),(84,1,-14400,1,'-04'),(84,2,-18000,0,'-05'),(85,0,-25200,1,'PDT'),(85,1,-28800,0,'PST'),(85,2,-21600,1,'MWT'),(85,3,-21600,1,'MPT'),(85,4,-25200,0,'MST'),(85,5,-21600,1,'MDT'),(86,0,-15408,0,'CMT'),(86,1,-14400,0,'-04'),(86,2,-10800,1,'-03'),(86,3,-7200,1,'-02'),(86,4,-10800,0,'-03'),(87,0,0,0,'-00'),(87,1,-21600,1,'MWT'),(87,2,-21600,1,'MPT'),(87,3,-25200,0,'MST'),(87,4,-18000,1,'MDDT'),(87,5,-21600,1,'MDT'),(87,6,-18000,1,'CDT'),(87,7,-21600,0,'CST'),(87,8,-18000,0,'EST'),(87,9,-21600,1,'MDT'),(87,10,-25200,0,'MST'),(88,0,-13108,0,'LMT'),(88,1,-10800,1,'-03'),(88,2,-14400,0,'-04'),(89,0,-20824,0,'LMT'),(89,1,-21600,0,'CST'),(89,2,-14400,1,'EDT'),(89,3,-18000,0,'EST'),(89,4,-18000,1,'CDT'),(90,0,-16060,0,'CMT'),(90,1,-16200,0,'-0430'),(90,2,-14400,0,'-04'),(91,0,-15408,0,'CMT'),(91,1,-14400,0,'-04'),(91,2,-10800,1,'-03'),(91,3,-7200,1,'-02'),(91,4,-10800,0,'-03'),(92,0,-12560,0,'LMT'),(92,1,-14400,0,'-04'),(92,2,-10800,0,'-03'),(93,0,-19176,0,'CMT'),(93,1,-18000,0,'EST'),(94,0,-18000,1,'CDT'),(94,1,-21600,0,'CST'),(94,2,-18000,0,'EST'),(94,3,-18000,1,'CWT'),(94,4,-18000,1,'CPT'),(94,5,-21600,0,'CST'),(95,0,-25460,0,'LMT'),(95,1,-25200,0,'MST'),(95,2,-21600,0,'CST'),(95,3,-18000,1,'CDT'),(95,4,-21600,1,'MDT'),(95,5,-25200,0,'MST'),(96,0,-18000,1,'CDT'),(96,1,-21600,0,'CST'),(96,2,-18000,1,'CWT'),(96,3,-18000,1,'CPT'),(96,4,-18000,0,'EST'),(97,0,-15408,0,'CMT'),(97,1,-14400,0,'-04'),(97,2,-10800,1,'-03'),(97,3,-7200,1,'-02'),(97,4,-10800,0,'-03'),(98,0,-20173,0,'SJMT'),(98,1,-18000,1,'CDT'),(98,2,-21600,0,'CST'),(99,0,-25200,0,'MST'),(99,1,-28800,0,'PST'),(99,2,-25200,0,'MST'),(100,0,-13460,0,'LMT'),(100,1,-10800,1,'-03'),(100,2,-14400,0,'-04'),(101,0,-16547,0,'LMT'),(101,1,-16200,0,'-0430'),(101,2,-14400,0,'AST'),(102,0,-4480,0,'LMT'),(102,1,-10800,0,'-03'),(102,2,-10800,0,'-03'),(102,3,-7200,1,'-02'),(102,4,-7200,1,'-02'),(102,5,0,0,'GMT'),(103,0,-28800,1,'YDT'),(103,1,-32400,0,'YST'),(103,2,-28800,1,'YWT'),(103,3,-28800,1,'YPT'),(103,4,-25200,1,'YDDT'),(103,5,-28800,0,'PST'),(103,6,-25200,1,'PDT'),(104,0,-25200,1,'PDT'),(104,1,-28800,0,'PST'),(104,2,-25200,1,'PWT'),(104,3,-25200,1,'PPT'),(104,4,-25200,0,'MST'),(105,0,-21600,1,'MDT'),(105,1,-25200,0,'MST'),(105,2,-21600,1,'MWT'),(105,3,-21600,1,'MPT'),(106,0,-19931,0,'LMT'),(106,1,-21600,0,'CST'),(106,2,-18000,0,'EST'),(106,3,-14400,1,'EWT'),(106,4,-14400,1,'EPT'),(106,5,-14400,1,'EDT'),(107,0,-14764,0,'LMT'),(107,1,-14400,0,'AST'),(108,0,-27232,0,'LMT'),(108,1,-21600,1,'MDT'),(108,2,-25200,0,'MST'),(108,3,-21600,1,'MWT'),(108,4,-21600,1,'MPT'),(109,0,-16768,0,'LMT'),(109,1,-14400,1,'-04'),(109,2,-18000,0,'-05'),(109,3,-14400,0,'-04'),(109,4,-18000,0,'-05'),(110,0,-21408,0,'LMT'),(110,1,-18000,1,'CDT'),(110,2,-21600,0,'CST'),(111,0,-28084,0,'LMT'),(111,1,-25200,0,'MST'),(111,2,-28800,0,'PST'),(111,3,-25200,1,'PDT'),(111,4,-25200,1,'PWT'),(111,5,-25200,1,'PPT'),(112,0,-25200,1,'PDT'),(112,1,-28800,0,'PST'),(112,2,-25200,1,'PWT'),(112,3,-25200,1,'PPT'),(112,4,-25200,0,'MST'),(113,0,-18000,1,'CDT'),(113,1,-21600,0,'CST'),(113,2,-18000,1,'CWT'),(113,3,-18000,1,'CPT'),(113,4,-18000,0,'EST'),(113,5,-14400,1,'EDT'),(114,0,-9240,0,'LMT'),(114,1,-7200,1,'-02'),(114,2,-10800,0,'-03'),(115,0,-14388,0,'LMT'),(115,1,-10800,1,'ADT'),(115,2,-14400,0,'AST'),(115,3,-10800,1,'AWT'),(115,4,-10800,1,'APT'),(116,0,-12416,0,'LMT'),(116,1,-10800,0,'-03'),(116,2,-10800,0,'-03'),(116,3,-7200,1,'-02'),(116,4,-7200,1,'-02'),(117,0,-12652,0,'NST'),(117,1,-9052,1,'NDT'),(117,2,-12600,0,'NST'),(117,3,-9000,1,'NDT'),(117,4,-9000,1,'NPT'),(117,5,-9000,1,'NWT'),(117,6,-10800,1,'ADT'),(117,7,-14400,0,'AST'),(117,8,-7200,1,'ADDT'),(117,9,-10800,1,'ADT'),(118,0,-18430,0,'KMT'),(118,1,-18000,0,'EST'),(118,2,-14400,1,'EDT'),(118,3,-14400,0,'AST'),(118,4,-18000,0,'EST'),(119,0,-14764,0,'LMT'),(119,1,-14400,0,'AST'),(120,0,-14764,0,'LMT'),(120,1,-14400,0,'AST'),(121,0,-21724,0,'LMT'),(121,1,-18000,1,'CDT'),(121,2,-21600,0,'CST'),(122,0,-18840,0,'QMT'),(122,1,-14400,1,'-04'),(122,2,-18000,0,'-05'),(123,0,-13960,0,'LMT'),(123,1,-13500,0,'-0345'),(123,2,-10800,0,'-03'),(123,3,-14400,0,'-04'),(124,0,-15264,0,'LMT'),(124,1,-10800,1,'ADT'),(124,2,-14400,0,'AST'),(124,3,-10800,1,'AWT'),(124,4,-10800,1,'APT'),(125,0,-19776,0,'HMT'),(125,1,-14400,1,'CDT'),(125,2,-18000,0,'CST'),(125,3,-18000,0,'CST'),(125,4,-14400,1,'CDT'),(126,0,-26632,0,'LMT'),(126,1,-25200,0,'MST'),(126,2,-21600,0,'CST'),(126,3,-28800,0,'PST'),(126,4,-21600,1,'MDT'),(126,5,-25200,0,'MST'),(127,0,-18000,1,'CDT'),(127,1,-21600,0,'CST'),(127,2,-18000,1,'CWT'),(127,3,-18000,1,'CPT'),(127,4,-18000,0,'EST'),(127,5,-14400,1,'EDT'),(128,0,-18000,1,'CDT'),(128,1,-21600,0,'CST'),(128,2,-18000,1,'CWT'),(128,3,-18000,1,'CPT'),(128,4,-18000,0,'EST'),(128,5,-21600,0,'CST'),(129,0,-18000,1,'CDT'),(129,1,-21600,0,'CST'),(129,2,-18000,1,'CWT'),(129,3,-18000,1,'CPT'),(129,4,-18000,0,'EST'),(129,5,-14400,1,'EDT'),(130,0,-18000,1,'CDT'),(130,1,-21600,0,'CST'),(130,2,-18000,1,'CWT'),(130,3,-18000,1,'CPT'),(130,4,-18000,0,'EST'),(130,5,-14400,1,'EDT'),(131,0,-18000,1,'CDT'),(131,1,-21600,0,'CST'),(131,2,-18000,1,'CWT'),(131,3,-18000,1,'CPT'),(131,4,-18000,0,'EST'),(131,5,-14400,1,'EDT'),(131,6,-18000,1,'CDT'),(131,7,-21600,0,'CST'),(132,0,-18000,1,'CDT'),(132,1,-21600,0,'CST'),(132,2,-18000,1,'CWT'),(132,3,-18000,1,'CPT'),(132,4,-18000,0,'EST'),(132,5,-14400,1,'EDT'),(133,0,-18000,1,'CDT'),(133,1,-21600,0,'CST'),(133,2,-18000,1,'CWT'),(133,3,-18000,1,'CPT'),(133,4,-18000,0,'EST'),(133,5,-14400,1,'EDT'),(134,0,-18000,1,'CDT'),(134,1,-21600,0,'CST'),(134,2,-18000,1,'CWT'),(134,3,-18000,1,'CPT'),(134,4,-18000,0,'EST'),(134,5,-14400,1,'EDT'),(135,0,-18000,1,'CDT'),(135,1,-21600,0,'CST'),(135,2,-18000,1,'CWT'),(135,3,-18000,1,'CPT'),(135,4,-18000,0,'EST'),(135,5,-14400,1,'EDT'),(136,0,0,0,'-00'),(136,1,-21600,1,'PDDT'),(136,2,-28800,0,'PST'),(136,3,-25200,0,'MST'),(136,4,-21600,1,'MDT'),(137,0,0,0,'-00'),(137,1,-14400,1,'EPT'),(137,2,-18000,0,'EST'),(137,3,-10800,1,'EDDT'),(137,4,-14400,1,'EDT'),(137,5,-14400,1,'EWT'),(137,6,-21600,0,'CST'),(137,7,-18000,1,'CDT'),(137,8,-14400,1,'EDT'),(137,9,-18000,0,'EST'),(138,0,-18430,0,'KMT'),(138,1,-18000,0,'EST'),(138,2,-14400,1,'EDT'),(139,0,-15408,0,'CMT'),(139,1,-14400,0,'-04'),(139,2,-10800,1,'-03'),(139,3,-7200,1,'-02'),(139,4,-10800,0,'-03'),(140,0,-28800,0,'PST'),(140,1,-25200,1,'PWT'),(140,2,-25200,1,'PPT'),(140,3,-25200,1,'PDT'),(140,4,-28800,1,'YDT'),(140,5,-32400,0,'YST'),(140,6,-28800,1,'AKDT'),(140,7,-32400,0,'AKST'),(141,0,-18000,1,'CDT'),(141,1,-21600,0,'CST'),(141,2,-18000,1,'CWT'),(141,3,-18000,1,'CPT'),(141,4,-18000,0,'EST'),(141,5,-14400,1,'EDT'),(142,0,-18000,1,'CDT'),(142,1,-21600,0,'CST'),(142,2,-18000,1,'CWT'),(142,3,-18000,1,'CPT'),(142,4,-14400,1,'EDT'),(142,5,-18000,0,'EST'),(143,0,-18000,1,'CDT'),(143,1,-21600,0,'CST'),(143,2,-18000,1,'CWT'),(143,3,-18000,1,'CPT'),(143,4,-18000,0,'EST'),(143,5,-21600,0,'CST'),(144,0,-16547,0,'LMT'),(144,1,-16200,0,'-0430'),(144,2,-14400,0,'AST'),(145,0,-16356,0,'CMT'),(145,1,-12756,1,'BST'),(145,2,-14400,0,'-04'),(146,0,-18516,0,'LMT'),(146,1,-14400,1,'-04'),(146,2,-18000,0,'-05'),(147,0,-25200,1,'PDT'),(147,1,-28800,0,'PST'),(147,2,-25200,1,'PWT'),(147,3,-25200,1,'PPT'),(148,0,-18000,1,'CDT'),(148,1,-21600,0,'CST'),(148,2,-18000,1,'CWT'),(148,3,-18000,1,'CPT'),(148,4,-18000,0,'EST'),(148,5,-14400,1,'EDT'),(149,0,-16547,0,'LMT'),(149,1,-16200,0,'-0430'),(149,2,-14400,0,'AST'),(150,0,-8572,0,'LMT'),(150,1,-7200,1,'-02'),(150,2,-10800,0,'-03'),(151,0,-20712,0,'MMT'),(151,1,-21600,0,'CST'),(151,2,-18000,0,'EST'),(151,3,-18000,1,'CDT'),(151,4,-21600,0,'CST'),(152,0,-14404,0,'LMT'),(152,1,-10800,1,'-03'),(152,2,-14400,0,'-04'),(153,0,-14764,0,'LMT'),(153,1,-14400,0,'AST'),(154,0,-14660,0,'FFMT'),(154,1,-14400,0,'AST'),(154,2,-10800,1,'ADT'),(155,0,-24000,0,'LMT'),(155,1,-21600,0,'CST'),(155,2,-18000,1,'CDT'),(156,0,-25540,0,'LMT'),(156,1,-25200,0,'MST'),(156,2,-21600,0,'CST'),(156,3,-28800,0,'PST'),(156,4,-21600,1,'MDT'),(156,5,-25200,0,'MST'),(157,0,-15408,0,'CMT'),(157,1,-14400,0,'-04'),(157,2,-10800,1,'-03'),(157,3,-7200,1,'-02'),(157,4,-10800,0,'-03'),(158,0,-18000,1,'CDT'),(158,1,-21600,0,'CST'),(158,2,-18000,1,'CWT'),(158,3,-18000,1,'CPT'),(158,4,-18000,0,'EST'),(158,5,-21600,0,'CST'),(159,0,-21508,0,'LMT'),(159,1,-21600,0,'CST'),(159,2,-18000,0,'EST'),(159,3,-18000,1,'CDT'),(159,4,-21600,0,'CST'),(160,0,-28800,0,'PST'),(160,1,-25200,1,'PWT'),(160,2,-25200,1,'PPT'),(160,3,-25200,1,'PDT'),(160,4,-32400,0,'AKST'),(160,5,-28800,1,'AKDT'),(161,0,-23796,0,'LMT'),(161,1,-25200,0,'MST'),(161,2,-21600,0,'CST'),(161,3,-18000,1,'CDT'),(161,4,-18000,1,'CWT'),(162,0,-13480,0,'LMT'),(162,1,-14400,0,'AST'),(162,2,-10800,0,'-03'),(162,3,-7200,1,'-02'),(163,0,-18000,0,'EST'),(163,1,-10800,1,'ADT'),(163,2,-14400,0,'AST'),(163,3,-10800,1,'AWT'),(163,4,-10800,1,'APT'),(164,0,-24076,0,'LMT'),(164,1,-21600,0,'CST'),(164,2,-18000,1,'CDT'),(165,0,-13491,0,'LMT'),(165,1,-13491,0,'MMT'),(165,2,-14400,0,'-04'),(165,3,-12600,0,'-0330'),(165,4,-10800,1,'-03'),(165,5,-10800,0,'-03'),(165,6,-9000,1,'-0230'),(165,7,-7200,1,'-02'),(165,8,-5400,1,'-0130'),(165,9,-7200,1,'-02'),(166,0,-14400,1,'EDT'),(166,1,-18000,0,'EST'),(166,2,-14400,1,'EWT'),(166,3,-14400,1,'EPT'),(167,0,-14764,0,'LMT'),(167,1,-14400,0,'AST'),(168,0,-18570,0,'LMT'),(168,1,-14400,1,'EDT'),(168,2,-18000,0,'EST'),(169,0,-14400,1,'EDT'),(169,1,-18000,0,'EST'),(169,2,-14400,1,'EWT'),(169,3,-14400,1,'EPT'),(170,0,-14400,1,'EDT'),(170,1,-18000,0,'EST'),(170,2,-14400,1,'EWT'),(170,3,-14400,1,'EPT'),(171,0,-39600,0,'NST'),(171,1,-36000,1,'NWT'),(171,2,-36000,1,'NPT'),(171,3,-39600,0,'BST'),(171,4,-36000,1,'BDT'),(171,5,-32400,0,'YST'),(171,6,-28800,1,'AKDT'),(171,7,-32400,0,'AKST'),(172,0,-7780,0,'LMT'),(172,1,-3600,1,'-01'),(172,2,-7200,0,'-02'),(173,0,-21600,1,'MDT'),(173,1,-25200,0,'MST'),(173,2,-21600,1,'MWT'),(173,3,-21600,1,'MPT'),(173,4,-18000,1,'CDT'),(173,5,-21600,0,'CST'),(174,0,-21600,1,'MDT'),(174,1,-25200,0,'MST'),(174,2,-21600,1,'MWT'),(174,3,-21600,1,'MPT'),(174,4,-18000,1,'CDT'),(174,5,-21600,0,'CST'),(175,0,-21600,1,'MDT'),(175,1,-25200,0,'MST'),(175,2,-21600,1,'MWT'),(175,3,-21600,1,'MPT'),(175,4,-18000,1,'CDT'),(175,5,-21600,0,'CST'),(176,0,-25060,0,'LMT'),(176,1,-25200,0,'MST'),(176,2,-21600,0,'CST'),(176,3,-18000,1,'CDT'),(176,4,-21600,1,'MDT'),(176,5,-25200,0,'MST'),(177,0,-19176,0,'CMT'),(177,1,-18000,0,'EST'),(178,0,0,0,'-00'),(178,1,-10800,1,'AWT'),(178,2,-10800,1,'APT'),(178,3,-14400,0,'AST'),(178,4,-7200,1,'ADDT'),(178,5,-10800,1,'ADT'),(178,6,-14400,1,'EDT'),(178,7,-18000,0,'EST'),(178,8,-21600,0,'CST'),(178,9,-18000,1,'CDT'),(178,10,-14400,1,'EDT'),(178,11,-18000,0,'EST'),(179,0,-13240,0,'LMT'),(179,1,-13252,0,'PMT'),(179,2,-13236,0,'PMT'),(179,3,-12600,0,'-0330'),(179,4,-10800,0,'-03'),(180,0,-21600,1,'MDT'),(180,1,-25200,0,'MST'),(180,2,-21600,1,'MWT'),(181,0,-17340,0,'PPMT'),(181,1,-14400,1,'EDT'),(181,2,-18000,0,'EST'),(181,3,-14400,1,'EDT'),(181,4,-18000,0,'EST'),(182,0,-14764,0,'LMT'),(182,1,-14400,0,'AST'),(183,0,-16272,0,'LMT'),(183,1,-14400,1,'-04'),(183,2,-18000,0,'-05'),(183,3,-14400,0,'-04'),(183,4,-18000,0,'-05'),(184,0,-15336,0,'LMT'),(184,1,-10800,1,'-03'),(184,2,-14400,0,'-04'),(185,0,-14400,0,'AST'),(185,1,-10800,1,'APT'),(185,2,-10800,1,'AWT'),(186,0,-16966,0,'SMT'),(186,1,-18000,0,'-05'),(186,2,-14400,0,'-04'),(186,3,-14400,1,'-04'),(186,4,-10800,1,'-03'),(186,5,-14400,0,'-04'),(186,6,-10800,0,'-03'),(187,0,-18000,1,'CDT'),(187,1,-21600,0,'CST'),(187,2,-18000,1,'CWT'),(187,3,-18000,1,'CPT'),(188,0,0,0,'-00'),(188,1,-14400,1,'CDDT'),(188,2,-21600,0,'CST'),(188,3,-18000,1,'CDT'),(188,4,-18000,0,'EST'),(188,5,-21600,0,'CST'),(189,0,-8376,0,'LMT'),(189,1,-7200,1,'-02'),(189,2,-10800,0,'-03'),(190,0,-25116,0,'LMT'),(190,1,-21600,1,'MDT'),(190,2,-25200,0,'MST'),(190,3,-21600,1,'MWT'),(190,4,-21600,1,'MPT'),(190,5,-21600,0,'CST'),(191,0,0,0,'-00'),(191,1,-14400,1,'CDDT'),(191,2,-21600,0,'CST'),(191,3,-18000,1,'CDT'),(191,4,-18000,0,'EST'),(191,5,-21600,0,'CST'),(192,0,-16272,0,'LMT'),(192,1,-14400,1,'-04'),(192,2,-18000,0,'-05'),(192,3,-14400,0,'-04'),(192,4,-18000,0,'-05'),(193,0,-15408,0,'CMT'),(193,1,-14400,0,'-04'),(193,2,-10800,1,'-03'),(193,3,-7200,1,'-02'),(193,4,-10800,0,'-03'),(194,0,-28084,0,'LMT'),(194,1,-25200,0,'MST'),(194,2,-28800,0,'PST'),(194,3,-25200,1,'PDT'),(194,4,-25200,1,'PWT'),(194,5,-25200,1,'PPT'),(195,0,-13128,0,'LMT'),(195,1,-10800,1,'-03'),(195,2,-14400,0,'-04'),(195,3,-10800,0,'-03'),(196,0,-16966,0,'SMT'),(196,1,-18000,0,'-05'),(196,2,-14400,0,'-04'),(196,3,-14400,1,'-04'),(196,4,-10800,1,'-03'),(196,5,-10800,1,'-03'),(196,6,-14400,0,'-04'),(197,0,-16800,0,'SDMT'),(197,1,-14400,1,'EDT'),(197,2,-18000,0,'EST'),(197,3,-16200,1,'-0430'),(197,4,-14400,0,'AST'),(198,0,-11188,0,'LMT'),(198,1,-7200,1,'-02'),(198,2,-10800,0,'-03'),(199,0,-5272,0,'LMT'),(199,1,-7200,0,'-02'),(199,2,-3600,1,'-01'),(199,3,-7200,0,'-02'),(199,4,-3600,0,'-01'),(199,5,0,1,'+00'),(199,6,0,1,'+00'),(200,0,-21600,1,'MDT'),(200,1,-25200,0,'MST'),(200,2,-21600,1,'MWT'),(200,3,-21600,1,'MPT'),(201,0,-28800,0,'PST'),(201,1,-25200,1,'PWT'),(201,2,-25200,1,'PPT'),(201,3,-25200,1,'PDT'),(201,4,-32400,0,'YST'),(201,5,-28800,1,'AKDT'),(201,6,-32400,0,'AKST'),(202,0,-14764,0,'LMT'),(202,1,-14400,0,'AST'),(203,0,-9052,1,'NDT'),(203,1,-12652,0,'NST'),(203,2,-9000,1,'NDT'),(203,3,-12600,0,'NST'),(203,4,-9000,1,'NPT'),(203,5,-9000,1,'NWT'),(203,6,-5400,1,'NDDT'),(203,7,-9000,1,'NDT'),(204,0,-14764,0,'LMT'),(204,1,-14400,0,'AST'),(205,0,-14764,0,'LMT'),(205,1,-14400,0,'AST'),(206,0,-14764,0,'LMT'),(206,1,-14400,0,'AST'),(207,0,-14764,0,'LMT'),(207,1,-14400,0,'AST'),(208,0,-25880,0,'LMT'),(208,1,-21600,1,'MDT'),(208,2,-25200,0,'MST'),(208,3,-21600,1,'MWT'),(208,4,-21600,1,'MPT'),(208,5,-21600,0,'CST'),(209,0,-20932,0,'LMT'),(209,1,-18000,1,'CDT'),(209,2,-21600,0,'CST'),(210,0,-16508,0,'LMT'),(210,1,-10800,1,'ADT'),(210,2,-14400,0,'AST'),(211,0,-21600,0,'CST'),(211,1,-18000,0,'EST'),(211,2,-14400,1,'EWT'),(211,3,-14400,1,'EPT'),(211,4,-14400,1,'EDT'),(212,0,-28084,0,'LMT'),(212,1,-25200,0,'MST'),(212,2,-28800,0,'PST'),(212,3,-25200,1,'PDT'),(212,4,-25200,1,'PWT'),(212,5,-25200,1,'PPT'),(213,0,-14400,1,'EDT'),(213,1,-18000,0,'EST'),(213,2,-14400,1,'EWT'),(213,3,-14400,1,'EPT'),(214,0,-14764,0,'LMT'),(214,1,-14400,0,'AST'),(215,0,-25200,1,'PDT'),(215,1,-28800,0,'PST'),(215,2,-25200,1,'PWT'),(215,3,-25200,1,'PPT'),(216,0,-14764,0,'LMT'),(216,1,-14400,0,'AST'),(217,0,-28800,1,'YDT'),(217,1,-32400,0,'YST'),(217,2,-28800,1,'YWT'),(217,3,-28800,1,'YPT'),(217,4,-25200,1,'YDDT'),(217,5,-28800,0,'PST'),(217,6,-25200,1,'PDT'),(218,0,-18000,1,'CDT'),(218,1,-21600,0,'CST'),(218,2,-18000,1,'CWT'),(218,3,-18000,1,'CPT'),(218,4,-18000,1,'CDT'),(218,5,-21600,0,'CST'),(219,0,-32400,0,'YST'),(219,1,-28800,1,'YWT'),(219,2,-28800,1,'YPT'),(219,3,-28800,1,'YDT'),(219,4,-28800,1,'AKDT'),(219,5,-32400,0,'AKST'),(220,0,0,0,'-00'),(220,1,-21600,1,'MWT'),(220,2,-21600,1,'MPT'),(220,3,-25200,0,'MST'),(220,4,-18000,1,'MDDT'),(220,5,-21600,1,'MDT'),(221,0,0,0,'-00'),(221,1,28800,0,'+08'),(221,2,39600,0,'+11'),(221,3,28800,0,'+08'),(222,0,0,0,'-00'),(222,1,25200,0,'+07'),(222,2,18000,0,'+05'),(222,3,25200,0,'+07'),(223,0,0,0,'-00'),(223,1,36000,0,'+10'),(224,0,36000,0,'AEST'),(224,1,39600,1,'AEDT'),(224,2,0,0,'-00'),(224,3,39600,1,'AEDT'),(224,4,36000,0,'AEST'),(224,5,39600,0,'+11'),(225,0,0,0,'-00'),(225,1,21600,0,'+06'),(225,2,18000,0,'+05'),(226,0,45000,1,'NZST'),(226,1,41400,0,'NZMT'),(226,2,43200,1,'NZST'),(226,3,46800,1,'NZDT'),(226,4,43200,0,'NZST'),(226,5,43200,0,'NZST'),(227,0,0,0,'-00'),(227,1,-14400,0,'-04'),(227,2,-10800,1,'-03'),(227,3,-7200,1,'-02'),(227,4,-10800,0,'-03'),(227,5,-10800,1,'-03'),(227,6,-14400,0,'-04'),(227,7,-10800,0,'-03'),(228,0,0,0,'-00'),(228,1,-10800,0,'-03'),(229,0,45000,1,'NZST'),(229,1,41400,0,'NZMT'),(229,2,43200,1,'NZST'),(229,3,46800,1,'NZDT'),(229,4,43200,0,'NZST'),(229,5,43200,0,'NZST'),(230,0,0,0,'-00'),(230,1,10800,0,'+03'),(231,0,0,0,'-00'),(231,1,7200,1,'+02'),(231,2,0,0,'+00'),(231,3,0,0,'+00'),(232,0,0,0,'-00'),(232,1,21600,0,'+06'),(233,0,7200,1,'CEST'),(233,1,3600,0,'CET'),(233,2,3600,0,'CET'),(233,3,7200,1,'CEST'),(233,4,7200,1,'CEST'),(233,5,3600,0,'CET'),(234,0,11212,0,'LMT'),(234,1,10800,0,'+03'),(235,0,18468,0,'LMT'),(235,1,18000,0,'+05'),(235,2,25200,1,'+07'),(235,3,21600,0,'+06'),(235,4,21600,0,'+06'),(235,5,25200,1,'+07'),(235,6,21600,1,'+06'),(235,7,18000,0,'+05'),(235,8,25200,1,'+07'),(235,9,21600,0,'+06'),(236,0,8624,0,'LMT'),(236,1,10800,1,'EEST'),(236,2,7200,0,'EET'),(236,3,7200,0,'EET'),(236,4,10800,1,'EEST'),(237,0,42596,0,'LMT'),(237,1,43200,0,'+12'),(237,2,50400,1,'+14'),(237,3,46800,0,'+13'),(237,4,46800,1,'+13'),(237,5,43200,0,'+12'),(237,6,46800,1,'+13'),(237,7,43200,1,'+12'),(237,8,39600,0,'+11'),(237,9,43200,0,'+12'),(238,0,12064,0,'LMT'),(238,1,14400,0,'+04'),(238,2,18000,0,'+05'),(238,3,21600,0,'+06'),(238,4,21600,1,'+06'),(238,5,18000,0,'+05'),(238,6,21600,1,'+06'),(238,7,18000,1,'+05'),(238,8,14400,0,'+04'),(238,9,18000,0,'+05'),(239,0,13720,0,'LMT'),(239,1,14400,0,'+04'),(239,2,18000,0,'+05'),(239,3,21600,1,'+06'),(239,4,21600,0,'+06'),(239,5,18000,0,'+05'),(239,6,21600,1,'+06'),(239,7,18000,1,'+05'),(239,8,14400,0,'+04'),(239,9,21600,1,'+06'),(239,10,18000,0,'+05'),(240,0,14012,0,'LMT'),(240,1,14400,0,'+04'),(240,2,21600,1,'+06'),(240,3,18000,0,'+05'),(240,4,18000,0,'+05'),(240,5,21600,1,'+06'),(240,6,18000,1,'+05'),(240,7,14400,0,'+04'),(240,8,18000,0,'+05'),(241,0,14012,0,'LMT'),(241,1,14400,0,'+04'),(241,2,21600,1,'+06'),(241,3,18000,0,'+05'),(241,4,18000,0,'+05'),(241,5,21600,1,'+06'),(241,6,18000,1,'+05'),(241,7,14400,0,'+04'),(241,8,18000,0,'+05'),(242,0,12464,0,'LMT'),(242,1,10800,0,'+03'),(242,2,18000,0,'+05'),(242,3,21600,0,'+06'),(242,4,21600,1,'+06'),(242,5,18000,0,'+05'),(242,6,21600,1,'+06'),(242,7,18000,1,'+05'),(242,8,14400,0,'+04'),(242,9,18000,0,'+05'),(243,0,10656,0,'BMT'),(243,1,10800,0,'+03'),(243,2,14400,1,'+04'),(243,3,10800,0,'+03'),(243,4,14400,1,'+04'),(244,0,12368,0,'LMT'),(244,1,14400,0,'+04'),(244,2,10800,0,'+03'),(245,0,11964,0,'LMT'),(245,1,10800,0,'+03'),(245,2,18000,1,'+05'),(245,3,14400,0,'+04'),(245,4,14400,0,'+04'),(245,5,18000,1,'+05'),(245,6,14400,1,'+04'),(245,7,10800,0,'+03'),(245,8,18000,1,'+05'),(245,9,14400,0,'+04'),(246,0,24124,0,'BMT'),(246,1,25200,0,'+07'),(247,0,20100,0,'LMT'),(247,1,21600,0,'+06'),(247,2,28800,1,'+08'),(247,3,25200,0,'+07'),(247,4,25200,0,'+07'),(247,5,28800,1,'+08'),(247,6,25200,1,'+07'),(247,7,21600,0,'+06'),(247,8,25200,1,'+07'),(247,9,25200,0,'+07'),(248,0,10800,1,'EEST'),(248,1,7200,0,'EET'),(249,0,17904,0,'LMT'),(249,1,18000,0,'+05'),(249,2,25200,1,'+07'),(249,3,21600,0,'+06'),(249,4,21600,0,'+06'),(249,5,25200,1,'+07'),(249,6,21600,1,'+06'),(249,7,18000,0,'+05'),(249,8,21600,1,'+06'),(249,9,21600,0,'+06'),(250,0,27580,0,'LMT'),(250,1,27000,0,'+0730'),(250,2,28800,0,'+08'),(251,0,19270,0,'MMT'),(251,1,19800,0,'IST'),(251,2,23400,1,'+0630'),(252,0,27232,0,'LMT'),(252,1,28800,0,'+08'),(252,2,36000,1,'+10'),(252,3,32400,0,'+09'),(252,4,32400,0,'+09'),(252,5,36000,1,'+10'),(252,6,32400,1,'+09'),(252,7,28800,0,'+08'),(252,8,36000,0,'+10'),(252,9,36000,1,'+10'),(252,10,32400,0,'+09'),(253,0,27480,0,'LMT'),(253,1,25200,0,'+07'),(253,2,28800,0,'+08'),(253,3,32400,0,'+09'),(253,4,36000,1,'+10'),(253,5,32400,1,'+09'),(253,6,28800,0,'+08'),(254,0,32400,1,'CDT'),(254,1,28800,0,'CST'),(255,0,32400,1,'CDT'),(255,1,28800,0,'CST'),(256,0,19172,0,'MMT'),(256,1,19800,0,'+0530'),(256,2,21600,1,'+06'),(256,3,23400,1,'+0630'),(256,4,23400,0,'+0630'),(256,5,21600,0,'+06'),(256,6,19800,0,'+0530'),(257,0,21200,0,'HMT'),(257,1,23400,0,'+0630'),(257,2,19800,0,'+0530'),(257,3,21600,0,'+06'),(257,4,25200,1,'+07'),(258,0,8712,0,'LMT'),(258,1,10800,1,'EEST'),(258,2,7200,0,'EET'),(259,0,21200,0,'HMT'),(259,1,23400,0,'+0630'),(259,2,19800,0,'+0530'),(259,3,21600,0,'+06'),(259,4,25200,1,'+07'),(260,0,30140,0,'LMT'),(260,1,28800,0,'+08'),(260,2,32400,0,'+09'),(261,0,13272,0,'LMT'),(261,1,14400,0,'+04'),(262,0,16512,0,'LMT'),(262,1,18000,0,'+05'),(262,2,25200,1,'+07'),(262,3,21600,0,'+06'),(262,4,21600,0,'+06'),(262,5,25200,1,'+07'),(262,6,21600,1,'+06'),(262,7,18000,0,'+05'),(263,0,8148,0,'LMT'),(263,1,10800,1,'EEST'),(263,2,7200,0,'EET'),(263,3,7200,0,'EET'),(263,4,10800,1,'EEST'),(263,5,10800,0,'+03'),(263,6,7200,0,'EET'),(264,0,10800,1,'EEST'),(264,1,7200,0,'EET'),(264,2,10800,1,'IDT'),(264,3,7200,0,'IST'),(264,4,7200,0,'EET'),(265,0,32400,1,'CDT'),(265,1,28800,0,'CST'),(266,0,10800,1,'EEST'),(266,1,7200,0,'EET'),(266,2,10800,1,'IDT'),(266,3,7200,0,'IST'),(266,4,7200,0,'EET'),(267,0,25600,0,'LMT'),(267,1,25590,0,'PLMT'),(267,2,25200,0,'+07'),(267,3,28800,0,'+08'),(267,4,32400,0,'+09'),(267,5,25200,0,'+07'),(268,0,27402,0,'LMT'),(268,1,32400,1,'HKST'),(268,2,28800,0,'HKT'),(268,3,32400,0,'JST'),(268,4,28800,0,'HKT'),(269,0,21996,0,'LMT'),(269,1,21600,0,'+06'),(269,2,28800,1,'+08'),(269,3,25200,0,'+07'),(270,0,25025,0,'IMT'),(270,1,25200,0,'+07'),(270,2,32400,1,'+09'),(270,3,28800,0,'+08'),(270,4,28800,0,'+08'),(270,5,32400,1,'+09'),(270,6,28800,1,'+08'),(270,7,25200,0,'+07'),(270,8,32400,0,'+09'),(270,9,32400,1,'+09'),(270,10,28800,0,'+08'),(271,0,7016,0,'IMT'),(271,1,10800,1,'EEST'),(271,2,7200,0,'EET'),(271,3,14400,1,'+04'),(271,4,10800,0,'+03'),(271,5,10800,1,'EEST'),(271,6,7200,0,'EET'),(271,7,10800,1,'EEST'),(271,8,7200,0,'EET'),(271,9,10800,0,'+03'),(272,0,25632,0,'BMT'),(272,1,26400,0,'+0720'),(272,2,27000,0,'+0730'),(272,3,32400,0,'+09'),(272,4,28800,0,'+08'),(272,5,25200,0,'WIB'),(273,0,33768,0,'LMT'),(273,1,32400,0,'+09'),(273,2,34200,0,'+0930'),(273,3,32400,0,'WIT'),(274,0,8440,0,'JMT'),(274,1,10800,1,'IDT'),(274,2,7200,0,'IST'),(274,3,14400,1,'IDDT'),(274,4,10800,1,'IDT'),(275,0,14400,0,'+04'),(275,1,16200,0,'+0430'),(276,0,38076,0,'LMT'),(276,1,39600,0,'+11'),(276,2,46800,1,'+13'),(276,3,43200,0,'+12'),(276,4,43200,0,'+12'),(276,5,46800,1,'+13'),(276,6,43200,1,'+12'),(276,7,39600,0,'+11'),(276,8,43200,0,'+12'),(277,0,16092,0,'LMT'),(277,1,19800,0,'+0530'),(277,2,23400,1,'+0630'),(277,3,18000,0,'+05'),(277,4,21600,1,'PKST'),(277,5,18000,0,'PKT'),(278,0,21020,0,'LMT'),(278,1,21600,0,'+06'),(279,0,20476,0,'LMT'),(279,1,19800,0,'+0530'),(279,2,20700,0,'+0545'),(280,0,20476,0,'LMT'),(280,1,19800,0,'+0530'),(280,2,20700,0,'+0545'),(281,0,32533,0,'LMT'),(281,1,28800,0,'+08'),(281,2,36000,1,'+10'),(281,3,32400,0,'+09'),(281,4,32400,0,'+09'),(281,5,36000,1,'+10'),(281,6,32400,1,'+09'),(281,7,28800,0,'+08'),(281,8,39600,1,'+11'),(281,9,36000,0,'+10'),(281,10,36000,0,'+10'),(281,11,39600,0,'+11'),(281,12,32400,0,'+09'),(282,0,19270,0,'MMT'),(282,1,19800,0,'IST'),(282,2,23400,1,'+0630'),(283,0,22286,0,'LMT'),(283,1,21600,0,'+06'),(283,2,28800,1,'+08'),(283,3,25200,0,'+07'),(283,4,25200,0,'+07'),(283,5,28800,1,'+08'),(283,6,25200,1,'+07'),(283,7,21600,0,'+06'),(283,8,28800,0,'+08'),(283,9,28800,1,'+08'),(283,10,25200,0,'+07'),(284,0,24925,0,'SMT'),(284,1,25200,0,'+07'),(284,2,26400,1,'+0720'),(284,3,26400,0,'+0720'),(284,4,27000,0,'+0730'),(284,5,32400,0,'+09'),(284,6,28800,0,'+08'),(285,0,26480,0,'LMT'),(285,1,27000,0,'+0730'),(285,2,30000,1,'+0820'),(285,3,28800,0,'+08'),(285,4,32400,0,'+09'),(285,5,28800,0,'+08'),(286,0,11212,0,'LMT'),(286,1,10800,0,'+03'),(287,0,27260,0,'LMT'),(287,1,32400,1,'CDT'),(287,2,28800,0,'CST'),(287,3,28800,0,'CST'),(288,0,27260,0,'LMT'),(288,1,32400,1,'CDT'),(288,2,28800,0,'CST'),(288,3,28800,0,'CST'),(289,0,36192,0,'LMT'),(289,1,36000,0,'+10'),(289,2,43200,1,'+12'),(289,3,39600,0,'+11'),(289,4,39600,0,'+11'),(289,5,43200,1,'+12'),(289,6,39600,1,'+11'),(289,7,36000,0,'+10'),(289,8,43200,0,'+12'),(289,9,43200,1,'+12'),(289,10,39600,0,'+11'),(290,0,28656,0,'LMT'),(290,1,28656,0,'MMT'),(290,2,28800,0,'+08'),(290,3,32400,0,'+09'),(290,4,28800,0,'WITA'),(291,0,32400,1,'+09'),(291,1,28800,0,'+08'),(291,2,32400,0,'+09'),(291,3,28800,0,'+08'),(292,0,13272,0,'LMT'),(292,1,14400,0,'+04'),(293,0,8008,0,'LMT'),(293,1,10800,1,'EEST'),(293,2,7200,0,'EET'),(293,3,7200,0,'EET'),(293,4,10800,1,'EEST'),(294,0,20928,0,'LMT'),(294,1,21600,0,'+06'),(294,2,28800,1,'+08'),(294,3,25200,0,'+07'),(294,4,25200,0,'+07'),(294,5,28800,1,'+08'),(294,6,25200,1,'+07'),(294,7,21600,0,'+06'),(294,8,25200,0,'+07'),(295,0,19900,0,'LMT'),(295,1,21600,0,'+06'),(295,2,28800,1,'+08'),(295,3,25200,0,'+07'),(295,4,25200,0,'+07'),(295,5,28800,1,'+08'),(295,6,25200,1,'+07'),(295,7,21600,0,'+06'),(295,8,25200,1,'+07'),(295,9,25200,0,'+07'),(296,0,17610,0,'LMT'),(296,1,18000,0,'+05'),(296,2,25200,1,'+07'),(296,3,21600,0,'+06'),(296,4,21600,0,'+06'),(296,5,25200,1,'+07'),(296,6,21600,1,'+06'),(296,7,18000,0,'+05'),(296,8,25200,0,'+07'),(296,9,25200,1,'+07'),(296,10,21600,0,'+06'),(297,0,12324,0,'LMT'),(297,1,10800,0,'+03'),(297,2,18000,0,'+05'),(297,3,21600,1,'+06'),(297,4,21600,0,'+06'),(297,5,18000,0,'+05'),(297,6,21600,1,'+06'),(297,7,18000,1,'+05'),(297,8,14400,0,'+04'),(297,9,18000,0,'+05'),(298,0,24124,0,'BMT'),(298,1,25200,0,'+07'),(299,0,26240,0,'LMT'),(299,1,26240,0,'PMT'),(299,2,27000,0,'+0730'),(299,3,32400,0,'+09'),(299,4,28800,0,'+08'),(299,5,28800,0,'WITA'),(299,6,25200,0,'WIB'),(300,0,30180,0,'LMT'),(300,1,30600,0,'KST'),(300,2,32400,0,'JST'),(300,3,32400,0,'KST'),(301,0,12368,0,'LMT'),(301,1,14400,0,'+04'),(301,2,10800,0,'+03'),(302,0,15712,0,'LMT'),(302,1,14400,0,'+04'),(302,2,18000,0,'+05'),(302,3,21600,1,'+06'),(302,4,21600,0,'+06'),(302,5,18000,0,'+05'),(302,6,21600,1,'+06'),(302,7,18000,1,'+05'),(302,8,14400,0,'+04'),(302,9,21600,0,'+06'),(302,10,21600,1,'+06'),(303,0,23087,0,'RMT'),(303,1,23400,0,'+0630'),(303,2,32400,0,'+09'),(303,3,23400,0,'+0630'),(304,0,11212,0,'LMT'),(304,1,10800,0,'+03'),(305,0,25600,0,'LMT'),(305,1,25590,0,'PLMT'),(305,2,25200,0,'+07'),(305,3,28800,0,'+08'),(305,4,32400,0,'+09'),(305,5,25200,0,'+07'),(306,0,34248,0,'LMT'),(306,1,32400,0,'+09'),(306,2,43200,1,'+12'),(306,3,39600,0,'+11'),(306,4,39600,0,'+11'),(306,5,43200,1,'+12'),(306,6,39600,1,'+11'),(306,7,36000,0,'+10'),(306,8,39600,0,'+11'),(307,0,16073,0,'LMT'),(307,1,14400,0,'+04'),(307,2,18000,0,'+05'),(307,3,21600,1,'+06'),(307,4,21600,0,'+06'),(307,5,18000,0,'+05'),(307,6,21600,1,'+06'),(308,0,30472,0,'LMT'),(308,1,30600,0,'KST'),(308,2,32400,0,'JST'),(308,3,32400,0,'KST'),(308,4,34200,1,'KDT'),(308,5,36000,1,'KDT'),(309,0,32400,1,'CDT'),(309,1,28800,0,'CST'),(310,0,24925,0,'SMT'),(310,1,25200,0,'+07'),(310,2,26400,1,'+0720'),(310,3,26400,0,'+0720'),(310,4,27000,0,'+0730'),(310,5,32400,0,'+09'),(310,6,28800,0,'+08'),(311,0,36892,0,'LMT'),(311,1,36000,0,'+10'),(311,2,43200,1,'+12'),(311,3,39600,0,'+11'),(311,4,39600,0,'+11'),(311,5,43200,1,'+12'),(311,6,39600,1,'+11'),(311,7,36000,0,'+10'),(311,8,43200,0,'+12'),(311,9,43200,1,'+12'),(311,10,39600,0,'+11'),(312,0,28800,0,'CST'),(312,1,32400,0,'JST'),(312,2,32400,1,'CDT'),(312,3,28800,0,'CST'),(313,0,16631,0,'LMT'),(313,1,18000,0,'+05'),(313,2,25200,1,'+07'),(313,3,21600,0,'+06'),(313,4,21600,0,'+06'),(313,5,25200,1,'+07'),(313,6,21600,1,'+06'),(313,7,18000,0,'+05'),(314,0,10751,0,'TBMT'),(314,1,10800,0,'+03'),(314,2,18000,1,'+05'),(314,3,14400,0,'+04'),(314,4,14400,0,'+04'),(314,5,18000,1,'+05'),(314,6,14400,1,'+04'),(314,7,10800,0,'+03'),(314,8,14400,1,'+04'),(314,9,14400,0,'+04'),(315,0,12344,0,'LMT'),(315,1,12344,0,'TMT'),(315,2,12600,0,'+0330'),(315,3,18000,1,'+05'),(315,4,14400,0,'+04'),(315,5,16200,1,'+0430'),(315,6,12600,0,'+0330'),(316,0,8440,0,'JMT'),(316,1,10800,1,'IDT'),(316,2,7200,0,'IST'),(316,3,14400,1,'IDDT'),(316,4,10800,1,'IDT'),(317,0,21516,0,'LMT'),(317,1,19800,0,'+0530'),(317,2,21600,0,'+06'),(318,0,21516,0,'LMT'),(318,1,19800,0,'+0530'),(318,2,21600,0,'+06'),(319,0,36000,1,'JDT'),(319,1,32400,0,'JST'),(319,2,32400,0,'JST'),(320,0,20391,0,'LMT'),(320,1,21600,0,'+06'),(320,2,28800,1,'+08'),(320,3,25200,0,'+07'),(320,4,25200,0,'+07'),(320,5,28800,1,'+08'),(320,6,25200,1,'+07'),(320,7,21600,0,'+06'),(320,8,25200,1,'+07'),(320,9,25200,0,'+07'),(321,0,28656,0,'LMT'),(321,1,28656,0,'MMT'),(321,2,28800,0,'+08'),(321,3,32400,0,'+09'),(321,4,28800,0,'WITA'),(322,0,25652,0,'LMT'),(322,1,25200,0,'+07'),(322,2,32400,1,'+09'),(322,3,28800,0,'+08'),(323,0,25652,0,'LMT'),(323,1,25200,0,'+07'),(323,2,32400,1,'+09'),(323,3,28800,0,'+08'),(324,0,21020,0,'LMT'),(324,1,21600,0,'+06'),(325,0,34374,0,'LMT'),(325,1,28800,0,'+08'),(325,2,32400,0,'+09'),(325,3,39600,0,'+11'),(325,4,43200,1,'+12'),(325,5,39600,0,'+11'),(325,6,43200,1,'+12'),(325,7,39600,1,'+11'),(325,8,36000,0,'+10'),(325,9,43200,0,'+12'),(325,10,43200,1,'+12'),(325,11,36000,0,'+10'),(326,0,24124,0,'BMT'),(326,1,25200,0,'+07'),(327,0,31651,0,'LMT'),(327,1,32400,0,'+09'),(327,2,39600,1,'+11'),(327,3,36000,0,'+10'),(327,4,36000,0,'+10'),(327,5,39600,1,'+11'),(327,6,36000,1,'+10'),(327,7,32400,0,'+09'),(327,8,39600,0,'+11'),(327,9,39600,1,'+11'),(327,10,36000,0,'+10'),(328,0,31138,0,'LMT'),(328,1,28800,0,'+08'),(328,2,36000,1,'+10'),(328,3,32400,0,'+09'),(328,4,32400,0,'+09'),(328,5,36000,1,'+10'),(328,6,32400,1,'+09'),(328,7,28800,0,'+08'),(328,8,36000,0,'+10'),(328,9,36000,1,'+10'),(328,10,32400,0,'+09'),(329,0,23087,0,'RMT'),(329,1,23400,0,'+0630'),(329,2,32400,0,'+09'),(329,3,23400,0,'+0630'),(330,0,14553,0,'LMT'),(330,1,13505,0,'PMT'),(330,2,14400,0,'+04'),(330,3,21600,1,'+06'),(330,4,18000,0,'+05'),(330,5,18000,0,'+05'),(330,6,21600,1,'+06'),(330,7,18000,1,'+05'),(330,8,14400,0,'+04'),(330,9,21600,0,'+06'),(330,10,21600,1,'+06'),(330,11,18000,0,'+05'),(331,0,10680,0,'LMT'),(331,1,10800,0,'+03'),(331,2,18000,1,'+05'),(331,3,14400,0,'+04'),(331,4,14400,0,'+04'),(331,5,18000,1,'+05'),(331,6,14400,1,'+04'),(331,7,10800,0,'+03'),(331,8,18000,1,'+05'),(331,9,14400,0,'+04'),(332,0,-6872,0,'HMT'),(332,1,-3600,1,'-01'),(332,2,-7200,0,'-02'),(332,3,-3600,1,'-01'),(332,4,-7200,0,'-02'),(332,5,-7200,0,'-02'),(332,6,0,1,'+00'),(332,7,-3600,0,'-01'),(332,8,-3600,0,'-01'),(332,9,0,0,'WET'),(332,10,0,1,'+00'),(332,11,-3600,0,'-01'),(333,0,-15558,0,'LMT'),(333,1,-14400,0,'AST'),(333,2,-10800,1,'ADT'),(334,0,-3696,0,'LMT'),(334,1,-3600,0,'-01'),(334,2,0,0,'WET'),(334,3,3600,1,'WEST'),(334,4,0,0,'WET'),(334,5,3600,1,'WEST'),(335,0,-5644,0,'LMT'),(335,1,-7200,0,'-02'),(335,2,-3600,1,'-01'),(335,3,-7200,0,'-02'),(335,4,-3600,0,'-01'),(336,0,-1624,0,'LMT'),(336,1,0,0,'WET'),(336,2,3600,1,'WEST'),(336,3,0,0,'WET'),(337,0,-1624,0,'LMT'),(337,1,0,0,'WET'),(337,2,3600,1,'WEST'),(337,3,0,0,'WET'),(338,0,7200,1,'CEST'),(338,1,3600,0,'CET'),(338,2,3600,0,'CET'),(338,3,7200,1,'CEST'),(338,4,7200,1,'CEST'),(338,5,3600,0,'CET'),(339,0,-4056,0,'FMT'),(339,1,0,1,'+00'),(339,2,-3600,0,'-01'),(339,3,0,1,'+00'),(339,4,-3600,0,'-01'),(339,5,-3600,0,'-01'),(339,6,3600,1,'+01'),(339,7,3600,1,'WEST'),(339,8,0,0,'WET'),(339,9,0,0,'WET'),(339,10,0,0,'WET'),(339,11,3600,1,'WEST'),(340,0,-5280,0,'LMT'),(340,1,0,1,'+00'),(340,2,-3600,0,'-01'),(340,3,-3600,0,'-01'),(340,4,0,1,'+00'),(340,5,0,0,'GMT'),(341,0,-7200,0,'-02'),(342,0,-968,0,'LMT'),(342,1,0,0,'GMT'),(343,0,-13884,0,'SMT'),(343,1,-10800,1,'-03'),(343,2,-14400,0,'-04'),(343,3,-7200,1,'-02'),(343,4,-10800,0,'-03'),(343,5,-10800,1,'-03'),(344,0,39600,1,'AEDT'),(344,1,36000,0,'AEST'),(344,2,39600,1,'AEDT'),(344,3,36000,0,'AEST'),(345,0,37800,1,'ACDT'),(345,1,34200,0,'ACST'),(345,2,37800,1,'ACDT'),(345,3,34200,0,'ACST'),(346,0,39600,1,'AEDT'),(346,1,36000,0,'AEST'),(346,2,39600,1,'AEDT'),(346,3,36000,0,'AEST'),(347,0,37800,1,'ACDT'),(347,1,34200,0,'ACST'),(347,2,37800,1,'ACDT'),(347,3,34200,0,'ACST'),(348,0,39600,1,'AEDT'),(348,1,36000,0,'AEST'),(348,2,39600,1,'AEDT'),(348,3,36000,0,'AEST'),(349,0,36000,0,'AEST'),(349,1,39600,1,'AEDT'),(349,2,39600,1,'AEDT'),(349,3,36000,0,'AEST'),(350,0,37800,1,'ACDT'),(350,1,34200,0,'ACST'),(351,0,35100,1,'+0945'),(351,1,31500,0,'+0845'),(351,2,35100,1,'+0945'),(351,3,31500,0,'+0845'),(352,0,36000,0,'AEST'),(352,1,39600,1,'AEDT'),(352,2,39600,1,'AEDT'),(352,3,36000,0,'AEST'),(353,0,36000,0,'AEST'),(353,1,41400,1,'+1130'),(353,2,37800,0,'+1030'),(353,3,39600,1,'+11'),(354,0,39600,1,'AEDT'),(354,1,36000,0,'AEST'),(354,2,39600,1,'AEDT'),(354,3,36000,0,'AEST'),(355,0,36000,0,'AEST'),(355,1,41400,1,'+1130'),(355,2,37800,0,'+1030'),(355,3,39600,1,'+11'),(356,0,39600,1,'AEDT'),(356,1,36000,0,'AEST'),(356,2,39600,1,'AEDT'),(356,3,36000,0,'AEST'),(357,0,39600,1,'AEDT'),(357,1,36000,0,'AEST'),(357,2,39600,1,'AEDT'),(357,3,36000,0,'AEST'),(358,0,37800,1,'ACDT'),(358,1,34200,0,'ACST'),(359,0,32400,1,'AWDT'),(359,1,28800,0,'AWST'),(359,2,32400,1,'AWDT'),(359,3,28800,0,'AWST'),(360,0,39600,1,'AEDT'),(360,1,36000,0,'AEST'),(360,2,39600,1,'AEDT'),(360,3,36000,0,'AEST'),(361,0,37800,1,'ACDT'),(361,1,34200,0,'ACST'),(361,2,37800,1,'ACDT'),(361,3,34200,0,'ACST'),(362,0,39600,1,'AEDT'),(362,1,36000,0,'AEST'),(362,2,39600,1,'AEDT'),(362,3,36000,0,'AEST'),(363,0,36000,0,'AEST'),(363,1,39600,1,'AEDT'),(363,2,39600,1,'AEDT'),(363,3,36000,0,'AEST'),(364,0,39600,1,'AEDT'),(364,1,36000,0,'AEST'),(364,2,39600,1,'AEDT'),(364,3,36000,0,'AEST'),(365,0,32400,1,'AWDT'),(365,1,28800,0,'AWST'),(365,2,32400,1,'AWDT'),(365,3,28800,0,'AWST'),(366,0,37800,1,'ACDT'),(366,1,34200,0,'ACST'),(366,2,37800,1,'ACDT'),(366,3,34200,0,'ACST'),(367,0,-16272,0,'LMT'),(367,1,-14400,1,'-04'),(367,2,-18000,0,'-05'),(367,3,-14400,0,'-04'),(367,4,-18000,0,'-05'),(368,0,-7780,0,'LMT'),(368,1,-3600,1,'-01'),(368,2,-7200,0,'-02'),(369,0,-11188,0,'LMT'),(369,1,-7200,1,'-02'),(369,2,-10800,0,'-03'),(370,0,-14404,0,'LMT'),(370,1,-10800,1,'-03'),(370,2,-14400,0,'-04'),(371,0,7200,1,'CEST'),(371,1,3600,0,'CET'),(371,2,7200,1,'CEST'),(371,3,3600,0,'CET'),(372,0,-18000,1,'CDT'),(372,1,-21600,0,'CST'),(372,2,-18000,1,'CWT'),(372,3,-18000,1,'CPT'),(373,0,-15264,0,'LMT'),(373,1,-10800,1,'ADT'),(373,2,-14400,0,'AST'),(373,3,-10800,1,'AWT'),(373,4,-10800,1,'APT'),(374,0,-18000,1,'CDT'),(374,1,-21600,0,'CST'),(374,2,-18000,1,'CWT'),(374,3,-18000,1,'CPT'),(374,4,-18000,1,'CDT'),(374,5,-21600,0,'CST'),(375,0,-14400,1,'EDT'),(375,1,-18000,0,'EST'),(375,2,-14400,1,'EWT'),(375,3,-14400,1,'EPT'),(376,0,-27232,0,'LMT'),(376,1,-21600,1,'MDT'),(376,2,-25200,0,'MST'),(376,3,-21600,1,'MWT'),(376,4,-21600,1,'MPT'),(377,0,-9052,1,'NDT'),(377,1,-12652,0,'NST'),(377,2,-9000,1,'NDT'),(377,3,-12600,0,'NST'),(377,4,-9000,1,'NPT'),(377,5,-9000,1,'NWT'),(377,6,-5400,1,'NDDT'),(377,7,-9000,1,'NDT'),(378,0,-25200,1,'PDT'),(378,1,-28800,0,'PST'),(378,2,-25200,1,'PWT'),(378,3,-25200,1,'PPT'),(379,0,-25116,0,'LMT'),(379,1,-21600,1,'MDT'),(379,2,-25200,0,'MST'),(379,3,-21600,1,'MWT'),(379,4,-21600,1,'MPT'),(379,5,-21600,0,'CST'),(380,0,-28800,1,'YDT'),(380,1,-32400,0,'YST'),(380,2,-28800,1,'YWT'),(380,3,-28800,1,'YPT'),(380,4,-25200,1,'YDDT'),(380,5,-28800,0,'PST'),(380,6,-25200,1,'PDT'),(381,0,-16966,0,'SMT'),(381,1,-18000,0,'-05'),(381,2,-14400,0,'-04'),(381,3,-14400,1,'-04'),(381,4,-10800,1,'-03'),(381,5,-10800,1,'-03'),(381,6,-14400,0,'-04'),(382,0,-26248,0,'EMT'),(382,1,-21600,1,'-06'),(382,2,-25200,0,'-07'),(382,3,-25200,0,'-07'),(382,4,-21600,0,'-06'),(382,5,-18000,1,'-05'),(383,0,-19776,0,'HMT'),(383,1,-14400,1,'CDT'),(383,2,-18000,0,'CST'),(383,3,-18000,0,'CST'),(383,4,-14400,1,'CDT'),(384,0,10800,1,'EEST'),(384,1,7200,0,'EET'),(385,0,-18000,0,'EST'),(386,0,-14400,1,'EDT'),(386,1,-18000,0,'EST'),(386,2,-14400,1,'EWT'),(386,3,-14400,1,'EPT'),(387,0,10800,1,'EEST'),(387,1,7200,0,'EET'),(387,2,10800,1,'EEST'),(388,0,-1521,0,'DMT'),(388,1,2079,1,'IST'),(388,2,3600,1,'BST'),(388,3,0,0,'GMT'),(388,4,3600,1,'IST'),(388,5,0,0,'GMT'),(388,6,3600,0,'IST'),(388,7,3600,1,'IST'),(388,8,0,0,'GMT'),(389,0,0,0,'GMT'),(390,0,0,0,'GMT'),(391,0,-3600,0,'-01'),(392,0,-36000,0,'-10'),(393,0,-39600,0,'-11'),(394,0,-43200,0,'-12'),(395,0,-7200,0,'-02'),(396,0,-10800,0,'-03'),(397,0,-14400,0,'-04'),(398,0,-18000,0,'-05'),(399,0,-21600,0,'-06'),(400,0,-25200,0,'-07'),(401,0,-28800,0,'-08'),(402,0,-32400,0,'-09'),(403,0,0,0,'GMT'),(404,0,3600,0,'+01'),(405,0,36000,0,'+10'),(406,0,39600,0,'+11'),(407,0,43200,0,'+12'),(408,0,46800,0,'+13'),(409,0,50400,0,'+14'),(410,0,7200,0,'+02'),(411,0,10800,0,'+03'),(412,0,14400,0,'+04'),(413,0,18000,0,'+05'),(414,0,21600,0,'+06'),(415,0,25200,0,'+07'),(416,0,28800,0,'+08'),(417,0,32400,0,'+09'),(418,0,0,0,'GMT'),(419,0,0,0,'GMT'),(420,0,0,0,'UCT'),(421,0,0,0,'UTC'),(422,0,0,0,'UTC'),(423,0,0,0,'UTC'),(424,0,4772,1,'NST'),(424,1,1172,0,'AMT'),(424,2,4772,1,'NST'),(424,3,1172,0,'AMT'),(424,4,1200,0,'+0020'),(424,5,4800,1,'+0120'),(424,6,4800,1,'+0120'),(424,7,3600,0,'CET'),(424,8,7200,1,'CEST'),(424,9,7200,1,'CEST'),(424,10,7200,1,'CEST'),(424,11,3600,0,'CET'),(424,12,3600,0,'CET'),(425,0,0,0,'WET'),(425,1,3600,0,'CET'),(425,2,7200,1,'CEST'),(425,3,3600,0,'CET'),(426,0,11532,0,'LMT'),(426,1,10800,0,'+03'),(426,2,18000,1,'+05'),(426,3,14400,0,'+04'),(426,4,14400,0,'+04'),(426,5,18000,1,'+05'),(426,6,14400,1,'+04'),(426,7,10800,0,'+03'),(426,8,14400,0,'+04'),(427,0,5692,0,'AMT'),(427,1,10800,1,'EEST'),(427,2,7200,0,'EET'),(427,3,3600,0,'CET'),(427,4,7200,1,'CEST'),(427,5,10800,1,'EEST'),(427,6,7200,0,'EET'),(427,7,10800,1,'EEST'),(427,8,7200,0,'EET'),(428,0,3600,1,'BST'),(428,1,0,0,'GMT'),(428,2,7200,1,'BDST'),(428,3,3600,0,'BST'),(428,4,3600,1,'BST'),(428,5,0,0,'GMT'),(428,6,0,0,'GMT'),(429,0,3600,0,'CET'),(429,1,3600,0,'CET'),(429,2,7200,1,'CEST'),(429,3,7200,1,'CEST'),(429,4,7200,1,'CEST'),(429,5,3600,0,'CET'),(430,0,7200,1,'CEST'),(430,1,3600,0,'CET'),(430,2,7200,1,'CEST'),(430,3,3600,0,'CET'),(430,4,10800,1,'CEMT'),(430,5,10800,1,'CEMT'),(430,6,7200,1,'CEST'),(430,7,3600,0,'CET'),(431,0,7200,1,'CEST'),(431,1,3600,0,'CET'),(431,2,7200,1,'CEST'),(431,3,3600,0,'CET'),(431,4,0,0,'GMT'),(431,5,7200,1,'CEST'),(431,6,3600,0,'CET'),(432,0,0,0,'WET'),(432,1,3600,0,'CET'),(432,2,7200,1,'CEST'),(432,3,3600,0,'CET'),(432,4,7200,1,'CEST'),(432,5,3600,1,'WEST'),(432,6,0,0,'WET'),(432,7,0,0,'WET'),(432,8,7200,1,'CEST'),(432,9,3600,0,'CET'),(433,0,6264,0,'BMT'),(433,1,10800,1,'EEST'),(433,2,7200,0,'EET'),(433,3,10800,1,'EEST'),(433,4,7200,0,'EET'),(433,5,10800,1,'EEST'),(433,6,7200,0,'EET'),(434,0,7200,1,'CEST'),(434,1,3600,0,'CET'),(434,2,7200,1,'CEST'),(434,3,3600,0,'CET'),(434,4,3600,0,'CET'),(434,5,7200,1,'CEST'),(435,0,7200,1,'CEST'),(435,1,3600,0,'CET'),(435,2,7200,1,'CEST'),(435,3,3600,0,'CET'),(436,0,6900,0,'CMT'),(436,1,6264,0,'BMT'),(436,2,10800,1,'EEST'),(436,3,7200,0,'EET'),(436,4,7200,0,'EET'),(436,5,10800,1,'EEST'),(436,6,3600,0,'CET'),(436,7,7200,1,'CEST'),(436,8,7200,1,'CEST'),(436,9,14400,1,'MSD'),(436,10,10800,0,'MSK'),(436,11,10800,0,'MSK'),(436,12,14400,1,'MSD'),(436,13,10800,1,'EEST'),(436,14,7200,0,'EET'),(437,0,7200,1,'CEST'),(437,1,3600,0,'CET'),(437,2,3600,0,'CET'),(437,3,7200,1,'CEST'),(437,4,7200,1,'CEST'),(437,5,3600,0,'CET'),(438,0,-1521,0,'DMT'),(438,1,2079,1,'IST'),(438,2,3600,1,'BST'),(438,3,0,0,'GMT'),(438,4,3600,1,'IST'),(438,5,0,0,'GMT'),(438,6,3600,0,'IST'),(438,7,3600,1,'IST'),(438,8,0,0,'GMT'),(439,0,3600,1,'BST'),(439,1,0,0,'GMT'),(439,2,7200,1,'BDST'),(439,3,3600,0,'CET'),(439,4,7200,1,'CEST'),(439,5,3600,0,'CET'),(440,0,3600,1,'BST'),(440,1,0,0,'GMT'),(440,2,7200,1,'BDST'),(440,3,3600,0,'BST'),(440,4,3600,1,'BST'),(440,5,0,0,'GMT'),(440,6,0,0,'GMT'),(441,0,5989,0,'HMT'),(441,1,10800,1,'EEST'),(441,2,7200,0,'EET'),(441,3,10800,1,'EEST'),(441,4,7200,0,'EET'),(442,0,3600,1,'BST'),(442,1,0,0,'GMT'),(442,2,7200,1,'BDST'),(442,3,3600,0,'BST'),(442,4,3600,1,'BST'),(442,5,0,0,'GMT'),(442,6,0,0,'GMT'),(443,0,7016,0,'IMT'),(443,1,10800,1,'EEST'),(443,2,7200,0,'EET'),(443,3,14400,1,'+04'),(443,4,10800,0,'+03'),(443,5,10800,1,'EEST'),(443,6,7200,0,'EET'),(443,7,10800,1,'EEST'),(443,8,7200,0,'EET'),(443,9,10800,0,'+03'),(444,0,3600,1,'BST'),(444,1,0,0,'GMT'),(444,2,7200,1,'BDST'),(444,3,3600,0,'BST'),(444,4,3600,1,'BST'),(444,5,0,0,'GMT'),(444,6,0,0,'GMT'),(445,0,7200,1,'CEST'),(445,1,3600,0,'CET'),(445,2,7200,1,'CEST'),(445,3,3600,0,'CET'),(445,4,10800,1,'CEST'),(445,5,7200,0,'CET'),(445,6,14400,1,'MSD'),(445,7,10800,0,'MSK'),(445,8,10800,0,'MSK'),(445,9,14400,1,'MSD'),(445,10,10800,1,'EEST'),(445,11,7200,0,'EET'),(445,12,10800,0,'+03'),(445,13,7200,0,'EET'),(446,0,7324,0,'KMT'),(446,1,7200,0,'EET'),(446,2,10800,0,'MSK'),(446,3,3600,0,'CET'),(446,4,7200,1,'CEST'),(446,5,7200,1,'CEST'),(446,6,14400,1,'MSD'),(446,7,10800,0,'MSK'),(446,8,14400,1,'MSD'),(446,9,10800,1,'EEST'),(446,10,10800,1,'EEST'),(446,11,7200,0,'EET'),(447,0,11928,0,'LMT'),(447,1,10800,0,'+03'),(447,2,18000,1,'+05'),(447,3,14400,0,'+04'),(447,4,14400,0,'+04'),(447,5,18000,1,'+05'),(447,6,14400,1,'+04'),(447,7,10800,0,'+03'),(448,0,-2205,0,'LMT'),(448,1,3600,1,'WEST'),(448,2,0,0,'WET'),(448,3,3600,1,'WEST'),(448,4,0,0,'WET'),(448,5,7200,1,'WEMT'),(448,6,0,0,'WET'),(448,7,3600,0,'CET'),(448,8,3600,0,'CET'),(448,9,7200,1,'CEST'),(448,10,3600,1,'WEST'),(448,11,0,0,'WET'),(449,0,3600,0,'CET'),(449,1,3600,0,'CET'),(449,2,7200,1,'CEST'),(449,3,7200,1,'CEST'),(449,4,7200,1,'CEST'),(449,5,3600,0,'CET'),(450,0,3600,1,'BST'),(450,1,0,0,'GMT'),(450,2,7200,1,'BDST'),(450,3,3600,0,'BST'),(450,4,3600,1,'BST'),(450,5,0,0,'GMT'),(450,6,0,0,'GMT'),(451,0,1476,0,'LMT'),(451,1,7200,1,'CEST'),(451,2,3600,0,'CET'),(451,3,7200,1,'CEST'),(451,4,3600,0,'CET'),(451,5,3600,1,'WEST'),(451,6,0,0,'WET'),(451,7,0,0,'WET'),(451,8,3600,1,'WEST'),(451,9,3600,0,'WET'),(451,10,7200,1,'WEST'),(451,11,7200,1,'WEST'),(451,12,7200,1,'CEST'),(451,13,3600,0,'CET'),(452,0,3600,1,'WEST'),(452,1,0,0,'WET'),(452,2,7200,1,'WEMT'),(452,3,0,0,'WET'),(452,4,7200,1,'CEST'),(452,5,3600,0,'CET'),(452,6,7200,1,'CEST'),(452,7,3600,0,'CET'),(452,8,7200,1,'CEST'),(452,9,3600,0,'CET'),(453,0,7200,1,'CEST'),(453,1,3600,0,'CET'),(453,2,3600,0,'CET'),(453,3,7200,1,'CEST'),(453,4,7200,1,'CEST'),(453,5,3600,0,'CET'),(454,0,5989,0,'HMT'),(454,1,10800,1,'EEST'),(454,2,7200,0,'EET'),(454,3,10800,1,'EEST'),(454,4,7200,0,'EET'),(455,0,6600,0,'MMT'),(455,1,7200,0,'EET'),(455,2,10800,0,'MSK'),(455,3,3600,0,'CET'),(455,4,7200,1,'CEST'),(455,5,7200,1,'CEST'),(455,6,14400,1,'MSD'),(455,7,10800,0,'MSK'),(455,8,14400,1,'MSD'),(455,9,10800,1,'EEST'),(455,10,7200,0,'EET'),(455,11,10800,0,'+03'),(456,0,561,0,'PMT'),(456,1,3600,1,'WEST'),(456,2,0,0,'WET'),(456,3,3600,1,'WEST'),(456,4,7200,1,'WEMT'),(456,5,0,0,'WET'),(456,6,7200,1,'CEST'),(456,7,3600,0,'CET'),(456,8,7200,1,'CEST'),(456,9,3600,0,'CET'),(457,0,9017,0,'MMT'),(457,1,12679,1,'MST'),(457,2,9079,0,'MMT'),(457,3,16279,1,'MDST'),(457,4,14400,1,'MSD'),(457,5,10800,0,'MSK'),(457,6,14400,1,'MSD'),(457,7,18000,1,'+05'),(457,8,7200,0,'EET'),(457,9,10800,0,'MSK'),(457,10,14400,1,'MSD'),(457,11,10800,1,'EEST'),(457,12,7200,0,'EET'),(457,13,14400,0,'MSK'),(457,14,14400,1,'MSD'),(457,15,10800,0,'MSK'),(458,0,8008,0,'LMT'),(458,1,10800,1,'EEST'),(458,2,7200,0,'EET'),(458,3,7200,0,'EET'),(458,4,10800,1,'EEST'),(459,0,7200,1,'CEST'),(459,1,3600,0,'CET'),(459,2,3600,0,'CET'),(459,3,7200,1,'CEST'),(459,4,7200,1,'CEST'),(459,5,3600,0,'CET'),(460,0,561,0,'PMT'),(460,1,3600,1,'WEST'),(460,2,0,0,'WET'),(460,3,3600,1,'WEST'),(460,4,0,0,'WET'),(460,5,3600,0,'CET'),(460,6,7200,1,'CEST'),(460,7,7200,1,'CEST'),(460,8,7200,1,'WEMT'),(460,9,3600,0,'CET'),(460,10,7200,1,'CEST'),(460,11,3600,0,'CET'),(461,0,3600,0,'CET'),(461,1,3600,0,'CET'),(461,2,7200,1,'CEST'),(461,3,7200,1,'CEST'),(461,4,7200,1,'CEST'),(461,5,3600,0,'CET'),(462,0,7200,1,'CEST'),(462,1,3600,0,'CET'),(462,2,7200,1,'CEST'),(462,3,3600,0,'CET'),(462,4,0,0,'GMT'),(462,5,7200,1,'CEST'),(462,6,3600,0,'CET'),(463,0,5794,0,'RMT'),(463,1,9394,1,'LST'),(463,2,7200,0,'EET'),(463,3,10800,0,'MSK'),(463,4,3600,0,'CET'),(463,5,7200,1,'CEST'),(463,6,7200,1,'CEST'),(463,7,14400,1,'MSD'),(463,8,10800,0,'MSK'),(463,9,14400,1,'MSD'),(463,10,10800,1,'EEST'),(463,11,7200,0,'EET'),(463,12,10800,1,'EEST'),(463,13,7200,0,'EET'),(464,0,7200,1,'CEST'),(464,1,3600,0,'CET'),(464,2,3600,0,'CET'),(464,3,7200,1,'CEST'),(464,4,7200,1,'CEST'),(464,5,3600,0,'CET'),(465,0,12020,0,'LMT'),(465,1,10800,0,'+03'),(465,2,14400,0,'+04'),(465,3,18000,1,'+05'),(465,4,14400,0,'+04'),(465,5,18000,1,'+05'),(465,6,14400,1,'+04'),(465,7,10800,0,'+03'),(465,8,10800,1,'+03'),(465,9,7200,0,'+02'),(465,10,14400,1,'+04'),(465,11,14400,0,'+04'),(466,0,7200,1,'CEST'),(466,1,3600,0,'CET'),(466,2,3600,0,'CET'),(466,3,7200,1,'CEST'),(466,4,7200,1,'CEST'),(466,5,3600,0,'CET'),(467,0,3600,0,'CET'),(467,1,3600,0,'CET'),(467,2,7200,1,'CEST'),(467,3,7200,1,'CEST'),(467,4,7200,1,'CEST'),(467,5,3600,0,'CET'),(468,0,11058,0,'LMT'),(468,1,10800,0,'+03'),(468,2,18000,1,'+05'),(468,3,14400,0,'+04'),(468,4,14400,0,'+04'),(468,5,18000,1,'+05'),(468,6,14400,1,'+04'),(468,7,10800,0,'+03'),(468,8,14400,0,'+04'),(469,0,8160,0,'SMT'),(469,1,7200,0,'EET'),(469,2,10800,0,'MSK'),(469,3,3600,0,'CET'),(469,4,7200,1,'CEST'),(469,5,7200,1,'CEST'),(469,6,14400,1,'MSD'),(469,7,10800,0,'MSK'),(469,8,14400,1,'MSD'),(469,9,10800,1,'EEST'),(469,10,10800,1,'EEST'),(469,11,7200,0,'EET'),(469,12,14400,0,'MSK'),(469,13,10800,0,'MSK'),(470,0,3600,0,'CET'),(470,1,3600,0,'CET'),(470,2,7200,1,'CEST'),(470,3,7200,1,'CEST'),(470,4,7200,1,'CEST'),(470,5,3600,0,'CET'),(471,0,7200,0,'EET'),(471,1,3600,0,'CET'),(471,2,7200,1,'CEST'),(471,3,3600,0,'CET'),(471,4,10800,1,'EEST'),(471,5,7200,0,'EET'),(471,6,10800,1,'EEST'),(471,7,10800,1,'EEST'),(471,8,7200,0,'EET'),(472,0,3600,0,'CET'),(472,1,7200,1,'CEST'),(472,2,7200,1,'CEST'),(472,3,3600,0,'CET'),(473,0,5940,0,'TMT'),(473,1,7200,1,'CEST'),(473,2,3600,0,'CET'),(473,3,3600,0,'CET'),(473,4,7200,0,'EET'),(473,5,10800,0,'MSK'),(473,6,7200,1,'CEST'),(473,7,14400,1,'MSD'),(473,8,10800,0,'MSK'),(473,9,14400,1,'MSD'),(473,10,10800,1,'EEST'),(473,11,7200,0,'EET'),(473,12,7200,0,'EET'),(473,13,10800,1,'EEST'),(473,14,10800,1,'EEST'),(474,0,4760,0,'LMT'),(474,1,3600,0,'CET'),(474,2,7200,1,'CEST'),(474,3,3600,0,'CET'),(474,4,7200,1,'CEST'),(475,0,6900,0,'CMT'),(475,1,6264,0,'BMT'),(475,2,10800,1,'EEST'),(475,3,7200,0,'EET'),(475,4,7200,0,'EET'),(475,5,10800,1,'EEST'),(475,6,3600,0,'CET'),(475,7,7200,1,'CEST'),(475,8,7200,1,'CEST'),(475,9,14400,1,'MSD'),(475,10,10800,0,'MSK'),(475,11,10800,0,'MSK'),(475,12,14400,1,'MSD'),(475,13,10800,1,'EEST'),(475,14,7200,0,'EET'),(476,0,11616,0,'LMT'),(476,1,10800,0,'+03'),(476,2,18000,1,'+05'),(476,3,14400,0,'+04'),(476,4,14400,0,'+04'),(476,5,18000,1,'+05'),(476,6,14400,1,'+04'),(476,7,10800,0,'+03'),(476,8,10800,1,'+03'),(476,9,7200,0,'+02'),(476,10,14400,1,'+04'),(476,11,14400,0,'+04'),(477,0,3600,0,'CET'),(477,1,7200,1,'CEST'),(477,2,3600,0,'CET'),(477,3,7200,1,'CEST'),(477,4,14400,1,'MSD'),(477,5,10800,0,'MSK'),(477,6,10800,0,'MSK'),(477,7,14400,1,'MSD'),(477,8,7200,0,'EET'),(477,9,10800,1,'EEST'),(477,10,10800,1,'EEST'),(477,11,7200,0,'EET'),(478,0,7200,1,'CEST'),(478,1,3600,0,'CET'),(478,2,7200,1,'CEST'),(478,3,3600,0,'CET'),(479,0,7200,1,'CEST'),(479,1,3600,0,'CET'),(479,2,3600,0,'CET'),(479,3,7200,1,'CEST'),(479,4,7200,1,'CEST'),(479,5,3600,0,'CET'),(480,0,7200,1,'CEST'),(480,1,3600,0,'CET'),(480,2,7200,1,'CEST'),(480,3,3600,0,'CET'),(480,4,7200,1,'CEST'),(480,5,3600,0,'CET'),(481,0,5040,0,'WMT'),(481,1,5736,0,'KMT'),(481,2,3600,0,'CET'),(481,3,7200,0,'EET'),(481,4,10800,0,'MSK'),(481,5,3600,0,'CET'),(481,6,7200,1,'CEST'),(481,7,7200,1,'CEST'),(481,8,14400,1,'MSD'),(481,9,10800,0,'MSK'),(481,10,14400,1,'MSD'),(481,11,10800,1,'EEST'),(481,12,7200,0,'EET'),(481,13,7200,1,'CEST'),(481,14,3600,0,'CET'),(481,15,7200,0,'EET'),(481,16,10800,1,'EEST'),(482,0,10660,0,'LMT'),(482,1,10800,0,'+03'),(482,2,14400,0,'+04'),(482,3,18000,1,'+05'),(482,4,14400,0,'+04'),(482,5,18000,1,'+05'),(482,6,14400,1,'+04'),(482,7,10800,0,'+03'),(483,0,5040,0,'WMT'),(483,1,7200,1,'CEST'),(483,2,3600,0,'CET'),(483,3,7200,1,'CEST'),(483,4,3600,0,'CET'),(483,5,10800,1,'EEST'),(483,6,7200,0,'EET'),(483,7,7200,0,'EET'),(483,8,7200,1,'CEST'),(483,9,3600,0,'CET'),(484,0,3600,0,'CET'),(484,1,3600,0,'CET'),(484,2,7200,1,'CEST'),(484,3,7200,1,'CEST'),(484,4,7200,1,'CEST'),(484,5,3600,0,'CET'),(485,0,8400,0,'+0220'),(485,1,7200,0,'EET'),(485,2,10800,0,'MSK'),(485,3,3600,0,'CET'),(485,4,7200,1,'CEST'),(485,5,7200,1,'CEST'),(485,6,14400,1,'MSD'),(485,7,10800,0,'MSK'),(485,8,14400,1,'MSD'),(485,9,10800,1,'EEST'),(485,10,10800,1,'EEST'),(485,11,7200,0,'EET'),(486,0,7200,1,'CEST'),(486,1,3600,0,'CET'),(486,2,7200,1,'CEST'),(486,3,3600,0,'CET'),(487,0,3600,1,'BST'),(487,1,0,0,'GMT'),(487,2,7200,1,'BDST'),(487,3,3600,0,'BST'),(487,4,3600,1,'BST'),(487,5,0,0,'GMT'),(487,6,0,0,'GMT'),(488,0,3600,1,'BST'),(488,1,0,0,'GMT'),(488,2,7200,1,'BDST'),(488,3,3600,0,'BST'),(488,4,3600,1,'BST'),(488,5,0,0,'GMT'),(488,6,0,0,'GMT'),(489,0,0,0,'GMT'),(490,0,0,0,'GMT'),(491,0,0,0,'GMT'),(492,0,0,0,'GMT'),(493,0,0,0,'GMT'),(494,0,-36000,0,'HST'),(495,0,27402,0,'LMT'),(495,1,32400,1,'HKST'),(495,2,28800,0,'HKT'),(495,3,32400,0,'JST'),(495,4,28800,0,'HKT'),(496,0,-5280,0,'LMT'),(496,1,0,1,'+00'),(496,2,-3600,0,'-01'),(496,3,-3600,0,'-01'),(496,4,0,1,'+00'),(496,5,0,0,'GMT'),(497,0,8836,0,'LMT'),(497,1,10800,0,'EAT'),(497,2,9000,0,'+0230'),(497,3,9900,0,'+0245'),(497,4,10800,0,'EAT'),(498,0,17380,0,'LMT'),(498,1,18000,0,'+05'),(498,2,21600,0,'+06'),(499,0,25200,0,'+07'),(500,0,23400,0,'+0630'),(501,0,8836,0,'LMT'),(501,1,10800,0,'EAT'),(501,2,9000,0,'+0230'),(501,3,9900,0,'+0245'),(501,4,10800,0,'EAT'),(502,0,0,0,'-00'),(502,1,18000,0,'+05'),(503,0,13308,0,'LMT'),(503,1,14400,0,'+04'),(504,0,17640,0,'MMT'),(504,1,18000,0,'+05'),(505,0,13800,0,'LMT'),(505,1,18000,1,'+05'),(505,2,14400,0,'+04'),(506,0,8836,0,'LMT'),(506,1,10800,0,'EAT'),(506,2,9000,0,'+0230'),(506,3,9900,0,'+0245'),(506,4,10800,0,'EAT'),(507,0,13312,0,'LMT'),(507,1,14400,0,'+04'),(508,0,12344,0,'LMT'),(508,1,12344,0,'TMT'),(508,2,12600,0,'+0330'),(508,3,18000,1,'+05'),(508,4,14400,0,'+04'),(508,5,16200,1,'+0430'),(508,6,12600,0,'+0330'),(509,0,8440,0,'JMT'),(509,1,10800,1,'IDT'),(509,2,7200,0,'IST'),(509,3,14400,1,'IDDT'),(509,4,10800,1,'IDT'),(510,0,-18430,0,'KMT'),(510,1,-18000,0,'EST'),(510,2,-14400,1,'EDT'),(511,0,36000,1,'JDT'),(511,1,32400,0,'JST'),(511,2,32400,0,'JST'),(512,0,39600,0,'+11'),(512,1,-43200,0,'-12'),(512,2,43200,0,'+12'),(513,0,3164,0,'LMT'),(513,1,7200,1,'CEST'),(513,2,3600,0,'CET'),(513,3,7200,0,'EET'),(514,0,7200,1,'MEST'),(514,1,3600,0,'MET'),(514,2,7200,1,'MEST'),(514,3,3600,0,'MET'),(515,0,-25200,0,'MST'),(516,0,-21600,1,'MDT'),(516,1,-25200,0,'MST'),(516,2,-21600,1,'MWT'),(516,3,-21600,1,'MPT'),(517,0,-28084,0,'LMT'),(517,1,-25200,0,'MST'),(517,2,-28800,0,'PST'),(517,3,-25200,1,'PDT'),(517,4,-25200,1,'PWT'),(517,5,-25200,1,'PPT'),(518,0,-25540,0,'LMT'),(518,1,-25200,0,'MST'),(518,2,-21600,0,'CST'),(518,3,-28800,0,'PST'),(518,4,-21600,1,'MDT'),(518,5,-25200,0,'MST'),(519,0,-23796,0,'LMT'),(519,1,-25200,0,'MST'),(519,2,-21600,0,'CST'),(519,3,-18000,1,'CDT'),(519,4,-18000,1,'CWT'),(520,0,45000,1,'NZST'),(520,1,41400,0,'NZMT'),(520,2,43200,1,'NZST'),(520,3,46800,1,'NZDT'),(520,4,43200,0,'NZST'),(520,5,43200,0,'NZST'),(521,0,44100,0,'+1215'),(521,1,49500,1,'+1345'),(521,2,45900,0,'+1245'),(521,3,45900,0,'+1245'),(522,0,-21600,1,'MDT'),(522,1,-25200,0,'MST'),(522,2,-21600,1,'MWT'),(522,3,-21600,1,'MPT'),(523,0,32400,1,'CDT'),(523,1,28800,0,'CST'),(524,0,-25200,1,'PDT'),(524,1,-28800,0,'PST'),(524,2,-25200,1,'PWT'),(524,3,-25200,1,'PPT'),(525,0,-41216,0,'LMT'),(525,1,-41400,0,'-1130'),(525,2,-36000,1,'-10'),(525,3,-39600,0,'-11'),(525,4,46800,0,'+13'),(525,5,50400,1,'+14'),(526,0,45000,1,'NZST'),(526,1,41400,0,'NZMT'),(526,2,43200,1,'NZST'),(526,3,46800,1,'NZDT'),(526,4,43200,0,'NZST'),(526,5,43200,0,'NZST'),(527,0,36000,0,'+10'),(527,1,32400,0,'+09'),(527,2,39600,0,'+11'),(528,0,44100,0,'+1215'),(528,1,49500,1,'+1345'),(528,2,45900,0,'+1245'),(528,3,45900,0,'+1245'),(529,0,36000,0,'+10'),(530,0,-26248,0,'EMT'),(530,1,-21600,1,'-06'),(530,2,-25200,0,'-07'),(530,3,-25200,0,'-07'),(530,4,-21600,0,'-06'),(530,5,-18000,1,'-05'),(531,0,40396,0,'LMT'),(531,1,43200,1,'+12'),(531,2,39600,0,'+11'),(532,0,-43200,0,'-12'),(532,1,-39600,0,'-11'),(532,2,46800,0,'+13'),(533,0,-39600,0,'-11'),(533,1,46800,0,'+13'),(534,0,42944,0,'LMT'),(534,1,46800,1,'+13'),(534,2,43200,0,'+12'),(535,0,43200,0,'+12'),(536,0,-21504,0,'LMT'),(536,1,-18000,0,'-05'),(536,2,-18000,1,'-05'),(536,3,-21600,0,'-06'),(537,0,-32388,0,'LMT'),(537,1,-32400,0,'-09'),(538,0,38388,0,'LMT'),(538,1,39600,0,'+11'),(539,0,36000,0,'GST'),(539,1,36000,0,'ChST'),(540,0,-37800,0,'HST'),(540,1,-34200,1,'HDT'),(540,2,-36000,0,'HST'),(541,0,-37800,0,'HST'),(541,1,-34200,1,'HDT'),(541,2,-36000,0,'HST'),(542,0,-38400,0,'-1040'),(542,1,-36000,0,'-10'),(542,2,50400,0,'+14'),(543,0,39600,0,'+11'),(543,1,43200,0,'+12'),(543,2,39600,0,'+11'),(544,0,39600,0,'+11'),(544,1,-43200,0,'-12'),(544,2,43200,0,'+12'),(545,0,39600,0,'+11'),(545,1,43200,0,'+12'),(546,0,-33480,0,'LMT'),(546,1,-34200,0,'-0930'),(547,0,-40968,0,'LMT'),(547,1,-39600,0,'SST'),(548,0,40060,0,'LMT'),(548,1,41400,0,'+1130'),(548,2,32400,0,'+09'),(548,3,43200,0,'+12'),(549,0,-40800,0,'-1120'),(549,1,-41400,0,'-1130'),(549,2,-39600,0,'-11'),(550,0,40320,0,'+1112'),(550,1,41400,0,'+1130'),(550,2,45000,1,'+1230'),(550,3,39600,0,'+11'),(551,0,39948,0,'LMT'),(551,1,43200,1,'+12'),(551,2,39600,0,'+11'),(551,3,43200,1,'+12'),(551,4,39600,0,'+11'),(552,0,-40968,0,'LMT'),(552,1,-39600,0,'SST'),(553,0,32400,0,'+09'),(554,0,-30600,0,'-0830'),(554,1,-28800,0,'-08'),(555,0,39600,0,'+11'),(556,0,39600,0,'+11'),(557,0,36000,0,'+10'),(558,0,-37800,0,'-1030'),(558,1,-36000,0,'-10'),(558,2,-34200,1,'-0930'),(559,0,36000,0,'GST'),(559,1,36000,0,'ChST'),(560,0,-40968,0,'LMT'),(560,1,-39600,0,'SST'),(561,0,-35896,0,'LMT'),(561,1,-36000,0,'-10'),(562,0,43200,0,'+12'),(563,0,44400,0,'+1220'),(563,1,46800,0,'+13'),(563,2,50400,1,'+14'),(563,3,46800,0,'+13'),(563,4,50400,1,'+14'),(564,0,36000,0,'+10'),(565,0,43200,0,'+12'),(566,0,43200,0,'+12'),(567,0,36000,0,'+10'),(568,0,5040,0,'WMT'),(568,1,7200,1,'CEST'),(568,2,3600,0,'CET'),(568,3,7200,1,'CEST'),(568,4,3600,0,'CET'),(568,5,10800,1,'EEST'),(568,6,7200,0,'EET'),(568,7,7200,0,'EET'),(568,8,7200,1,'CEST'),(568,9,3600,0,'CET'),(569,0,-2205,0,'LMT'),(569,1,3600,1,'WEST'),(569,2,0,0,'WET'),(569,3,3600,1,'WEST'),(569,4,0,0,'WET'),(569,5,7200,1,'WEMT'),(569,6,0,0,'WET'),(569,7,3600,0,'CET'),(569,8,3600,0,'CET'),(569,9,7200,1,'CEST'),(569,10,3600,1,'WEST'),(569,11,0,0,'WET'),(570,0,28800,0,'CST'),(570,1,32400,0,'JST'),(570,2,32400,1,'CDT'),(570,3,28800,0,'CST'),(571,0,30472,0,'LMT'),(571,1,30600,0,'KST'),(571,2,32400,0,'JST'),(571,3,32400,0,'KST'),(571,4,34200,1,'KDT'),(571,5,36000,1,'KDT'),(572,0,24925,0,'SMT'),(572,1,25200,0,'+07'),(572,2,26400,1,'+0720'),(572,3,26400,0,'+0720'),(572,4,27000,0,'+0730'),(572,5,32400,0,'+09'),(572,6,28800,0,'+08'),(573,0,7016,0,'IMT'),(573,1,10800,1,'EEST'),(573,2,7200,0,'EET'),(573,3,14400,1,'+04'),(573,4,10800,0,'+03'),(573,5,10800,1,'EEST'),(573,6,7200,0,'EET'),(573,7,10800,1,'EEST'),(573,8,7200,0,'EET'),(573,9,10800,0,'+03'),(574,0,0,0,'UCT'),(575,0,-36000,0,'AST'),(575,1,-32400,1,'AWT'),(575,2,-32400,1,'APT'),(575,3,-36000,0,'AHST'),(575,4,-32400,1,'AHDT'),(575,5,-32400,0,'YST'),(575,6,-28800,1,'AKDT'),(575,7,-32400,0,'AKST'),(576,0,-39600,0,'NST'),(576,1,-36000,1,'NWT'),(576,2,-36000,1,'NPT'),(576,3,-39600,0,'BST'),(576,4,-36000,1,'BDT'),(576,5,-36000,0,'AHST'),(576,6,-32400,1,'HDT'),(576,7,-36000,0,'HST'),(577,0,-21600,1,'MDT'),(577,1,-25200,0,'MST'),(577,2,-21600,1,'MWT'),(578,0,-18000,1,'CDT'),(578,1,-21600,0,'CST'),(578,2,-18000,0,'EST'),(578,3,-18000,1,'CWT'),(578,4,-18000,1,'CPT'),(578,5,-21600,0,'CST'),(579,0,-18000,1,'CDT'),(579,1,-21600,0,'CST'),(579,2,-18000,1,'CWT'),(579,3,-18000,1,'CPT'),(579,4,-18000,0,'EST'),(579,5,-14400,1,'EDT'),(580,0,-14400,1,'EDT'),(580,1,-18000,0,'EST'),(580,2,-14400,1,'EWT'),(580,3,-14400,1,'EPT'),(581,0,-37800,0,'HST'),(581,1,-34200,1,'HDT'),(581,2,-36000,0,'HST'),(582,0,-18000,1,'CDT'),(582,1,-21600,0,'CST'),(582,2,-18000,1,'CWT'),(582,3,-18000,1,'CPT'),(582,4,-18000,0,'EST'),(582,5,-21600,0,'CST'),(583,0,-19931,0,'LMT'),(583,1,-21600,0,'CST'),(583,2,-18000,0,'EST'),(583,3,-14400,1,'EWT'),(583,4,-14400,1,'EPT'),(583,5,-14400,1,'EDT'),(584,0,-21600,1,'MDT'),(584,1,-25200,0,'MST'),(584,2,-21600,1,'MWT'),(584,3,-21600,1,'MPT'),(585,0,-25200,1,'PDT'),(585,1,-28800,0,'PST'),(585,2,-25200,1,'PWT'),(585,3,-25200,1,'PPT'),(586,0,-25200,1,'PDT'),(586,1,-28800,0,'PST'),(586,2,-25200,1,'PWT'),(586,3,-25200,1,'PPT'),(587,0,-40968,0,'LMT'),(587,1,-39600,0,'SST'),(588,0,0,0,'UTC'),(589,0,0,0,'UTC'),(590,0,9017,0,'MMT'),(590,1,12679,1,'MST'),(590,2,9079,0,'MMT'),(590,3,16279,1,'MDST'),(590,4,14400,1,'MSD'),(590,5,10800,0,'MSK'),(590,6,14400,1,'MSD'),(590,7,18000,1,'+05'),(590,8,7200,0,'EET'),(590,9,10800,0,'MSK'),(590,10,14400,1,'MSD'),(590,11,10800,1,'EEST'),(590,12,7200,0,'EET'),(590,13,14400,0,'MSK'),(590,14,14400,1,'MSD'),(590,15,10800,0,'MSK'),(591,0,3600,1,'WEST'),(591,1,0,0,'WET'),(592,0,0,0,'UTC'),(593,0,-968,0,'LMT'),(593,1,0,0,'GMT'),(594,0,-52,0,'LMT'),(594,1,1200,1,'+0020'),(594,2,0,0,'GMT'),(595,0,8836,0,'LMT'),(595,1,10800,0,'EAT'),(595,2,9000,0,'+0230'),(595,3,9900,0,'+0245'),(595,4,10800,0,'EAT'),(596,0,561,0,'PMT'),(596,1,3600,1,'WEST'),(596,2,0,0,'WET'),(596,3,0,0,'WET'),(596,4,7200,1,'CEST'),(596,5,3600,0,'CET'),(596,6,3600,1,'WEST'),(597,0,8836,0,'LMT'),(597,1,10800,0,'EAT'),(597,2,9000,0,'+0230'),(597,3,9900,0,'+0245'),(597,4,10800,0,'EAT'),(598,0,8836,0,'LMT'),(598,1,10800,0,'EAT'),(598,2,9000,0,'+0230'),(598,3,9900,0,'+0245'),(598,4,10800,0,'EAT'),(599,0,-968,0,'LMT'),(599,1,0,0,'GMT'),(600,0,816,0,'LMT'),(600,1,3600,0,'WAT'),(601,0,-968,0,'LMT'),(601,1,0,0,'GMT'),(602,0,-3740,0,'LMT'),(602,1,-3600,0,'-01'),(602,2,0,0,'GMT'),(603,0,7820,0,'LMT'),(603,1,7200,0,'CAT'),(604,0,816,0,'LMT'),(604,1,3600,0,'WAT'),(605,0,7820,0,'LMT'),(605,1,7200,0,'CAT'),(606,0,10800,1,'EEST'),(606,1,7200,0,'EET'),(606,2,10800,1,'EEST'),(607,0,-1820,0,'LMT'),(607,1,3600,1,'WEST'),(607,2,0,0,'WET'),(607,3,3600,0,'CET'),(607,4,0,0,'WET'),(608,0,0,0,'WET'),(608,1,3600,1,'WEST'),(608,2,0,0,'WET'),(608,3,3600,0,'CET'),(608,4,7200,1,'CEST'),(608,5,3600,0,'CET'),(609,0,-968,0,'LMT'),(609,1,0,0,'GMT'),(610,0,-968,0,'LMT'),(610,1,0,0,'GMT'),(611,0,8836,0,'LMT'),(611,1,10800,0,'EAT'),(611,2,9000,0,'+0230'),(611,3,9900,0,'+0245'),(611,4,10800,0,'EAT'),(612,0,8836,0,'LMT'),(612,1,10800,0,'EAT'),(612,2,9000,0,'+0230'),(612,3,9900,0,'+0245'),(612,4,10800,0,'EAT'),(613,0,816,0,'LMT'),(613,1,3600,0,'WAT'),(614,0,-3168,0,'LMT'),(614,1,-3600,0,'-01'),(614,2,3600,1,'WEST'),(614,3,0,0,'WET'),(615,0,-968,0,'LMT'),(615,1,0,0,'GMT'),(616,0,7820,0,'LMT'),(616,1,7200,0,'CAT'),(617,0,7820,0,'LMT'),(617,1,7200,0,'CAT'),(618,0,5400,0,'SAST'),(618,1,10800,1,'SAST'),(618,2,7200,0,'SAST'),(619,0,7588,0,'LMT'),(619,1,10800,1,'CAST'),(619,2,7200,0,'CAT'),(619,3,10800,0,'EAT'),(620,0,8836,0,'LMT'),(620,1,10800,0,'EAT'),(620,2,9000,0,'+0230'),(620,3,9900,0,'+0245'),(620,4,10800,0,'EAT'),(621,0,7808,0,'LMT'),(621,1,10800,1,'CAST'),(621,2,7200,0,'CAT'),(621,3,10800,0,'EAT'),(621,4,7200,0,'CAT'),(622,0,7820,0,'LMT'),(622,1,7200,0,'CAT'),(623,0,816,0,'LMT'),(623,1,3600,0,'WAT'),(624,0,816,0,'LMT'),(624,1,3600,0,'WAT'),(625,0,816,0,'LMT'),(625,1,3600,0,'WAT'),(626,0,-968,0,'LMT'),(626,1,0,0,'GMT'),(627,0,816,0,'LMT'),(627,1,3600,0,'WAT'),(628,0,7820,0,'LMT'),(628,1,7200,0,'CAT'),(629,0,7820,0,'LMT'),(629,1,7200,0,'CAT'),(630,0,816,0,'LMT'),(630,1,3600,0,'WAT'),(631,0,7820,0,'LMT'),(631,1,7200,0,'CAT'),(632,0,5400,0,'SAST'),(632,1,10800,1,'SAST'),(632,2,7200,0,'SAST'),(633,0,5400,0,'SAST'),(633,1,10800,1,'SAST'),(633,2,7200,0,'SAST'),(634,0,8836,0,'LMT'),(634,1,10800,0,'EAT'),(634,2,9000,0,'+0230'),(634,3,9900,0,'+0245'),(634,4,10800,0,'EAT'),(635,0,-2588,0,'MMT'),(635,1,-2670,0,'MMT'),(635,2,0,0,'GMT'),(636,0,8836,0,'LMT'),(636,1,10800,0,'EAT'),(636,2,9000,0,'+0230'),(636,3,9900,0,'+0245'),(636,4,10800,0,'EAT'),(637,0,3612,0,'LMT'),(637,1,3600,0,'WAT'),(637,2,7200,1,'WAST'),(638,0,816,0,'LMT'),(638,1,3600,0,'WAT'),(639,0,-968,0,'LMT'),(639,1,0,0,'GMT'),(640,0,-968,0,'LMT'),(640,1,0,0,'GMT'),(641,0,816,0,'LMT'),(641,1,3600,0,'WAT'),(642,0,-2205,0,'LMT'),(642,1,0,0,'GMT'),(642,2,3600,0,'WAT'),(643,0,-968,0,'LMT'),(643,1,0,0,'GMT'),(644,0,3164,0,'LMT'),(644,1,7200,1,'CEST'),(644,2,3600,0,'CET'),(644,3,7200,0,'EET'),(645,0,561,0,'PMT'),(645,1,7200,1,'CEST'),(645,2,3600,0,'CET'),(645,3,3600,0,'CET'),(645,4,7200,1,'CEST'),(646,0,5400,0,'+0130'),(646,1,7200,0,'SAST'),(646,2,10800,1,'SAST'),(646,3,7200,0,'CAT'),(646,4,3600,0,'WAT'),(646,5,7200,1,'CAT'),(646,6,7200,0,'CAT'),(647,0,-39600,0,'NST'),(647,1,-36000,1,'NWT'),(647,2,-36000,1,'NPT'),(647,3,-39600,0,'BST'),(647,4,-36000,1,'BDT'),(647,5,-36000,0,'AHST'),(647,6,-32400,1,'HDT'),(647,7,-36000,0,'HST'),(648,0,-36000,0,'AST'),(648,1,-32400,1,'AWT'),(648,2,-32400,1,'APT'),(648,3,-36000,0,'AHST'),(648,4,-32400,1,'AHDT'),(648,5,-32400,0,'YST'),(648,6,-28800,1,'AKDT'),(648,7,-32400,0,'AKST'),(649,0,-14764,0,'LMT'),(649,1,-14400,0,'AST'),(650,0,-14764,0,'LMT'),(650,1,-14400,0,'AST'),(651,0,-11568,0,'LMT'),(651,1,-7200,1,'-02'),(651,2,-10800,0,'-03'),(652,0,-15408,0,'CMT'),(652,1,-14400,0,'-04'),(652,2,-10800,1,'-03'),(652,3,-7200,1,'-02'),(652,4,-10800,0,'-03'),(653,0,-15408,0,'CMT'),(653,1,-14400,0,'-04'),(653,2,-10800,1,'-03'),(653,3,-7200,1,'-02'),(653,4,-10800,0,'-03'),(654,0,-15408,0,'CMT'),(654,1,-14400,0,'-04'),(654,2,-10800,1,'-03'),(654,3,-7200,1,'-02'),(654,4,-10800,0,'-03'),(655,0,-15408,0,'CMT'),(655,1,-14400,0,'-04'),(655,2,-10800,1,'-03'),(655,3,-7200,1,'-02'),(655,4,-10800,0,'-03'),(656,0,-15408,0,'CMT'),(656,1,-14400,0,'-04'),(656,2,-10800,1,'-03'),(656,3,-7200,1,'-02'),(656,4,-10800,0,'-03'),(657,0,-15408,0,'CMT'),(657,1,-14400,0,'-04'),(657,2,-10800,1,'-03'),(657,3,-7200,1,'-02'),(657,4,-10800,0,'-03'),(658,0,-15408,0,'CMT'),(658,1,-14400,0,'-04'),(658,2,-10800,1,'-03'),(658,3,-7200,1,'-02'),(658,4,-10800,0,'-03'),(659,0,-15408,0,'CMT'),(659,1,-14400,0,'-04'),(659,2,-10800,1,'-03'),(659,3,-7200,1,'-02'),(659,4,-10800,0,'-03'),(660,0,-15408,0,'CMT'),(660,1,-14400,0,'-04'),(660,2,-10800,1,'-03'),(660,3,-7200,1,'-02'),(660,4,-10800,0,'-03'),(661,0,-15408,0,'CMT'),(661,1,-14400,0,'-04'),(661,2,-10800,1,'-03'),(661,3,-7200,1,'-02'),(661,4,-10800,0,'-03'),(662,0,-15408,0,'CMT'),(662,1,-14400,0,'-04'),(662,2,-10800,1,'-03'),(662,3,-7200,1,'-02'),(662,4,-10800,0,'-03'),(662,5,-10800,1,'-03'),(663,0,-15408,0,'CMT'),(663,1,-14400,0,'-04'),(663,2,-10800,1,'-03'),(663,3,-7200,1,'-02'),(663,4,-10800,0,'-03'),(664,0,-15408,0,'CMT'),(664,1,-14400,0,'-04'),(664,2,-10800,1,'-03'),(664,3,-7200,1,'-02'),(664,4,-10800,0,'-03'),(665,0,-16547,0,'LMT'),(665,1,-16200,0,'-0430'),(665,2,-14400,0,'AST'),(666,0,-13840,0,'AMT'),(666,1,-14400,0,'-04'),(666,2,-10800,0,'-03'),(666,3,-10800,1,'-03'),(666,4,-14400,0,'-04'),(667,0,-18000,1,'CDT'),(667,1,-21600,0,'CST'),(667,2,-18000,1,'CWT'),(667,3,-18000,1,'CPT'),(667,4,-18000,0,'EST'),(668,0,-39600,0,'NST'),(668,1,-36000,1,'NWT'),(668,2,-36000,1,'NPT'),(668,3,-39600,0,'BST'),(668,4,-36000,1,'BDT'),(668,5,-36000,0,'AHST'),(668,6,-32400,1,'HDT'),(668,7,-36000,0,'HST'),(669,0,-9244,0,'LMT'),(669,1,-7200,1,'-02'),(669,2,-10800,0,'-03'),(670,0,-25260,0,'LMT'),(670,1,-25200,0,'MST'),(670,2,-21600,0,'CST'),(670,3,-28800,0,'PST'),(670,4,-21600,1,'MDT'),(670,5,-18000,1,'CDT'),(670,6,-21600,0,'CST'),(671,0,-14309,0,'LMT'),(671,1,-14309,0,'BMT'),(671,2,-10800,1,'ADT'),(671,3,-14400,0,'AST'),(672,0,-11636,0,'LMT'),(672,1,-7200,1,'-02'),(672,2,-10800,0,'-03'),(673,0,-21168,0,'LMT'),(673,1,-19800,1,'-0530'),(673,2,-21600,0,'CST'),(673,3,-18000,1,'CDT'),(674,0,-10800,1,'ADT'),(674,1,-14400,0,'AST'),(674,2,-10800,1,'AWT'),(674,3,-10800,1,'APT'),(675,0,-14560,0,'LMT'),(675,1,-10800,1,'-03'),(675,2,-14400,0,'-04'),(676,0,-17776,0,'BMT'),(676,1,-14400,1,'-04'),(676,2,-18000,0,'-05'),(677,0,-25200,1,'PDT'),(677,1,-28800,0,'PST'),(677,2,-21600,1,'MWT'),(677,3,-21600,1,'MPT'),(677,4,-25200,0,'MST'),(677,5,-21600,1,'MDT'),(678,0,-15408,0,'CMT'),(678,1,-14400,0,'-04'),(678,2,-10800,1,'-03'),(678,3,-7200,1,'-02'),(678,4,-10800,0,'-03'),(679,0,0,0,'-00'),(679,1,-21600,1,'MWT'),(679,2,-21600,1,'MPT'),(679,3,-25200,0,'MST'),(679,4,-18000,1,'MDDT'),(679,5,-21600,1,'MDT'),(679,6,-18000,1,'CDT'),(679,7,-21600,0,'CST'),(679,8,-18000,0,'EST'),(679,9,-21600,1,'MDT'),(679,10,-25200,0,'MST'),(680,0,-13108,0,'LMT'),(680,1,-10800,1,'-03'),(680,2,-14400,0,'-04'),(681,0,-20824,0,'LMT'),(681,1,-21600,0,'CST'),(681,2,-14400,1,'EDT'),(681,3,-18000,0,'EST'),(681,4,-18000,1,'CDT'),(682,0,-16060,0,'CMT'),(682,1,-16200,0,'-0430'),(682,2,-14400,0,'-04'),(683,0,-15408,0,'CMT'),(683,1,-14400,0,'-04'),(683,2,-10800,1,'-03'),(683,3,-7200,1,'-02'),(683,4,-10800,0,'-03'),(684,0,-12560,0,'LMT'),(684,1,-14400,0,'-04'),(684,2,-10800,0,'-03'),(685,0,-19176,0,'CMT'),(685,1,-18000,0,'EST'),(686,0,-18000,1,'CDT'),(686,1,-21600,0,'CST'),(686,2,-18000,0,'EST'),(686,3,-18000,1,'CWT'),(686,4,-18000,1,'CPT'),(686,5,-21600,0,'CST'),(687,0,-25460,0,'LMT'),(687,1,-25200,0,'MST'),(687,2,-21600,0,'CST'),(687,3,-18000,1,'CDT'),(687,4,-21600,1,'MDT'),(687,5,-25200,0,'MST'),(688,0,-18000,1,'CDT'),(688,1,-21600,0,'CST'),(688,2,-18000,1,'CWT'),(688,3,-18000,1,'CPT'),(688,4,-18000,0,'EST'),(689,0,-15408,0,'CMT'),(689,1,-14400,0,'-04'),(689,2,-10800,1,'-03'),(689,3,-7200,1,'-02'),(689,4,-10800,0,'-03'),(690,0,-20173,0,'SJMT'),(690,1,-18000,1,'CDT'),(690,2,-21600,0,'CST'),(691,0,-25200,0,'MST'),(691,1,-28800,0,'PST'),(691,2,-25200,0,'MST'),(692,0,-13460,0,'LMT'),(692,1,-10800,1,'-03'),(692,2,-14400,0,'-04'),(693,0,-16547,0,'LMT'),(693,1,-16200,0,'-0430'),(693,2,-14400,0,'AST'),(694,0,-4480,0,'LMT'),(694,1,-10800,0,'-03'),(694,2,-10800,0,'-03'),(694,3,-7200,1,'-02'),(694,4,-7200,1,'-02'),(694,5,0,0,'GMT'),(695,0,-28800,1,'YDT'),(695,1,-32400,0,'YST'),(695,2,-28800,1,'YWT'),(695,3,-28800,1,'YPT'),(695,4,-25200,1,'YDDT'),(695,5,-28800,0,'PST'),(695,6,-25200,1,'PDT'),(696,0,-25200,1,'PDT'),(696,1,-28800,0,'PST'),(696,2,-25200,1,'PWT'),(696,3,-25200,1,'PPT'),(696,4,-25200,0,'MST'),(697,0,-21600,1,'MDT'),(697,1,-25200,0,'MST'),(697,2,-21600,1,'MWT'),(697,3,-21600,1,'MPT'),(698,0,-19931,0,'LMT'),(698,1,-21600,0,'CST'),(698,2,-18000,0,'EST'),(698,3,-14400,1,'EWT'),(698,4,-14400,1,'EPT'),(698,5,-14400,1,'EDT'),(699,0,-14764,0,'LMT'),(699,1,-14400,0,'AST'),(700,0,-27232,0,'LMT'),(700,1,-21600,1,'MDT'),(700,2,-25200,0,'MST'),(700,3,-21600,1,'MWT'),(700,4,-21600,1,'MPT'),(701,0,-16768,0,'LMT'),(701,1,-14400,1,'-04'),(701,2,-18000,0,'-05'),(701,3,-14400,0,'-04'),(701,4,-18000,0,'-05'),(702,0,-21408,0,'LMT'),(702,1,-18000,1,'CDT'),(702,2,-21600,0,'CST'),(703,0,-28084,0,'LMT'),(703,1,-25200,0,'MST'),(703,2,-28800,0,'PST'),(703,3,-25200,1,'PDT'),(703,4,-25200,1,'PWT'),(703,5,-25200,1,'PPT'),(704,0,-25200,1,'PDT'),(704,1,-28800,0,'PST'),(704,2,-25200,1,'PWT'),(704,3,-25200,1,'PPT'),(704,4,-25200,0,'MST'),(705,0,-18000,1,'CDT'),(705,1,-21600,0,'CST'),(705,2,-18000,1,'CWT'),(705,3,-18000,1,'CPT'),(705,4,-18000,0,'EST'),(705,5,-14400,1,'EDT'),(706,0,-9240,0,'LMT'),(706,1,-7200,1,'-02'),(706,2,-10800,0,'-03'),(707,0,-14388,0,'LMT'),(707,1,-10800,1,'ADT'),(707,2,-14400,0,'AST'),(707,3,-10800,1,'AWT'),(707,4,-10800,1,'APT'),(708,0,-12416,0,'LMT'),(708,1,-10800,0,'-03'),(708,2,-10800,0,'-03'),(708,3,-7200,1,'-02'),(708,4,-7200,1,'-02'),(709,0,-12652,0,'NST'),(709,1,-9052,1,'NDT'),(709,2,-12600,0,'NST'),(709,3,-9000,1,'NDT'),(709,4,-9000,1,'NPT'),(709,5,-9000,1,'NWT'),(709,6,-10800,1,'ADT'),(709,7,-14400,0,'AST'),(709,8,-7200,1,'ADDT'),(709,9,-10800,1,'ADT'),(710,0,-18430,0,'KMT'),(710,1,-18000,0,'EST'),(710,2,-14400,1,'EDT'),(710,3,-14400,0,'AST'),(710,4,-18000,0,'EST'),(711,0,-14764,0,'LMT'),(711,1,-14400,0,'AST'),(712,0,-14764,0,'LMT'),(712,1,-14400,0,'AST'),(713,0,-21724,0,'LMT'),(713,1,-18000,1,'CDT'),(713,2,-21600,0,'CST'),(714,0,-18840,0,'QMT'),(714,1,-14400,1,'-04'),(714,2,-18000,0,'-05'),(715,0,-13960,0,'LMT'),(715,1,-13500,0,'-0345'),(715,2,-10800,0,'-03'),(715,3,-14400,0,'-04'),(716,0,-15264,0,'LMT'),(716,1,-10800,1,'ADT'),(716,2,-14400,0,'AST'),(716,3,-10800,1,'AWT'),(716,4,-10800,1,'APT'),(717,0,-19776,0,'HMT'),(717,1,-14400,1,'CDT'),(717,2,-18000,0,'CST'),(717,3,-18000,0,'CST'),(717,4,-14400,1,'CDT'),(718,0,-26632,0,'LMT'),(718,1,-25200,0,'MST'),(718,2,-21600,0,'CST'),(718,3,-28800,0,'PST'),(718,4,-21600,1,'MDT'),(718,5,-25200,0,'MST'),(719,0,-18000,1,'CDT'),(719,1,-21600,0,'CST'),(719,2,-18000,1,'CWT'),(719,3,-18000,1,'CPT'),(719,4,-18000,0,'EST'),(719,5,-14400,1,'EDT'),(720,0,-18000,1,'CDT'),(720,1,-21600,0,'CST'),(720,2,-18000,1,'CWT'),(720,3,-18000,1,'CPT'),(720,4,-18000,0,'EST'),(720,5,-21600,0,'CST'),(721,0,-18000,1,'CDT'),(721,1,-21600,0,'CST'),(721,2,-18000,1,'CWT'),(721,3,-18000,1,'CPT'),(721,4,-18000,0,'EST'),(721,5,-14400,1,'EDT'),(722,0,-18000,1,'CDT'),(722,1,-21600,0,'CST'),(722,2,-18000,1,'CWT'),(722,3,-18000,1,'CPT'),(722,4,-18000,0,'EST'),(722,5,-14400,1,'EDT'),(723,0,-18000,1,'CDT'),(723,1,-21600,0,'CST'),(723,2,-18000,1,'CWT'),(723,3,-18000,1,'CPT'),(723,4,-18000,0,'EST'),(723,5,-14400,1,'EDT'),(723,6,-18000,1,'CDT'),(723,7,-21600,0,'CST'),(724,0,-18000,1,'CDT'),(724,1,-21600,0,'CST'),(724,2,-18000,1,'CWT'),(724,3,-18000,1,'CPT'),(724,4,-18000,0,'EST'),(724,5,-14400,1,'EDT'),(725,0,-18000,1,'CDT'),(725,1,-21600,0,'CST'),(725,2,-18000,1,'CWT'),(725,3,-18000,1,'CPT'),(725,4,-18000,0,'EST'),(725,5,-14400,1,'EDT'),(726,0,-18000,1,'CDT'),(726,1,-21600,0,'CST'),(726,2,-18000,1,'CWT'),(726,3,-18000,1,'CPT'),(726,4,-18000,0,'EST'),(726,5,-14400,1,'EDT'),(727,0,-18000,1,'CDT'),(727,1,-21600,0,'CST'),(727,2,-18000,1,'CWT'),(727,3,-18000,1,'CPT'),(727,4,-18000,0,'EST'),(727,5,-14400,1,'EDT'),(728,0,0,0,'-00'),(728,1,-21600,1,'PDDT'),(728,2,-28800,0,'PST'),(728,3,-25200,0,'MST'),(728,4,-21600,1,'MDT'),(729,0,0,0,'-00'),(729,1,-14400,1,'EPT'),(729,2,-18000,0,'EST'),(729,3,-10800,1,'EDDT'),(729,4,-14400,1,'EDT'),(729,5,-14400,1,'EWT'),(729,6,-21600,0,'CST'),(729,7,-18000,1,'CDT'),(729,8,-14400,1,'EDT'),(729,9,-18000,0,'EST'),(730,0,-18430,0,'KMT'),(730,1,-18000,0,'EST'),(730,2,-14400,1,'EDT'),(731,0,-15408,0,'CMT'),(731,1,-14400,0,'-04'),(731,2,-10800,1,'-03'),(731,3,-7200,1,'-02'),(731,4,-10800,0,'-03'),(732,0,-28800,0,'PST'),(732,1,-25200,1,'PWT'),(732,2,-25200,1,'PPT'),(732,3,-25200,1,'PDT'),(732,4,-28800,1,'YDT'),(732,5,-32400,0,'YST'),(732,6,-28800,1,'AKDT'),(732,7,-32400,0,'AKST'),(733,0,-18000,1,'CDT'),(733,1,-21600,0,'CST'),(733,2,-18000,1,'CWT'),(733,3,-18000,1,'CPT'),(733,4,-18000,0,'EST'),(733,5,-14400,1,'EDT'),(734,0,-18000,1,'CDT'),(734,1,-21600,0,'CST'),(734,2,-18000,1,'CWT'),(734,3,-18000,1,'CPT'),(734,4,-14400,1,'EDT'),(734,5,-18000,0,'EST'),(735,0,-18000,1,'CDT'),(735,1,-21600,0,'CST'),(735,2,-18000,1,'CWT'),(735,3,-18000,1,'CPT'),(735,4,-18000,0,'EST'),(735,5,-21600,0,'CST'),(736,0,-16547,0,'LMT'),(736,1,-16200,0,'-0430'),(736,2,-14400,0,'AST'),(737,0,-16356,0,'CMT'),(737,1,-12756,1,'BST'),(737,2,-14400,0,'-04'),(738,0,-18516,0,'LMT'),(738,1,-14400,1,'-04'),(738,2,-18000,0,'-05'),(739,0,-25200,1,'PDT'),(739,1,-28800,0,'PST'),(739,2,-25200,1,'PWT'),(739,3,-25200,1,'PPT'),(740,0,-18000,1,'CDT'),(740,1,-21600,0,'CST'),(740,2,-18000,1,'CWT'),(740,3,-18000,1,'CPT'),(740,4,-18000,0,'EST'),(740,5,-14400,1,'EDT'),(741,0,-16547,0,'LMT'),(741,1,-16200,0,'-0430'),(741,2,-14400,0,'AST'),(742,0,-8572,0,'LMT'),(742,1,-7200,1,'-02'),(742,2,-10800,0,'-03'),(743,0,-20712,0,'MMT'),(743,1,-21600,0,'CST'),(743,2,-18000,0,'EST'),(743,3,-18000,1,'CDT'),(743,4,-21600,0,'CST'),(744,0,-14404,0,'LMT'),(744,1,-10800,1,'-03'),(744,2,-14400,0,'-04'),(745,0,-14764,0,'LMT'),(745,1,-14400,0,'AST'),(746,0,-14660,0,'FFMT'),(746,1,-14400,0,'AST'),(746,2,-10800,1,'ADT'),(747,0,-24000,0,'LMT'),(747,1,-21600,0,'CST'),(747,2,-18000,1,'CDT'),(748,0,-25540,0,'LMT'),(748,1,-25200,0,'MST'),(748,2,-21600,0,'CST'),(748,3,-28800,0,'PST'),(748,4,-21600,1,'MDT'),(748,5,-25200,0,'MST'),(749,0,-15408,0,'CMT'),(749,1,-14400,0,'-04'),(749,2,-10800,1,'-03'),(749,3,-7200,1,'-02'),(749,4,-10800,0,'-03'),(750,0,-18000,1,'CDT'),(750,1,-21600,0,'CST'),(750,2,-18000,1,'CWT'),(750,3,-18000,1,'CPT'),(750,4,-18000,0,'EST'),(750,5,-21600,0,'CST'),(751,0,-21508,0,'LMT'),(751,1,-21600,0,'CST'),(751,2,-18000,0,'EST'),(751,3,-18000,1,'CDT'),(751,4,-21600,0,'CST'),(752,0,-28800,0,'PST'),(752,1,-25200,1,'PWT'),(752,2,-25200,1,'PPT'),(752,3,-25200,1,'PDT'),(752,4,-32400,0,'AKST'),(752,5,-28800,1,'AKDT'),(753,0,-23796,0,'LMT'),(753,1,-25200,0,'MST'),(753,2,-21600,0,'CST'),(753,3,-18000,1,'CDT'),(753,4,-18000,1,'CWT'),(754,0,-13480,0,'LMT'),(754,1,-14400,0,'AST'),(754,2,-10800,0,'-03'),(754,3,-7200,1,'-02'),(755,0,-18000,0,'EST'),(755,1,-10800,1,'ADT'),(755,2,-14400,0,'AST'),(755,3,-10800,1,'AWT'),(755,4,-10800,1,'APT'),(756,0,-24076,0,'LMT'),(756,1,-21600,0,'CST'),(756,2,-18000,1,'CDT'),(757,0,-13491,0,'LMT'),(757,1,-13491,0,'MMT'),(757,2,-14400,0,'-04'),(757,3,-12600,0,'-0330'),(757,4,-10800,1,'-03'),(757,5,-10800,0,'-03'),(757,6,-9000,1,'-0230'),(757,7,-7200,1,'-02'),(757,8,-5400,1,'-0130'),(757,9,-7200,1,'-02'),(758,0,-14400,1,'EDT'),(758,1,-18000,0,'EST'),(758,2,-14400,1,'EWT'),(758,3,-14400,1,'EPT'),(759,0,-14764,0,'LMT'),(759,1,-14400,0,'AST'),(760,0,-18570,0,'LMT'),(760,1,-14400,1,'EDT'),(760,2,-18000,0,'EST'),(761,0,-14400,1,'EDT'),(761,1,-18000,0,'EST'),(761,2,-14400,1,'EWT'),(761,3,-14400,1,'EPT'),(762,0,-14400,1,'EDT'),(762,1,-18000,0,'EST'),(762,2,-14400,1,'EWT'),(762,3,-14400,1,'EPT'),(763,0,-39600,0,'NST'),(763,1,-36000,1,'NWT'),(763,2,-36000,1,'NPT'),(763,3,-39600,0,'BST'),(763,4,-36000,1,'BDT'),(763,5,-32400,0,'YST'),(763,6,-28800,1,'AKDT'),(763,7,-32400,0,'AKST'),(764,0,-7780,0,'LMT'),(764,1,-3600,1,'-01'),(764,2,-7200,0,'-02'),(765,0,-21600,1,'MDT'),(765,1,-25200,0,'MST'),(765,2,-21600,1,'MWT'),(765,3,-21600,1,'MPT'),(765,4,-18000,1,'CDT'),(765,5,-21600,0,'CST'),(766,0,-21600,1,'MDT'),(766,1,-25200,0,'MST'),(766,2,-21600,1,'MWT'),(766,3,-21600,1,'MPT'),(766,4,-18000,1,'CDT'),(766,5,-21600,0,'CST'),(767,0,-21600,1,'MDT'),(767,1,-25200,0,'MST'),(767,2,-21600,1,'MWT'),(767,3,-21600,1,'MPT'),(767,4,-18000,1,'CDT'),(767,5,-21600,0,'CST'),(768,0,-25060,0,'LMT'),(768,1,-25200,0,'MST'),(768,2,-21600,0,'CST'),(768,3,-18000,1,'CDT'),(768,4,-21600,1,'MDT'),(768,5,-25200,0,'MST'),(769,0,-19176,0,'CMT'),(769,1,-18000,0,'EST'),(770,0,0,0,'-00'),(770,1,-10800,1,'AWT'),(770,2,-10800,1,'APT'),(770,3,-14400,0,'AST'),(770,4,-7200,1,'ADDT'),(770,5,-10800,1,'ADT'),(770,6,-14400,1,'EDT'),(770,7,-18000,0,'EST'),(770,8,-21600,0,'CST'),(770,9,-18000,1,'CDT'),(770,10,-14400,1,'EDT'),(770,11,-18000,0,'EST'),(771,0,-13240,0,'LMT'),(771,1,-13252,0,'PMT'),(771,2,-13236,0,'PMT'),(771,3,-12600,0,'-0330'),(771,4,-10800,0,'-03'),(772,0,-21600,1,'MDT'),(772,1,-25200,0,'MST'),(772,2,-21600,1,'MWT'),(773,0,-17340,0,'PPMT'),(773,1,-14400,1,'EDT'),(773,2,-18000,0,'EST'),(773,3,-14400,1,'EDT'),(773,4,-18000,0,'EST'),(774,0,-14764,0,'LMT'),(774,1,-14400,0,'AST'),(775,0,-16272,0,'LMT'),(775,1,-14400,1,'-04'),(775,2,-18000,0,'-05'),(775,3,-14400,0,'-04'),(775,4,-18000,0,'-05'),(776,0,-15336,0,'LMT'),(776,1,-10800,1,'-03'),(776,2,-14400,0,'-04'),(777,0,-14400,0,'AST'),(777,1,-10800,1,'APT'),(777,2,-10800,1,'AWT'),(778,0,-16966,0,'SMT'),(778,1,-18000,0,'-05'),(778,2,-14400,0,'-04'),(778,3,-14400,1,'-04'),(778,4,-10800,1,'-03'),(778,5,-14400,0,'-04'),(778,6,-10800,0,'-03'),(779,0,-18000,1,'CDT'),(779,1,-21600,0,'CST'),(779,2,-18000,1,'CWT'),(779,3,-18000,1,'CPT'),(780,0,0,0,'-00'),(780,1,-14400,1,'CDDT'),(780,2,-21600,0,'CST'),(780,3,-18000,1,'CDT'),(780,4,-18000,0,'EST'),(780,5,-21600,0,'CST'),(781,0,-8376,0,'LMT'),(781,1,-7200,1,'-02'),(781,2,-10800,0,'-03'),(782,0,-25116,0,'LMT'),(782,1,-21600,1,'MDT'),(782,2,-25200,0,'MST'),(782,3,-21600,1,'MWT'),(782,4,-21600,1,'MPT'),(782,5,-21600,0,'CST'),(783,0,0,0,'-00'),(783,1,-14400,1,'CDDT'),(783,2,-21600,0,'CST'),(783,3,-18000,1,'CDT'),(783,4,-18000,0,'EST'),(783,5,-21600,0,'CST'),(784,0,-16272,0,'LMT'),(784,1,-14400,1,'-04'),(784,2,-18000,0,'-05'),(784,3,-14400,0,'-04'),(784,4,-18000,0,'-05'),(785,0,-15408,0,'CMT'),(785,1,-14400,0,'-04'),(785,2,-10800,1,'-03'),(785,3,-7200,1,'-02'),(785,4,-10800,0,'-03'),(786,0,-28084,0,'LMT'),(786,1,-25200,0,'MST'),(786,2,-28800,0,'PST'),(786,3,-25200,1,'PDT'),(786,4,-25200,1,'PWT'),(786,5,-25200,1,'PPT'),(787,0,-13128,0,'LMT'),(787,1,-10800,1,'-03'),(787,2,-14400,0,'-04'),(787,3,-10800,0,'-03'),(788,0,-16966,0,'SMT'),(788,1,-18000,0,'-05'),(788,2,-14400,0,'-04'),(788,3,-14400,1,'-04'),(788,4,-10800,1,'-03'),(788,5,-10800,1,'-03'),(788,6,-14400,0,'-04'),(789,0,-16800,0,'SDMT'),(789,1,-14400,1,'EDT'),(789,2,-18000,0,'EST'),(789,3,-16200,1,'-0430'),(789,4,-14400,0,'AST'),(790,0,-11188,0,'LMT'),(790,1,-7200,1,'-02'),(790,2,-10800,0,'-03'),(791,0,-5272,0,'LMT'),(791,1,-7200,0,'-02'),(791,2,-3600,1,'-01'),(791,3,-7200,0,'-02'),(791,4,-3600,0,'-01'),(791,5,0,1,'+00'),(791,6,0,1,'+00'),(792,0,-21600,1,'MDT'),(792,1,-25200,0,'MST'),(792,2,-21600,1,'MWT'),(792,3,-21600,1,'MPT'),(793,0,-28800,0,'PST'),(793,1,-25200,1,'PWT'),(793,2,-25200,1,'PPT'),(793,3,-25200,1,'PDT'),(793,4,-32400,0,'YST'),(793,5,-28800,1,'AKDT'),(793,6,-32400,0,'AKST'),(794,0,-14764,0,'LMT'),(794,1,-14400,0,'AST'),(795,0,-9052,1,'NDT'),(795,1,-12652,0,'NST'),(795,2,-9000,1,'NDT'),(795,3,-12600,0,'NST'),(795,4,-9000,1,'NPT'),(795,5,-9000,1,'NWT'),(795,6,-5400,1,'NDDT'),(795,7,-9000,1,'NDT'),(796,0,-14764,0,'LMT'),(796,1,-14400,0,'AST'),(797,0,-14764,0,'LMT'),(797,1,-14400,0,'AST'),(798,0,-14764,0,'LMT'),(798,1,-14400,0,'AST'),(799,0,-14764,0,'LMT'),(799,1,-14400,0,'AST'),(800,0,-25880,0,'LMT'),(800,1,-21600,1,'MDT'),(800,2,-25200,0,'MST'),(800,3,-21600,1,'MWT'),(800,4,-21600,1,'MPT'),(800,5,-21600,0,'CST'),(801,0,-20932,0,'LMT'),(801,1,-18000,1,'CDT'),(801,2,-21600,0,'CST'),(802,0,-16508,0,'LMT'),(802,1,-10800,1,'ADT'),(802,2,-14400,0,'AST'),(803,0,-21600,0,'CST'),(803,1,-18000,0,'EST'),(803,2,-14400,1,'EWT'),(803,3,-14400,1,'EPT'),(803,4,-14400,1,'EDT'),(804,0,-28084,0,'LMT'),(804,1,-25200,0,'MST'),(804,2,-28800,0,'PST'),(804,3,-25200,1,'PDT'),(804,4,-25200,1,'PWT'),(804,5,-25200,1,'PPT'),(805,0,-14400,1,'EDT'),(805,1,-18000,0,'EST'),(805,2,-14400,1,'EWT'),(805,3,-14400,1,'EPT'),(806,0,-14764,0,'LMT'),(806,1,-14400,0,'AST'),(807,0,-25200,1,'PDT'),(807,1,-28800,0,'PST'),(807,2,-25200,1,'PWT'),(807,3,-25200,1,'PPT'),(808,0,-14764,0,'LMT'),(808,1,-14400,0,'AST'),(809,0,-28800,1,'YDT'),(809,1,-32400,0,'YST'),(809,2,-28800,1,'YWT'),(809,3,-28800,1,'YPT'),(809,4,-25200,1,'YDDT'),(809,5,-28800,0,'PST'),(809,6,-25200,1,'PDT'),(810,0,-18000,1,'CDT'),(810,1,-21600,0,'CST'),(810,2,-18000,1,'CWT'),(810,3,-18000,1,'CPT'),(810,4,-18000,1,'CDT'),(810,5,-21600,0,'CST'),(811,0,-32400,0,'YST'),(811,1,-28800,1,'YWT'),(811,2,-28800,1,'YPT'),(811,3,-28800,1,'YDT'),(811,4,-28800,1,'AKDT'),(811,5,-32400,0,'AKST'),(812,0,0,0,'-00'),(812,1,-21600,1,'MWT'),(812,2,-21600,1,'MPT'),(812,3,-25200,0,'MST'),(812,4,-18000,1,'MDDT'),(812,5,-21600,1,'MDT'),(813,0,0,0,'-00'),(813,1,28800,0,'+08'),(813,2,39600,0,'+11'),(813,3,28800,0,'+08'),(814,0,0,0,'-00'),(814,1,25200,0,'+07'),(814,2,18000,0,'+05'),(814,3,25200,0,'+07'),(815,0,0,0,'-00'),(815,1,36000,0,'+10'),(816,0,36000,0,'AEST'),(816,1,39600,1,'AEDT'),(816,2,0,0,'-00'),(816,3,39600,1,'AEDT'),(816,4,36000,0,'AEST'),(816,5,39600,0,'+11'),(817,0,0,0,'-00'),(817,1,21600,0,'+06'),(817,2,18000,0,'+05'),(818,0,45000,1,'NZST'),(818,1,41400,0,'NZMT'),(818,2,43200,1,'NZST'),(818,3,46800,1,'NZDT'),(818,4,43200,0,'NZST'),(818,5,43200,0,'NZST'),(819,0,0,0,'-00'),(819,1,-14400,0,'-04'),(819,2,-10800,1,'-03'),(819,3,-7200,1,'-02'),(819,4,-10800,0,'-03'),(819,5,-10800,1,'-03'),(819,6,-14400,0,'-04'),(819,7,-10800,0,'-03'),(820,0,0,0,'-00'),(820,1,-10800,0,'-03'),(821,0,45000,1,'NZST'),(821,1,41400,0,'NZMT'),(821,2,43200,1,'NZST'),(821,3,46800,1,'NZDT'),(821,4,43200,0,'NZST'),(821,5,43200,0,'NZST'),(822,0,0,0,'-00'),(822,1,10800,0,'+03'),(823,0,0,0,'-00'),(823,1,7200,1,'+02'),(823,2,0,0,'+00'),(823,3,0,0,'+00'),(824,0,0,0,'-00'),(824,1,21600,0,'+06'),(825,0,7200,1,'CEST'),(825,1,3600,0,'CET'),(825,2,3600,0,'CET'),(825,3,7200,1,'CEST'),(825,4,7200,1,'CEST'),(825,5,3600,0,'CET'),(826,0,11212,0,'LMT'),(826,1,10800,0,'+03'),(827,0,18468,0,'LMT'),(827,1,18000,0,'+05'),(827,2,25200,1,'+07'),(827,3,21600,0,'+06'),(827,4,21600,0,'+06'),(827,5,25200,1,'+07'),(827,6,21600,1,'+06'),(827,7,18000,0,'+05'),(827,8,25200,1,'+07'),(827,9,21600,0,'+06'),(828,0,8624,0,'LMT'),(828,1,10800,1,'EEST'),(828,2,7200,0,'EET'),(828,3,7200,0,'EET'),(828,4,10800,1,'EEST'),(829,0,42596,0,'LMT'),(829,1,43200,0,'+12'),(829,2,50400,1,'+14'),(829,3,46800,0,'+13'),(829,4,46800,1,'+13'),(829,5,43200,0,'+12'),(829,6,46800,1,'+13'),(829,7,43200,1,'+12'),(829,8,39600,0,'+11'),(829,9,43200,0,'+12'),(830,0,12064,0,'LMT'),(830,1,14400,0,'+04'),(830,2,18000,0,'+05'),(830,3,21600,0,'+06'),(830,4,21600,1,'+06'),(830,5,18000,0,'+05'),(830,6,21600,1,'+06'),(830,7,18000,1,'+05'),(830,8,14400,0,'+04'),(830,9,18000,0,'+05'),(831,0,13720,0,'LMT'),(831,1,14400,0,'+04'),(831,2,18000,0,'+05'),(831,3,21600,1,'+06'),(831,4,21600,0,'+06'),(831,5,18000,0,'+05'),(831,6,21600,1,'+06'),(831,7,18000,1,'+05'),(831,8,14400,0,'+04'),(831,9,21600,1,'+06'),(831,10,18000,0,'+05'),(832,0,14012,0,'LMT'),(832,1,14400,0,'+04'),(832,2,21600,1,'+06'),(832,3,18000,0,'+05'),(832,4,18000,0,'+05'),(832,5,21600,1,'+06'),(832,6,18000,1,'+05'),(832,7,14400,0,'+04'),(832,8,18000,0,'+05'),(833,0,14012,0,'LMT'),(833,1,14400,0,'+04'),(833,2,21600,1,'+06'),(833,3,18000,0,'+05'),(833,4,18000,0,'+05'),(833,5,21600,1,'+06'),(833,6,18000,1,'+05'),(833,7,14400,0,'+04'),(833,8,18000,0,'+05'),(834,0,12464,0,'LMT'),(834,1,10800,0,'+03'),(834,2,18000,0,'+05'),(834,3,21600,0,'+06'),(834,4,21600,1,'+06'),(834,5,18000,0,'+05'),(834,6,21600,1,'+06'),(834,7,18000,1,'+05'),(834,8,14400,0,'+04'),(834,9,18000,0,'+05'),(835,0,10656,0,'BMT'),(835,1,10800,0,'+03'),(835,2,14400,1,'+04'),(835,3,10800,0,'+03'),(835,4,14400,1,'+04'),(836,0,12368,0,'LMT'),(836,1,14400,0,'+04'),(836,2,10800,0,'+03'),(837,0,11964,0,'LMT'),(837,1,10800,0,'+03'),(837,2,18000,1,'+05'),(837,3,14400,0,'+04'),(837,4,14400,0,'+04'),(837,5,18000,1,'+05'),(837,6,14400,1,'+04'),(837,7,10800,0,'+03'),(837,8,18000,1,'+05'),(837,9,14400,0,'+04'),(838,0,24124,0,'BMT'),(838,1,25200,0,'+07'),(839,0,20100,0,'LMT'),(839,1,21600,0,'+06'),(839,2,28800,1,'+08'),(839,3,25200,0,'+07'),(839,4,25200,0,'+07'),(839,5,28800,1,'+08'),(839,6,25200,1,'+07'),(839,7,21600,0,'+06'),(839,8,25200,1,'+07'),(839,9,25200,0,'+07'),(840,0,10800,1,'EEST'),(840,1,7200,0,'EET'),(841,0,17904,0,'LMT'),(841,1,18000,0,'+05'),(841,2,25200,1,'+07'),(841,3,21600,0,'+06'),(841,4,21600,0,'+06'),(841,5,25200,1,'+07'),(841,6,21600,1,'+06'),(841,7,18000,0,'+05'),(841,8,21600,1,'+06'),(841,9,21600,0,'+06'),(842,0,27580,0,'LMT'),(842,1,27000,0,'+0730'),(842,2,28800,0,'+08'),(843,0,19270,0,'MMT'),(843,1,19800,0,'IST'),(843,2,23400,1,'+0630'),(844,0,27232,0,'LMT'),(844,1,28800,0,'+08'),(844,2,36000,1,'+10'),(844,3,32400,0,'+09'),(844,4,32400,0,'+09'),(844,5,36000,1,'+10'),(844,6,32400,1,'+09'),(844,7,28800,0,'+08'),(844,8,36000,0,'+10'),(844,9,36000,1,'+10'),(844,10,32400,0,'+09'),(845,0,27480,0,'LMT'),(845,1,25200,0,'+07'),(845,2,28800,0,'+08'),(845,3,32400,0,'+09'),(845,4,36000,1,'+10'),(845,5,32400,1,'+09'),(845,6,28800,0,'+08'),(846,0,32400,1,'CDT'),(846,1,28800,0,'CST'),(847,0,32400,1,'CDT'),(847,1,28800,0,'CST'),(848,0,19172,0,'MMT'),(848,1,19800,0,'+0530'),(848,2,21600,1,'+06'),(848,3,23400,1,'+0630'),(848,4,23400,0,'+0630'),(848,5,21600,0,'+06'),(848,6,19800,0,'+0530'),(849,0,21200,0,'HMT'),(849,1,23400,0,'+0630'),(849,2,19800,0,'+0530'),(849,3,21600,0,'+06'),(849,4,25200,1,'+07'),(850,0,8712,0,'LMT'),(850,1,10800,1,'EEST'),(850,2,7200,0,'EET'),(851,0,21200,0,'HMT'),(851,1,23400,0,'+0630'),(851,2,19800,0,'+0530'),(851,3,21600,0,'+06'),(851,4,25200,1,'+07'),(852,0,30140,0,'LMT'),(852,1,28800,0,'+08'),(852,2,32400,0,'+09'),(853,0,13272,0,'LMT'),(853,1,14400,0,'+04'),(854,0,16512,0,'LMT'),(854,1,18000,0,'+05'),(854,2,25200,1,'+07'),(854,3,21600,0,'+06'),(854,4,21600,0,'+06'),(854,5,25200,1,'+07'),(854,6,21600,1,'+06'),(854,7,18000,0,'+05'),(855,0,8148,0,'LMT'),(855,1,10800,1,'EEST'),(855,2,7200,0,'EET'),(855,3,7200,0,'EET'),(855,4,10800,1,'EEST'),(855,5,10800,0,'+03'),(855,6,7200,0,'EET'),(856,0,10800,1,'EEST'),(856,1,7200,0,'EET'),(856,2,10800,1,'IDT'),(856,3,7200,0,'IST'),(856,4,7200,0,'EET'),(857,0,32400,1,'CDT'),(857,1,28800,0,'CST'),(858,0,10800,1,'EEST'),(858,1,7200,0,'EET'),(858,2,10800,1,'IDT'),(858,3,7200,0,'IST'),(858,4,7200,0,'EET'),(859,0,25600,0,'LMT'),(859,1,25590,0,'PLMT'),(859,2,25200,0,'+07'),(859,3,28800,0,'+08'),(859,4,32400,0,'+09'),(859,5,25200,0,'+07'),(860,0,27402,0,'LMT'),(860,1,32400,1,'HKST'),(860,2,28800,0,'HKT'),(860,3,32400,0,'JST'),(860,4,28800,0,'HKT'),(861,0,21996,0,'LMT'),(861,1,21600,0,'+06'),(861,2,28800,1,'+08'),(861,3,25200,0,'+07'),(862,0,25025,0,'IMT'),(862,1,25200,0,'+07'),(862,2,32400,1,'+09'),(862,3,28800,0,'+08'),(862,4,28800,0,'+08'),(862,5,32400,1,'+09'),(862,6,28800,1,'+08'),(862,7,25200,0,'+07'),(862,8,32400,0,'+09'),(862,9,32400,1,'+09'),(862,10,28800,0,'+08'),(863,0,7016,0,'IMT'),(863,1,10800,1,'EEST'),(863,2,7200,0,'EET'),(863,3,14400,1,'+04'),(863,4,10800,0,'+03'),(863,5,10800,1,'EEST'),(863,6,7200,0,'EET'),(863,7,10800,1,'EEST'),(863,8,7200,0,'EET'),(863,9,10800,0,'+03'),(864,0,25632,0,'BMT'),(864,1,26400,0,'+0720'),(864,2,27000,0,'+0730'),(864,3,32400,0,'+09'),(864,4,28800,0,'+08'),(864,5,25200,0,'WIB'),(865,0,33768,0,'LMT'),(865,1,32400,0,'+09'),(865,2,34200,0,'+0930'),(865,3,32400,0,'WIT'),(866,0,8440,0,'JMT'),(866,1,10800,1,'IDT'),(866,2,7200,0,'IST'),(866,3,14400,1,'IDDT'),(866,4,10800,1,'IDT'),(867,0,14400,0,'+04'),(867,1,16200,0,'+0430'),(868,0,38076,0,'LMT'),(868,1,39600,0,'+11'),(868,2,46800,1,'+13'),(868,3,43200,0,'+12'),(868,4,43200,0,'+12'),(868,5,46800,1,'+13'),(868,6,43200,1,'+12'),(868,7,39600,0,'+11'),(868,8,43200,0,'+12'),(869,0,16092,0,'LMT'),(869,1,19800,0,'+0530'),(869,2,23400,1,'+0630'),(869,3,18000,0,'+05'),(869,4,21600,1,'PKST'),(869,5,18000,0,'PKT'),(870,0,21020,0,'LMT'),(870,1,21600,0,'+06'),(871,0,20476,0,'LMT'),(871,1,19800,0,'+0530'),(871,2,20700,0,'+0545'),(872,0,20476,0,'LMT'),(872,1,19800,0,'+0530'),(872,2,20700,0,'+0545'),(873,0,32533,0,'LMT'),(873,1,28800,0,'+08'),(873,2,36000,1,'+10'),(873,3,32400,0,'+09'),(873,4,32400,0,'+09'),(873,5,36000,1,'+10'),(873,6,32400,1,'+09'),(873,7,28800,0,'+08'),(873,8,39600,1,'+11'),(873,9,36000,0,'+10'),(873,10,36000,0,'+10'),(873,11,39600,0,'+11'),(873,12,32400,0,'+09'),(874,0,19270,0,'MMT'),(874,1,19800,0,'IST'),(874,2,23400,1,'+0630'),(875,0,22286,0,'LMT'),(875,1,21600,0,'+06'),(875,2,28800,1,'+08'),(875,3,25200,0,'+07'),(875,4,25200,0,'+07'),(875,5,28800,1,'+08'),(875,6,25200,1,'+07'),(875,7,21600,0,'+06'),(875,8,28800,0,'+08'),(875,9,28800,1,'+08'),(875,10,25200,0,'+07'),(876,0,24925,0,'SMT'),(876,1,25200,0,'+07'),(876,2,26400,1,'+0720'),(876,3,26400,0,'+0720'),(876,4,27000,0,'+0730'),(876,5,32400,0,'+09'),(876,6,28800,0,'+08'),(877,0,26480,0,'LMT'),(877,1,27000,0,'+0730'),(877,2,30000,1,'+0820'),(877,3,28800,0,'+08'),(877,4,32400,0,'+09'),(877,5,28800,0,'+08'),(878,0,11212,0,'LMT'),(878,1,10800,0,'+03'),(879,0,27260,0,'LMT'),(879,1,32400,1,'CDT'),(879,2,28800,0,'CST'),(879,3,28800,0,'CST'),(880,0,27260,0,'LMT'),(880,1,32400,1,'CDT'),(880,2,28800,0,'CST'),(880,3,28800,0,'CST'),(881,0,36192,0,'LMT'),(881,1,36000,0,'+10'),(881,2,43200,1,'+12'),(881,3,39600,0,'+11'),(881,4,39600,0,'+11'),(881,5,43200,1,'+12'),(881,6,39600,1,'+11'),(881,7,36000,0,'+10'),(881,8,43200,0,'+12'),(881,9,43200,1,'+12'),(881,10,39600,0,'+11'),(882,0,28656,0,'LMT'),(882,1,28656,0,'MMT'),(882,2,28800,0,'+08'),(882,3,32400,0,'+09'),(882,4,28800,0,'WITA'),(883,0,32400,1,'+09'),(883,1,28800,0,'+08'),(883,2,32400,0,'+09'),(883,3,28800,0,'+08'),(884,0,13272,0,'LMT'),(884,1,14400,0,'+04'),(885,0,8008,0,'LMT'),(885,1,10800,1,'EEST'),(885,2,7200,0,'EET'),(885,3,7200,0,'EET'),(885,4,10800,1,'EEST'),(886,0,20928,0,'LMT'),(886,1,21600,0,'+06'),(886,2,28800,1,'+08'),(886,3,25200,0,'+07'),(886,4,25200,0,'+07'),(886,5,28800,1,'+08'),(886,6,25200,1,'+07'),(886,7,21600,0,'+06'),(886,8,25200,0,'+07'),(887,0,19900,0,'LMT'),(887,1,21600,0,'+06'),(887,2,28800,1,'+08'),(887,3,25200,0,'+07'),(887,4,25200,0,'+07'),(887,5,28800,1,'+08'),(887,6,25200,1,'+07'),(887,7,21600,0,'+06'),(887,8,25200,1,'+07'),(887,9,25200,0,'+07'),(888,0,17610,0,'LMT'),(888,1,18000,0,'+05'),(888,2,25200,1,'+07'),(888,3,21600,0,'+06'),(888,4,21600,0,'+06'),(888,5,25200,1,'+07'),(888,6,21600,1,'+06'),(888,7,18000,0,'+05'),(888,8,25200,0,'+07'),(888,9,25200,1,'+07'),(888,10,21600,0,'+06'),(889,0,12324,0,'LMT'),(889,1,10800,0,'+03'),(889,2,18000,0,'+05'),(889,3,21600,1,'+06'),(889,4,21600,0,'+06'),(889,5,18000,0,'+05'),(889,6,21600,1,'+06'),(889,7,18000,1,'+05'),(889,8,14400,0,'+04'),(889,9,18000,0,'+05'),(890,0,24124,0,'BMT'),(890,1,25200,0,'+07'),(891,0,26240,0,'LMT'),(891,1,26240,0,'PMT'),(891,2,27000,0,'+0730'),(891,3,32400,0,'+09'),(891,4,28800,0,'+08'),(891,5,28800,0,'WITA'),(891,6,25200,0,'WIB'),(892,0,30180,0,'LMT'),(892,1,30600,0,'KST'),(892,2,32400,0,'JST'),(892,3,32400,0,'KST'),(893,0,12368,0,'LMT'),(893,1,14400,0,'+04'),(893,2,10800,0,'+03'),(894,0,15712,0,'LMT'),(894,1,14400,0,'+04'),(894,2,18000,0,'+05'),(894,3,21600,1,'+06'),(894,4,21600,0,'+06'),(894,5,18000,0,'+05'),(894,6,21600,1,'+06'),(894,7,18000,1,'+05'),(894,8,14400,0,'+04'),(894,9,21600,0,'+06'),(894,10,21600,1,'+06'),(895,0,23087,0,'RMT'),(895,1,23400,0,'+0630'),(895,2,32400,0,'+09'),(895,3,23400,0,'+0630'),(896,0,11212,0,'LMT'),(896,1,10800,0,'+03'),(897,0,25600,0,'LMT'),(897,1,25590,0,'PLMT'),(897,2,25200,0,'+07'),(897,3,28800,0,'+08'),(897,4,32400,0,'+09'),(897,5,25200,0,'+07'),(898,0,34248,0,'LMT'),(898,1,32400,0,'+09'),(898,2,43200,1,'+12'),(898,3,39600,0,'+11'),(898,4,39600,0,'+11'),(898,5,43200,1,'+12'),(898,6,39600,1,'+11'),(898,7,36000,0,'+10'),(898,8,39600,0,'+11'),(899,0,16073,0,'LMT'),(899,1,14400,0,'+04'),(899,2,18000,0,'+05'),(899,3,21600,1,'+06'),(899,4,21600,0,'+06'),(899,5,18000,0,'+05'),(899,6,21600,1,'+06'),(900,0,30472,0,'LMT'),(900,1,30600,0,'KST'),(900,2,32400,0,'JST'),(900,3,32400,0,'KST'),(900,4,34200,1,'KDT'),(900,5,36000,1,'KDT'),(901,0,32400,1,'CDT'),(901,1,28800,0,'CST'),(902,0,24925,0,'SMT'),(902,1,25200,0,'+07'),(902,2,26400,1,'+0720'),(902,3,26400,0,'+0720'),(902,4,27000,0,'+0730'),(902,5,32400,0,'+09'),(902,6,28800,0,'+08'),(903,0,36892,0,'LMT'),(903,1,36000,0,'+10'),(903,2,43200,1,'+12'),(903,3,39600,0,'+11'),(903,4,39600,0,'+11'),(903,5,43200,1,'+12'),(903,6,39600,1,'+11'),(903,7,36000,0,'+10'),(903,8,43200,0,'+12'),(903,9,43200,1,'+12'),(903,10,39600,0,'+11'),(904,0,28800,0,'CST'),(904,1,32400,0,'JST'),(904,2,32400,1,'CDT'),(904,3,28800,0,'CST'),(905,0,16631,0,'LMT'),(905,1,18000,0,'+05'),(905,2,25200,1,'+07'),(905,3,21600,0,'+06'),(905,4,21600,0,'+06'),(905,5,25200,1,'+07'),(905,6,21600,1,'+06'),(905,7,18000,0,'+05'),(906,0,10751,0,'TBMT'),(906,1,10800,0,'+03'),(906,2,18000,1,'+05'),(906,3,14400,0,'+04'),(906,4,14400,0,'+04'),(906,5,18000,1,'+05'),(906,6,14400,1,'+04'),(906,7,10800,0,'+03'),(906,8,14400,1,'+04'),(906,9,14400,0,'+04'),(907,0,12344,0,'LMT'),(907,1,12344,0,'TMT'),(907,2,12600,0,'+0330'),(907,3,18000,1,'+05'),(907,4,14400,0,'+04'),(907,5,16200,1,'+0430'),(907,6,12600,0,'+0330'),(908,0,8440,0,'JMT'),(908,1,10800,1,'IDT'),(908,2,7200,0,'IST'),(908,3,14400,1,'IDDT'),(908,4,10800,1,'IDT'),(909,0,21516,0,'LMT'),(909,1,19800,0,'+0530'),(909,2,21600,0,'+06'),(910,0,21516,0,'LMT'),(910,1,19800,0,'+0530'),(910,2,21600,0,'+06'),(911,0,36000,1,'JDT'),(911,1,32400,0,'JST'),(911,2,32400,0,'JST'),(912,0,20391,0,'LMT'),(912,1,21600,0,'+06'),(912,2,28800,1,'+08'),(912,3,25200,0,'+07'),(912,4,25200,0,'+07'),(912,5,28800,1,'+08'),(912,6,25200,1,'+07'),(912,7,21600,0,'+06'),(912,8,25200,1,'+07'),(912,9,25200,0,'+07'),(913,0,28656,0,'LMT'),(913,1,28656,0,'MMT'),(913,2,28800,0,'+08'),(913,3,32400,0,'+09'),(913,4,28800,0,'WITA'),(914,0,25652,0,'LMT'),(914,1,25200,0,'+07'),(914,2,32400,1,'+09'),(914,3,28800,0,'+08'),(915,0,25652,0,'LMT'),(915,1,25200,0,'+07'),(915,2,32400,1,'+09'),(915,3,28800,0,'+08'),(916,0,21020,0,'LMT'),(916,1,21600,0,'+06'),(917,0,34374,0,'LMT'),(917,1,28800,0,'+08'),(917,2,32400,0,'+09'),(917,3,39600,0,'+11'),(917,4,43200,1,'+12'),(917,5,39600,0,'+11'),(917,6,43200,1,'+12'),(917,7,39600,1,'+11'),(917,8,36000,0,'+10'),(917,9,43200,0,'+12'),(917,10,43200,1,'+12'),(917,11,36000,0,'+10'),(918,0,24124,0,'BMT'),(918,1,25200,0,'+07'),(919,0,31651,0,'LMT'),(919,1,32400,0,'+09'),(919,2,39600,1,'+11'),(919,3,36000,0,'+10'),(919,4,36000,0,'+10'),(919,5,39600,1,'+11'),(919,6,36000,1,'+10'),(919,7,32400,0,'+09'),(919,8,39600,0,'+11'),(919,9,39600,1,'+11'),(919,10,36000,0,'+10'),(920,0,31138,0,'LMT'),(920,1,28800,0,'+08'),(920,2,36000,1,'+10'),(920,3,32400,0,'+09'),(920,4,32400,0,'+09'),(920,5,36000,1,'+10'),(920,6,32400,1,'+09'),(920,7,28800,0,'+08'),(920,8,36000,0,'+10'),(920,9,36000,1,'+10'),(920,10,32400,0,'+09'),(921,0,23087,0,'RMT'),(921,1,23400,0,'+0630'),(921,2,32400,0,'+09'),(921,3,23400,0,'+0630'),(922,0,14553,0,'LMT'),(922,1,13505,0,'PMT'),(922,2,14400,0,'+04'),(922,3,21600,1,'+06'),(922,4,18000,0,'+05'),(922,5,18000,0,'+05'),(922,6,21600,1,'+06'),(922,7,18000,1,'+05'),(922,8,14400,0,'+04'),(922,9,21600,0,'+06'),(922,10,21600,1,'+06'),(922,11,18000,0,'+05'),(923,0,10680,0,'LMT'),(923,1,10800,0,'+03'),(923,2,18000,1,'+05'),(923,3,14400,0,'+04'),(923,4,14400,0,'+04'),(923,5,18000,1,'+05'),(923,6,14400,1,'+04'),(923,7,10800,0,'+03'),(923,8,18000,1,'+05'),(923,9,14400,0,'+04'),(924,0,-6872,0,'HMT'),(924,1,-3600,1,'-01'),(924,2,-7200,0,'-02'),(924,3,-3600,1,'-01'),(924,4,-7200,0,'-02'),(924,5,-7200,0,'-02'),(924,6,0,1,'+00'),(924,7,-3600,0,'-01'),(924,8,-3600,0,'-01'),(924,9,0,0,'WET'),(924,10,0,1,'+00'),(924,11,-3600,0,'-01'),(925,0,-15558,0,'LMT'),(925,1,-14400,0,'AST'),(925,2,-10800,1,'ADT'),(926,0,-3696,0,'LMT'),(926,1,-3600,0,'-01'),(926,2,0,0,'WET'),(926,3,3600,1,'WEST'),(926,4,0,0,'WET'),(926,5,3600,1,'WEST'),(927,0,-5644,0,'LMT'),(927,1,-7200,0,'-02'),(927,2,-3600,1,'-01'),(927,3,-7200,0,'-02'),(927,4,-3600,0,'-01'),(928,0,-1624,0,'LMT'),(928,1,0,0,'WET'),(928,2,3600,1,'WEST'),(928,3,0,0,'WET'),(929,0,-1624,0,'LMT'),(929,1,0,0,'WET'),(929,2,3600,1,'WEST'),(929,3,0,0,'WET'),(930,0,7200,1,'CEST'),(930,1,3600,0,'CET'),(930,2,3600,0,'CET'),(930,3,7200,1,'CEST'),(930,4,7200,1,'CEST'),(930,5,3600,0,'CET'),(931,0,-4056,0,'FMT'),(931,1,0,1,'+00'),(931,2,-3600,0,'-01'),(931,3,0,1,'+00'),(931,4,-3600,0,'-01'),(931,5,-3600,0,'-01'),(931,6,3600,1,'+01'),(931,7,3600,1,'WEST'),(931,8,0,0,'WET'),(931,9,0,0,'WET'),(931,10,0,0,'WET'),(931,11,3600,1,'WEST'),(932,0,-5280,0,'LMT'),(932,1,0,1,'+00'),(932,2,-3600,0,'-01'),(932,3,-3600,0,'-01'),(932,4,0,1,'+00'),(932,5,0,0,'GMT'),(933,0,-7200,0,'-02'),(934,0,-968,0,'LMT'),(934,1,0,0,'GMT'),(935,0,-13884,0,'SMT'),(935,1,-10800,1,'-03'),(935,2,-14400,0,'-04'),(935,3,-7200,1,'-02'),(935,4,-10800,0,'-03'),(935,5,-10800,1,'-03'),(936,0,39600,1,'AEDT'),(936,1,36000,0,'AEST'),(936,2,39600,1,'AEDT'),(936,3,36000,0,'AEST'),(937,0,37800,1,'ACDT'),(937,1,34200,0,'ACST'),(937,2,37800,1,'ACDT'),(937,3,34200,0,'ACST'),(938,0,39600,1,'AEDT'),(938,1,36000,0,'AEST'),(938,2,39600,1,'AEDT'),(938,3,36000,0,'AEST'),(939,0,37800,1,'ACDT'),(939,1,34200,0,'ACST'),(939,2,37800,1,'ACDT'),(939,3,34200,0,'ACST'),(940,0,39600,1,'AEDT'),(940,1,36000,0,'AEST'),(940,2,39600,1,'AEDT'),(940,3,36000,0,'AEST'),(941,0,36000,0,'AEST'),(941,1,39600,1,'AEDT'),(941,2,39600,1,'AEDT'),(941,3,36000,0,'AEST'),(942,0,37800,1,'ACDT'),(942,1,34200,0,'ACST'),(943,0,35100,1,'+0945'),(943,1,31500,0,'+0845'),(943,2,35100,1,'+0945'),(943,3,31500,0,'+0845'),(944,0,36000,0,'AEST'),(944,1,39600,1,'AEDT'),(944,2,39600,1,'AEDT'),(944,3,36000,0,'AEST'),(945,0,36000,0,'AEST'),(945,1,41400,1,'+1130'),(945,2,37800,0,'+1030'),(945,3,39600,1,'+11'),(946,0,39600,1,'AEDT'),(946,1,36000,0,'AEST'),(946,2,39600,1,'AEDT'),(946,3,36000,0,'AEST'),(947,0,36000,0,'AEST'),(947,1,41400,1,'+1130'),(947,2,37800,0,'+1030'),(947,3,39600,1,'+11'),(948,0,39600,1,'AEDT'),(948,1,36000,0,'AEST'),(948,2,39600,1,'AEDT'),(948,3,36000,0,'AEST'),(949,0,39600,1,'AEDT'),(949,1,36000,0,'AEST'),(949,2,39600,1,'AEDT'),(949,3,36000,0,'AEST'),(950,0,37800,1,'ACDT'),(950,1,34200,0,'ACST'),(951,0,32400,1,'AWDT'),(951,1,28800,0,'AWST'),(951,2,32400,1,'AWDT'),(951,3,28800,0,'AWST'),(952,0,39600,1,'AEDT'),(952,1,36000,0,'AEST'),(952,2,39600,1,'AEDT'),(952,3,36000,0,'AEST'),(953,0,37800,1,'ACDT'),(953,1,34200,0,'ACST'),(953,2,37800,1,'ACDT'),(953,3,34200,0,'ACST'),(954,0,39600,1,'AEDT'),(954,1,36000,0,'AEST'),(954,2,39600,1,'AEDT'),(954,3,36000,0,'AEST'),(955,0,36000,0,'AEST'),(955,1,39600,1,'AEDT'),(955,2,39600,1,'AEDT'),(955,3,36000,0,'AEST'),(956,0,39600,1,'AEDT'),(956,1,36000,0,'AEST'),(956,2,39600,1,'AEDT'),(956,3,36000,0,'AEST'),(957,0,32400,1,'AWDT'),(957,1,28800,0,'AWST'),(957,2,32400,1,'AWDT'),(957,3,28800,0,'AWST'),(958,0,37800,1,'ACDT'),(958,1,34200,0,'ACST'),(958,2,37800,1,'ACDT'),(958,3,34200,0,'ACST'),(959,0,-16272,0,'LMT'),(959,1,-14400,1,'-04'),(959,2,-18000,0,'-05'),(959,3,-14400,0,'-04'),(959,4,-18000,0,'-05'),(960,0,-7780,0,'LMT'),(960,1,-3600,1,'-01'),(960,2,-7200,0,'-02'),(961,0,-11188,0,'LMT'),(961,1,-7200,1,'-02'),(961,2,-10800,0,'-03'),(962,0,-14404,0,'LMT'),(962,1,-10800,1,'-03'),(962,2,-14400,0,'-04'),(963,0,7200,1,'CEST'),(963,1,3600,0,'CET'),(963,2,7200,1,'CEST'),(963,3,3600,0,'CET'),(964,0,-18000,1,'CDT'),(964,1,-21600,0,'CST'),(964,2,-18000,1,'CWT'),(964,3,-18000,1,'CPT'),(965,0,-15264,0,'LMT'),(965,1,-10800,1,'ADT'),(965,2,-14400,0,'AST'),(965,3,-10800,1,'AWT'),(965,4,-10800,1,'APT'),(966,0,-18000,1,'CDT'),(966,1,-21600,0,'CST'),(966,2,-18000,1,'CWT'),(966,3,-18000,1,'CPT'),(966,4,-18000,1,'CDT'),(966,5,-21600,0,'CST'),(967,0,-14400,1,'EDT'),(967,1,-18000,0,'EST'),(967,2,-14400,1,'EWT'),(967,3,-14400,1,'EPT'),(968,0,-27232,0,'LMT'),(968,1,-21600,1,'MDT'),(968,2,-25200,0,'MST'),(968,3,-21600,1,'MWT'),(968,4,-21600,1,'MPT'),(969,0,-9052,1,'NDT'),(969,1,-12652,0,'NST'),(969,2,-9000,1,'NDT'),(969,3,-12600,0,'NST'),(969,4,-9000,1,'NPT'),(969,5,-9000,1,'NWT'),(969,6,-5400,1,'NDDT'),(969,7,-9000,1,'NDT'),(970,0,-25200,1,'PDT'),(970,1,-28800,0,'PST'),(970,2,-25200,1,'PWT'),(970,3,-25200,1,'PPT'),(971,0,-25116,0,'LMT'),(971,1,-21600,1,'MDT'),(971,2,-25200,0,'MST'),(971,3,-21600,1,'MWT'),(971,4,-21600,1,'MPT'),(971,5,-21600,0,'CST'),(972,0,-28800,1,'YDT'),(972,1,-32400,0,'YST'),(972,2,-28800,1,'YWT'),(972,3,-28800,1,'YPT'),(972,4,-25200,1,'YDDT'),(972,5,-28800,0,'PST'),(972,6,-25200,1,'PDT'),(973,0,-16966,0,'SMT'),(973,1,-18000,0,'-05'),(973,2,-14400,0,'-04'),(973,3,-14400,1,'-04'),(973,4,-10800,1,'-03'),(973,5,-10800,1,'-03'),(973,6,-14400,0,'-04'),(974,0,-26248,0,'EMT'),(974,1,-21600,1,'-06'),(974,2,-25200,0,'-07'),(974,3,-25200,0,'-07'),(974,4,-21600,0,'-06'),(974,5,-18000,1,'-05'),(975,0,-19776,0,'HMT'),(975,1,-14400,1,'CDT'),(975,2,-18000,0,'CST'),(975,3,-18000,0,'CST'),(975,4,-14400,1,'CDT'),(976,0,10800,1,'EEST'),(976,1,7200,0,'EET'),(977,0,-18000,0,'EST'),(978,0,-14400,1,'EDT'),(978,1,-18000,0,'EST'),(978,2,-14400,1,'EWT'),(978,3,-14400,1,'EPT'),(979,0,10800,1,'EEST'),(979,1,7200,0,'EET'),(979,2,10800,1,'EEST'),(980,0,-1521,0,'DMT'),(980,1,2079,1,'IST'),(980,2,3600,1,'BST'),(980,3,0,0,'GMT'),(980,4,3600,1,'IST'),(980,5,0,0,'GMT'),(980,6,3600,0,'IST'),(980,7,3600,1,'IST'),(980,8,0,0,'GMT'),(981,0,0,0,'GMT'),(982,0,0,0,'GMT'),(983,0,-3600,0,'-01'),(984,0,-36000,0,'-10'),(985,0,-39600,0,'-11'),(986,0,-43200,0,'-12'),(987,0,-7200,0,'-02'),(988,0,-10800,0,'-03'),(989,0,-14400,0,'-04'),(990,0,-18000,0,'-05'),(991,0,-21600,0,'-06'),(992,0,-25200,0,'-07'),(993,0,-28800,0,'-08'),(994,0,-32400,0,'-09'),(995,0,0,0,'GMT'),(996,0,3600,0,'+01'),(997,0,36000,0,'+10'),(998,0,39600,0,'+11'),(999,0,43200,0,'+12'),(1000,0,46800,0,'+13'),(1001,0,50400,0,'+14'),(1002,0,7200,0,'+02'),(1003,0,10800,0,'+03'),(1004,0,14400,0,'+04'),(1005,0,18000,0,'+05'),(1006,0,21600,0,'+06'),(1007,0,25200,0,'+07'),(1008,0,28800,0,'+08'),(1009,0,32400,0,'+09'),(1010,0,0,0,'GMT'),(1011,0,0,0,'GMT'),(1012,0,0,0,'UCT'),(1013,0,0,0,'UTC'),(1014,0,0,0,'UTC'),(1015,0,0,0,'UTC'),(1016,0,4772,1,'NST'),(1016,1,1172,0,'AMT'),(1016,2,4772,1,'NST'),(1016,3,1172,0,'AMT'),(1016,4,1200,0,'+0020'),(1016,5,4800,1,'+0120'),(1016,6,4800,1,'+0120'),(1016,7,3600,0,'CET'),(1016,8,7200,1,'CEST'),(1016,9,7200,1,'CEST'),(1016,10,7200,1,'CEST'),(1016,11,3600,0,'CET'),(1016,12,3600,0,'CET'),(1017,0,0,0,'WET'),(1017,1,3600,0,'CET'),(1017,2,7200,1,'CEST'),(1017,3,3600,0,'CET'),(1018,0,11532,0,'LMT'),(1018,1,10800,0,'+03'),(1018,2,18000,1,'+05'),(1018,3,14400,0,'+04'),(1018,4,14400,0,'+04'),(1018,5,18000,1,'+05'),(1018,6,14400,1,'+04'),(1018,7,10800,0,'+03'),(1018,8,14400,0,'+04'),(1019,0,5692,0,'AMT'),(1019,1,10800,1,'EEST'),(1019,2,7200,0,'EET'),(1019,3,3600,0,'CET'),(1019,4,7200,1,'CEST'),(1019,5,10800,1,'EEST'),(1019,6,7200,0,'EET'),(1019,7,10800,1,'EEST'),(1019,8,7200,0,'EET'),(1020,0,3600,1,'BST'),(1020,1,0,0,'GMT'),(1020,2,7200,1,'BDST'),(1020,3,3600,0,'BST'),(1020,4,3600,1,'BST'),(1020,5,0,0,'GMT'),(1020,6,0,0,'GMT'),(1021,0,3600,0,'CET'),(1021,1,3600,0,'CET'),(1021,2,7200,1,'CEST'),(1021,3,7200,1,'CEST'),(1021,4,7200,1,'CEST'),(1021,5,3600,0,'CET'),(1022,0,7200,1,'CEST'),(1022,1,3600,0,'CET'),(1022,2,7200,1,'CEST'),(1022,3,3600,0,'CET'),(1022,4,10800,1,'CEMT'),(1022,5,10800,1,'CEMT'),(1022,6,7200,1,'CEST'),(1022,7,3600,0,'CET'),(1023,0,7200,1,'CEST'),(1023,1,3600,0,'CET'),(1023,2,7200,1,'CEST'),(1023,3,3600,0,'CET'),(1023,4,0,0,'GMT'),(1023,5,7200,1,'CEST'),(1023,6,3600,0,'CET'),(1024,0,0,0,'WET'),(1024,1,3600,0,'CET'),(1024,2,7200,1,'CEST'),(1024,3,3600,0,'CET'),(1024,4,7200,1,'CEST'),(1024,5,3600,1,'WEST'),(1024,6,0,0,'WET'),(1024,7,0,0,'WET'),(1024,8,7200,1,'CEST'),(1024,9,3600,0,'CET'),(1025,0,6264,0,'BMT'),(1025,1,10800,1,'EEST'),(1025,2,7200,0,'EET'),(1025,3,10800,1,'EEST'),(1025,4,7200,0,'EET'),(1025,5,10800,1,'EEST'),(1025,6,7200,0,'EET'),(1026,0,7200,1,'CEST'),(1026,1,3600,0,'CET'),(1026,2,7200,1,'CEST'),(1026,3,3600,0,'CET'),(1026,4,3600,0,'CET'),(1026,5,7200,1,'CEST'),(1027,0,7200,1,'CEST'),(1027,1,3600,0,'CET'),(1027,2,7200,1,'CEST'),(1027,3,3600,0,'CET'),(1028,0,6900,0,'CMT'),(1028,1,6264,0,'BMT'),(1028,2,10800,1,'EEST'),(1028,3,7200,0,'EET'),(1028,4,7200,0,'EET'),(1028,5,10800,1,'EEST'),(1028,6,3600,0,'CET'),(1028,7,7200,1,'CEST'),(1028,8,7200,1,'CEST'),(1028,9,14400,1,'MSD'),(1028,10,10800,0,'MSK'),(1028,11,10800,0,'MSK'),(1028,12,14400,1,'MSD'),(1028,13,10800,1,'EEST'),(1028,14,7200,0,'EET'),(1029,0,7200,1,'CEST'),(1029,1,3600,0,'CET'),(1029,2,3600,0,'CET'),(1029,3,7200,1,'CEST'),(1029,4,7200,1,'CEST'),(1029,5,3600,0,'CET'),(1030,0,-1521,0,'DMT'),(1030,1,2079,1,'IST'),(1030,2,3600,1,'BST'),(1030,3,0,0,'GMT'),(1030,4,3600,1,'IST'),(1030,5,0,0,'GMT'),(1030,6,3600,0,'IST'),(1030,7,3600,1,'IST'),(1030,8,0,0,'GMT'),(1031,0,3600,1,'BST'),(1031,1,0,0,'GMT'),(1031,2,7200,1,'BDST'),(1031,3,3600,0,'CET'),(1031,4,7200,1,'CEST'),(1031,5,3600,0,'CET'),(1032,0,3600,1,'BST'),(1032,1,0,0,'GMT'),(1032,2,7200,1,'BDST'),(1032,3,3600,0,'BST'),(1032,4,3600,1,'BST'),(1032,5,0,0,'GMT'),(1032,6,0,0,'GMT'),(1033,0,5989,0,'HMT'),(1033,1,10800,1,'EEST'),(1033,2,7200,0,'EET'),(1033,3,10800,1,'EEST'),(1033,4,7200,0,'EET'),(1034,0,3600,1,'BST'),(1034,1,0,0,'GMT'),(1034,2,7200,1,'BDST'),(1034,3,3600,0,'BST'),(1034,4,3600,1,'BST'),(1034,5,0,0,'GMT'),(1034,6,0,0,'GMT'),(1035,0,7016,0,'IMT'),(1035,1,10800,1,'EEST'),(1035,2,7200,0,'EET'),(1035,3,14400,1,'+04'),(1035,4,10800,0,'+03'),(1035,5,10800,1,'EEST'),(1035,6,7200,0,'EET'),(1035,7,10800,1,'EEST'),(1035,8,7200,0,'EET'),(1035,9,10800,0,'+03'),(1036,0,3600,1,'BST'),(1036,1,0,0,'GMT'),(1036,2,7200,1,'BDST'),(1036,3,3600,0,'BST'),(1036,4,3600,1,'BST'),(1036,5,0,0,'GMT'),(1036,6,0,0,'GMT'),(1037,0,7200,1,'CEST'),(1037,1,3600,0,'CET'),(1037,2,7200,1,'CEST'),(1037,3,3600,0,'CET'),(1037,4,10800,1,'CEST'),(1037,5,7200,0,'CET'),(1037,6,14400,1,'MSD'),(1037,7,10800,0,'MSK'),(1037,8,10800,0,'MSK'),(1037,9,14400,1,'MSD'),(1037,10,10800,1,'EEST'),(1037,11,7200,0,'EET'),(1037,12,10800,0,'+03'),(1037,13,7200,0,'EET'),(1038,0,7324,0,'KMT'),(1038,1,7200,0,'EET'),(1038,2,10800,0,'MSK'),(1038,3,3600,0,'CET'),(1038,4,7200,1,'CEST'),(1038,5,7200,1,'CEST'),(1038,6,14400,1,'MSD'),(1038,7,10800,0,'MSK'),(1038,8,14400,1,'MSD'),(1038,9,10800,1,'EEST'),(1038,10,10800,1,'EEST'),(1038,11,7200,0,'EET'),(1039,0,11928,0,'LMT'),(1039,1,10800,0,'+03'),(1039,2,18000,1,'+05'),(1039,3,14400,0,'+04'),(1039,4,14400,0,'+04'),(1039,5,18000,1,'+05'),(1039,6,14400,1,'+04'),(1039,7,10800,0,'+03'),(1040,0,-2205,0,'LMT'),(1040,1,3600,1,'WEST'),(1040,2,0,0,'WET'),(1040,3,3600,1,'WEST'),(1040,4,0,0,'WET'),(1040,5,7200,1,'WEMT'),(1040,6,0,0,'WET'),(1040,7,3600,0,'CET'),(1040,8,3600,0,'CET'),(1040,9,7200,1,'CEST'),(1040,10,3600,1,'WEST'),(1040,11,0,0,'WET'),(1041,0,3600,0,'CET'),(1041,1,3600,0,'CET'),(1041,2,7200,1,'CEST'),(1041,3,7200,1,'CEST'),(1041,4,7200,1,'CEST'),(1041,5,3600,0,'CET'),(1042,0,3600,1,'BST'),(1042,1,0,0,'GMT'),(1042,2,7200,1,'BDST'),(1042,3,3600,0,'BST'),(1042,4,3600,1,'BST'),(1042,5,0,0,'GMT'),(1042,6,0,0,'GMT'),(1043,0,1476,0,'LMT'),(1043,1,7200,1,'CEST'),(1043,2,3600,0,'CET'),(1043,3,7200,1,'CEST'),(1043,4,3600,0,'CET'),(1043,5,3600,1,'WEST'),(1043,6,0,0,'WET'),(1043,7,0,0,'WET'),(1043,8,3600,1,'WEST'),(1043,9,3600,0,'WET'),(1043,10,7200,1,'WEST'),(1043,11,7200,1,'WEST'),(1043,12,7200,1,'CEST'),(1043,13,3600,0,'CET'),(1044,0,3600,1,'WEST'),(1044,1,0,0,'WET'),(1044,2,7200,1,'WEMT'),(1044,3,0,0,'WET'),(1044,4,7200,1,'CEST'),(1044,5,3600,0,'CET'),(1044,6,7200,1,'CEST'),(1044,7,3600,0,'CET'),(1044,8,7200,1,'CEST'),(1044,9,3600,0,'CET'),(1045,0,7200,1,'CEST'),(1045,1,3600,0,'CET'),(1045,2,3600,0,'CET'),(1045,3,7200,1,'CEST'),(1045,4,7200,1,'CEST'),(1045,5,3600,0,'CET'),(1046,0,5989,0,'HMT'),(1046,1,10800,1,'EEST'),(1046,2,7200,0,'EET'),(1046,3,10800,1,'EEST'),(1046,4,7200,0,'EET'),(1047,0,6600,0,'MMT'),(1047,1,7200,0,'EET'),(1047,2,10800,0,'MSK'),(1047,3,3600,0,'CET'),(1047,4,7200,1,'CEST'),(1047,5,7200,1,'CEST'),(1047,6,14400,1,'MSD'),(1047,7,10800,0,'MSK'),(1047,8,14400,1,'MSD'),(1047,9,10800,1,'EEST'),(1047,10,7200,0,'EET'),(1047,11,10800,0,'+03'),(1048,0,561,0,'PMT'),(1048,1,3600,1,'WEST'),(1048,2,0,0,'WET'),(1048,3,3600,1,'WEST'),(1048,4,7200,1,'WEMT'),(1048,5,0,0,'WET'),(1048,6,7200,1,'CEST'),(1048,7,3600,0,'CET'),(1048,8,7200,1,'CEST'),(1048,9,3600,0,'CET'),(1049,0,9017,0,'MMT'),(1049,1,12679,1,'MST'),(1049,2,9079,0,'MMT'),(1049,3,16279,1,'MDST'),(1049,4,14400,1,'MSD'),(1049,5,10800,0,'MSK'),(1049,6,14400,1,'MSD'),(1049,7,18000,1,'+05'),(1049,8,7200,0,'EET'),(1049,9,10800,0,'MSK'),(1049,10,14400,1,'MSD'),(1049,11,10800,1,'EEST'),(1049,12,7200,0,'EET'),(1049,13,14400,0,'MSK'),(1049,14,14400,1,'MSD'),(1049,15,10800,0,'MSK'),(1050,0,8008,0,'LMT'),(1050,1,10800,1,'EEST'),(1050,2,7200,0,'EET'),(1050,3,7200,0,'EET'),(1050,4,10800,1,'EEST'),(1051,0,7200,1,'CEST'),(1051,1,3600,0,'CET'),(1051,2,3600,0,'CET'),(1051,3,7200,1,'CEST'),(1051,4,7200,1,'CEST'),(1051,5,3600,0,'CET'),(1052,0,561,0,'PMT'),(1052,1,3600,1,'WEST'),(1052,2,0,0,'WET'),(1052,3,3600,1,'WEST'),(1052,4,0,0,'WET'),(1052,5,3600,0,'CET'),(1052,6,7200,1,'CEST'),(1052,7,7200,1,'CEST'),(1052,8,7200,1,'WEMT'),(1052,9,3600,0,'CET'),(1052,10,7200,1,'CEST'),(1052,11,3600,0,'CET'),(1053,0,3600,0,'CET'),(1053,1,3600,0,'CET'),(1053,2,7200,1,'CEST'),(1053,3,7200,1,'CEST'),(1053,4,7200,1,'CEST'),(1053,5,3600,0,'CET'),(1054,0,7200,1,'CEST'),(1054,1,3600,0,'CET'),(1054,2,7200,1,'CEST'),(1054,3,3600,0,'CET'),(1054,4,0,0,'GMT'),(1054,5,7200,1,'CEST'),(1054,6,3600,0,'CET'),(1055,0,5794,0,'RMT'),(1055,1,9394,1,'LST'),(1055,2,7200,0,'EET'),(1055,3,10800,0,'MSK'),(1055,4,3600,0,'CET'),(1055,5,7200,1,'CEST'),(1055,6,7200,1,'CEST'),(1055,7,14400,1,'MSD'),(1055,8,10800,0,'MSK'),(1055,9,14400,1,'MSD'),(1055,10,10800,1,'EEST'),(1055,11,7200,0,'EET'),(1055,12,10800,1,'EEST'),(1055,13,7200,0,'EET'),(1056,0,7200,1,'CEST'),(1056,1,3600,0,'CET'),(1056,2,3600,0,'CET'),(1056,3,7200,1,'CEST'),(1056,4,7200,1,'CEST'),(1056,5,3600,0,'CET'),(1057,0,12020,0,'LMT'),(1057,1,10800,0,'+03'),(1057,2,14400,0,'+04'),(1057,3,18000,1,'+05'),(1057,4,14400,0,'+04'),(1057,5,18000,1,'+05'),(1057,6,14400,1,'+04'),(1057,7,10800,0,'+03'),(1057,8,10800,1,'+03'),(1057,9,7200,0,'+02'),(1057,10,14400,1,'+04'),(1057,11,14400,0,'+04'),(1058,0,7200,1,'CEST'),(1058,1,3600,0,'CET'),(1058,2,3600,0,'CET'),(1058,3,7200,1,'CEST'),(1058,4,7200,1,'CEST'),(1058,5,3600,0,'CET'),(1059,0,3600,0,'CET'),(1059,1,3600,0,'CET'),(1059,2,7200,1,'CEST'),(1059,3,7200,1,'CEST'),(1059,4,7200,1,'CEST'),(1059,5,3600,0,'CET'),(1060,0,11058,0,'LMT'),(1060,1,10800,0,'+03'),(1060,2,18000,1,'+05'),(1060,3,14400,0,'+04'),(1060,4,14400,0,'+04'),(1060,5,18000,1,'+05'),(1060,6,14400,1,'+04'),(1060,7,10800,0,'+03'),(1060,8,14400,0,'+04'),(1061,0,8160,0,'SMT'),(1061,1,7200,0,'EET'),(1061,2,10800,0,'MSK'),(1061,3,3600,0,'CET'),(1061,4,7200,1,'CEST'),(1061,5,7200,1,'CEST'),(1061,6,14400,1,'MSD'),(1061,7,10800,0,'MSK'),(1061,8,14400,1,'MSD'),(1061,9,10800,1,'EEST'),(1061,10,10800,1,'EEST'),(1061,11,7200,0,'EET'),(1061,12,14400,0,'MSK'),(1061,13,10800,0,'MSK'),(1062,0,3600,0,'CET'),(1062,1,3600,0,'CET'),(1062,2,7200,1,'CEST'),(1062,3,7200,1,'CEST'),(1062,4,7200,1,'CEST'),(1062,5,3600,0,'CET'),(1063,0,7200,0,'EET'),(1063,1,3600,0,'CET'),(1063,2,7200,1,'CEST'),(1063,3,3600,0,'CET'),(1063,4,10800,1,'EEST'),(1063,5,7200,0,'EET'),(1063,6,10800,1,'EEST'),(1063,7,10800,1,'EEST'),(1063,8,7200,0,'EET'),(1064,0,3600,0,'CET'),(1064,1,7200,1,'CEST'),(1064,2,7200,1,'CEST'),(1064,3,3600,0,'CET'),(1065,0,5940,0,'TMT'),(1065,1,7200,1,'CEST'),(1065,2,3600,0,'CET'),(1065,3,3600,0,'CET'),(1065,4,7200,0,'EET'),(1065,5,10800,0,'MSK'),(1065,6,7200,1,'CEST'),(1065,7,14400,1,'MSD'),(1065,8,10800,0,'MSK'),(1065,9,14400,1,'MSD'),(1065,10,10800,1,'EEST'),(1065,11,7200,0,'EET'),(1065,12,7200,0,'EET'),(1065,13,10800,1,'EEST'),(1065,14,10800,1,'EEST'),(1066,0,4760,0,'LMT'),(1066,1,3600,0,'CET'),(1066,2,7200,1,'CEST'),(1066,3,3600,0,'CET'),(1066,4,7200,1,'CEST'),(1067,0,6900,0,'CMT'),(1067,1,6264,0,'BMT'),(1067,2,10800,1,'EEST'),(1067,3,7200,0,'EET'),(1067,4,7200,0,'EET'),(1067,5,10800,1,'EEST'),(1067,6,3600,0,'CET'),(1067,7,7200,1,'CEST'),(1067,8,7200,1,'CEST'),(1067,9,14400,1,'MSD'),(1067,10,10800,0,'MSK'),(1067,11,10800,0,'MSK'),(1067,12,14400,1,'MSD'),(1067,13,10800,1,'EEST'),(1067,14,7200,0,'EET'),(1068,0,11616,0,'LMT'),(1068,1,10800,0,'+03'),(1068,2,18000,1,'+05'),(1068,3,14400,0,'+04'),(1068,4,14400,0,'+04'),(1068,5,18000,1,'+05'),(1068,6,14400,1,'+04'),(1068,7,10800,0,'+03'),(1068,8,10800,1,'+03'),(1068,9,7200,0,'+02'),(1068,10,14400,1,'+04'),(1068,11,14400,0,'+04'),(1069,0,3600,0,'CET'),(1069,1,7200,1,'CEST'),(1069,2,3600,0,'CET'),(1069,3,7200,1,'CEST'),(1069,4,14400,1,'MSD'),(1069,5,10800,0,'MSK'),(1069,6,10800,0,'MSK'),(1069,7,14400,1,'MSD'),(1069,8,7200,0,'EET'),(1069,9,10800,1,'EEST'),(1069,10,10800,1,'EEST'),(1069,11,7200,0,'EET'),(1070,0,7200,1,'CEST'),(1070,1,3600,0,'CET'),(1070,2,7200,1,'CEST'),(1070,3,3600,0,'CET'),(1071,0,7200,1,'CEST'),(1071,1,3600,0,'CET'),(1071,2,3600,0,'CET'),(1071,3,7200,1,'CEST'),(1071,4,7200,1,'CEST'),(1071,5,3600,0,'CET'),(1072,0,7200,1,'CEST'),(1072,1,3600,0,'CET'),(1072,2,7200,1,'CEST'),(1072,3,3600,0,'CET'),(1072,4,7200,1,'CEST'),(1072,5,3600,0,'CET'),(1073,0,5040,0,'WMT'),(1073,1,5736,0,'KMT'),(1073,2,3600,0,'CET'),(1073,3,7200,0,'EET'),(1073,4,10800,0,'MSK'),(1073,5,3600,0,'CET'),(1073,6,7200,1,'CEST'),(1073,7,7200,1,'CEST'),(1073,8,14400,1,'MSD'),(1073,9,10800,0,'MSK'),(1073,10,14400,1,'MSD'),(1073,11,10800,1,'EEST'),(1073,12,7200,0,'EET'),(1073,13,7200,1,'CEST'),(1073,14,3600,0,'CET'),(1073,15,7200,0,'EET'),(1073,16,10800,1,'EEST'),(1074,0,10660,0,'LMT'),(1074,1,10800,0,'+03'),(1074,2,14400,0,'+04'),(1074,3,18000,1,'+05'),(1074,4,14400,0,'+04'),(1074,5,18000,1,'+05'),(1074,6,14400,1,'+04'),(1074,7,10800,0,'+03'),(1075,0,5040,0,'WMT'),(1075,1,7200,1,'CEST'),(1075,2,3600,0,'CET'),(1075,3,7200,1,'CEST'),(1075,4,3600,0,'CET'),(1075,5,10800,1,'EEST'),(1075,6,7200,0,'EET'),(1075,7,7200,0,'EET'),(1075,8,7200,1,'CEST'),(1075,9,3600,0,'CET'),(1076,0,3600,0,'CET'),(1076,1,3600,0,'CET'),(1076,2,7200,1,'CEST'),(1076,3,7200,1,'CEST'),(1076,4,7200,1,'CEST'),(1076,5,3600,0,'CET'),(1077,0,8400,0,'+0220'),(1077,1,7200,0,'EET'),(1077,2,10800,0,'MSK'),(1077,3,3600,0,'CET'),(1077,4,7200,1,'CEST'),(1077,5,7200,1,'CEST'),(1077,6,14400,1,'MSD'),(1077,7,10800,0,'MSK'),(1077,8,14400,1,'MSD'),(1077,9,10800,1,'EEST'),(1077,10,10800,1,'EEST'),(1077,11,7200,0,'EET'),(1078,0,7200,1,'CEST'),(1078,1,3600,0,'CET'),(1078,2,7200,1,'CEST'),(1078,3,3600,0,'CET'),(1079,0,3600,1,'BST'),(1079,1,0,0,'GMT'),(1079,2,7200,1,'BDST'),(1079,3,3600,0,'BST'),(1079,4,3600,1,'BST'),(1079,5,0,0,'GMT'),(1079,6,0,0,'GMT'),(1080,0,3600,1,'BST'),(1080,1,0,0,'GMT'),(1080,2,7200,1,'BDST'),(1080,3,3600,0,'BST'),(1080,4,3600,1,'BST'),(1080,5,0,0,'GMT'),(1080,6,0,0,'GMT'),(1081,0,0,0,'GMT'),(1082,0,0,0,'GMT'),(1083,0,0,0,'GMT'),(1084,0,0,0,'GMT'),(1085,0,0,0,'GMT'),(1086,0,-36000,0,'HST'),(1087,0,27402,0,'LMT'),(1087,1,32400,1,'HKST'),(1087,2,28800,0,'HKT'),(1087,3,32400,0,'JST'),(1087,4,28800,0,'HKT'),(1088,0,-5280,0,'LMT'),(1088,1,0,1,'+00'),(1088,2,-3600,0,'-01'),(1088,3,-3600,0,'-01'),(1088,4,0,1,'+00'),(1088,5,0,0,'GMT'),(1089,0,8836,0,'LMT'),(1089,1,10800,0,'EAT'),(1089,2,9000,0,'+0230'),(1089,3,9900,0,'+0245'),(1089,4,10800,0,'EAT'),(1090,0,17380,0,'LMT'),(1090,1,18000,0,'+05'),(1090,2,21600,0,'+06'),(1091,0,25200,0,'+07'),(1092,0,23400,0,'+0630'),(1093,0,8836,0,'LMT'),(1093,1,10800,0,'EAT'),(1093,2,9000,0,'+0230'),(1093,3,9900,0,'+0245'),(1093,4,10800,0,'EAT'),(1094,0,0,0,'-00'),(1094,1,18000,0,'+05'),(1095,0,13308,0,'LMT'),(1095,1,14400,0,'+04'),(1096,0,17640,0,'MMT'),(1096,1,18000,0,'+05'),(1097,0,13800,0,'LMT'),(1097,1,18000,1,'+05'),(1097,2,14400,0,'+04'),(1098,0,8836,0,'LMT'),(1098,1,10800,0,'EAT'),(1098,2,9000,0,'+0230'),(1098,3,9900,0,'+0245'),(1098,4,10800,0,'EAT'),(1099,0,13312,0,'LMT'),(1099,1,14400,0,'+04'),(1100,0,12344,0,'LMT'),(1100,1,12344,0,'TMT'),(1100,2,12600,0,'+0330'),(1100,3,18000,1,'+05'),(1100,4,14400,0,'+04'),(1100,5,16200,1,'+0430'),(1100,6,12600,0,'+0330'),(1101,0,8440,0,'JMT'),(1101,1,10800,1,'IDT'),(1101,2,7200,0,'IST'),(1101,3,14400,1,'IDDT'),(1101,4,10800,1,'IDT'),(1102,0,-18430,0,'KMT'),(1102,1,-18000,0,'EST'),(1102,2,-14400,1,'EDT'),(1103,0,36000,1,'JDT'),(1103,1,32400,0,'JST'),(1103,2,32400,0,'JST'),(1104,0,39600,0,'+11'),(1104,1,-43200,0,'-12'),(1104,2,43200,0,'+12'),(1105,0,3164,0,'LMT'),(1105,1,7200,1,'CEST'),(1105,2,3600,0,'CET'),(1105,3,7200,0,'EET'),(1106,0,7200,1,'MEST'),(1106,1,3600,0,'MET'),(1106,2,7200,1,'MEST'),(1106,3,3600,0,'MET'),(1107,0,-25200,0,'MST'),(1108,0,-21600,1,'MDT'),(1108,1,-25200,0,'MST'),(1108,2,-21600,1,'MWT'),(1108,3,-21600,1,'MPT'),(1109,0,-28084,0,'LMT'),(1109,1,-25200,0,'MST'),(1109,2,-28800,0,'PST'),(1109,3,-25200,1,'PDT'),(1109,4,-25200,1,'PWT'),(1109,5,-25200,1,'PPT'),(1110,0,-25540,0,'LMT'),(1110,1,-25200,0,'MST'),(1110,2,-21600,0,'CST'),(1110,3,-28800,0,'PST'),(1110,4,-21600,1,'MDT'),(1110,5,-25200,0,'MST'),(1111,0,-23796,0,'LMT'),(1111,1,-25200,0,'MST'),(1111,2,-21600,0,'CST'),(1111,3,-18000,1,'CDT'),(1111,4,-18000,1,'CWT'),(1112,0,45000,1,'NZST'),(1112,1,41400,0,'NZMT'),(1112,2,43200,1,'NZST'),(1112,3,46800,1,'NZDT'),(1112,4,43200,0,'NZST'),(1112,5,43200,0,'NZST'),(1113,0,44100,0,'+1215'),(1113,1,49500,1,'+1345'),(1113,2,45900,0,'+1245'),(1113,3,45900,0,'+1245'),(1114,0,-21600,1,'MDT'),(1114,1,-25200,0,'MST'),(1114,2,-21600,1,'MWT'),(1114,3,-21600,1,'MPT'),(1115,0,32400,1,'CDT'),(1115,1,28800,0,'CST'),(1116,0,-25200,1,'PDT'),(1116,1,-28800,0,'PST'),(1116,2,-25200,1,'PWT'),(1116,3,-25200,1,'PPT'),(1117,0,-41216,0,'LMT'),(1117,1,-41400,0,'-1130'),(1117,2,-36000,1,'-10'),(1117,3,-39600,0,'-11'),(1117,4,46800,0,'+13'),(1117,5,50400,1,'+14'),(1118,0,45000,1,'NZST'),(1118,1,41400,0,'NZMT'),(1118,2,43200,1,'NZST'),(1118,3,46800,1,'NZDT'),(1118,4,43200,0,'NZST'),(1118,5,43200,0,'NZST'),(1119,0,36000,0,'+10'),(1119,1,32400,0,'+09'),(1119,2,39600,0,'+11'),(1120,0,44100,0,'+1215'),(1120,1,49500,1,'+1345'),(1120,2,45900,0,'+1245'),(1120,3,45900,0,'+1245'),(1121,0,36000,0,'+10'),(1122,0,-26248,0,'EMT'),(1122,1,-21600,1,'-06'),(1122,2,-25200,0,'-07'),(1122,3,-25200,0,'-07'),(1122,4,-21600,0,'-06'),(1122,5,-18000,1,'-05'),(1123,0,40396,0,'LMT'),(1123,1,43200,1,'+12'),(1123,2,39600,0,'+11'),(1124,0,-43200,0,'-12'),(1124,1,-39600,0,'-11'),(1124,2,46800,0,'+13'),(1125,0,-39600,0,'-11'),(1125,1,46800,0,'+13'),(1126,0,42944,0,'LMT'),(1126,1,46800,1,'+13'),(1126,2,43200,0,'+12'),(1127,0,43200,0,'+12'),(1128,0,-21504,0,'LMT'),(1128,1,-18000,0,'-05'),(1128,2,-18000,1,'-05'),(1128,3,-21600,0,'-06'),(1129,0,-32388,0,'LMT'),(1129,1,-32400,0,'-09'),(1130,0,38388,0,'LMT'),(1130,1,39600,0,'+11'),(1131,0,36000,0,'GST'),(1131,1,36000,0,'ChST'),(1132,0,-37800,0,'HST'),(1132,1,-34200,1,'HDT'),(1132,2,-36000,0,'HST'),(1133,0,-37800,0,'HST'),(1133,1,-34200,1,'HDT'),(1133,2,-36000,0,'HST'),(1134,0,-38400,0,'-1040'),(1134,1,-36000,0,'-10'),(1134,2,50400,0,'+14'),(1135,0,39600,0,'+11'),(1135,1,43200,0,'+12'),(1135,2,39600,0,'+11'),(1136,0,39600,0,'+11'),(1136,1,-43200,0,'-12'),(1136,2,43200,0,'+12'),(1137,0,39600,0,'+11'),(1137,1,43200,0,'+12'),(1138,0,-33480,0,'LMT'),(1138,1,-34200,0,'-0930'),(1139,0,-40968,0,'LMT'),(1139,1,-39600,0,'SST'),(1140,0,40060,0,'LMT'),(1140,1,41400,0,'+1130'),(1140,2,32400,0,'+09'),(1140,3,43200,0,'+12'),(1141,0,-40800,0,'-1120'),(1141,1,-41400,0,'-1130'),(1141,2,-39600,0,'-11'),(1142,0,40320,0,'+1112'),(1142,1,41400,0,'+1130'),(1142,2,45000,1,'+1230'),(1142,3,39600,0,'+11'),(1143,0,39948,0,'LMT'),(1143,1,43200,1,'+12'),(1143,2,39600,0,'+11'),(1143,3,43200,1,'+12'),(1143,4,39600,0,'+11'),(1144,0,-40968,0,'LMT'),(1144,1,-39600,0,'SST'),(1145,0,32400,0,'+09'),(1146,0,-30600,0,'-0830'),(1146,1,-28800,0,'-08'),(1147,0,39600,0,'+11'),(1148,0,39600,0,'+11'),(1149,0,36000,0,'+10'),(1150,0,-37800,0,'-1030'),(1150,1,-36000,0,'-10'),(1150,2,-34200,1,'-0930'),(1151,0,36000,0,'GST'),(1151,1,36000,0,'ChST'),(1152,0,-40968,0,'LMT'),(1152,1,-39600,0,'SST'),(1153,0,-35896,0,'LMT'),(1153,1,-36000,0,'-10'),(1154,0,43200,0,'+12'),(1155,0,44400,0,'+1220'),(1155,1,46800,0,'+13'),(1155,2,50400,1,'+14'),(1155,3,46800,0,'+13'),(1155,4,50400,1,'+14'),(1156,0,36000,0,'+10'),(1157,0,43200,0,'+12'),(1158,0,43200,0,'+12'),(1159,0,36000,0,'+10'),(1160,0,5040,0,'WMT'),(1160,1,7200,1,'CEST'),(1160,2,3600,0,'CET'),(1160,3,7200,1,'CEST'),(1160,4,3600,0,'CET'),(1160,5,10800,1,'EEST'),(1160,6,7200,0,'EET'),(1160,7,7200,0,'EET'),(1160,8,7200,1,'CEST'),(1160,9,3600,0,'CET'),(1161,0,-2205,0,'LMT'),(1161,1,3600,1,'WEST'),(1161,2,0,0,'WET'),(1161,3,3600,1,'WEST'),(1161,4,0,0,'WET'),(1161,5,7200,1,'WEMT'),(1161,6,0,0,'WET'),(1161,7,3600,0,'CET'),(1161,8,3600,0,'CET'),(1161,9,7200,1,'CEST'),(1161,10,3600,1,'WEST'),(1161,11,0,0,'WET'),(1162,0,28800,0,'CST'),(1162,1,32400,0,'JST'),(1162,2,32400,1,'CDT'),(1162,3,28800,0,'CST'),(1163,0,30472,0,'LMT'),(1163,1,30600,0,'KST'),(1163,2,32400,0,'JST'),(1163,3,32400,0,'KST'),(1163,4,34200,1,'KDT'),(1163,5,36000,1,'KDT'),(1164,0,24925,0,'SMT'),(1164,1,25200,0,'+07'),(1164,2,26400,1,'+0720'),(1164,3,26400,0,'+0720'),(1164,4,27000,0,'+0730'),(1164,5,32400,0,'+09'),(1164,6,28800,0,'+08'),(1165,0,7016,0,'IMT'),(1165,1,10800,1,'EEST'),(1165,2,7200,0,'EET'),(1165,3,14400,1,'+04'),(1165,4,10800,0,'+03'),(1165,5,10800,1,'EEST'),(1165,6,7200,0,'EET'),(1165,7,10800,1,'EEST'),(1165,8,7200,0,'EET'),(1165,9,10800,0,'+03'),(1166,0,0,0,'UCT'),(1167,0,-36000,0,'AST'),(1167,1,-32400,1,'AWT'),(1167,2,-32400,1,'APT'),(1167,3,-36000,0,'AHST'),(1167,4,-32400,1,'AHDT'),(1167,5,-32400,0,'YST'),(1167,6,-28800,1,'AKDT'),(1167,7,-32400,0,'AKST'),(1168,0,-39600,0,'NST'),(1168,1,-36000,1,'NWT'),(1168,2,-36000,1,'NPT'),(1168,3,-39600,0,'BST'),(1168,4,-36000,1,'BDT'),(1168,5,-36000,0,'AHST'),(1168,6,-32400,1,'HDT'),(1168,7,-36000,0,'HST'),(1169,0,-21600,1,'MDT'),(1169,1,-25200,0,'MST'),(1169,2,-21600,1,'MWT'),(1170,0,-18000,1,'CDT'),(1170,1,-21600,0,'CST'),(1170,2,-18000,0,'EST'),(1170,3,-18000,1,'CWT'),(1170,4,-18000,1,'CPT'),(1170,5,-21600,0,'CST'),(1171,0,-18000,1,'CDT'),(1171,1,-21600,0,'CST'),(1171,2,-18000,1,'CWT'),(1171,3,-18000,1,'CPT'),(1171,4,-18000,0,'EST'),(1171,5,-14400,1,'EDT'),(1172,0,-14400,1,'EDT'),(1172,1,-18000,0,'EST'),(1172,2,-14400,1,'EWT'),(1172,3,-14400,1,'EPT'),(1173,0,-37800,0,'HST'),(1173,1,-34200,1,'HDT'),(1173,2,-36000,0,'HST'),(1174,0,-18000,1,'CDT'),(1174,1,-21600,0,'CST'),(1174,2,-18000,1,'CWT'),(1174,3,-18000,1,'CPT'),(1174,4,-18000,0,'EST'),(1174,5,-21600,0,'CST'),(1175,0,-19931,0,'LMT'),(1175,1,-21600,0,'CST'),(1175,2,-18000,0,'EST'),(1175,3,-14400,1,'EWT'),(1175,4,-14400,1,'EPT'),(1175,5,-14400,1,'EDT'),(1176,0,-21600,1,'MDT'),(1176,1,-25200,0,'MST'),(1176,2,-21600,1,'MWT'),(1176,3,-21600,1,'MPT'),(1177,0,-25200,1,'PDT'),(1177,1,-28800,0,'PST'),(1177,2,-25200,1,'PWT'),(1177,3,-25200,1,'PPT'),(1178,0,-25200,1,'PDT'),(1178,1,-28800,0,'PST'),(1178,2,-25200,1,'PWT'),(1178,3,-25200,1,'PPT'),(1179,0,-40968,0,'LMT'),(1179,1,-39600,0,'SST'),(1180,0,0,0,'UTC'),(1181,0,0,0,'UTC'),(1182,0,9017,0,'MMT'),(1182,1,12679,1,'MST'),(1182,2,9079,0,'MMT'),(1182,3,16279,1,'MDST'),(1182,4,14400,1,'MSD'),(1182,5,10800,0,'MSK'),(1182,6,14400,1,'MSD'),(1182,7,18000,1,'+05'),(1182,8,7200,0,'EET'),(1182,9,10800,0,'MSK'),(1182,10,14400,1,'MSD'),(1182,11,10800,1,'EEST'),(1182,12,7200,0,'EET'),(1182,13,14400,0,'MSK'),(1182,14,14400,1,'MSD'),(1182,15,10800,0,'MSK'),(1183,0,3600,1,'WEST'),(1183,1,0,0,'WET'),(1184,0,0,0,'UTC'),(1185,0,-14400,1,'EDT'),(1185,1,-18000,0,'EST'),(1185,2,-14400,1,'EWT'),(1185,3,-14400,1,'EPT'),(1186,0,-968,0,'LMT'),(1186,1,0,0,'GMT'),(1187,0,-52,0,'LMT'),(1187,1,1200,1,'+0020'),(1187,2,0,0,'GMT'),(1188,0,8836,0,'LMT'),(1188,1,10800,0,'EAT'),(1188,2,9000,0,'+0230'),(1188,3,9900,0,'+0245'),(1188,4,10800,0,'EAT'),(1189,0,561,0,'PMT'),(1189,1,3600,1,'WEST'),(1189,2,0,0,'WET'),(1189,3,0,0,'WET'),(1189,4,7200,1,'CEST'),(1189,5,3600,0,'CET'),(1189,6,3600,1,'WEST'),(1190,0,8836,0,'LMT'),(1190,1,10800,0,'EAT'),(1190,2,9000,0,'+0230'),(1190,3,9900,0,'+0245'),(1190,4,10800,0,'EAT'),(1191,0,8836,0,'LMT'),(1191,1,10800,0,'EAT'),(1191,2,9000,0,'+0230'),(1191,3,9900,0,'+0245'),(1191,4,10800,0,'EAT'),(1192,0,-968,0,'LMT'),(1192,1,0,0,'GMT'),(1193,0,816,0,'LMT'),(1193,1,3600,0,'WAT'),(1194,0,-968,0,'LMT'),(1194,1,0,0,'GMT'),(1195,0,-3740,0,'LMT'),(1195,1,-3600,0,'-01'),(1195,2,0,0,'GMT'),(1196,0,7820,0,'LMT'),(1196,1,7200,0,'CAT'),(1197,0,816,0,'LMT'),(1197,1,3600,0,'WAT'),(1198,0,7820,0,'LMT'),(1198,1,7200,0,'CAT'),(1199,0,10800,1,'EEST'),(1199,1,7200,0,'EET'),(1199,2,10800,1,'EEST'),(1200,0,-1820,0,'LMT'),(1200,1,3600,1,'WEST'),(1200,2,0,0,'WET'),(1200,3,3600,0,'CET'),(1200,4,0,0,'WET'),(1201,0,0,0,'WET'),(1201,1,3600,1,'WEST'),(1201,2,0,0,'WET'),(1201,3,3600,0,'CET'),(1201,4,7200,1,'CEST'),(1201,5,3600,0,'CET'),(1202,0,-968,0,'LMT'),(1202,1,0,0,'GMT'),(1203,0,-968,0,'LMT'),(1203,1,0,0,'GMT'),(1204,0,8836,0,'LMT'),(1204,1,10800,0,'EAT'),(1204,2,9000,0,'+0230'),(1204,3,9900,0,'+0245'),(1204,4,10800,0,'EAT'),(1205,0,8836,0,'LMT'),(1205,1,10800,0,'EAT'),(1205,2,9000,0,'+0230'),(1205,3,9900,0,'+0245'),(1205,4,10800,0,'EAT'),(1206,0,816,0,'LMT'),(1206,1,3600,0,'WAT'),(1207,0,-3168,0,'LMT'),(1207,1,-3600,0,'-01'),(1207,2,3600,1,'WEST'),(1207,3,0,0,'WET'),(1208,0,-968,0,'LMT'),(1208,1,0,0,'GMT'),(1209,0,7820,0,'LMT'),(1209,1,7200,0,'CAT'),(1210,0,7820,0,'LMT'),(1210,1,7200,0,'CAT'),(1211,0,5400,0,'SAST'),(1211,1,10800,1,'SAST'),(1211,2,7200,0,'SAST'),(1212,0,7588,0,'LMT'),(1212,1,10800,1,'CAST'),(1212,2,7200,0,'CAT'),(1212,3,10800,0,'EAT'),(1213,0,8836,0,'LMT'),(1213,1,10800,0,'EAT'),(1213,2,9000,0,'+0230'),(1213,3,9900,0,'+0245'),(1213,4,10800,0,'EAT'),(1214,0,7808,0,'LMT'),(1214,1,10800,1,'CAST'),(1214,2,7200,0,'CAT'),(1214,3,10800,0,'EAT'),(1214,4,7200,0,'CAT'),(1215,0,7820,0,'LMT'),(1215,1,7200,0,'CAT'),(1216,0,816,0,'LMT'),(1216,1,3600,0,'WAT'),(1217,0,816,0,'LMT'),(1217,1,3600,0,'WAT'),(1218,0,816,0,'LMT'),(1218,1,3600,0,'WAT'),(1219,0,-968,0,'LMT'),(1219,1,0,0,'GMT'),(1220,0,816,0,'LMT'),(1220,1,3600,0,'WAT'),(1221,0,7820,0,'LMT'),(1221,1,7200,0,'CAT'),(1222,0,7820,0,'LMT'),(1222,1,7200,0,'CAT'),(1223,0,816,0,'LMT'),(1223,1,3600,0,'WAT'),(1224,0,7820,0,'LMT'),(1224,1,7200,0,'CAT'),(1225,0,5400,0,'SAST'),(1225,1,10800,1,'SAST'),(1225,2,7200,0,'SAST'),(1226,0,5400,0,'SAST'),(1226,1,10800,1,'SAST'),(1226,2,7200,0,'SAST'),(1227,0,8836,0,'LMT'),(1227,1,10800,0,'EAT'),(1227,2,9000,0,'+0230'),(1227,3,9900,0,'+0245'),(1227,4,10800,0,'EAT'),(1228,0,-2588,0,'MMT'),(1228,1,-2670,0,'MMT'),(1228,2,0,0,'GMT'),(1229,0,8836,0,'LMT'),(1229,1,10800,0,'EAT'),(1229,2,9000,0,'+0230'),(1229,3,9900,0,'+0245'),(1229,4,10800,0,'EAT'),(1230,0,3612,0,'LMT'),(1230,1,3600,0,'WAT'),(1230,2,7200,1,'WAST'),(1231,0,816,0,'LMT'),(1231,1,3600,0,'WAT'),(1232,0,-968,0,'LMT'),(1232,1,0,0,'GMT'),(1233,0,-968,0,'LMT'),(1233,1,0,0,'GMT'),(1234,0,816,0,'LMT'),(1234,1,3600,0,'WAT'),(1235,0,-2205,0,'LMT'),(1235,1,0,0,'GMT'),(1235,2,3600,0,'WAT'),(1236,0,-968,0,'LMT'),(1236,1,0,0,'GMT'),(1237,0,3164,0,'LMT'),(1237,1,7200,1,'CEST'),(1237,2,3600,0,'CET'),(1237,3,7200,0,'EET'),(1238,0,561,0,'PMT'),(1238,1,7200,1,'CEST'),(1238,2,3600,0,'CET'),(1238,3,3600,0,'CET'),(1238,4,7200,1,'CEST'),(1239,0,5400,0,'+0130'),(1239,1,7200,0,'SAST'),(1239,2,10800,1,'SAST'),(1239,3,7200,0,'CAT'),(1239,4,3600,0,'WAT'),(1239,5,7200,1,'CAT'),(1239,6,7200,0,'CAT'),(1240,0,-39600,0,'NST'),(1240,1,-36000,1,'NWT'),(1240,2,-36000,1,'NPT'),(1240,3,-39600,0,'BST'),(1240,4,-36000,1,'BDT'),(1240,5,-36000,0,'AHST'),(1240,6,-32400,1,'HDT'),(1240,7,-36000,0,'HST'),(1241,0,-36000,0,'AST'),(1241,1,-32400,1,'AWT'),(1241,2,-32400,1,'APT'),(1241,3,-36000,0,'AHST'),(1241,4,-32400,1,'AHDT'),(1241,5,-32400,0,'YST'),(1241,6,-28800,1,'AKDT'),(1241,7,-32400,0,'AKST'),(1242,0,-14764,0,'LMT'),(1242,1,-14400,0,'AST'),(1243,0,-14764,0,'LMT'),(1243,1,-14400,0,'AST'),(1244,0,-11568,0,'LMT'),(1244,1,-7200,1,'-02'),(1244,2,-10800,0,'-03'),(1245,0,-15408,0,'CMT'),(1245,1,-14400,0,'-04'),(1245,2,-10800,1,'-03'),(1245,3,-7200,1,'-02'),(1245,4,-10800,0,'-03'),(1246,0,-15408,0,'CMT'),(1246,1,-14400,0,'-04'),(1246,2,-10800,1,'-03'),(1246,3,-7200,1,'-02'),(1246,4,-10800,0,'-03'),(1247,0,-15408,0,'CMT'),(1247,1,-14400,0,'-04'),(1247,2,-10800,1,'-03'),(1247,3,-7200,1,'-02'),(1247,4,-10800,0,'-03'),(1248,0,-15408,0,'CMT'),(1248,1,-14400,0,'-04'),(1248,2,-10800,1,'-03'),(1248,3,-7200,1,'-02'),(1248,4,-10800,0,'-03'),(1249,0,-15408,0,'CMT'),(1249,1,-14400,0,'-04'),(1249,2,-10800,1,'-03'),(1249,3,-7200,1,'-02'),(1249,4,-10800,0,'-03'),(1250,0,-15408,0,'CMT'),(1250,1,-14400,0,'-04'),(1250,2,-10800,1,'-03'),(1250,3,-7200,1,'-02'),(1250,4,-10800,0,'-03'),(1251,0,-15408,0,'CMT'),(1251,1,-14400,0,'-04'),(1251,2,-10800,1,'-03'),(1251,3,-7200,1,'-02'),(1251,4,-10800,0,'-03'),(1252,0,-15408,0,'CMT'),(1252,1,-14400,0,'-04'),(1252,2,-10800,1,'-03'),(1252,3,-7200,1,'-02'),(1252,4,-10800,0,'-03'),(1253,0,-15408,0,'CMT'),(1253,1,-14400,0,'-04'),(1253,2,-10800,1,'-03'),(1253,3,-7200,1,'-02'),(1253,4,-10800,0,'-03'),(1254,0,-15408,0,'CMT'),(1254,1,-14400,0,'-04'),(1254,2,-10800,1,'-03'),(1254,3,-7200,1,'-02'),(1254,4,-10800,0,'-03'),(1255,0,-15408,0,'CMT'),(1255,1,-14400,0,'-04'),(1255,2,-10800,1,'-03'),(1255,3,-7200,1,'-02'),(1255,4,-10800,0,'-03'),(1255,5,-10800,1,'-03'),(1256,0,-15408,0,'CMT'),(1256,1,-14400,0,'-04'),(1256,2,-10800,1,'-03'),(1256,3,-7200,1,'-02'),(1256,4,-10800,0,'-03'),(1257,0,-15408,0,'CMT'),(1257,1,-14400,0,'-04'),(1257,2,-10800,1,'-03'),(1257,3,-7200,1,'-02'),(1257,4,-10800,0,'-03'),(1258,0,-16547,0,'LMT'),(1258,1,-16200,0,'-0430'),(1258,2,-14400,0,'AST'),(1259,0,-13840,0,'AMT'),(1259,1,-14400,0,'-04'),(1259,2,-10800,0,'-03'),(1259,3,-10800,1,'-03'),(1259,4,-14400,0,'-04'),(1260,0,-18000,1,'CDT'),(1260,1,-21600,0,'CST'),(1260,2,-18000,1,'CWT'),(1260,3,-18000,1,'CPT'),(1260,4,-18000,0,'EST'),(1261,0,-39600,0,'NST'),(1261,1,-36000,1,'NWT'),(1261,2,-36000,1,'NPT'),(1261,3,-39600,0,'BST'),(1261,4,-36000,1,'BDT'),(1261,5,-36000,0,'AHST'),(1261,6,-32400,1,'HDT'),(1261,7,-36000,0,'HST'),(1262,0,-9244,0,'LMT'),(1262,1,-7200,1,'-02'),(1262,2,-10800,0,'-03'),(1263,0,-25260,0,'LMT'),(1263,1,-25200,0,'MST'),(1263,2,-21600,0,'CST'),(1263,3,-28800,0,'PST'),(1263,4,-21600,1,'MDT'),(1263,5,-18000,1,'CDT'),(1263,6,-21600,0,'CST'),(1264,0,-14309,0,'LMT'),(1264,1,-14309,0,'BMT'),(1264,2,-10800,1,'ADT'),(1264,3,-14400,0,'AST'),(1265,0,-11636,0,'LMT'),(1265,1,-7200,1,'-02'),(1265,2,-10800,0,'-03'),(1266,0,-21168,0,'LMT'),(1266,1,-19800,1,'-0530'),(1266,2,-21600,0,'CST'),(1266,3,-18000,1,'CDT'),(1267,0,-10800,1,'ADT'),(1267,1,-14400,0,'AST'),(1267,2,-10800,1,'AWT'),(1267,3,-10800,1,'APT'),(1268,0,-14560,0,'LMT'),(1268,1,-10800,1,'-03'),(1268,2,-14400,0,'-04'),(1269,0,-17776,0,'BMT'),(1269,1,-14400,1,'-04'),(1269,2,-18000,0,'-05'),(1270,0,-25200,1,'PDT'),(1270,1,-28800,0,'PST'),(1270,2,-21600,1,'MWT'),(1270,3,-21600,1,'MPT'),(1270,4,-25200,0,'MST'),(1270,5,-21600,1,'MDT'),(1271,0,-15408,0,'CMT'),(1271,1,-14400,0,'-04'),(1271,2,-10800,1,'-03'),(1271,3,-7200,1,'-02'),(1271,4,-10800,0,'-03'),(1272,0,0,0,'-00'),(1272,1,-21600,1,'MWT'),(1272,2,-21600,1,'MPT'),(1272,3,-25200,0,'MST'),(1272,4,-18000,1,'MDDT'),(1272,5,-21600,1,'MDT'),(1272,6,-18000,1,'CDT'),(1272,7,-21600,0,'CST'),(1272,8,-18000,0,'EST'),(1272,9,-21600,1,'MDT'),(1272,10,-25200,0,'MST'),(1273,0,-13108,0,'LMT'),(1273,1,-10800,1,'-03'),(1273,2,-14400,0,'-04'),(1274,0,-20824,0,'LMT'),(1274,1,-21600,0,'CST'),(1274,2,-14400,1,'EDT'),(1274,3,-18000,0,'EST'),(1274,4,-18000,1,'CDT'),(1275,0,-16060,0,'CMT'),(1275,1,-16200,0,'-0430'),(1275,2,-14400,0,'-04'),(1276,0,-15408,0,'CMT'),(1276,1,-14400,0,'-04'),(1276,2,-10800,1,'-03'),(1276,3,-7200,1,'-02'),(1276,4,-10800,0,'-03'),(1277,0,-12560,0,'LMT'),(1277,1,-14400,0,'-04'),(1277,2,-10800,0,'-03'),(1278,0,-19176,0,'CMT'),(1278,1,-18000,0,'EST'),(1279,0,-18000,1,'CDT'),(1279,1,-21600,0,'CST'),(1279,2,-18000,0,'EST'),(1279,3,-18000,1,'CWT'),(1279,4,-18000,1,'CPT'),(1279,5,-21600,0,'CST'),(1280,0,-25460,0,'LMT'),(1280,1,-25200,0,'MST'),(1280,2,-21600,0,'CST'),(1280,3,-18000,1,'CDT'),(1280,4,-21600,1,'MDT'),(1280,5,-25200,0,'MST'),(1281,0,-18000,1,'CDT'),(1281,1,-21600,0,'CST'),(1281,2,-18000,1,'CWT'),(1281,3,-18000,1,'CPT'),(1281,4,-18000,0,'EST'),(1282,0,-15408,0,'CMT'),(1282,1,-14400,0,'-04'),(1282,2,-10800,1,'-03'),(1282,3,-7200,1,'-02'),(1282,4,-10800,0,'-03'),(1283,0,-20173,0,'SJMT'),(1283,1,-18000,1,'CDT'),(1283,2,-21600,0,'CST'),(1284,0,-25200,0,'MST'),(1284,1,-28800,0,'PST'),(1284,2,-25200,0,'MST'),(1285,0,-13460,0,'LMT'),(1285,1,-10800,1,'-03'),(1285,2,-14400,0,'-04'),(1286,0,-16547,0,'LMT'),(1286,1,-16200,0,'-0430'),(1286,2,-14400,0,'AST'),(1287,0,-4480,0,'LMT'),(1287,1,-10800,0,'-03'),(1287,2,-10800,0,'-03'),(1287,3,-7200,1,'-02'),(1287,4,-7200,1,'-02'),(1287,5,0,0,'GMT'),(1288,0,-28800,1,'YDT'),(1288,1,-32400,0,'YST'),(1288,2,-28800,1,'YWT'),(1288,3,-28800,1,'YPT'),(1288,4,-25200,1,'YDDT'),(1288,5,-28800,0,'PST'),(1288,6,-25200,1,'PDT'),(1289,0,-25200,1,'PDT'),(1289,1,-28800,0,'PST'),(1289,2,-25200,1,'PWT'),(1289,3,-25200,1,'PPT'),(1289,4,-25200,0,'MST'),(1290,0,-21600,1,'MDT'),(1290,1,-25200,0,'MST'),(1290,2,-21600,1,'MWT'),(1290,3,-21600,1,'MPT'),(1291,0,-19931,0,'LMT'),(1291,1,-21600,0,'CST'),(1291,2,-18000,0,'EST'),(1291,3,-14400,1,'EWT'),(1291,4,-14400,1,'EPT'),(1291,5,-14400,1,'EDT'),(1292,0,-14764,0,'LMT'),(1292,1,-14400,0,'AST'),(1293,0,-27232,0,'LMT'),(1293,1,-21600,1,'MDT'),(1293,2,-25200,0,'MST'),(1293,3,-21600,1,'MWT'),(1293,4,-21600,1,'MPT'),(1294,0,-16768,0,'LMT'),(1294,1,-14400,1,'-04'),(1294,2,-18000,0,'-05'),(1294,3,-14400,0,'-04'),(1294,4,-18000,0,'-05'),(1295,0,-21408,0,'LMT'),(1295,1,-18000,1,'CDT'),(1295,2,-21600,0,'CST'),(1296,0,-28084,0,'LMT'),(1296,1,-25200,0,'MST'),(1296,2,-28800,0,'PST'),(1296,3,-25200,1,'PDT'),(1296,4,-25200,1,'PWT'),(1296,5,-25200,1,'PPT'),(1297,0,-25200,1,'PDT'),(1297,1,-28800,0,'PST'),(1297,2,-25200,1,'PWT'),(1297,3,-25200,1,'PPT'),(1297,4,-25200,0,'MST'),(1298,0,-18000,1,'CDT'),(1298,1,-21600,0,'CST'),(1298,2,-18000,1,'CWT'),(1298,3,-18000,1,'CPT'),(1298,4,-18000,0,'EST'),(1298,5,-14400,1,'EDT'),(1299,0,-9240,0,'LMT'),(1299,1,-7200,1,'-02'),(1299,2,-10800,0,'-03'),(1300,0,-14388,0,'LMT'),(1300,1,-10800,1,'ADT'),(1300,2,-14400,0,'AST'),(1300,3,-10800,1,'AWT'),(1300,4,-10800,1,'APT'),(1301,0,-12416,0,'LMT'),(1301,1,-10800,0,'-03'),(1301,2,-10800,0,'-03'),(1301,3,-7200,1,'-02'),(1301,4,-7200,1,'-02'),(1302,0,-12652,0,'NST'),(1302,1,-9052,1,'NDT'),(1302,2,-12600,0,'NST'),(1302,3,-9000,1,'NDT'),(1302,4,-9000,1,'NPT'),(1302,5,-9000,1,'NWT'),(1302,6,-10800,1,'ADT'),(1302,7,-14400,0,'AST'),(1302,8,-7200,1,'ADDT'),(1302,9,-10800,1,'ADT'),(1303,0,-18430,0,'KMT'),(1303,1,-18000,0,'EST'),(1303,2,-14400,1,'EDT'),(1303,3,-14400,0,'AST'),(1303,4,-18000,0,'EST'),(1304,0,-14764,0,'LMT'),(1304,1,-14400,0,'AST'),(1305,0,-14764,0,'LMT'),(1305,1,-14400,0,'AST'),(1306,0,-21724,0,'LMT'),(1306,1,-18000,1,'CDT'),(1306,2,-21600,0,'CST'),(1307,0,-18840,0,'QMT'),(1307,1,-14400,1,'-04'),(1307,2,-18000,0,'-05'),(1308,0,-13960,0,'LMT'),(1308,1,-13500,0,'-0345'),(1308,2,-10800,0,'-03'),(1308,3,-14400,0,'-04'),(1309,0,-15264,0,'LMT'),(1309,1,-10800,1,'ADT'),(1309,2,-14400,0,'AST'),(1309,3,-10800,1,'AWT'),(1309,4,-10800,1,'APT'),(1310,0,-19776,0,'HMT'),(1310,1,-14400,1,'CDT'),(1310,2,-18000,0,'CST'),(1310,3,-18000,0,'CST'),(1310,4,-14400,1,'CDT'),(1311,0,-26632,0,'LMT'),(1311,1,-25200,0,'MST'),(1311,2,-21600,0,'CST'),(1311,3,-28800,0,'PST'),(1311,4,-21600,1,'MDT'),(1311,5,-25200,0,'MST'),(1312,0,-18000,1,'CDT'),(1312,1,-21600,0,'CST'),(1312,2,-18000,1,'CWT'),(1312,3,-18000,1,'CPT'),(1312,4,-18000,0,'EST'),(1312,5,-14400,1,'EDT'),(1313,0,-18000,1,'CDT'),(1313,1,-21600,0,'CST'),(1313,2,-18000,1,'CWT'),(1313,3,-18000,1,'CPT'),(1313,4,-18000,0,'EST'),(1313,5,-21600,0,'CST'),(1314,0,-18000,1,'CDT'),(1314,1,-21600,0,'CST'),(1314,2,-18000,1,'CWT'),(1314,3,-18000,1,'CPT'),(1314,4,-18000,0,'EST'),(1314,5,-14400,1,'EDT'),(1315,0,-18000,1,'CDT'),(1315,1,-21600,0,'CST'),(1315,2,-18000,1,'CWT'),(1315,3,-18000,1,'CPT'),(1315,4,-18000,0,'EST'),(1315,5,-14400,1,'EDT'),(1316,0,-18000,1,'CDT'),(1316,1,-21600,0,'CST'),(1316,2,-18000,1,'CWT'),(1316,3,-18000,1,'CPT'),(1316,4,-18000,0,'EST'),(1316,5,-14400,1,'EDT'),(1316,6,-18000,1,'CDT'),(1316,7,-21600,0,'CST'),(1317,0,-18000,1,'CDT'),(1317,1,-21600,0,'CST'),(1317,2,-18000,1,'CWT'),(1317,3,-18000,1,'CPT'),(1317,4,-18000,0,'EST'),(1317,5,-14400,1,'EDT'),(1318,0,-18000,1,'CDT'),(1318,1,-21600,0,'CST'),(1318,2,-18000,1,'CWT'),(1318,3,-18000,1,'CPT'),(1318,4,-18000,0,'EST'),(1318,5,-14400,1,'EDT'),(1319,0,-18000,1,'CDT'),(1319,1,-21600,0,'CST'),(1319,2,-18000,1,'CWT'),(1319,3,-18000,1,'CPT'),(1319,4,-18000,0,'EST'),(1319,5,-14400,1,'EDT'),(1320,0,-18000,1,'CDT'),(1320,1,-21600,0,'CST'),(1320,2,-18000,1,'CWT'),(1320,3,-18000,1,'CPT'),(1320,4,-18000,0,'EST'),(1320,5,-14400,1,'EDT'),(1321,0,0,0,'-00'),(1321,1,-21600,1,'PDDT'),(1321,2,-28800,0,'PST'),(1321,3,-25200,0,'MST'),(1321,4,-21600,1,'MDT'),(1322,0,0,0,'-00'),(1322,1,-14400,1,'EPT'),(1322,2,-18000,0,'EST'),(1322,3,-10800,1,'EDDT'),(1322,4,-14400,1,'EDT'),(1322,5,-14400,1,'EWT'),(1322,6,-21600,0,'CST'),(1322,7,-18000,1,'CDT'),(1322,8,-14400,1,'EDT'),(1322,9,-18000,0,'EST'),(1323,0,-18430,0,'KMT'),(1323,1,-18000,0,'EST'),(1323,2,-14400,1,'EDT'),(1324,0,-15408,0,'CMT'),(1324,1,-14400,0,'-04'),(1324,2,-10800,1,'-03'),(1324,3,-7200,1,'-02'),(1324,4,-10800,0,'-03'),(1325,0,-28800,0,'PST'),(1325,1,-25200,1,'PWT'),(1325,2,-25200,1,'PPT'),(1325,3,-25200,1,'PDT'),(1325,4,-28800,1,'YDT'),(1325,5,-32400,0,'YST'),(1325,6,-28800,1,'AKDT'),(1325,7,-32400,0,'AKST'),(1326,0,-18000,1,'CDT'),(1326,1,-21600,0,'CST'),(1326,2,-18000,1,'CWT'),(1326,3,-18000,1,'CPT'),(1326,4,-18000,0,'EST'),(1326,5,-14400,1,'EDT'),(1327,0,-18000,1,'CDT'),(1327,1,-21600,0,'CST'),(1327,2,-18000,1,'CWT'),(1327,3,-18000,1,'CPT'),(1327,4,-14400,1,'EDT'),(1327,5,-18000,0,'EST'),(1328,0,-18000,1,'CDT'),(1328,1,-21600,0,'CST'),(1328,2,-18000,1,'CWT'),(1328,3,-18000,1,'CPT'),(1328,4,-18000,0,'EST'),(1328,5,-21600,0,'CST'),(1329,0,-16547,0,'LMT'),(1329,1,-16200,0,'-0430'),(1329,2,-14400,0,'AST'),(1330,0,-16356,0,'CMT'),(1330,1,-12756,1,'BST'),(1330,2,-14400,0,'-04'),(1331,0,-18516,0,'LMT'),(1331,1,-14400,1,'-04'),(1331,2,-18000,0,'-05'),(1332,0,-25200,1,'PDT'),(1332,1,-28800,0,'PST'),(1332,2,-25200,1,'PWT'),(1332,3,-25200,1,'PPT'),(1333,0,-18000,1,'CDT'),(1333,1,-21600,0,'CST'),(1333,2,-18000,1,'CWT'),(1333,3,-18000,1,'CPT'),(1333,4,-18000,0,'EST'),(1333,5,-14400,1,'EDT'),(1334,0,-16547,0,'LMT'),(1334,1,-16200,0,'-0430'),(1334,2,-14400,0,'AST'),(1335,0,-8572,0,'LMT'),(1335,1,-7200,1,'-02'),(1335,2,-10800,0,'-03'),(1336,0,-20712,0,'MMT'),(1336,1,-21600,0,'CST'),(1336,2,-18000,0,'EST'),(1336,3,-18000,1,'CDT'),(1336,4,-21600,0,'CST'),(1337,0,-14404,0,'LMT'),(1337,1,-10800,1,'-03'),(1337,2,-14400,0,'-04'),(1338,0,-14764,0,'LMT'),(1338,1,-14400,0,'AST'),(1339,0,-14660,0,'FFMT'),(1339,1,-14400,0,'AST'),(1339,2,-10800,1,'ADT'),(1340,0,-24000,0,'LMT'),(1340,1,-21600,0,'CST'),(1340,2,-18000,1,'CDT'),(1341,0,-25540,0,'LMT'),(1341,1,-25200,0,'MST'),(1341,2,-21600,0,'CST'),(1341,3,-28800,0,'PST'),(1341,4,-21600,1,'MDT'),(1341,5,-25200,0,'MST'),(1342,0,-15408,0,'CMT'),(1342,1,-14400,0,'-04'),(1342,2,-10800,1,'-03'),(1342,3,-7200,1,'-02'),(1342,4,-10800,0,'-03'),(1343,0,-18000,1,'CDT'),(1343,1,-21600,0,'CST'),(1343,2,-18000,1,'CWT'),(1343,3,-18000,1,'CPT'),(1343,4,-18000,0,'EST'),(1343,5,-21600,0,'CST'),(1344,0,-21508,0,'LMT'),(1344,1,-21600,0,'CST'),(1344,2,-18000,0,'EST'),(1344,3,-18000,1,'CDT'),(1344,4,-21600,0,'CST'),(1345,0,-28800,0,'PST'),(1345,1,-25200,1,'PWT'),(1345,2,-25200,1,'PPT'),(1345,3,-25200,1,'PDT'),(1345,4,-32400,0,'AKST'),(1345,5,-28800,1,'AKDT'),(1346,0,-23796,0,'LMT'),(1346,1,-25200,0,'MST'),(1346,2,-21600,0,'CST'),(1346,3,-18000,1,'CDT'),(1346,4,-18000,1,'CWT'),(1347,0,-13480,0,'LMT'),(1347,1,-14400,0,'AST'),(1347,2,-10800,0,'-03'),(1347,3,-7200,1,'-02'),(1348,0,-18000,0,'EST'),(1348,1,-10800,1,'ADT'),(1348,2,-14400,0,'AST'),(1348,3,-10800,1,'AWT'),(1348,4,-10800,1,'APT'),(1349,0,-24076,0,'LMT'),(1349,1,-21600,0,'CST'),(1349,2,-18000,1,'CDT'),(1350,0,-13491,0,'LMT'),(1350,1,-13491,0,'MMT'),(1350,2,-14400,0,'-04'),(1350,3,-12600,0,'-0330'),(1350,4,-10800,1,'-03'),(1350,5,-10800,0,'-03'),(1350,6,-9000,1,'-0230'),(1350,7,-7200,1,'-02'),(1350,8,-5400,1,'-0130'),(1350,9,-7200,1,'-02'),(1351,0,-14400,1,'EDT'),(1351,1,-18000,0,'EST'),(1351,2,-14400,1,'EWT'),(1351,3,-14400,1,'EPT'),(1352,0,-14764,0,'LMT'),(1352,1,-14400,0,'AST'),(1353,0,-18570,0,'LMT'),(1353,1,-14400,1,'EDT'),(1353,2,-18000,0,'EST'),(1354,0,-14400,1,'EDT'),(1354,1,-18000,0,'EST'),(1354,2,-14400,1,'EWT'),(1354,3,-14400,1,'EPT'),(1355,0,-14400,1,'EDT'),(1355,1,-18000,0,'EST'),(1355,2,-14400,1,'EWT'),(1355,3,-14400,1,'EPT'),(1356,0,-39600,0,'NST'),(1356,1,-36000,1,'NWT'),(1356,2,-36000,1,'NPT'),(1356,3,-39600,0,'BST'),(1356,4,-36000,1,'BDT'),(1356,5,-32400,0,'YST'),(1356,6,-28800,1,'AKDT'),(1356,7,-32400,0,'AKST'),(1357,0,-7780,0,'LMT'),(1357,1,-3600,1,'-01'),(1357,2,-7200,0,'-02'),(1358,0,-21600,1,'MDT'),(1358,1,-25200,0,'MST'),(1358,2,-21600,1,'MWT'),(1358,3,-21600,1,'MPT'),(1358,4,-18000,1,'CDT'),(1358,5,-21600,0,'CST'),(1359,0,-21600,1,'MDT'),(1359,1,-25200,0,'MST'),(1359,2,-21600,1,'MWT'),(1359,3,-21600,1,'MPT'),(1359,4,-18000,1,'CDT'),(1359,5,-21600,0,'CST'),(1360,0,-21600,1,'MDT'),(1360,1,-25200,0,'MST'),(1360,2,-21600,1,'MWT'),(1360,3,-21600,1,'MPT'),(1360,4,-18000,1,'CDT'),(1360,5,-21600,0,'CST'),(1361,0,-25060,0,'LMT'),(1361,1,-25200,0,'MST'),(1361,2,-21600,0,'CST'),(1361,3,-18000,1,'CDT'),(1361,4,-21600,1,'MDT'),(1361,5,-25200,0,'MST'),(1362,0,-19176,0,'CMT'),(1362,1,-18000,0,'EST'),(1363,0,0,0,'-00'),(1363,1,-10800,1,'AWT'),(1363,2,-10800,1,'APT'),(1363,3,-14400,0,'AST'),(1363,4,-7200,1,'ADDT'),(1363,5,-10800,1,'ADT'),(1363,6,-14400,1,'EDT'),(1363,7,-18000,0,'EST'),(1363,8,-21600,0,'CST'),(1363,9,-18000,1,'CDT'),(1363,10,-14400,1,'EDT'),(1363,11,-18000,0,'EST'),(1364,0,-13240,0,'LMT'),(1364,1,-13252,0,'PMT'),(1364,2,-13236,0,'PMT'),(1364,3,-12600,0,'-0330'),(1364,4,-10800,0,'-03'),(1365,0,-21600,1,'MDT'),(1365,1,-25200,0,'MST'),(1365,2,-21600,1,'MWT'),(1366,0,-17340,0,'PPMT'),(1366,1,-14400,1,'EDT'),(1366,2,-18000,0,'EST'),(1366,3,-14400,1,'EDT'),(1366,4,-18000,0,'EST'),(1367,0,-14764,0,'LMT'),(1367,1,-14400,0,'AST'),(1368,0,-16272,0,'LMT'),(1368,1,-14400,1,'-04'),(1368,2,-18000,0,'-05'),(1368,3,-14400,0,'-04'),(1368,4,-18000,0,'-05'),(1369,0,-15336,0,'LMT'),(1369,1,-10800,1,'-03'),(1369,2,-14400,0,'-04'),(1370,0,-14400,0,'AST'),(1370,1,-10800,1,'APT'),(1370,2,-10800,1,'AWT'),(1371,0,-16966,0,'SMT'),(1371,1,-18000,0,'-05'),(1371,2,-14400,0,'-04'),(1371,3,-14400,1,'-04'),(1371,4,-10800,1,'-03'),(1371,5,-14400,0,'-04'),(1371,6,-10800,0,'-03'),(1372,0,-18000,1,'CDT'),(1372,1,-21600,0,'CST'),(1372,2,-18000,1,'CWT'),(1372,3,-18000,1,'CPT'),(1373,0,0,0,'-00'),(1373,1,-14400,1,'CDDT'),(1373,2,-21600,0,'CST'),(1373,3,-18000,1,'CDT'),(1373,4,-18000,0,'EST'),(1373,5,-21600,0,'CST'),(1374,0,-8376,0,'LMT'),(1374,1,-7200,1,'-02'),(1374,2,-10800,0,'-03'),(1375,0,-25116,0,'LMT'),(1375,1,-21600,1,'MDT'),(1375,2,-25200,0,'MST'),(1375,3,-21600,1,'MWT'),(1375,4,-21600,1,'MPT'),(1375,5,-21600,0,'CST'),(1376,0,0,0,'-00'),(1376,1,-14400,1,'CDDT'),(1376,2,-21600,0,'CST'),(1376,3,-18000,1,'CDT'),(1376,4,-18000,0,'EST'),(1376,5,-21600,0,'CST'),(1377,0,-16272,0,'LMT'),(1377,1,-14400,1,'-04'),(1377,2,-18000,0,'-05'),(1377,3,-14400,0,'-04'),(1377,4,-18000,0,'-05'),(1378,0,-15408,0,'CMT'),(1378,1,-14400,0,'-04'),(1378,2,-10800,1,'-03'),(1378,3,-7200,1,'-02'),(1378,4,-10800,0,'-03'),(1379,0,-28084,0,'LMT'),(1379,1,-25200,0,'MST'),(1379,2,-28800,0,'PST'),(1379,3,-25200,1,'PDT'),(1379,4,-25200,1,'PWT'),(1379,5,-25200,1,'PPT'),(1380,0,-13128,0,'LMT'),(1380,1,-10800,1,'-03'),(1380,2,-14400,0,'-04'),(1380,3,-10800,0,'-03'),(1381,0,-16966,0,'SMT'),(1381,1,-18000,0,'-05'),(1381,2,-14400,0,'-04'),(1381,3,-14400,1,'-04'),(1381,4,-10800,1,'-03'),(1381,5,-10800,1,'-03'),(1381,6,-14400,0,'-04'),(1382,0,-16800,0,'SDMT'),(1382,1,-14400,1,'EDT'),(1382,2,-18000,0,'EST'),(1382,3,-16200,1,'-0430'),(1382,4,-14400,0,'AST'),(1383,0,-11188,0,'LMT'),(1383,1,-7200,1,'-02'),(1383,2,-10800,0,'-03'),(1384,0,-5272,0,'LMT'),(1384,1,-7200,0,'-02'),(1384,2,-3600,1,'-01'),(1384,3,-7200,0,'-02'),(1384,4,-3600,0,'-01'),(1384,5,0,1,'+00'),(1384,6,0,1,'+00'),(1385,0,-21600,1,'MDT'),(1385,1,-25200,0,'MST'),(1385,2,-21600,1,'MWT'),(1385,3,-21600,1,'MPT'),(1386,0,-28800,0,'PST'),(1386,1,-25200,1,'PWT'),(1386,2,-25200,1,'PPT'),(1386,3,-25200,1,'PDT'),(1386,4,-32400,0,'YST'),(1386,5,-28800,1,'AKDT'),(1386,6,-32400,0,'AKST'),(1387,0,-14764,0,'LMT'),(1387,1,-14400,0,'AST'),(1388,0,-9052,1,'NDT'),(1388,1,-12652,0,'NST'),(1388,2,-9000,1,'NDT'),(1388,3,-12600,0,'NST'),(1388,4,-9000,1,'NPT'),(1388,5,-9000,1,'NWT'),(1388,6,-5400,1,'NDDT'),(1388,7,-9000,1,'NDT'),(1389,0,-14764,0,'LMT'),(1389,1,-14400,0,'AST'),(1390,0,-14764,0,'LMT'),(1390,1,-14400,0,'AST'),(1391,0,-14764,0,'LMT'),(1391,1,-14400,0,'AST'),(1392,0,-14764,0,'LMT'),(1392,1,-14400,0,'AST'),(1393,0,-25880,0,'LMT'),(1393,1,-21600,1,'MDT'),(1393,2,-25200,0,'MST'),(1393,3,-21600,1,'MWT'),(1393,4,-21600,1,'MPT'),(1393,5,-21600,0,'CST'),(1394,0,-20932,0,'LMT'),(1394,1,-18000,1,'CDT'),(1394,2,-21600,0,'CST'),(1395,0,-16508,0,'LMT'),(1395,1,-10800,1,'ADT'),(1395,2,-14400,0,'AST'),(1396,0,-21600,0,'CST'),(1396,1,-18000,0,'EST'),(1396,2,-14400,1,'EWT'),(1396,3,-14400,1,'EPT'),(1396,4,-14400,1,'EDT'),(1397,0,-28084,0,'LMT'),(1397,1,-25200,0,'MST'),(1397,2,-28800,0,'PST'),(1397,3,-25200,1,'PDT'),(1397,4,-25200,1,'PWT'),(1397,5,-25200,1,'PPT'),(1398,0,-14400,1,'EDT'),(1398,1,-18000,0,'EST'),(1398,2,-14400,1,'EWT'),(1398,3,-14400,1,'EPT'),(1399,0,-14764,0,'LMT'),(1399,1,-14400,0,'AST'),(1400,0,-25200,1,'PDT'),(1400,1,-28800,0,'PST'),(1400,2,-25200,1,'PWT'),(1400,3,-25200,1,'PPT'),(1401,0,-14764,0,'LMT'),(1401,1,-14400,0,'AST'),(1402,0,-28800,1,'YDT'),(1402,1,-32400,0,'YST'),(1402,2,-28800,1,'YWT'),(1402,3,-28800,1,'YPT'),(1402,4,-25200,1,'YDDT'),(1402,5,-28800,0,'PST'),(1402,6,-25200,1,'PDT'),(1403,0,-18000,1,'CDT'),(1403,1,-21600,0,'CST'),(1403,2,-18000,1,'CWT'),(1403,3,-18000,1,'CPT'),(1403,4,-18000,1,'CDT'),(1403,5,-21600,0,'CST'),(1404,0,-32400,0,'YST'),(1404,1,-28800,1,'YWT'),(1404,2,-28800,1,'YPT'),(1404,3,-28800,1,'YDT'),(1404,4,-28800,1,'AKDT'),(1404,5,-32400,0,'AKST'),(1405,0,0,0,'-00'),(1405,1,-21600,1,'MWT'),(1405,2,-21600,1,'MPT'),(1405,3,-25200,0,'MST'),(1405,4,-18000,1,'MDDT'),(1405,5,-21600,1,'MDT'),(1406,0,0,0,'-00'),(1406,1,28800,0,'+08'),(1406,2,39600,0,'+11'),(1406,3,28800,0,'+08'),(1407,0,0,0,'-00'),(1407,1,25200,0,'+07'),(1407,2,18000,0,'+05'),(1407,3,25200,0,'+07'),(1408,0,0,0,'-00'),(1408,1,36000,0,'+10'),(1409,0,36000,0,'AEST'),(1409,1,39600,1,'AEDT'),(1409,2,0,0,'-00'),(1409,3,39600,1,'AEDT'),(1409,4,36000,0,'AEST'),(1409,5,39600,0,'+11'),(1410,0,0,0,'-00'),(1410,1,21600,0,'+06'),(1410,2,18000,0,'+05'),(1411,0,45000,1,'NZST'),(1411,1,41400,0,'NZMT'),(1411,2,43200,1,'NZST'),(1411,3,46800,1,'NZDT'),(1411,4,43200,0,'NZST'),(1411,5,43200,0,'NZST'),(1412,0,0,0,'-00'),(1412,1,-14400,0,'-04'),(1412,2,-10800,1,'-03'),(1412,3,-7200,1,'-02'),(1412,4,-10800,0,'-03'),(1412,5,-10800,1,'-03'),(1412,6,-14400,0,'-04'),(1412,7,-10800,0,'-03'),(1413,0,0,0,'-00'),(1413,1,-10800,0,'-03'),(1414,0,45000,1,'NZST'),(1414,1,41400,0,'NZMT'),(1414,2,43200,1,'NZST'),(1414,3,46800,1,'NZDT'),(1414,4,43200,0,'NZST'),(1414,5,43200,0,'NZST'),(1415,0,0,0,'-00'),(1415,1,10800,0,'+03'),(1416,0,0,0,'-00'),(1416,1,7200,1,'+02'),(1416,2,0,0,'+00'),(1416,3,0,0,'+00'),(1417,0,0,0,'-00'),(1417,1,21600,0,'+06'),(1418,0,7200,1,'CEST'),(1418,1,3600,0,'CET'),(1418,2,3600,0,'CET'),(1418,3,7200,1,'CEST'),(1418,4,7200,1,'CEST'),(1418,5,3600,0,'CET'),(1419,0,11212,0,'LMT'),(1419,1,10800,0,'+03'),(1420,0,18468,0,'LMT'),(1420,1,18000,0,'+05'),(1420,2,25200,1,'+07'),(1420,3,21600,0,'+06'),(1420,4,21600,0,'+06'),(1420,5,25200,1,'+07'),(1420,6,21600,1,'+06'),(1420,7,18000,0,'+05'),(1420,8,25200,1,'+07'),(1420,9,21600,0,'+06'),(1421,0,8624,0,'LMT'),(1421,1,10800,1,'EEST'),(1421,2,7200,0,'EET'),(1421,3,7200,0,'EET'),(1421,4,10800,1,'EEST'),(1422,0,42596,0,'LMT'),(1422,1,43200,0,'+12'),(1422,2,50400,1,'+14'),(1422,3,46800,0,'+13'),(1422,4,46800,1,'+13'),(1422,5,43200,0,'+12'),(1422,6,46800,1,'+13'),(1422,7,43200,1,'+12'),(1422,8,39600,0,'+11'),(1422,9,43200,0,'+12'),(1423,0,12064,0,'LMT'),(1423,1,14400,0,'+04'),(1423,2,18000,0,'+05'),(1423,3,21600,0,'+06'),(1423,4,21600,1,'+06'),(1423,5,18000,0,'+05'),(1423,6,21600,1,'+06'),(1423,7,18000,1,'+05'),(1423,8,14400,0,'+04'),(1423,9,18000,0,'+05'),(1424,0,13720,0,'LMT'),(1424,1,14400,0,'+04'),(1424,2,18000,0,'+05'),(1424,3,21600,1,'+06'),(1424,4,21600,0,'+06'),(1424,5,18000,0,'+05'),(1424,6,21600,1,'+06'),(1424,7,18000,1,'+05'),(1424,8,14400,0,'+04'),(1424,9,21600,1,'+06'),(1424,10,18000,0,'+05'),(1425,0,14012,0,'LMT'),(1425,1,14400,0,'+04'),(1425,2,21600,1,'+06'),(1425,3,18000,0,'+05'),(1425,4,18000,0,'+05'),(1425,5,21600,1,'+06'),(1425,6,18000,1,'+05'),(1425,7,14400,0,'+04'),(1425,8,18000,0,'+05'),(1426,0,14012,0,'LMT'),(1426,1,14400,0,'+04'),(1426,2,21600,1,'+06'),(1426,3,18000,0,'+05'),(1426,4,18000,0,'+05'),(1426,5,21600,1,'+06'),(1426,6,18000,1,'+05'),(1426,7,14400,0,'+04'),(1426,8,18000,0,'+05'),(1427,0,12464,0,'LMT'),(1427,1,10800,0,'+03'),(1427,2,18000,0,'+05'),(1427,3,21600,0,'+06'),(1427,4,21600,1,'+06'),(1427,5,18000,0,'+05'),(1427,6,21600,1,'+06'),(1427,7,18000,1,'+05'),(1427,8,14400,0,'+04'),(1427,9,18000,0,'+05'),(1428,0,10656,0,'BMT'),(1428,1,10800,0,'+03'),(1428,2,14400,1,'+04'),(1428,3,10800,0,'+03'),(1428,4,14400,1,'+04'),(1429,0,12368,0,'LMT'),(1429,1,14400,0,'+04'),(1429,2,10800,0,'+03'),(1430,0,11964,0,'LMT'),(1430,1,10800,0,'+03'),(1430,2,18000,1,'+05'),(1430,3,14400,0,'+04'),(1430,4,14400,0,'+04'),(1430,5,18000,1,'+05'),(1430,6,14400,1,'+04'),(1430,7,10800,0,'+03'),(1430,8,18000,1,'+05'),(1430,9,14400,0,'+04'),(1431,0,24124,0,'BMT'),(1431,1,25200,0,'+07'),(1432,0,20100,0,'LMT'),(1432,1,21600,0,'+06'),(1432,2,28800,1,'+08'),(1432,3,25200,0,'+07'),(1432,4,25200,0,'+07'),(1432,5,28800,1,'+08'),(1432,6,25200,1,'+07'),(1432,7,21600,0,'+06'),(1432,8,25200,1,'+07'),(1432,9,25200,0,'+07'),(1433,0,10800,1,'EEST'),(1433,1,7200,0,'EET'),(1434,0,17904,0,'LMT'),(1434,1,18000,0,'+05'),(1434,2,25200,1,'+07'),(1434,3,21600,0,'+06'),(1434,4,21600,0,'+06'),(1434,5,25200,1,'+07'),(1434,6,21600,1,'+06'),(1434,7,18000,0,'+05'),(1434,8,21600,1,'+06'),(1434,9,21600,0,'+06'),(1435,0,27580,0,'LMT'),(1435,1,27000,0,'+0730'),(1435,2,28800,0,'+08'),(1436,0,19270,0,'MMT'),(1436,1,19800,0,'IST'),(1436,2,23400,1,'+0630'),(1437,0,27232,0,'LMT'),(1437,1,28800,0,'+08'),(1437,2,36000,1,'+10'),(1437,3,32400,0,'+09'),(1437,4,32400,0,'+09'),(1437,5,36000,1,'+10'),(1437,6,32400,1,'+09'),(1437,7,28800,0,'+08'),(1437,8,36000,0,'+10'),(1437,9,36000,1,'+10'),(1437,10,32400,0,'+09'),(1438,0,27480,0,'LMT'),(1438,1,25200,0,'+07'),(1438,2,28800,0,'+08'),(1438,3,32400,0,'+09'),(1438,4,36000,1,'+10'),(1438,5,32400,1,'+09'),(1438,6,28800,0,'+08'),(1439,0,32400,1,'CDT'),(1439,1,28800,0,'CST'),(1440,0,32400,1,'CDT'),(1440,1,28800,0,'CST'),(1441,0,19172,0,'MMT'),(1441,1,19800,0,'+0530'),(1441,2,21600,1,'+06'),(1441,3,23400,1,'+0630'),(1441,4,23400,0,'+0630'),(1441,5,21600,0,'+06'),(1441,6,19800,0,'+0530'),(1442,0,21200,0,'HMT'),(1442,1,23400,0,'+0630'),(1442,2,19800,0,'+0530'),(1442,3,21600,0,'+06'),(1442,4,25200,1,'+07'),(1443,0,8712,0,'LMT'),(1443,1,10800,1,'EEST'),(1443,2,7200,0,'EET'),(1444,0,21200,0,'HMT'),(1444,1,23400,0,'+0630'),(1444,2,19800,0,'+0530'),(1444,3,21600,0,'+06'),(1444,4,25200,1,'+07'),(1445,0,30140,0,'LMT'),(1445,1,28800,0,'+08'),(1445,2,32400,0,'+09'),(1446,0,13272,0,'LMT'),(1446,1,14400,0,'+04'),(1447,0,16512,0,'LMT'),(1447,1,18000,0,'+05'),(1447,2,25200,1,'+07'),(1447,3,21600,0,'+06'),(1447,4,21600,0,'+06'),(1447,5,25200,1,'+07'),(1447,6,21600,1,'+06'),(1447,7,18000,0,'+05'),(1448,0,8148,0,'LMT'),(1448,1,10800,1,'EEST'),(1448,2,7200,0,'EET'),(1448,3,7200,0,'EET'),(1448,4,10800,1,'EEST'),(1448,5,10800,0,'+03'),(1448,6,7200,0,'EET'),(1449,0,10800,1,'EEST'),(1449,1,7200,0,'EET'),(1449,2,10800,1,'IDT'),(1449,3,7200,0,'IST'),(1449,4,7200,0,'EET'),(1450,0,32400,1,'CDT'),(1450,1,28800,0,'CST'),(1451,0,10800,1,'EEST'),(1451,1,7200,0,'EET'),(1451,2,10800,1,'IDT'),(1451,3,7200,0,'IST'),(1451,4,7200,0,'EET'),(1452,0,25600,0,'LMT'),(1452,1,25590,0,'PLMT'),(1452,2,25200,0,'+07'),(1452,3,28800,0,'+08'),(1452,4,32400,0,'+09'),(1452,5,25200,0,'+07'),(1453,0,27402,0,'LMT'),(1453,1,32400,1,'HKST'),(1453,2,28800,0,'HKT'),(1453,3,32400,0,'JST'),(1453,4,28800,0,'HKT'),(1454,0,21996,0,'LMT'),(1454,1,21600,0,'+06'),(1454,2,28800,1,'+08'),(1454,3,25200,0,'+07'),(1455,0,25025,0,'IMT'),(1455,1,25200,0,'+07'),(1455,2,32400,1,'+09'),(1455,3,28800,0,'+08'),(1455,4,28800,0,'+08'),(1455,5,32400,1,'+09'),(1455,6,28800,1,'+08'),(1455,7,25200,0,'+07'),(1455,8,32400,0,'+09'),(1455,9,32400,1,'+09'),(1455,10,28800,0,'+08'),(1456,0,7016,0,'IMT'),(1456,1,10800,1,'EEST'),(1456,2,7200,0,'EET'),(1456,3,14400,1,'+04'),(1456,4,10800,0,'+03'),(1456,5,10800,1,'EEST'),(1456,6,7200,0,'EET'),(1456,7,10800,1,'EEST'),(1456,8,7200,0,'EET'),(1456,9,10800,0,'+03'),(1457,0,25632,0,'BMT'),(1457,1,26400,0,'+0720'),(1457,2,27000,0,'+0730'),(1457,3,32400,0,'+09'),(1457,4,28800,0,'+08'),(1457,5,25200,0,'WIB'),(1458,0,33768,0,'LMT'),(1458,1,32400,0,'+09'),(1458,2,34200,0,'+0930'),(1458,3,32400,0,'WIT'),(1459,0,8440,0,'JMT'),(1459,1,10800,1,'IDT'),(1459,2,7200,0,'IST'),(1459,3,14400,1,'IDDT'),(1459,4,10800,1,'IDT'),(1460,0,14400,0,'+04'),(1460,1,16200,0,'+0430'),(1461,0,38076,0,'LMT'),(1461,1,39600,0,'+11'),(1461,2,46800,1,'+13'),(1461,3,43200,0,'+12'),(1461,4,43200,0,'+12'),(1461,5,46800,1,'+13'),(1461,6,43200,1,'+12'),(1461,7,39600,0,'+11'),(1461,8,43200,0,'+12'),(1462,0,16092,0,'LMT'),(1462,1,19800,0,'+0530'),(1462,2,23400,1,'+0630'),(1462,3,18000,0,'+05'),(1462,4,21600,1,'PKST'),(1462,5,18000,0,'PKT'),(1463,0,21020,0,'LMT'),(1463,1,21600,0,'+06'),(1464,0,20476,0,'LMT'),(1464,1,19800,0,'+0530'),(1464,2,20700,0,'+0545'),(1465,0,20476,0,'LMT'),(1465,1,19800,0,'+0530'),(1465,2,20700,0,'+0545'),(1466,0,32533,0,'LMT'),(1466,1,28800,0,'+08'),(1466,2,36000,1,'+10'),(1466,3,32400,0,'+09'),(1466,4,32400,0,'+09'),(1466,5,36000,1,'+10'),(1466,6,32400,1,'+09'),(1466,7,28800,0,'+08'),(1466,8,39600,1,'+11'),(1466,9,36000,0,'+10'),(1466,10,36000,0,'+10'),(1466,11,39600,0,'+11'),(1466,12,32400,0,'+09'),(1467,0,19270,0,'MMT'),(1467,1,19800,0,'IST'),(1467,2,23400,1,'+0630'),(1468,0,22286,0,'LMT'),(1468,1,21600,0,'+06'),(1468,2,28800,1,'+08'),(1468,3,25200,0,'+07'),(1468,4,25200,0,'+07'),(1468,5,28800,1,'+08'),(1468,6,25200,1,'+07'),(1468,7,21600,0,'+06'),(1468,8,28800,0,'+08'),(1468,9,28800,1,'+08'),(1468,10,25200,0,'+07'),(1469,0,24925,0,'SMT'),(1469,1,25200,0,'+07'),(1469,2,26400,1,'+0720'),(1469,3,26400,0,'+0720'),(1469,4,27000,0,'+0730'),(1469,5,32400,0,'+09'),(1469,6,28800,0,'+08'),(1470,0,26480,0,'LMT'),(1470,1,27000,0,'+0730'),(1470,2,30000,1,'+0820'),(1470,3,28800,0,'+08'),(1470,4,32400,0,'+09'),(1470,5,28800,0,'+08'),(1471,0,11212,0,'LMT'),(1471,1,10800,0,'+03'),(1472,0,27260,0,'LMT'),(1472,1,32400,1,'CDT'),(1472,2,28800,0,'CST'),(1472,3,28800,0,'CST'),(1473,0,27260,0,'LMT'),(1473,1,32400,1,'CDT'),(1473,2,28800,0,'CST'),(1473,3,28800,0,'CST'),(1474,0,36192,0,'LMT'),(1474,1,36000,0,'+10'),(1474,2,43200,1,'+12'),(1474,3,39600,0,'+11'),(1474,4,39600,0,'+11'),(1474,5,43200,1,'+12'),(1474,6,39600,1,'+11'),(1474,7,36000,0,'+10'),(1474,8,43200,0,'+12'),(1474,9,43200,1,'+12'),(1474,10,39600,0,'+11'),(1475,0,28656,0,'LMT'),(1475,1,28656,0,'MMT'),(1475,2,28800,0,'+08'),(1475,3,32400,0,'+09'),(1475,4,28800,0,'WITA'),(1476,0,32400,1,'+09'),(1476,1,28800,0,'+08'),(1476,2,32400,0,'+09'),(1476,3,28800,0,'+08'),(1477,0,13272,0,'LMT'),(1477,1,14400,0,'+04'),(1478,0,8008,0,'LMT'),(1478,1,10800,1,'EEST'),(1478,2,7200,0,'EET'),(1478,3,7200,0,'EET'),(1478,4,10800,1,'EEST'),(1479,0,20928,0,'LMT'),(1479,1,21600,0,'+06'),(1479,2,28800,1,'+08'),(1479,3,25200,0,'+07'),(1479,4,25200,0,'+07'),(1479,5,28800,1,'+08'),(1479,6,25200,1,'+07'),(1479,7,21600,0,'+06'),(1479,8,25200,0,'+07'),(1480,0,19900,0,'LMT'),(1480,1,21600,0,'+06'),(1480,2,28800,1,'+08'),(1480,3,25200,0,'+07'),(1480,4,25200,0,'+07'),(1480,5,28800,1,'+08'),(1480,6,25200,1,'+07'),(1480,7,21600,0,'+06'),(1480,8,25200,1,'+07'),(1480,9,25200,0,'+07'),(1481,0,17610,0,'LMT'),(1481,1,18000,0,'+05'),(1481,2,25200,1,'+07'),(1481,3,21600,0,'+06'),(1481,4,21600,0,'+06'),(1481,5,25200,1,'+07'),(1481,6,21600,1,'+06'),(1481,7,18000,0,'+05'),(1481,8,25200,0,'+07'),(1481,9,25200,1,'+07'),(1481,10,21600,0,'+06'),(1482,0,12324,0,'LMT'),(1482,1,10800,0,'+03'),(1482,2,18000,0,'+05'),(1482,3,21600,1,'+06'),(1482,4,21600,0,'+06'),(1482,5,18000,0,'+05'),(1482,6,21600,1,'+06'),(1482,7,18000,1,'+05'),(1482,8,14400,0,'+04'),(1482,9,18000,0,'+05'),(1483,0,24124,0,'BMT'),(1483,1,25200,0,'+07'),(1484,0,26240,0,'LMT'),(1484,1,26240,0,'PMT'),(1484,2,27000,0,'+0730'),(1484,3,32400,0,'+09'),(1484,4,28800,0,'+08'),(1484,5,28800,0,'WITA'),(1484,6,25200,0,'WIB'),(1485,0,30180,0,'LMT'),(1485,1,30600,0,'KST'),(1485,2,32400,0,'JST'),(1485,3,32400,0,'KST'),(1486,0,12368,0,'LMT'),(1486,1,14400,0,'+04'),(1486,2,10800,0,'+03'),(1487,0,15712,0,'LMT'),(1487,1,14400,0,'+04'),(1487,2,18000,0,'+05'),(1487,3,21600,1,'+06'),(1487,4,21600,0,'+06'),(1487,5,18000,0,'+05'),(1487,6,21600,1,'+06'),(1487,7,18000,1,'+05'),(1487,8,14400,0,'+04'),(1487,9,21600,0,'+06'),(1487,10,21600,1,'+06'),(1488,0,23087,0,'RMT'),(1488,1,23400,0,'+0630'),(1488,2,32400,0,'+09'),(1488,3,23400,0,'+0630'),(1489,0,11212,0,'LMT'),(1489,1,10800,0,'+03'),(1490,0,25600,0,'LMT'),(1490,1,25590,0,'PLMT'),(1490,2,25200,0,'+07'),(1490,3,28800,0,'+08'),(1490,4,32400,0,'+09'),(1490,5,25200,0,'+07'),(1491,0,34248,0,'LMT'),(1491,1,32400,0,'+09'),(1491,2,43200,1,'+12'),(1491,3,39600,0,'+11'),(1491,4,39600,0,'+11'),(1491,5,43200,1,'+12'),(1491,6,39600,1,'+11'),(1491,7,36000,0,'+10'),(1491,8,39600,0,'+11'),(1492,0,16073,0,'LMT'),(1492,1,14400,0,'+04'),(1492,2,18000,0,'+05'),(1492,3,21600,1,'+06'),(1492,4,21600,0,'+06'),(1492,5,18000,0,'+05'),(1492,6,21600,1,'+06'),(1493,0,30472,0,'LMT'),(1493,1,30600,0,'KST'),(1493,2,32400,0,'JST'),(1493,3,32400,0,'KST'),(1493,4,34200,1,'KDT'),(1493,5,36000,1,'KDT'),(1494,0,32400,1,'CDT'),(1494,1,28800,0,'CST'),(1495,0,24925,0,'SMT'),(1495,1,25200,0,'+07'),(1495,2,26400,1,'+0720'),(1495,3,26400,0,'+0720'),(1495,4,27000,0,'+0730'),(1495,5,32400,0,'+09'),(1495,6,28800,0,'+08'),(1496,0,36892,0,'LMT'),(1496,1,36000,0,'+10'),(1496,2,43200,1,'+12'),(1496,3,39600,0,'+11'),(1496,4,39600,0,'+11'),(1496,5,43200,1,'+12'),(1496,6,39600,1,'+11'),(1496,7,36000,0,'+10'),(1496,8,43200,0,'+12'),(1496,9,43200,1,'+12'),(1496,10,39600,0,'+11'),(1497,0,28800,0,'CST'),(1497,1,32400,0,'JST'),(1497,2,32400,1,'CDT'),(1497,3,28800,0,'CST'),(1498,0,16631,0,'LMT'),(1498,1,18000,0,'+05'),(1498,2,25200,1,'+07'),(1498,3,21600,0,'+06'),(1498,4,21600,0,'+06'),(1498,5,25200,1,'+07'),(1498,6,21600,1,'+06'),(1498,7,18000,0,'+05'),(1499,0,10751,0,'TBMT'),(1499,1,10800,0,'+03'),(1499,2,18000,1,'+05'),(1499,3,14400,0,'+04'),(1499,4,14400,0,'+04'),(1499,5,18000,1,'+05'),(1499,6,14400,1,'+04'),(1499,7,10800,0,'+03'),(1499,8,14400,1,'+04'),(1499,9,14400,0,'+04'),(1500,0,12344,0,'LMT'),(1500,1,12344,0,'TMT'),(1500,2,12600,0,'+0330'),(1500,3,18000,1,'+05'),(1500,4,14400,0,'+04'),(1500,5,16200,1,'+0430'),(1500,6,12600,0,'+0330'),(1501,0,8440,0,'JMT'),(1501,1,10800,1,'IDT'),(1501,2,7200,0,'IST'),(1501,3,14400,1,'IDDT'),(1501,4,10800,1,'IDT'),(1502,0,21516,0,'LMT'),(1502,1,19800,0,'+0530'),(1502,2,21600,0,'+06'),(1503,0,21516,0,'LMT'),(1503,1,19800,0,'+0530'),(1503,2,21600,0,'+06'),(1504,0,36000,1,'JDT'),(1504,1,32400,0,'JST'),(1504,2,32400,0,'JST'),(1505,0,20391,0,'LMT'),(1505,1,21600,0,'+06'),(1505,2,28800,1,'+08'),(1505,3,25200,0,'+07'),(1505,4,25200,0,'+07'),(1505,5,28800,1,'+08'),(1505,6,25200,1,'+07'),(1505,7,21600,0,'+06'),(1505,8,25200,1,'+07'),(1505,9,25200,0,'+07'),(1506,0,28656,0,'LMT'),(1506,1,28656,0,'MMT'),(1506,2,28800,0,'+08'),(1506,3,32400,0,'+09'),(1506,4,28800,0,'WITA'),(1507,0,25652,0,'LMT'),(1507,1,25200,0,'+07'),(1507,2,32400,1,'+09'),(1507,3,28800,0,'+08'),(1508,0,25652,0,'LMT'),(1508,1,25200,0,'+07'),(1508,2,32400,1,'+09'),(1508,3,28800,0,'+08'),(1509,0,21020,0,'LMT'),(1509,1,21600,0,'+06'),(1510,0,34374,0,'LMT'),(1510,1,28800,0,'+08'),(1510,2,32400,0,'+09'),(1510,3,39600,0,'+11'),(1510,4,43200,1,'+12'),(1510,5,39600,0,'+11'),(1510,6,43200,1,'+12'),(1510,7,39600,1,'+11'),(1510,8,36000,0,'+10'),(1510,9,43200,0,'+12'),(1510,10,43200,1,'+12'),(1510,11,36000,0,'+10'),(1511,0,24124,0,'BMT'),(1511,1,25200,0,'+07'),(1512,0,31651,0,'LMT'),(1512,1,32400,0,'+09'),(1512,2,39600,1,'+11'),(1512,3,36000,0,'+10'),(1512,4,36000,0,'+10'),(1512,5,39600,1,'+11'),(1512,6,36000,1,'+10'),(1512,7,32400,0,'+09'),(1512,8,39600,0,'+11'),(1512,9,39600,1,'+11'),(1512,10,36000,0,'+10'),(1513,0,31138,0,'LMT'),(1513,1,28800,0,'+08'),(1513,2,36000,1,'+10'),(1513,3,32400,0,'+09'),(1513,4,32400,0,'+09'),(1513,5,36000,1,'+10'),(1513,6,32400,1,'+09'),(1513,7,28800,0,'+08'),(1513,8,36000,0,'+10'),(1513,9,36000,1,'+10'),(1513,10,32400,0,'+09'),(1514,0,23087,0,'RMT'),(1514,1,23400,0,'+0630'),(1514,2,32400,0,'+09'),(1514,3,23400,0,'+0630'),(1515,0,14553,0,'LMT'),(1515,1,13505,0,'PMT'),(1515,2,14400,0,'+04'),(1515,3,21600,1,'+06'),(1515,4,18000,0,'+05'),(1515,5,18000,0,'+05'),(1515,6,21600,1,'+06'),(1515,7,18000,1,'+05'),(1515,8,14400,0,'+04'),(1515,9,21600,0,'+06'),(1515,10,21600,1,'+06'),(1515,11,18000,0,'+05'),(1516,0,10680,0,'LMT'),(1516,1,10800,0,'+03'),(1516,2,18000,1,'+05'),(1516,3,14400,0,'+04'),(1516,4,14400,0,'+04'),(1516,5,18000,1,'+05'),(1516,6,14400,1,'+04'),(1516,7,10800,0,'+03'),(1516,8,18000,1,'+05'),(1516,9,14400,0,'+04'),(1517,0,-6872,0,'HMT'),(1517,1,-3600,1,'-01'),(1517,2,-7200,0,'-02'),(1517,3,-3600,1,'-01'),(1517,4,-7200,0,'-02'),(1517,5,-7200,0,'-02'),(1517,6,0,1,'+00'),(1517,7,-3600,0,'-01'),(1517,8,-3600,0,'-01'),(1517,9,0,0,'WET'),(1517,10,0,1,'+00'),(1517,11,-3600,0,'-01'),(1518,0,-15558,0,'LMT'),(1518,1,-14400,0,'AST'),(1518,2,-10800,1,'ADT'),(1519,0,-3696,0,'LMT'),(1519,1,-3600,0,'-01'),(1519,2,0,0,'WET'),(1519,3,3600,1,'WEST'),(1519,4,0,0,'WET'),(1519,5,3600,1,'WEST'),(1520,0,-5644,0,'LMT'),(1520,1,-7200,0,'-02'),(1520,2,-3600,1,'-01'),(1520,3,-7200,0,'-02'),(1520,4,-3600,0,'-01'),(1521,0,-1624,0,'LMT'),(1521,1,0,0,'WET'),(1521,2,3600,1,'WEST'),(1521,3,0,0,'WET'),(1522,0,-1624,0,'LMT'),(1522,1,0,0,'WET'),(1522,2,3600,1,'WEST'),(1522,3,0,0,'WET'),(1523,0,7200,1,'CEST'),(1523,1,3600,0,'CET'),(1523,2,3600,0,'CET'),(1523,3,7200,1,'CEST'),(1523,4,7200,1,'CEST'),(1523,5,3600,0,'CET'),(1524,0,-4056,0,'FMT'),(1524,1,0,1,'+00'),(1524,2,-3600,0,'-01'),(1524,3,0,1,'+00'),(1524,4,-3600,0,'-01'),(1524,5,-3600,0,'-01'),(1524,6,3600,1,'+01'),(1524,7,3600,1,'WEST'),(1524,8,0,0,'WET'),(1524,9,0,0,'WET'),(1524,10,0,0,'WET'),(1524,11,3600,1,'WEST'),(1525,0,-5280,0,'LMT'),(1525,1,0,1,'+00'),(1525,2,-3600,0,'-01'),(1525,3,-3600,0,'-01'),(1525,4,0,1,'+00'),(1525,5,0,0,'GMT'),(1526,0,-7200,0,'-02'),(1527,0,-968,0,'LMT'),(1527,1,0,0,'GMT'),(1528,0,-13884,0,'SMT'),(1528,1,-10800,1,'-03'),(1528,2,-14400,0,'-04'),(1528,3,-7200,1,'-02'),(1528,4,-10800,0,'-03'),(1528,5,-10800,1,'-03'),(1529,0,39600,1,'AEDT'),(1529,1,36000,0,'AEST'),(1529,2,39600,1,'AEDT'),(1529,3,36000,0,'AEST'),(1530,0,37800,1,'ACDT'),(1530,1,34200,0,'ACST'),(1530,2,37800,1,'ACDT'),(1530,3,34200,0,'ACST'),(1531,0,39600,1,'AEDT'),(1531,1,36000,0,'AEST'),(1531,2,39600,1,'AEDT'),(1531,3,36000,0,'AEST'),(1532,0,37800,1,'ACDT'),(1532,1,34200,0,'ACST'),(1532,2,37800,1,'ACDT'),(1532,3,34200,0,'ACST'),(1533,0,39600,1,'AEDT'),(1533,1,36000,0,'AEST'),(1533,2,39600,1,'AEDT'),(1533,3,36000,0,'AEST'),(1534,0,36000,0,'AEST'),(1534,1,39600,1,'AEDT'),(1534,2,39600,1,'AEDT'),(1534,3,36000,0,'AEST'),(1535,0,37800,1,'ACDT'),(1535,1,34200,0,'ACST'),(1536,0,35100,1,'+0945'),(1536,1,31500,0,'+0845'),(1536,2,35100,1,'+0945'),(1536,3,31500,0,'+0845'),(1537,0,36000,0,'AEST'),(1537,1,39600,1,'AEDT'),(1537,2,39600,1,'AEDT'),(1537,3,36000,0,'AEST'),(1538,0,36000,0,'AEST'),(1538,1,41400,1,'+1130'),(1538,2,37800,0,'+1030'),(1538,3,39600,1,'+11'),(1539,0,39600,1,'AEDT'),(1539,1,36000,0,'AEST'),(1539,2,39600,1,'AEDT'),(1539,3,36000,0,'AEST'),(1540,0,36000,0,'AEST'),(1540,1,41400,1,'+1130'),(1540,2,37800,0,'+1030'),(1540,3,39600,1,'+11'),(1541,0,39600,1,'AEDT'),(1541,1,36000,0,'AEST'),(1541,2,39600,1,'AEDT'),(1541,3,36000,0,'AEST'),(1542,0,39600,1,'AEDT'),(1542,1,36000,0,'AEST'),(1542,2,39600,1,'AEDT'),(1542,3,36000,0,'AEST'),(1543,0,37800,1,'ACDT'),(1543,1,34200,0,'ACST'),(1544,0,32400,1,'AWDT'),(1544,1,28800,0,'AWST'),(1544,2,32400,1,'AWDT'),(1544,3,28800,0,'AWST'),(1545,0,39600,1,'AEDT'),(1545,1,36000,0,'AEST'),(1545,2,39600,1,'AEDT'),(1545,3,36000,0,'AEST'),(1546,0,37800,1,'ACDT'),(1546,1,34200,0,'ACST'),(1546,2,37800,1,'ACDT'),(1546,3,34200,0,'ACST'),(1547,0,39600,1,'AEDT'),(1547,1,36000,0,'AEST'),(1547,2,39600,1,'AEDT'),(1547,3,36000,0,'AEST'),(1548,0,36000,0,'AEST'),(1548,1,39600,1,'AEDT'),(1548,2,39600,1,'AEDT'),(1548,3,36000,0,'AEST'),(1549,0,39600,1,'AEDT'),(1549,1,36000,0,'AEST'),(1549,2,39600,1,'AEDT'),(1549,3,36000,0,'AEST'),(1550,0,32400,1,'AWDT'),(1550,1,28800,0,'AWST'),(1550,2,32400,1,'AWDT'),(1550,3,28800,0,'AWST'),(1551,0,37800,1,'ACDT'),(1551,1,34200,0,'ACST'),(1551,2,37800,1,'ACDT'),(1551,3,34200,0,'ACST'),(1552,0,-16272,0,'LMT'),(1552,1,-14400,1,'-04'),(1552,2,-18000,0,'-05'),(1552,3,-14400,0,'-04'),(1552,4,-18000,0,'-05'),(1553,0,-7780,0,'LMT'),(1553,1,-3600,1,'-01'),(1553,2,-7200,0,'-02'),(1554,0,-11188,0,'LMT'),(1554,1,-7200,1,'-02'),(1554,2,-10800,0,'-03'),(1555,0,-14404,0,'LMT'),(1555,1,-10800,1,'-03'),(1555,2,-14400,0,'-04'),(1556,0,7200,1,'CEST'),(1556,1,3600,0,'CET'),(1556,2,7200,1,'CEST'),(1556,3,3600,0,'CET'),(1557,0,-18000,1,'CDT'),(1557,1,-21600,0,'CST'),(1557,2,-18000,1,'CWT'),(1557,3,-18000,1,'CPT'),(1558,0,-15264,0,'LMT'),(1558,1,-10800,1,'ADT'),(1558,2,-14400,0,'AST'),(1558,3,-10800,1,'AWT'),(1558,4,-10800,1,'APT'),(1559,0,-18000,1,'CDT'),(1559,1,-21600,0,'CST'),(1559,2,-18000,1,'CWT'),(1559,3,-18000,1,'CPT'),(1559,4,-18000,1,'CDT'),(1559,5,-21600,0,'CST'),(1560,0,-14400,1,'EDT'),(1560,1,-18000,0,'EST'),(1560,2,-14400,1,'EWT'),(1560,3,-14400,1,'EPT'),(1561,0,-27232,0,'LMT'),(1561,1,-21600,1,'MDT'),(1561,2,-25200,0,'MST'),(1561,3,-21600,1,'MWT'),(1561,4,-21600,1,'MPT'),(1562,0,-9052,1,'NDT'),(1562,1,-12652,0,'NST'),(1562,2,-9000,1,'NDT'),(1562,3,-12600,0,'NST'),(1562,4,-9000,1,'NPT'),(1562,5,-9000,1,'NWT'),(1562,6,-5400,1,'NDDT'),(1562,7,-9000,1,'NDT'),(1563,0,-25200,1,'PDT'),(1563,1,-28800,0,'PST'),(1563,2,-25200,1,'PWT'),(1563,3,-25200,1,'PPT'),(1564,0,-25116,0,'LMT'),(1564,1,-21600,1,'MDT'),(1564,2,-25200,0,'MST'),(1564,3,-21600,1,'MWT'),(1564,4,-21600,1,'MPT'),(1564,5,-21600,0,'CST'),(1565,0,-28800,1,'YDT'),(1565,1,-32400,0,'YST'),(1565,2,-28800,1,'YWT'),(1565,3,-28800,1,'YPT'),(1565,4,-25200,1,'YDDT'),(1565,5,-28800,0,'PST'),(1565,6,-25200,1,'PDT'),(1566,0,-16966,0,'SMT'),(1566,1,-18000,0,'-05'),(1566,2,-14400,0,'-04'),(1566,3,-14400,1,'-04'),(1566,4,-10800,1,'-03'),(1566,5,-10800,1,'-03'),(1566,6,-14400,0,'-04'),(1567,0,-26248,0,'EMT'),(1567,1,-21600,1,'-06'),(1567,2,-25200,0,'-07'),(1567,3,-25200,0,'-07'),(1567,4,-21600,0,'-06'),(1567,5,-18000,1,'-05'),(1568,0,-19776,0,'HMT'),(1568,1,-14400,1,'CDT'),(1568,2,-18000,0,'CST'),(1568,3,-18000,0,'CST'),(1568,4,-14400,1,'CDT'),(1569,0,10800,1,'EEST'),(1569,1,7200,0,'EET'),(1570,0,-18000,0,'EST'),(1571,0,-14400,1,'EDT'),(1571,1,-18000,0,'EST'),(1571,2,-14400,1,'EWT'),(1571,3,-14400,1,'EPT'),(1572,0,10800,1,'EEST'),(1572,1,7200,0,'EET'),(1572,2,10800,1,'EEST'),(1573,0,-1521,0,'DMT'),(1573,1,2079,1,'IST'),(1573,2,3600,1,'BST'),(1573,3,0,0,'GMT'),(1573,4,3600,1,'IST'),(1573,5,0,0,'GMT'),(1573,6,3600,0,'IST'),(1573,7,3600,1,'IST'),(1573,8,0,0,'GMT'),(1574,0,0,0,'GMT'),(1575,0,0,0,'GMT'),(1576,0,-3600,0,'-01'),(1577,0,-36000,0,'-10'),(1578,0,-39600,0,'-11'),(1579,0,-43200,0,'-12'),(1580,0,-7200,0,'-02'),(1581,0,-10800,0,'-03'),(1582,0,-14400,0,'-04'),(1583,0,-18000,0,'-05'),(1584,0,-21600,0,'-06'),(1585,0,-25200,0,'-07'),(1586,0,-28800,0,'-08'),(1587,0,-32400,0,'-09'),(1588,0,0,0,'GMT'),(1589,0,3600,0,'+01'),(1590,0,36000,0,'+10'),(1591,0,39600,0,'+11'),(1592,0,43200,0,'+12'),(1593,0,46800,0,'+13'),(1594,0,50400,0,'+14'),(1595,0,7200,0,'+02'),(1596,0,10800,0,'+03'),(1597,0,14400,0,'+04'),(1598,0,18000,0,'+05'),(1599,0,21600,0,'+06'),(1600,0,25200,0,'+07'),(1601,0,28800,0,'+08'),(1602,0,32400,0,'+09'),(1603,0,0,0,'GMT'),(1604,0,0,0,'GMT'),(1605,0,0,0,'UCT'),(1606,0,0,0,'UTC'),(1607,0,0,0,'UTC'),(1608,0,0,0,'UTC'),(1609,0,4772,1,'NST'),(1609,1,1172,0,'AMT'),(1609,2,4772,1,'NST'),(1609,3,1172,0,'AMT'),(1609,4,1200,0,'+0020'),(1609,5,4800,1,'+0120'),(1609,6,4800,1,'+0120'),(1609,7,3600,0,'CET'),(1609,8,7200,1,'CEST'),(1609,9,7200,1,'CEST'),(1609,10,7200,1,'CEST'),(1609,11,3600,0,'CET'),(1609,12,3600,0,'CET'),(1610,0,0,0,'WET'),(1610,1,3600,0,'CET'),(1610,2,7200,1,'CEST'),(1610,3,3600,0,'CET'),(1611,0,11532,0,'LMT'),(1611,1,10800,0,'+03'),(1611,2,18000,1,'+05'),(1611,3,14400,0,'+04'),(1611,4,14400,0,'+04'),(1611,5,18000,1,'+05'),(1611,6,14400,1,'+04'),(1611,7,10800,0,'+03'),(1611,8,14400,0,'+04'),(1612,0,5692,0,'AMT'),(1612,1,10800,1,'EEST'),(1612,2,7200,0,'EET'),(1612,3,3600,0,'CET'),(1612,4,7200,1,'CEST'),(1612,5,10800,1,'EEST'),(1612,6,7200,0,'EET'),(1612,7,10800,1,'EEST'),(1612,8,7200,0,'EET'),(1613,0,3600,1,'BST'),(1613,1,0,0,'GMT'),(1613,2,7200,1,'BDST'),(1613,3,3600,0,'BST'),(1613,4,3600,1,'BST'),(1613,5,0,0,'GMT'),(1613,6,0,0,'GMT'),(1614,0,3600,0,'CET'),(1614,1,3600,0,'CET'),(1614,2,7200,1,'CEST'),(1614,3,7200,1,'CEST'),(1614,4,7200,1,'CEST'),(1614,5,3600,0,'CET'),(1615,0,7200,1,'CEST'),(1615,1,3600,0,'CET'),(1615,2,7200,1,'CEST'),(1615,3,3600,0,'CET'),(1615,4,10800,1,'CEMT'),(1615,5,10800,1,'CEMT'),(1615,6,7200,1,'CEST'),(1615,7,3600,0,'CET'),(1616,0,7200,1,'CEST'),(1616,1,3600,0,'CET'),(1616,2,7200,1,'CEST'),(1616,3,3600,0,'CET'),(1616,4,0,0,'GMT'),(1616,5,7200,1,'CEST'),(1616,6,3600,0,'CET'),(1617,0,0,0,'WET'),(1617,1,3600,0,'CET'),(1617,2,7200,1,'CEST'),(1617,3,3600,0,'CET'),(1617,4,7200,1,'CEST'),(1617,5,3600,1,'WEST'),(1617,6,0,0,'WET'),(1617,7,0,0,'WET'),(1617,8,7200,1,'CEST'),(1617,9,3600,0,'CET'),(1618,0,6264,0,'BMT'),(1618,1,10800,1,'EEST'),(1618,2,7200,0,'EET'),(1618,3,10800,1,'EEST'),(1618,4,7200,0,'EET'),(1618,5,10800,1,'EEST'),(1618,6,7200,0,'EET'),(1619,0,7200,1,'CEST'),(1619,1,3600,0,'CET'),(1619,2,7200,1,'CEST'),(1619,3,3600,0,'CET'),(1619,4,3600,0,'CET'),(1619,5,7200,1,'CEST'),(1620,0,7200,1,'CEST'),(1620,1,3600,0,'CET'),(1620,2,7200,1,'CEST'),(1620,3,3600,0,'CET'),(1621,0,6900,0,'CMT'),(1621,1,6264,0,'BMT'),(1621,2,10800,1,'EEST'),(1621,3,7200,0,'EET'),(1621,4,7200,0,'EET'),(1621,5,10800,1,'EEST'),(1621,6,3600,0,'CET'),(1621,7,7200,1,'CEST'),(1621,8,7200,1,'CEST'),(1621,9,14400,1,'MSD'),(1621,10,10800,0,'MSK'),(1621,11,10800,0,'MSK'),(1621,12,14400,1,'MSD'),(1621,13,10800,1,'EEST'),(1621,14,7200,0,'EET'),(1622,0,7200,1,'CEST'),(1622,1,3600,0,'CET'),(1622,2,3600,0,'CET'),(1622,3,7200,1,'CEST'),(1622,4,7200,1,'CEST'),(1622,5,3600,0,'CET'),(1623,0,-1521,0,'DMT'),(1623,1,2079,1,'IST'),(1623,2,3600,1,'BST'),(1623,3,0,0,'GMT'),(1623,4,3600,1,'IST'),(1623,5,0,0,'GMT'),(1623,6,3600,0,'IST'),(1623,7,3600,1,'IST'),(1623,8,0,0,'GMT'),(1624,0,3600,1,'BST'),(1624,1,0,0,'GMT'),(1624,2,7200,1,'BDST'),(1624,3,3600,0,'CET'),(1624,4,7200,1,'CEST'),(1624,5,3600,0,'CET'),(1625,0,3600,1,'BST'),(1625,1,0,0,'GMT'),(1625,2,7200,1,'BDST'),(1625,3,3600,0,'BST'),(1625,4,3600,1,'BST'),(1625,5,0,0,'GMT'),(1625,6,0,0,'GMT'),(1626,0,5989,0,'HMT'),(1626,1,10800,1,'EEST'),(1626,2,7200,0,'EET'),(1626,3,10800,1,'EEST'),(1626,4,7200,0,'EET'),(1627,0,3600,1,'BST'),(1627,1,0,0,'GMT'),(1627,2,7200,1,'BDST'),(1627,3,3600,0,'BST'),(1627,4,3600,1,'BST'),(1627,5,0,0,'GMT'),(1627,6,0,0,'GMT'),(1628,0,7016,0,'IMT'),(1628,1,10800,1,'EEST'),(1628,2,7200,0,'EET'),(1628,3,14400,1,'+04'),(1628,4,10800,0,'+03'),(1628,5,10800,1,'EEST'),(1628,6,7200,0,'EET'),(1628,7,10800,1,'EEST'),(1628,8,7200,0,'EET'),(1628,9,10800,0,'+03'),(1629,0,3600,1,'BST'),(1629,1,0,0,'GMT'),(1629,2,7200,1,'BDST'),(1629,3,3600,0,'BST'),(1629,4,3600,1,'BST'),(1629,5,0,0,'GMT'),(1629,6,0,0,'GMT'),(1630,0,7200,1,'CEST'),(1630,1,3600,0,'CET'),(1630,2,7200,1,'CEST'),(1630,3,3600,0,'CET'),(1630,4,10800,1,'CEST'),(1630,5,7200,0,'CET'),(1630,6,14400,1,'MSD'),(1630,7,10800,0,'MSK'),(1630,8,10800,0,'MSK'),(1630,9,14400,1,'MSD'),(1630,10,10800,1,'EEST'),(1630,11,7200,0,'EET'),(1630,12,10800,0,'+03'),(1630,13,7200,0,'EET'),(1631,0,7324,0,'KMT'),(1631,1,7200,0,'EET'),(1631,2,10800,0,'MSK'),(1631,3,3600,0,'CET'),(1631,4,7200,1,'CEST'),(1631,5,7200,1,'CEST'),(1631,6,14400,1,'MSD'),(1631,7,10800,0,'MSK'),(1631,8,14400,1,'MSD'),(1631,9,10800,1,'EEST'),(1631,10,10800,1,'EEST'),(1631,11,7200,0,'EET'),(1632,0,11928,0,'LMT'),(1632,1,10800,0,'+03'),(1632,2,18000,1,'+05'),(1632,3,14400,0,'+04'),(1632,4,14400,0,'+04'),(1632,5,18000,1,'+05'),(1632,6,14400,1,'+04'),(1632,7,10800,0,'+03'),(1633,0,-2205,0,'LMT'),(1633,1,3600,1,'WEST'),(1633,2,0,0,'WET'),(1633,3,3600,1,'WEST'),(1633,4,0,0,'WET'),(1633,5,7200,1,'WEMT'),(1633,6,0,0,'WET'),(1633,7,3600,0,'CET'),(1633,8,3600,0,'CET'),(1633,9,7200,1,'CEST'),(1633,10,3600,1,'WEST'),(1633,11,0,0,'WET'),(1634,0,3600,0,'CET'),(1634,1,3600,0,'CET'),(1634,2,7200,1,'CEST'),(1634,3,7200,1,'CEST'),(1634,4,7200,1,'CEST'),(1634,5,3600,0,'CET'),(1635,0,3600,1,'BST'),(1635,1,0,0,'GMT'),(1635,2,7200,1,'BDST'),(1635,3,3600,0,'BST'),(1635,4,3600,1,'BST'),(1635,5,0,0,'GMT'),(1635,6,0,0,'GMT'),(1636,0,1476,0,'LMT'),(1636,1,7200,1,'CEST'),(1636,2,3600,0,'CET'),(1636,3,7200,1,'CEST'),(1636,4,3600,0,'CET'),(1636,5,3600,1,'WEST'),(1636,6,0,0,'WET'),(1636,7,0,0,'WET'),(1636,8,3600,1,'WEST'),(1636,9,3600,0,'WET'),(1636,10,7200,1,'WEST'),(1636,11,7200,1,'WEST'),(1636,12,7200,1,'CEST'),(1636,13,3600,0,'CET'),(1637,0,3600,1,'WEST'),(1637,1,0,0,'WET'),(1637,2,7200,1,'WEMT'),(1637,3,0,0,'WET'),(1637,4,7200,1,'CEST'),(1637,5,3600,0,'CET'),(1637,6,7200,1,'CEST'),(1637,7,3600,0,'CET'),(1637,8,7200,1,'CEST'),(1637,9,3600,0,'CET'),(1638,0,7200,1,'CEST'),(1638,1,3600,0,'CET'),(1638,2,3600,0,'CET'),(1638,3,7200,1,'CEST'),(1638,4,7200,1,'CEST'),(1638,5,3600,0,'CET'),(1639,0,5989,0,'HMT'),(1639,1,10800,1,'EEST'),(1639,2,7200,0,'EET'),(1639,3,10800,1,'EEST'),(1639,4,7200,0,'EET'),(1640,0,6600,0,'MMT'),(1640,1,7200,0,'EET'),(1640,2,10800,0,'MSK'),(1640,3,3600,0,'CET'),(1640,4,7200,1,'CEST'),(1640,5,7200,1,'CEST'),(1640,6,14400,1,'MSD'),(1640,7,10800,0,'MSK'),(1640,8,14400,1,'MSD'),(1640,9,10800,1,'EEST'),(1640,10,7200,0,'EET'),(1640,11,10800,0,'+03'),(1641,0,561,0,'PMT'),(1641,1,3600,1,'WEST'),(1641,2,0,0,'WET'),(1641,3,3600,1,'WEST'),(1641,4,7200,1,'WEMT'),(1641,5,0,0,'WET'),(1641,6,7200,1,'CEST'),(1641,7,3600,0,'CET'),(1641,8,7200,1,'CEST'),(1641,9,3600,0,'CET'),(1642,0,9017,0,'MMT'),(1642,1,12679,1,'MST'),(1642,2,9079,0,'MMT'),(1642,3,16279,1,'MDST'),(1642,4,14400,1,'MSD'),(1642,5,10800,0,'MSK'),(1642,6,14400,1,'MSD'),(1642,7,18000,1,'+05'),(1642,8,7200,0,'EET'),(1642,9,10800,0,'MSK'),(1642,10,14400,1,'MSD'),(1642,11,10800,1,'EEST'),(1642,12,7200,0,'EET'),(1642,13,14400,0,'MSK'),(1642,14,14400,1,'MSD'),(1642,15,10800,0,'MSK'),(1643,0,8008,0,'LMT'),(1643,1,10800,1,'EEST'),(1643,2,7200,0,'EET'),(1643,3,7200,0,'EET'),(1643,4,10800,1,'EEST'),(1644,0,7200,1,'CEST'),(1644,1,3600,0,'CET'),(1644,2,3600,0,'CET'),(1644,3,7200,1,'CEST'),(1644,4,7200,1,'CEST'),(1644,5,3600,0,'CET'),(1645,0,561,0,'PMT'),(1645,1,3600,1,'WEST'),(1645,2,0,0,'WET'),(1645,3,3600,1,'WEST'),(1645,4,0,0,'WET'),(1645,5,3600,0,'CET'),(1645,6,7200,1,'CEST'),(1645,7,7200,1,'CEST'),(1645,8,7200,1,'WEMT'),(1645,9,3600,0,'CET'),(1645,10,7200,1,'CEST'),(1645,11,3600,0,'CET'),(1646,0,3600,0,'CET'),(1646,1,3600,0,'CET'),(1646,2,7200,1,'CEST'),(1646,3,7200,1,'CEST'),(1646,4,7200,1,'CEST'),(1646,5,3600,0,'CET'),(1647,0,7200,1,'CEST'),(1647,1,3600,0,'CET'),(1647,2,7200,1,'CEST'),(1647,3,3600,0,'CET'),(1647,4,0,0,'GMT'),(1647,5,7200,1,'CEST'),(1647,6,3600,0,'CET'),(1648,0,5794,0,'RMT'),(1648,1,9394,1,'LST'),(1648,2,7200,0,'EET'),(1648,3,10800,0,'MSK'),(1648,4,3600,0,'CET'),(1648,5,7200,1,'CEST'),(1648,6,7200,1,'CEST'),(1648,7,14400,1,'MSD'),(1648,8,10800,0,'MSK'),(1648,9,14400,1,'MSD'),(1648,10,10800,1,'EEST'),(1648,11,7200,0,'EET'),(1648,12,10800,1,'EEST'),(1648,13,7200,0,'EET'),(1649,0,7200,1,'CEST'),(1649,1,3600,0,'CET'),(1649,2,3600,0,'CET'),(1649,3,7200,1,'CEST'),(1649,4,7200,1,'CEST'),(1649,5,3600,0,'CET'),(1650,0,12020,0,'LMT'),(1650,1,10800,0,'+03'),(1650,2,14400,0,'+04'),(1650,3,18000,1,'+05'),(1650,4,14400,0,'+04'),(1650,5,18000,1,'+05'),(1650,6,14400,1,'+04'),(1650,7,10800,0,'+03'),(1650,8,10800,1,'+03'),(1650,9,7200,0,'+02'),(1650,10,14400,1,'+04'),(1650,11,14400,0,'+04'),(1651,0,7200,1,'CEST'),(1651,1,3600,0,'CET'),(1651,2,3600,0,'CET'),(1651,3,7200,1,'CEST'),(1651,4,7200,1,'CEST'),(1651,5,3600,0,'CET'),(1652,0,3600,0,'CET'),(1652,1,3600,0,'CET'),(1652,2,7200,1,'CEST'),(1652,3,7200,1,'CEST'),(1652,4,7200,1,'CEST'),(1652,5,3600,0,'CET'),(1653,0,11058,0,'LMT'),(1653,1,10800,0,'+03'),(1653,2,18000,1,'+05'),(1653,3,14400,0,'+04'),(1653,4,14400,0,'+04'),(1653,5,18000,1,'+05'),(1653,6,14400,1,'+04'),(1653,7,10800,0,'+03'),(1653,8,14400,0,'+04'),(1654,0,8160,0,'SMT'),(1654,1,7200,0,'EET'),(1654,2,10800,0,'MSK'),(1654,3,3600,0,'CET'),(1654,4,7200,1,'CEST'),(1654,5,7200,1,'CEST'),(1654,6,14400,1,'MSD'),(1654,7,10800,0,'MSK'),(1654,8,14400,1,'MSD'),(1654,9,10800,1,'EEST'),(1654,10,10800,1,'EEST'),(1654,11,7200,0,'EET'),(1654,12,14400,0,'MSK'),(1654,13,10800,0,'MSK'),(1655,0,3600,0,'CET'),(1655,1,3600,0,'CET'),(1655,2,7200,1,'CEST'),(1655,3,7200,1,'CEST'),(1655,4,7200,1,'CEST'),(1655,5,3600,0,'CET'),(1656,0,7200,0,'EET'),(1656,1,3600,0,'CET'),(1656,2,7200,1,'CEST'),(1656,3,3600,0,'CET'),(1656,4,10800,1,'EEST'),(1656,5,7200,0,'EET'),(1656,6,10800,1,'EEST'),(1656,7,10800,1,'EEST'),(1656,8,7200,0,'EET'),(1657,0,3600,0,'CET'),(1657,1,7200,1,'CEST'),(1657,2,7200,1,'CEST'),(1657,3,3600,0,'CET'),(1658,0,5940,0,'TMT'),(1658,1,7200,1,'CEST'),(1658,2,3600,0,'CET'),(1658,3,3600,0,'CET'),(1658,4,7200,0,'EET'),(1658,5,10800,0,'MSK'),(1658,6,7200,1,'CEST'),(1658,7,14400,1,'MSD'),(1658,8,10800,0,'MSK'),(1658,9,14400,1,'MSD'),(1658,10,10800,1,'EEST'),(1658,11,7200,0,'EET'),(1658,12,7200,0,'EET'),(1658,13,10800,1,'EEST'),(1658,14,10800,1,'EEST'),(1659,0,4760,0,'LMT'),(1659,1,3600,0,'CET'),(1659,2,7200,1,'CEST'),(1659,3,3600,0,'CET'),(1659,4,7200,1,'CEST'),(1660,0,6900,0,'CMT'),(1660,1,6264,0,'BMT'),(1660,2,10800,1,'EEST'),(1660,3,7200,0,'EET'),(1660,4,7200,0,'EET'),(1660,5,10800,1,'EEST'),(1660,6,3600,0,'CET'),(1660,7,7200,1,'CEST'),(1660,8,7200,1,'CEST'),(1660,9,14400,1,'MSD'),(1660,10,10800,0,'MSK'),(1660,11,10800,0,'MSK'),(1660,12,14400,1,'MSD'),(1660,13,10800,1,'EEST'),(1660,14,7200,0,'EET'),(1661,0,11616,0,'LMT'),(1661,1,10800,0,'+03'),(1661,2,18000,1,'+05'),(1661,3,14400,0,'+04'),(1661,4,14400,0,'+04'),(1661,5,18000,1,'+05'),(1661,6,14400,1,'+04'),(1661,7,10800,0,'+03'),(1661,8,10800,1,'+03'),(1661,9,7200,0,'+02'),(1661,10,14400,1,'+04'),(1661,11,14400,0,'+04'),(1662,0,3600,0,'CET'),(1662,1,7200,1,'CEST'),(1662,2,3600,0,'CET'),(1662,3,7200,1,'CEST'),(1662,4,14400,1,'MSD'),(1662,5,10800,0,'MSK'),(1662,6,10800,0,'MSK'),(1662,7,14400,1,'MSD'),(1662,8,7200,0,'EET'),(1662,9,10800,1,'EEST'),(1662,10,10800,1,'EEST'),(1662,11,7200,0,'EET'),(1663,0,7200,1,'CEST'),(1663,1,3600,0,'CET'),(1663,2,7200,1,'CEST'),(1663,3,3600,0,'CET'),(1664,0,7200,1,'CEST'),(1664,1,3600,0,'CET'),(1664,2,3600,0,'CET'),(1664,3,7200,1,'CEST'),(1664,4,7200,1,'CEST'),(1664,5,3600,0,'CET'),(1665,0,7200,1,'CEST'),(1665,1,3600,0,'CET'),(1665,2,7200,1,'CEST'),(1665,3,3600,0,'CET'),(1665,4,7200,1,'CEST'),(1665,5,3600,0,'CET'),(1666,0,5040,0,'WMT'),(1666,1,5736,0,'KMT'),(1666,2,3600,0,'CET'),(1666,3,7200,0,'EET'),(1666,4,10800,0,'MSK'),(1666,5,3600,0,'CET'),(1666,6,7200,1,'CEST'),(1666,7,7200,1,'CEST'),(1666,8,14400,1,'MSD'),(1666,9,10800,0,'MSK'),(1666,10,14400,1,'MSD'),(1666,11,10800,1,'EEST'),(1666,12,7200,0,'EET'),(1666,13,7200,1,'CEST'),(1666,14,3600,0,'CET'),(1666,15,7200,0,'EET'),(1666,16,10800,1,'EEST'),(1667,0,10660,0,'LMT'),(1667,1,10800,0,'+03'),(1667,2,14400,0,'+04'),(1667,3,18000,1,'+05'),(1667,4,14400,0,'+04'),(1667,5,18000,1,'+05'),(1667,6,14400,1,'+04'),(1667,7,10800,0,'+03'),(1668,0,5040,0,'WMT'),(1668,1,7200,1,'CEST'),(1668,2,3600,0,'CET'),(1668,3,7200,1,'CEST'),(1668,4,3600,0,'CET'),(1668,5,10800,1,'EEST'),(1668,6,7200,0,'EET'),(1668,7,7200,0,'EET'),(1668,8,7200,1,'CEST'),(1668,9,3600,0,'CET'),(1669,0,3600,0,'CET'),(1669,1,3600,0,'CET'),(1669,2,7200,1,'CEST'),(1669,3,7200,1,'CEST'),(1669,4,7200,1,'CEST'),(1669,5,3600,0,'CET'),(1670,0,8400,0,'+0220'),(1670,1,7200,0,'EET'),(1670,2,10800,0,'MSK'),(1670,3,3600,0,'CET'),(1670,4,7200,1,'CEST'),(1670,5,7200,1,'CEST'),(1670,6,14400,1,'MSD'),(1670,7,10800,0,'MSK'),(1670,8,14400,1,'MSD'),(1670,9,10800,1,'EEST'),(1670,10,10800,1,'EEST'),(1670,11,7200,0,'EET'),(1671,0,7200,1,'CEST'),(1671,1,3600,0,'CET'),(1671,2,7200,1,'CEST'),(1671,3,3600,0,'CET'),(1672,0,3600,1,'BST'),(1672,1,0,0,'GMT'),(1672,2,7200,1,'BDST'),(1672,3,3600,0,'BST'),(1672,4,3600,1,'BST'),(1672,5,0,0,'GMT'),(1672,6,0,0,'GMT'),(1673,0,3600,1,'BST'),(1673,1,0,0,'GMT'),(1673,2,7200,1,'BDST'),(1673,3,3600,0,'BST'),(1673,4,3600,1,'BST'),(1673,5,0,0,'GMT'),(1673,6,0,0,'GMT'),(1674,0,0,0,'GMT'),(1675,0,0,0,'GMT'),(1676,0,0,0,'GMT'),(1677,0,0,0,'GMT'),(1678,0,0,0,'GMT'),(1679,0,-36000,0,'HST'),(1680,0,27402,0,'LMT'),(1680,1,32400,1,'HKST'),(1680,2,28800,0,'HKT'),(1680,3,32400,0,'JST'),(1680,4,28800,0,'HKT'),(1681,0,-5280,0,'LMT'),(1681,1,0,1,'+00'),(1681,2,-3600,0,'-01'),(1681,3,-3600,0,'-01'),(1681,4,0,1,'+00'),(1681,5,0,0,'GMT'),(1682,0,8836,0,'LMT'),(1682,1,10800,0,'EAT'),(1682,2,9000,0,'+0230'),(1682,3,9900,0,'+0245'),(1682,4,10800,0,'EAT'),(1683,0,17380,0,'LMT'),(1683,1,18000,0,'+05'),(1683,2,21600,0,'+06'),(1684,0,25200,0,'+07'),(1685,0,23400,0,'+0630'),(1686,0,8836,0,'LMT'),(1686,1,10800,0,'EAT'),(1686,2,9000,0,'+0230'),(1686,3,9900,0,'+0245'),(1686,4,10800,0,'EAT'),(1687,0,0,0,'-00'),(1687,1,18000,0,'+05'),(1688,0,13308,0,'LMT'),(1688,1,14400,0,'+04'),(1689,0,17640,0,'MMT'),(1689,1,18000,0,'+05'),(1690,0,13800,0,'LMT'),(1690,1,18000,1,'+05'),(1690,2,14400,0,'+04'),(1691,0,8836,0,'LMT'),(1691,1,10800,0,'EAT'),(1691,2,9000,0,'+0230'),(1691,3,9900,0,'+0245'),(1691,4,10800,0,'EAT'),(1692,0,13312,0,'LMT'),(1692,1,14400,0,'+04'),(1693,0,12344,0,'LMT'),(1693,1,12344,0,'TMT'),(1693,2,12600,0,'+0330'),(1693,3,18000,1,'+05'),(1693,4,14400,0,'+04'),(1693,5,16200,1,'+0430'),(1693,6,12600,0,'+0330'),(1694,0,8440,0,'JMT'),(1694,1,10800,1,'IDT'),(1694,2,7200,0,'IST'),(1694,3,14400,1,'IDDT'),(1694,4,10800,1,'IDT'),(1695,0,-18430,0,'KMT'),(1695,1,-18000,0,'EST'),(1695,2,-14400,1,'EDT'),(1696,0,36000,1,'JDT'),(1696,1,32400,0,'JST'),(1696,2,32400,0,'JST'),(1697,0,39600,0,'+11'),(1697,1,-43200,0,'-12'),(1697,2,43200,0,'+12'),(1698,0,3164,0,'LMT'),(1698,1,7200,1,'CEST'),(1698,2,3600,0,'CET'),(1698,3,7200,0,'EET'),(1699,0,7200,1,'MEST'),(1699,1,3600,0,'MET'),(1699,2,7200,1,'MEST'),(1699,3,3600,0,'MET'),(1700,0,-25200,0,'MST'),(1701,0,-21600,1,'MDT'),(1701,1,-25200,0,'MST'),(1701,2,-21600,1,'MWT'),(1701,3,-21600,1,'MPT'),(1702,0,-28084,0,'LMT'),(1702,1,-25200,0,'MST'),(1702,2,-28800,0,'PST'),(1702,3,-25200,1,'PDT'),(1702,4,-25200,1,'PWT'),(1702,5,-25200,1,'PPT'),(1703,0,-25540,0,'LMT'),(1703,1,-25200,0,'MST'),(1703,2,-21600,0,'CST'),(1703,3,-28800,0,'PST'),(1703,4,-21600,1,'MDT'),(1703,5,-25200,0,'MST'),(1704,0,-23796,0,'LMT'),(1704,1,-25200,0,'MST'),(1704,2,-21600,0,'CST'),(1704,3,-18000,1,'CDT'),(1704,4,-18000,1,'CWT'),(1705,0,45000,1,'NZST'),(1705,1,41400,0,'NZMT'),(1705,2,43200,1,'NZST'),(1705,3,46800,1,'NZDT'),(1705,4,43200,0,'NZST'),(1705,5,43200,0,'NZST'),(1706,0,44100,0,'+1215'),(1706,1,49500,1,'+1345'),(1706,2,45900,0,'+1245'),(1706,3,45900,0,'+1245'),(1707,0,-21600,1,'MDT'),(1707,1,-25200,0,'MST'),(1707,2,-21600,1,'MWT'),(1707,3,-21600,1,'MPT'),(1708,0,32400,1,'CDT'),(1708,1,28800,0,'CST'),(1709,0,-25200,1,'PDT'),(1709,1,-28800,0,'PST'),(1709,2,-25200,1,'PWT'),(1709,3,-25200,1,'PPT'),(1710,0,-41216,0,'LMT'),(1710,1,-41400,0,'-1130'),(1710,2,-36000,1,'-10'),(1710,3,-39600,0,'-11'),(1710,4,46800,0,'+13'),(1710,5,50400,1,'+14'),(1711,0,45000,1,'NZST'),(1711,1,41400,0,'NZMT'),(1711,2,43200,1,'NZST'),(1711,3,46800,1,'NZDT'),(1711,4,43200,0,'NZST'),(1711,5,43200,0,'NZST'),(1712,0,36000,0,'+10'),(1712,1,32400,0,'+09'),(1712,2,39600,0,'+11'),(1713,0,44100,0,'+1215'),(1713,1,49500,1,'+1345'),(1713,2,45900,0,'+1245'),(1713,3,45900,0,'+1245'),(1714,0,36000,0,'+10'),(1715,0,-26248,0,'EMT'),(1715,1,-21600,1,'-06'),(1715,2,-25200,0,'-07'),(1715,3,-25200,0,'-07'),(1715,4,-21600,0,'-06'),(1715,5,-18000,1,'-05'),(1716,0,40396,0,'LMT'),(1716,1,43200,1,'+12'),(1716,2,39600,0,'+11'),(1717,0,-43200,0,'-12'),(1717,1,-39600,0,'-11'),(1717,2,46800,0,'+13'),(1718,0,-39600,0,'-11'),(1718,1,46800,0,'+13'),(1719,0,42944,0,'LMT'),(1719,1,46800,1,'+13'),(1719,2,43200,0,'+12'),(1720,0,43200,0,'+12'),(1721,0,-21504,0,'LMT'),(1721,1,-18000,0,'-05'),(1721,2,-18000,1,'-05'),(1721,3,-21600,0,'-06'),(1722,0,-32388,0,'LMT'),(1722,1,-32400,0,'-09'),(1723,0,38388,0,'LMT'),(1723,1,39600,0,'+11'),(1724,0,36000,0,'GST'),(1724,1,36000,0,'ChST'),(1725,0,-37800,0,'HST'),(1725,1,-34200,1,'HDT'),(1725,2,-36000,0,'HST'),(1726,0,-37800,0,'HST'),(1726,1,-34200,1,'HDT'),(1726,2,-36000,0,'HST'),(1727,0,-38400,0,'-1040'),(1727,1,-36000,0,'-10'),(1727,2,50400,0,'+14'),(1728,0,39600,0,'+11'),(1728,1,43200,0,'+12'),(1728,2,39600,0,'+11'),(1729,0,39600,0,'+11'),(1729,1,-43200,0,'-12'),(1729,2,43200,0,'+12'),(1730,0,39600,0,'+11'),(1730,1,43200,0,'+12'),(1731,0,-33480,0,'LMT'),(1731,1,-34200,0,'-0930'),(1732,0,-40968,0,'LMT'),(1732,1,-39600,0,'SST'),(1733,0,40060,0,'LMT'),(1733,1,41400,0,'+1130'),(1733,2,32400,0,'+09'),(1733,3,43200,0,'+12'),(1734,0,-40800,0,'-1120'),(1734,1,-41400,0,'-1130'),(1734,2,-39600,0,'-11'),(1735,0,40320,0,'+1112'),(1735,1,41400,0,'+1130'),(1735,2,45000,1,'+1230'),(1735,3,39600,0,'+11'),(1736,0,39948,0,'LMT'),(1736,1,43200,1,'+12'),(1736,2,39600,0,'+11'),(1736,3,43200,1,'+12'),(1736,4,39600,0,'+11'),(1737,0,-40968,0,'LMT'),(1737,1,-39600,0,'SST'),(1738,0,32400,0,'+09'),(1739,0,-30600,0,'-0830'),(1739,1,-28800,0,'-08'),(1740,0,39600,0,'+11'),(1741,0,39600,0,'+11'),(1742,0,36000,0,'+10'),(1743,0,-37800,0,'-1030'),(1743,1,-36000,0,'-10'),(1743,2,-34200,1,'-0930'),(1744,0,36000,0,'GST'),(1744,1,36000,0,'ChST'),(1745,0,-40968,0,'LMT'),(1745,1,-39600,0,'SST'),(1746,0,-35896,0,'LMT'),(1746,1,-36000,0,'-10'),(1747,0,43200,0,'+12'),(1748,0,44400,0,'+1220'),(1748,1,46800,0,'+13'),(1748,2,50400,1,'+14'),(1748,3,46800,0,'+13'),(1748,4,50400,1,'+14'),(1749,0,36000,0,'+10'),(1750,0,43200,0,'+12'),(1751,0,43200,0,'+12'),(1752,0,36000,0,'+10'),(1753,0,5040,0,'WMT'),(1753,1,7200,1,'CEST'),(1753,2,3600,0,'CET'),(1753,3,7200,1,'CEST'),(1753,4,3600,0,'CET'),(1753,5,10800,1,'EEST'),(1753,6,7200,0,'EET'),(1753,7,7200,0,'EET'),(1753,8,7200,1,'CEST'),(1753,9,3600,0,'CET'),(1754,0,-2205,0,'LMT'),(1754,1,3600,1,'WEST'),(1754,2,0,0,'WET'),(1754,3,3600,1,'WEST'),(1754,4,0,0,'WET'),(1754,5,7200,1,'WEMT'),(1754,6,0,0,'WET'),(1754,7,3600,0,'CET'),(1754,8,3600,0,'CET'),(1754,9,7200,1,'CEST'),(1754,10,3600,1,'WEST'),(1754,11,0,0,'WET'),(1755,0,28800,0,'CST'),(1755,1,32400,0,'JST'),(1755,2,32400,1,'CDT'),(1755,3,28800,0,'CST'),(1756,0,30472,0,'LMT'),(1756,1,30600,0,'KST'),(1756,2,32400,0,'JST'),(1756,3,32400,0,'KST'),(1756,4,34200,1,'KDT'),(1756,5,36000,1,'KDT'),(1757,0,24925,0,'SMT'),(1757,1,25200,0,'+07'),(1757,2,26400,1,'+0720'),(1757,3,26400,0,'+0720'),(1757,4,27000,0,'+0730'),(1757,5,32400,0,'+09'),(1757,6,28800,0,'+08'),(1758,0,7016,0,'IMT'),(1758,1,10800,1,'EEST'),(1758,2,7200,0,'EET'),(1758,3,14400,1,'+04'),(1758,4,10800,0,'+03'),(1758,5,10800,1,'EEST'),(1758,6,7200,0,'EET'),(1758,7,10800,1,'EEST'),(1758,8,7200,0,'EET'),(1758,9,10800,0,'+03'),(1759,0,0,0,'UCT'),(1760,0,-36000,0,'AST'),(1760,1,-32400,1,'AWT'),(1760,2,-32400,1,'APT'),(1760,3,-36000,0,'AHST'),(1760,4,-32400,1,'AHDT'),(1760,5,-32400,0,'YST'),(1760,6,-28800,1,'AKDT'),(1760,7,-32400,0,'AKST'),(1761,0,-39600,0,'NST'),(1761,1,-36000,1,'NWT'),(1761,2,-36000,1,'NPT'),(1761,3,-39600,0,'BST'),(1761,4,-36000,1,'BDT'),(1761,5,-36000,0,'AHST'),(1761,6,-32400,1,'HDT'),(1761,7,-36000,0,'HST'),(1762,0,-21600,1,'MDT'),(1762,1,-25200,0,'MST'),(1762,2,-21600,1,'MWT'),(1763,0,-18000,1,'CDT'),(1763,1,-21600,0,'CST'),(1763,2,-18000,0,'EST'),(1763,3,-18000,1,'CWT'),(1763,4,-18000,1,'CPT'),(1763,5,-21600,0,'CST'),(1764,0,-18000,1,'CDT'),(1764,1,-21600,0,'CST'),(1764,2,-18000,1,'CWT'),(1764,3,-18000,1,'CPT'),(1764,4,-18000,0,'EST'),(1764,5,-14400,1,'EDT'),(1765,0,-14400,1,'EDT'),(1765,1,-18000,0,'EST'),(1765,2,-14400,1,'EWT'),(1765,3,-14400,1,'EPT'),(1766,0,-37800,0,'HST'),(1766,1,-34200,1,'HDT'),(1766,2,-36000,0,'HST'),(1767,0,-18000,1,'CDT'),(1767,1,-21600,0,'CST'),(1767,2,-18000,1,'CWT'),(1767,3,-18000,1,'CPT'),(1767,4,-18000,0,'EST'),(1767,5,-21600,0,'CST'),(1768,0,-19931,0,'LMT'),(1768,1,-21600,0,'CST'),(1768,2,-18000,0,'EST'),(1768,3,-14400,1,'EWT'),(1768,4,-14400,1,'EPT'),(1768,5,-14400,1,'EDT'),(1769,0,-21600,1,'MDT'),(1769,1,-25200,0,'MST'),(1769,2,-21600,1,'MWT'),(1769,3,-21600,1,'MPT'),(1770,0,-25200,1,'PDT'),(1770,1,-28800,0,'PST'),(1770,2,-25200,1,'PWT'),(1770,3,-25200,1,'PPT'),(1771,0,-25200,1,'PDT'),(1771,1,-28800,0,'PST'),(1771,2,-25200,1,'PWT'),(1771,3,-25200,1,'PPT'),(1772,0,-40968,0,'LMT'),(1772,1,-39600,0,'SST'),(1773,0,0,0,'UTC'),(1774,0,0,0,'UTC'),(1775,0,9017,0,'MMT'),(1775,1,12679,1,'MST'),(1775,2,9079,0,'MMT'),(1775,3,16279,1,'MDST'),(1775,4,14400,1,'MSD'),(1775,5,10800,0,'MSK'),(1775,6,14400,1,'MSD'),(1775,7,18000,1,'+05'),(1775,8,7200,0,'EET'),(1775,9,10800,0,'MSK'),(1775,10,14400,1,'MSD'),(1775,11,10800,1,'EEST'),(1775,12,7200,0,'EET'),(1775,13,14400,0,'MSK'),(1775,14,14400,1,'MSD'),(1775,15,10800,0,'MSK'),(1776,0,3600,1,'WEST'),(1776,1,0,0,'WET'),(1777,0,0,0,'UTC');
/*!40000 ALTER TABLE `time_zone_transition_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user`
--
DROP TABLE IF EXISTS `user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user` (
`Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '',
`User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '',
`Password` char(41) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '',
`Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Reload_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Shutdown_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Process_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`File_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Show_db_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Super_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Repl_slave_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Repl_client_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_user_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Event_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`Create_tablespace_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
`ssl_type` enum('','ANY','X509','SPECIFIED') CHARACTER SET utf8 NOT NULL DEFAULT '',
`ssl_cipher` blob NOT NULL,
`x509_issuer` blob NOT NULL,
`x509_subject` blob NOT NULL,
`max_questions` int(11) unsigned NOT NULL DEFAULT '0',
`max_updates` int(11) unsigned NOT NULL DEFAULT '0',
`max_connections` int(11) unsigned NOT NULL DEFAULT '0',
`max_user_connections` int(11) unsigned NOT NULL DEFAULT '0',
`plugin` char(64) COLLATE utf8_bin DEFAULT 'mysql_native_password',
`authentication_string` text COLLATE utf8_bin,
`password_expired` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N',
PRIMARY KEY (`Host`,`User`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Users and global privileges';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user`
--
LOCK TABLES `user` WRITE;
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
INSERT INTO `user` VALUES ('localhost','root','*45DB282BC9C38002782666D5375C48503785605F','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'mysql_native_password','','N'),('localhost','roundcube','*7AED328164C8CB75C00596EBA52DAEB02482B0B8','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'mysql_native_password','','N'),('localhost','proftpd','*CC30B5936E2415272D5B952D4AB26CF9FC70A94D','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'mysql_native_password','','N'),('localhost','postfix','*8AFE90B068398BBF057082A7B7223B6086291E48','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'mysql_native_password','','N');
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `general_log`
--
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE IF NOT EXISTS `general_log` (
`event_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`user_host` mediumtext NOT NULL,
`thread_id` bigint(21) unsigned NOT NULL,
`server_id` int(10) unsigned NOT NULL,
`command_type` varchar(64) NOT NULL,
`argument` mediumtext NOT NULL
) ENGINE=CSV DEFAULT CHARSET=utf8 COMMENT='General log';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `slow_log`
--
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE IF NOT EXISTS `slow_log` (
`start_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`user_host` mediumtext NOT NULL,
`query_time` time NOT NULL,
`lock_time` time NOT NULL,
`rows_sent` int(11) NOT NULL,
`rows_examined` int(11) NOT NULL,
`db` varchar(512) NOT NULL,
`last_insert_id` int(11) NOT NULL,
`insert_id` int(11) NOT NULL,
`server_id` int(10) unsigned NOT NULL,
`sql_text` mediumtext NOT NULL,
`thread_id` bigint(21) unsigned NOT NULL
) ENGINE=CSV DEFAULT CHARSET=utf8 COMMENT='Slow log';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Current Database: `sentora_core`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `sentora_core` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `sentora_core`;
--
-- Table structure for table `countries`
--
DROP TABLE IF EXISTS `countries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `countries` (
`id` int(11) NOT NULL,
`sortname` varchar(3) NOT NULL,
`name` varchar(150) NOT NULL,
`phonecode` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `countries`
--
LOCK TABLES `countries` WRITE;
/*!40000 ALTER TABLE `countries` DISABLE KEYS */;
INSERT INTO `countries` VALUES (1,'AF','Afghanistan',93),(2,'AL','Albania',355),(3,'DZ','Algeria',213),(4,'AS','American Samoa',1684),(5,'AD','Andorra',376),(6,'AO','Angola',244),(7,'AI','Anguilla',1264),(8,'AQ','Antarctica',0),(9,'AG','Antigua And Barbuda',1268),(10,'AR','Argentina',54),(11,'AM','Armenia',374),(12,'AW','Aruba',297),(13,'AU','Australia',61),(14,'AT','Austria',43),(15,'AZ','Azerbaijan',994),(16,'BS','Bahamas The',1242),(17,'BH','Bahrain',973),(18,'BD','Bangladesh',880),(19,'BB','Barbados',1246),(20,'BY','Belarus',375),(21,'BE','Belgium',32),(22,'BZ','Belize',501),(23,'BJ','Benin',229),(24,'BM','Bermuda',1441),(25,'BT','Bhutan',975),(26,'BO','Bolivia',591),(27,'BA','Bosnia and Herzegovina',387),(28,'BW','Botswana',267),(29,'BV','Bouvet Island',0),(30,'BR','Brazil',55),(31,'IO','British Indian Ocean Territory',246),(32,'BN','Brunei',673),(33,'BG','Bulgaria',359),(34,'BF','Burkina Faso',226),(35,'BI','Burundi',257),(36,'KH','Cambodia',855),(37,'CM','Cameroon',237),(38,'CA','Canada',1),(39,'CV','Cape Verde',238),(40,'KY','Cayman Islands',1345),(41,'CF','Central African Republic',236),(42,'TD','Chad',235),(43,'CL','Chile',56),(44,'CN','China',86),(45,'CX','Christmas Island',61),(46,'CC','Cocos (Keeling) Islands',672),(47,'CO','Colombia',57),(48,'KM','Comoros',269),(49,'CG','Congo',242),(50,'CD','Congo The Democratic Republic Of The',242),(51,'CK','Cook Islands',682),(52,'CR','Costa Rica',506),(53,'CI','Ivoire (Ivory Coast)',225),(54,'HR','Croatia (Hrvatska)',385),(55,'CU','Cuba',53),(56,'CY','Cyprus',357),(57,'CZ','Czech Republic',420),(58,'DK','Denmark',45),(59,'DJ','Djibouti',253),(60,'DM','Dominica',1767),(61,'DO','Dominican Republic',1809),(62,'TP','East Timor',670),(63,'EC','Ecuador',593),(64,'EG','Egypt',20),(65,'SV','El Salvador',503),(66,'GQ','Equatorial Guinea',240),(67,'ER','Eritrea',291),(68,'EE','Estonia',372),(69,'ET','Ethiopia',251),(70,'XA','External Territories of Australia',61),(71,'FK','Falkland Islands',500),(72,'FO','Faroe Islands',298),(73,'FJ','Fiji Islands',679),(74,'FI','Finland',358),(75,'FR','France',33),(76,'GF','French Guiana',594),(77,'PF','French Polynesia',689),(78,'TF','French Southern Territories',0),(79,'GA','Gabon',241),(80,'GM','Gambia The',220),(81,'GE','Georgia',995),(82,'DE','Germany',49),(83,'GH','Ghana',233),(84,'GI','Gibraltar',350),(85,'GR','Greece',30),(86,'GL','Greenland',299),(87,'GD','Grenada',1473),(88,'GP','Guadeloupe',590),(89,'GU','Guam',1671),(90,'GT','Guatemala',502),(91,'XU','Guernsey and Alderney',44),(92,'GN','Guinea',224),(93,'GW','Guinea-Bissau',245),(94,'GY','Guyana',592),(95,'HT','Haiti',509),(96,'HM','Heard and McDonald Islands',0),(97,'HN','Honduras',504),(98,'HK','Hong Kong S.A.R.',852),(99,'HU','Hungary',36),(100,'IS','Iceland',354),(101,'IN','India',91),(102,'ID','Indonesia',62),(103,'IR','Iran',98),(104,'IQ','Iraq',964),(105,'IE','Ireland',353),(106,'IL','Israel',972),(107,'IT','Italy',39),(108,'JM','Jamaica',1876),(109,'JP','Japan',81),(110,'XJ','Jersey',44),(111,'JO','Jordan',962),(112,'KZ','Kazakhstan',7),(113,'KE','Kenya',254),(114,'KI','Kiribati',686),(115,'KP','Korea North',850),(116,'KR','Korea South',82),(117,'KW','Kuwait',965),(118,'KG','Kyrgyzstan',996),(119,'LA','Laos',856),(120,'LV','Latvia',371),(121,'LB','Lebanon',961),(122,'LS','Lesotho',266),(123,'LR','Liberia',231),(124,'LY','Libya',218),(125,'LI','Liechtenstein',423),(126,'LT','Lithuania',370),(127,'LU','Luxembourg',352),(128,'MO','Macau S.A.R.',853),(129,'MK','Macedonia',389),(130,'MG','Madagascar',261),(131,'MW','Malawi',265),(132,'MY','Malaysia',60),(133,'MV','Maldives',960),(134,'ML','Mali',223),(135,'MT','Malta',356),(136,'XM','Man (Isle of)',44),(137,'MH','Marshall Islands',692),(138,'MQ','Martinique',596),(139,'MR','Mauritania',222),(140,'MU','Mauritius',230),(141,'YT','Mayotte',269),(142,'MX','Mexico',52),(143,'FM','Micronesia',691),(144,'MD','Moldova',373),(145,'MC','Monaco',377),(146,'MN','Mongolia',976),(147,'MS','Montserrat',1664),(148,'MA','Morocco',212),(149,'MZ','Mozambique',258),(150,'MM','Myanmar',95),(151,'NA','Namibia',264),(152,'NR','Nauru',674),(153,'NP','Nepal',977),(154,'AN','Netherlands Antilles',599),(155,'NL','Netherlands The',31),(156,'NC','New Caledonia',687),(157,'NZ','New Zealand',64),(158,'NI','Nicaragua',505),(159,'NE','Niger',227),(160,'NG','Nigeria',234),(161,'NU','Niue',683),(162,'NF','Norfolk Island',672),(163,'MP','Northern Mariana Islands',1670),(164,'NO','Norway',47),(165,'OM','Oman',968),(166,'PK','Pakistan',92),(167,'PW','Palau',680),(168,'PS','Palestinian Territory Occupied',970),(169,'PA','Panama',507),(170,'PG','Papua new Guinea',675),(171,'PY','Paraguay',595),(172,'PE','Peru',51),(173,'PH','Philippines',63),(174,'PN','Pitcairn Island',0),(175,'PL','Poland',48),(176,'PT','Portugal',351),(177,'PR','Puerto Rico',1787),(178,'QA','Qatar',974),(179,'RE','Reunion',262),(180,'RO','Romania',40),(181,'RU','Russia',70),(182,'RW','Rwanda',250),(183,'SH','Saint Helena',290),(184,'KN','Saint Kitts And Nevis',1869),(185,'LC','Saint Lucia',1758),(186,'PM','Saint Pierre and Miquelon',508),(187,'VC','Saint Vincent And The Grenadines',1784),(188,'WS','Samoa',684),(189,'SM','San Marino',378),(190,'ST','Sao Tome and Principe',239),(191,'SA','Saudi Arabia',966),(192,'SN','Senegal',221),(193,'RS','Serbia',381),(194,'SC','Seychelles',248),(195,'SL','Sierra Leone',232),(196,'SG','Singapore',65),(197,'SK','Slovakia',421),(198,'SI','Slovenia',386),(199,'XG','Smaller Territories of the UK',44),(200,'SB','Solomon Islands',677),(201,'SO','Somalia',252),(202,'ZA','South Africa',27),(203,'GS','South Georgia',0),(204,'SS','South Sudan',211),(205,'ES','Spain',34),(206,'LK','Sri Lanka',94),(207,'SD','Sudan',249),(208,'SR','Suriname',597),(209,'SJ','Svalbard And Jan Mayen Islands',47),(210,'SZ','Swaziland',268),(211,'SE','Sweden',46),(212,'CH','Switzerland',41),(213,'SY','Syria',963),(214,'TW','Taiwan',886),(215,'TJ','Tajikistan',992),(216,'TZ','Tanzania',255),(217,'TH','Thailand',66),(218,'TG','Togo',228),(219,'TK','Tokelau',690),(220,'TO','Tonga',676),(221,'TT','Trinidad And Tobago',1868),(222,'TN','Tunisia',216),(223,'TR','Turkey',90),(224,'TM','Turkmenistan',7370),(225,'TC','Turks And Caicos Islands',1649),(226,'TV','Tuvalu',688),(227,'UG','Uganda',256),(228,'UA','Ukraine',380),(229,'AE','United Arab Emirates',971),(230,'GB','United Kingdom',44),(231,'US','United States',1),(232,'UM','United States Minor Outlying Islands',1),(233,'UY','Uruguay',598),(234,'UZ','Uzbekistan',998),(235,'VU','Vanuatu',678),(236,'VA','Vatican City State (Holy See)',39),(237,'VE','Venezuela',58),(238,'VN','Vietnam',84),(239,'VG','Virgin Islands (British)',1284),(240,'VI','Virgin Islands (US)',1340),(241,'WF','Wallis And Futuna Islands',681),(242,'EH','Western Sahara',212),(243,'YE','Yemen',967),(244,'YU','Yugoslavia',38),(245,'ZM','Zambia',260),(246,'ZW','Zimbabwe',263);
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `datacont`
--
DROP TABLE IF EXISTS `datacont`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `datacont` (
`id` int(6) unsigned NOT NULL,
`data` blob,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `datacont`
--
LOCK TABLES `datacont` WRITE;
/*!40000 ALTER TABLE `datacont` DISABLE KEYS */;
INSERT INTO `datacont` VALUES (1,'<h2>HostingRaja Control Panel is customized for</h2>\r\n\r\n<p> </p>\r\n\r\n<ol>\r\n <li>1. Automatic Website Optimization for Speed</li>\r\n <li>2. Website Security Enhancement</li>\r\n <li>3. Cache for Static Files, Faster Website Loading</li>\r\n <li>4. Light Weight Control Panel</li>\r\n <li>5. Option to Choose Apache Vs Ngnix (The fastest web server)</li>\r\n <li>6. Gmail like Webmail Client (rainloop)</li>\r\n</ol>\r\n\r\n<p> </p>\r\n\r\n<p> </p>\r\n\r\n<div class=\"note\">Note: The above features are not available in other control panel.</div>\r\n\r\n<p> </p>\r\n');
/*!40000 ALTER TABLE `datacont` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_accounts`
--
DROP TABLE IF EXISTS `x_accounts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_accounts` (
`ac_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`ac_user_vc` varchar(50) DEFAULT NULL,
`ac_pass_vc` varchar(200) DEFAULT NULL,
`ac_email_vc` varchar(250) DEFAULT NULL,
`ac_reseller_fk` int(6) DEFAULT NULL,
`ac_package_fk` int(6) DEFAULT NULL,
`ac_group_fk` int(6) DEFAULT NULL,
`ac_usertheme_vc` varchar(45) DEFAULT NULL,
`ac_usercss_vc` varchar(45) DEFAULT NULL,
`ac_enabled_in` int(1) DEFAULT '1',
`ac_lastlogon_ts` int(30) DEFAULT NULL,
`ac_notice_tx` text,
`ac_resethash_tx` text,
`ac_passsalt_vc` varchar(22) DEFAULT NULL,
`ac_catorder_vc` varchar(255) DEFAULT NULL,
`ac_created_ts` int(30) DEFAULT NULL,
`ac_deleted_ts` int(30) DEFAULT NULL,
`ip_deleted` varchar(20) DEFAULT NULL,
PRIMARY KEY (`ac_id_pk`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_accounts`
--
LOCK TABLES `x_accounts` WRITE;
/*!40000 ALTER TABLE `x_accounts` DISABLE KEYS */;
INSERT INTO `x_accounts` VALUES (1,'zadmin','JXLEvPY7H51X4NdP80VvZ5Q2wazhTFi','ajith@hostingraja.in',1,1,1,'whm-master','default',1,0,'',NULL,'4Ssj2Ks0EUZsTdPrnbHIGo','[\"1\",\"6\",\"8\",\"5\",\"4\",\"3\",\"7\",\"2\",\"9\"]',0,NULL,NULL);
/*!40000 ALTER TABLE `x_accounts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_aliases`
--
DROP TABLE IF EXISTS `x_aliases`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_aliases` (
`al_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`al_acc_fk` int(6) DEFAULT NULL,
`al_address_vc` varchar(255) DEFAULT NULL,
`al_destination_vc` varchar(255) DEFAULT NULL,
`al_created_ts` int(30) DEFAULT NULL,
`al_deleted_ts` int(30) DEFAULT NULL,
PRIMARY KEY (`al_id_pk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_aliases`
--
LOCK TABLES `x_aliases` WRITE;
/*!40000 ALTER TABLE `x_aliases` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_aliases` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_apachesapm_filters`
--
DROP TABLE IF EXISTS `x_apachesapm_filters`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_apachesapm_filters` (
`x_id` int(11) NOT NULL AUTO_INCREMENT,
`x_user_id` int(11) NOT NULL,
`x_domain_list` blob NOT NULL,
`x_flag` varchar(25) NOT NULL,
`x_updatedtime` int(30) NOT NULL,
PRIMARY KEY (`x_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_apachesapm_filters`
--
LOCK TABLES `x_apachesapm_filters` WRITE;
/*!40000 ALTER TABLE `x_apachesapm_filters` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_apachesapm_filters` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_apachespam_settings`
--
DROP TABLE IF EXISTS `x_apachespam_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_apachespam_settings` (
`x_id` int(11) NOT NULL AUTO_INCREMENT,
`x_status` varchar(10) NOT NULL,
`x_auto_delete` varchar(10) NOT NULL,
`x_score` varchar(10) NOT NULL,
`x_spam_enable` varchar(20) NOT NULL,
PRIMARY KEY (`x_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_apachespam_settings`
--
LOCK TABLES `x_apachespam_settings` WRITE;
/*!40000 ALTER TABLE `x_apachespam_settings` DISABLE KEYS */;
INSERT INTO `x_apachespam_settings` VALUES (1,'No','No','5','1');
/*!40000 ALTER TABLE `x_apachespam_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_autorespond`
--
DROP TABLE IF EXISTS `x_autorespond`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_autorespond` (
`vh_id` int(11) NOT NULL AUTO_INCREMENT,
`vh_mail` varchar(150) DEFAULT NULL,
`vh_sub` varchar(100) DEFAULT NULL,
`vh_from` varchar(100) DEFAULT NULL,
`vh_html_status` int(1) DEFAULT NULL,
`vh_body` text,
`vh_acc_fk` int(11) DEFAULT NULL,
`vh_did` int(11) DEFAULT NULL,
`vh_deleted` varchar(15) DEFAULT NULL,
`vh_created` varchar(15) DEFAULT NULL,
`vh_updated` varchar(15) DEFAULT NULL,
PRIMARY KEY (`vh_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_autorespond`
--
LOCK TABLES `x_autorespond` WRITE;
/*!40000 ALTER TABLE `x_autorespond` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_autorespond` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_autouser`
--
DROP TABLE IF EXISTS `x_autouser`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_autouser` (
`my_id_pk` int(11) NOT NULL AUTO_INCREMENT,
`my_acc_pk` varchar(20) DEFAULT NULL,
`my_user_vc` varchar(30) DEFAULT NULL,
`my_pass_vc` varchar(30) DEFAULT NULL,
`my_created_ts` varchar(20) DEFAULT NULL,
`my_exp_ts` varchar(20) DEFAULT NULL,
PRIMARY KEY (`my_id_pk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_autouser`
--
LOCK TABLES `x_autouser` WRITE;
/*!40000 ALTER TABLE `x_autouser` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_autouser` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_backup_setting`
--
DROP TABLE IF EXISTS `x_backup_setting`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_backup_setting` (
`bk_id` int(6) NOT NULL AUTO_INCREMENT,
`bk_user_id` int(6) NOT NULL,
`bk_type` varchar(30) NOT NULL,
`bk_enable` varchar(5) NOT NULL,
PRIMARY KEY (`bk_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_backup_setting`
--
LOCK TABLES `x_backup_setting` WRITE;
/*!40000 ALTER TABLE `x_backup_setting` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_backup_setting` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_bandwidth`
--
DROP TABLE IF EXISTS `x_bandwidth`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_bandwidth` (
`bd_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`bd_acc_fk` int(6) DEFAULT NULL,
`bd_month_in` int(6) DEFAULT NULL,
`bd_transamount_bi` bigint(20) DEFAULT NULL,
`bd_diskamount_bi` bigint(20) DEFAULT NULL,
`bd_diskover_in` int(6) DEFAULT NULL,
`bd_diskcheck_in` int(6) DEFAULT NULL,
`bd_transover_in` int(6) DEFAULT NULL,
`bd_transcheck_in` int(6) DEFAULT NULL,
PRIMARY KEY (`bd_id_pk`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_bandwidth`
--
LOCK TABLES `x_bandwidth` WRITE;
/*!40000 ALTER TABLE `x_bandwidth` DISABLE KEYS */;
INSERT INTO `x_bandwidth` VALUES (1,1,201808,0,0,0,0,0,0);
/*!40000 ALTER TABLE `x_bandwidth` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_cronjobs`
--
DROP TABLE IF EXISTS `x_cronjobs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_cronjobs` (
`ct_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`ct_acc_fk` int(6) DEFAULT NULL,
`ct_script_vc` varchar(255) DEFAULT NULL,
`ct_timing_vc` varchar(255) DEFAULT NULL,
`ct_fullpath_vc` varchar(255) DEFAULT NULL,
`ct_description_tx` text,
`ct_created_ts` int(30) DEFAULT NULL,
`ct_deleted_ts` int(30) DEFAULT NULL,
PRIMARY KEY (`ct_id_pk`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_cronjobs`
--
LOCK TABLES `x_cronjobs` WRITE;
/*!40000 ALTER TABLE `x_cronjobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_cronjobs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_csr`
--
DROP TABLE IF EXISTS `x_csr`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_csr` (
`csr_no` int(20) NOT NULL AUTO_INCREMENT,
`userid` int(20) NOT NULL,
`csr_domain` varchar(250) NOT NULL,
`csr_organization` varchar(250) NOT NULL,
`csr_department` varchar(250) NOT NULL,
`csr_city` varchar(250) NOT NULL,
`csr_state` varchar(250) NOT NULL,
`csr_country` varchar(250) NOT NULL,
`csr_created` int(30) DEFAULT NULL,
`csr_delete` int(30) DEFAULT NULL,
PRIMARY KEY (`csr_no`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_csr`
--
LOCK TABLES `x_csr` WRITE;
/*!40000 ALTER TABLE `x_csr` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_csr` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_database_settings`
--
DROP TABLE IF EXISTS `x_database_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_database_settings` (
`ds_id_pk` int(11) NOT NULL AUTO_INCREMENT,
`ds_enabled_in` int(4) NOT NULL,
`ds_user_vc` varchar(25) NOT NULL,
`ds_updated_vc` varchar(200) NOT NULL,
PRIMARY KEY (`ds_id_pk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_database_settings`
--
LOCK TABLES `x_database_settings` WRITE;
/*!40000 ALTER TABLE `x_database_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_database_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_diskusage`
--
DROP TABLE IF EXISTS `x_diskusage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_diskusage` (
`ac_id_pk` int(6) unsigned NOT NULL,
`ac_used_space` varchar(250) DEFAULT '0',
PRIMARY KEY (`ac_id_pk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_diskusage`
--
LOCK TABLES `x_diskusage` WRITE;
/*!40000 ALTER TABLE `x_diskusage` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_diskusage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_distlists`
--
DROP TABLE IF EXISTS `x_distlists`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_distlists` (
`dl_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`dl_acc_fk` int(6) DEFAULT NULL,
`dl_address_vc` varchar(255) DEFAULT NULL,
`dl_created_ts` int(30) DEFAULT NULL,
`dl_deleted_ts` int(30) DEFAULT NULL,
PRIMARY KEY (`dl_id_pk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_distlists`
--
LOCK TABLES `x_distlists` WRITE;
/*!40000 ALTER TABLE `x_distlists` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_distlists` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_distlistusers`
--
DROP TABLE IF EXISTS `x_distlistusers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_distlistusers` (
`du_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`du_distlist_fk` int(6) DEFAULT NULL,
`du_address_vc` varchar(255) DEFAULT NULL,
`du_created_ts` int(30) DEFAULT NULL,
`du_deleted_ts` int(30) DEFAULT NULL,
PRIMARY KEY (`du_id_pk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_distlistusers`
--
LOCK TABLES `x_distlistusers` WRITE;
/*!40000 ALTER TABLE `x_distlistusers` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_distlistusers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_dns`
--
DROP TABLE IF EXISTS `x_dns`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_dns` (
`dn_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`dn_acc_fk` int(6) DEFAULT NULL,
`dn_name_vc` varchar(255) DEFAULT NULL,
`dn_vhost_fk` int(6) DEFAULT NULL,
`dn_type_vc` varchar(50) DEFAULT NULL,
`dn_host_vc` varchar(100) DEFAULT NULL,
`dn_ttl_in` int(30) DEFAULT NULL,
`dn_target_vc` varchar(255) DEFAULT NULL,
`dn_texttarget_tx` text,
`dn_priority_in` int(50) DEFAULT NULL,
`dn_weight_in` int(50) DEFAULT NULL,
`dn_port_in` int(50) DEFAULT NULL,
`dn_created_ts` int(30) DEFAULT NULL,
`dn_deleted_ts` int(30) DEFAULT NULL,
PRIMARY KEY (`dn_id_pk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_dns`
--
LOCK TABLES `x_dns` WRITE;
/*!40000 ALTER TABLE `x_dns` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_dns` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_dns_create`
--
DROP TABLE IF EXISTS `x_dns_create`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_dns_create` (
`dc_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`dc_acc_fk` int(6) DEFAULT NULL,
`dc_type_vc` varchar(50) DEFAULT NULL,
`dc_host_vc` varchar(100) DEFAULT NULL,
`dc_ttl_in` int(30) DEFAULT NULL,
`dc_target_vc` varchar(255) DEFAULT NULL,
`dc_priority_in` int(50) DEFAULT NULL,
`dc_weight_in` int(50) DEFAULT NULL,
`dc_port_in` int(50) DEFAULT NULL,
PRIMARY KEY (`dc_id_pk`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_dns_create`
--
LOCK TABLES `x_dns_create` WRITE;
/*!40000 ALTER TABLE `x_dns_create` DISABLE KEYS */;
INSERT INTO `x_dns_create` VALUES (1,0,'A','@',3600,':IP:',NULL,NULL,NULL),(2,0,'CNAME','www',3600,'@',NULL,NULL,NULL),(3,0,'CNAME','ftp',3600,'@',NULL,NULL,NULL),(4,0,'A','mail',86400,':IP:',NULL,NULL,NULL),(5,0,'MX','@',86400,'mail.:DOMAIN:',10,NULL,NULL),(6,0,'A','ns1',172800,':IP:',NULL,NULL,NULL),(7,0,'A','ns2',172800,':IP:',NULL,NULL,NULL),(8,0,'NS','@',172800,'ns1.:DOMAIN:',NULL,NULL,NULL),(9,0,'NS','@',172800,'ns2.:DOMAIN:',NULL,NULL,NULL);
/*!40000 ALTER TABLE `x_dns_create` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_faqs`
--
DROP TABLE IF EXISTS `x_faqs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_faqs` (
`fq_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`fq_acc_fk` int(6) DEFAULT NULL,
`fq_question_tx` text,
`fq_answer_tx` text,
`fq_global_in` int(1) DEFAULT NULL,
`fq_created_ts` int(30) DEFAULT NULL,
`fq_deleted_ts` int(30) DEFAULT NULL,
PRIMARY KEY (`fq_id_pk`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_faqs`
--
LOCK TABLES `x_faqs` WRITE;
/*!40000 ALTER TABLE `x_faqs` DISABLE KEYS */;
INSERT INTO `x_faqs` VALUES (1,1,'How can I update my personal contact details?','From the control panel homepage please click on the "My Account" icon to enable you to update your personal details.',1,NULL,NULL),(2,1,'How do I change my password?','Your Sentora and MySQL password can be easily changed using the "Change Password" icon on the control panel.',1,NULL,NULL),(3,1,'I don't think one of the services(Apache, MySQL, FTP, etc) are running. Is there any easy way to check?','Sentora comes with a service monitoring system that checks to make sure all the services are up and running, Simply go to your Control Panel Home and select the module called "Service Status". From there you will be able to see if any of the services are down or up.',1,NULL,NULL),(4,1,'How can I set my domain to work with my Sentora Account?','To setup up a domain with Sentora first thing you need to do is go "Domains" and add your to the list. Next you need to set the Name Server on your Domain Registrar to match that of your host. This information can be obtained by contacting your host.',1,NULL,NULL),(7,1,'How can I create a MySQL Database?','To create a MySQL database simply go to the section of the panel called "Database Management" and select the module called "MySQL Databases" from here you will easily be able to add and manage databases on your account.',1,NULL,NULL),(8,1,'What is phpMyAdmin?','phpMyAdmin is an open source tool intended to handle the administration of MySQL databases. It can perform various tasks such as creating, modifying or deleting databases, tables, fields or rows or executing SQL statements',1,NULL,NULL),(9,1,'How do I create FTP Accounts?','You can create FTP accounts by going to "FTP Accounts" from their you can add accounts and manage quotas and directories. ',1,NULL,NULL),(11,1,'How do I create an E-Mail Account?','Go to the Mail section of Sentora and select the module called "Mailboxes", from here you can create E-Mail account for each domain setup on your account. You can also reset passwords to previously created accounts.',1,NULL,NULL),(12,1,'How do I create a Mail Alias?','Go to the Mail section of Sentora and select the module called "Aliases", from here you can create Alias E-Mail accounts for each previously created E-Mail account. All mail sent to the alias will be delivered to the master e-mail account.',1,NULL,NULL),(13,1,'How can I create a Mailing List?','Mailing lists can be setup by going to the Mail section of Sentora and select the module called "Distribution Lists", from here you can create Mailing lists by creating an E-mail Account. ',1,NULL,NULL),(14,1,'How do I use Mail Forwards?','Go to the Mail section of Sentora and select the module called "Forwards", from here you can create E-Mail address on your domains that will forward to other E-Mail addresses that are on different servers like "G-Mail, Yahoo, and MSN". ',1,NULL,NULL),(15,1,'What are Subdomains?','A subdomain combines a unique identifier with a domain name to become essentially a "domain within a domain." The unique identifier simply replaces the www in the web address. Yahoo!, for example, uses subdomains such as mail.yahoo.com and music.yahoo.com to reference its mail and music services, under the umbrella of www.yahoo.com. They can be created by using the Subdomain module in the Domains section. You can assign directories for each sub domain from the module.',1,NULL,NULL),(16,1,'How can I view how much Data I have used?','You can view how much data you have used by accessing the "Usage Viewer" under the Account Information section of Sentora. It displays account information in different formats. It displays Data Usage, Domain Usage, Bandwidth Usage, MySQL Usage, and much more.',1,NULL,NULL),(17,1,'How can I access Webmail?','Go to the Mail section of Sentora and select the module called "Webmail", from here you can login to your E-Mail account and view and create messages. ',1,NULL,NULL);
/*!40000 ALTER TABLE `x_faqs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_forwarded_domains`
--
DROP TABLE IF EXISTS `x_forwarded_domains`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_forwarded_domains` (
`fd_id_pk` int(11) NOT NULL AUTO_INCREMENT,
`vh_fk_id` int(11) NOT NULL DEFAULT '0',
`fd_acc_fk` int(11) NOT NULL DEFAULT '0',
`fd_name` varchar(75) NOT NULL DEFAULT '',
`fd_type_id` tinyint(1) NOT NULL DEFAULT '2' COMMENT '1=redirect, 2=forward',
`fd_protocol` varchar(5) NOT NULL DEFAULT 'http',
`www_yn` tinyint(1) NOT NULL DEFAULT '1',
`fd_created_ts` int(30) NOT NULL DEFAULT '0',
`fd_deleted_ts` int(30) DEFAULT NULL,
PRIMARY KEY (`fd_id_pk`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_forwarded_domains`
--
LOCK TABLES `x_forwarded_domains` WRITE;
/*!40000 ALTER TABLE `x_forwarded_domains` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_forwarded_domains` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_forwarders`
--
DROP TABLE IF EXISTS `x_forwarders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_forwarders` (
`fw_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`fw_acc_fk` int(6) DEFAULT NULL,
`fw_address_vc` varchar(255) DEFAULT NULL,
`fw_destination_vc` varchar(255) DEFAULT NULL,
`fw_keepmessage_in` int(1) DEFAULT '1',
`fw_created_ts` int(30) DEFAULT NULL,
`fw_deleted_ts` int(30) DEFAULT NULL,
PRIMARY KEY (`fw_id_pk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_forwarders`
--
LOCK TABLES `x_forwarders` WRITE;
/*!40000 ALTER TABLE `x_forwarders` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_forwarders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_frequently_access`
--
DROP TABLE IF EXISTS `x_frequently_access`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_frequently_access` (
`ac_id_pk` int(6) NOT NULL,
`mo_folder_vc` varchar(255) NOT NULL,
`access_count` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_frequently_access`
--
LOCK TABLES `x_frequently_access` WRITE;
/*!40000 ALTER TABLE `x_frequently_access` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_frequently_access` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_ftpaccounts`
--
DROP TABLE IF EXISTS `x_ftpaccounts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_ftpaccounts` (
`ft_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`ft_acc_fk` int(6) DEFAULT NULL,
`ft_user_vc` varchar(50) DEFAULT NULL,
`ft_directory_vc` varchar(255) DEFAULT NULL,
`ft_access_vc` varchar(20) DEFAULT NULL,
`ft_password_vc` varchar(50) DEFAULT NULL,
`ft_created_ts` int(6) DEFAULT NULL,
`ft_deleted_ts` int(6) DEFAULT NULL,
`ip_deleted` varchar(20) DEFAULT NULL,
PRIMARY KEY (`ft_id_pk`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_ftpaccounts`
--
LOCK TABLES `x_ftpaccounts` WRITE;
/*!40000 ALTER TABLE `x_ftpaccounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_ftpaccounts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_groups`
--
DROP TABLE IF EXISTS `x_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_groups` (
`ug_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`ug_name_vc` varchar(20) DEFAULT NULL,
`ug_notes_tx` text,
`ug_reseller_fk` int(6) DEFAULT NULL,
PRIMARY KEY (`ug_id_pk`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_groups`
--
LOCK TABLES `x_groups` WRITE;
/*!40000 ALTER TABLE `x_groups` DISABLE KEYS */;
INSERT INTO `x_groups` VALUES (1,'Administrators','The main administration group, this group allows access to all areas of Sentora.',1),(2,'Resellers','Resellers have the ability to manage, create and maintain user accounts within Sentora.',1),(3,'Users','Users have basic access to Sentora.',1);
/*!40000 ALTER TABLE `x_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_header_checks`
--
DROP TABLE IF EXISTS `x_header_checks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_header_checks` (
`x_id` int(11) NOT NULL AUTO_INCREMENT,
`x_filtername` varchar(100) NOT NULL,
`x_rule_1` varchar(255) NOT NULL,
`x_rule_2` varchar(255) NOT NULL,
`x_rule_3` varchar(255) NOT NULL,
`x_actions_1` varchar(100) NOT NULL,
`x_created_by` int(10) NOT NULL,
`x_deleted_ts` int(30) DEFAULT NULL,
PRIMARY KEY (`x_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_header_checks`
--
LOCK TABLES `x_header_checks` WRITE;
/*!40000 ALTER TABLE `x_header_checks` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_header_checks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_htaccess`
--
DROP TABLE IF EXISTS `x_htaccess`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_htaccess` (
`ht_id_pk` int(11) unsigned NOT NULL AUTO_INCREMENT,
`ht_acc_fk` int(6) DEFAULT NULL,
`ht_user_vc` varchar(10) DEFAULT NULL,
`ht_dir_vc` varchar(255) DEFAULT NULL,
`ht_created_ts` int(30) DEFAULT NULL,
`ht_deleted_ts` int(30) DEFAULT NULL,
PRIMARY KEY (`ht_id_pk`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_htaccess`
--
LOCK TABLES `x_htaccess` WRITE;
/*!40000 ALTER TABLE `x_htaccess` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_htaccess` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_htpasswd_file`
--
DROP TABLE IF EXISTS `x_htpasswd_file`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_htpasswd_file` (
`x_htpasswd_file_id` int(11) NOT NULL AUTO_INCREMENT,
`x_htpasswd_file_target` varchar(255) NOT NULL,
`x_htpasswd_file_message` varchar(255) NOT NULL,
`x_htpasswd_file_created` int(11) NOT NULL,
`x_htpasswd_file_deleted` int(11) DEFAULT NULL,
`x_htpasswd_sentora_user_id` int(11) NOT NULL,
PRIMARY KEY (`x_htpasswd_file_id`),
UNIQUE KEY `x_htpasswd_file_target` (`x_htpasswd_file_target`),
KEY `x_htpasswd_file_x_htpasswd_sentora_user_id_idx` (`x_htpasswd_sentora_user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_htpasswd_file`
--
LOCK TABLES `x_htpasswd_file` WRITE;
/*!40000 ALTER TABLE `x_htpasswd_file` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_htpasswd_file` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_htpasswd_mapper`
--
DROP TABLE IF EXISTS `x_htpasswd_mapper`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_htpasswd_mapper` (
`x_htpasswd_mapper_id` int(11) NOT NULL AUTO_INCREMENT,
`x_htpasswd_file_id` int(11) NOT NULL,
`x_htpasswd_user_id` int(11) NOT NULL,
PRIMARY KEY (`x_htpasswd_mapper_id`),
KEY `x_htpasswd_mapper_x_htpasswd_file_id_idx` (`x_htpasswd_file_id`),
KEY `x_htpasswd_mapper_x_htpasswd_user_id_idx` (`x_htpasswd_user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_htpasswd_mapper`
--
LOCK TABLES `x_htpasswd_mapper` WRITE;
/*!40000 ALTER TABLE `x_htpasswd_mapper` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_htpasswd_mapper` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_htpasswd_user`
--
DROP TABLE IF EXISTS `x_htpasswd_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_htpasswd_user` (
`x_htpasswd_user_id` int(11) NOT NULL AUTO_INCREMENT,
`x_htpasswd_user_username` varchar(255) NOT NULL,
`x_htpasswd_user_password` varchar(255) NOT NULL,
`x_htpasswd_user_created` int(11) NOT NULL,
`x_htpasswd_user_deleted` int(11) DEFAULT NULL,
`x_htpasswd_sentora_user_id` int(11) NOT NULL,
PRIMARY KEY (`x_htpasswd_user_id`),
UNIQUE KEY `x_htpasswd_user_username` (`x_htpasswd_user_username`),
UNIQUE KEY `x_htpasswd_user_password` (`x_htpasswd_user_password`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_htpasswd_user`
--
LOCK TABLES `x_htpasswd_user` WRITE;
/*!40000 ALTER TABLE `x_htpasswd_user` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_htpasswd_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_last_mail_exceed`
--
DROP TABLE IF EXISTS `x_last_mail_exceed`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_last_mail_exceed` (
`x_id` int(2) NOT NULL AUTO_INCREMENT,
`x_date` varchar(250) NOT NULL,
PRIMARY KEY (`x_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_last_mail_exceed`
--
LOCK TABLES `x_last_mail_exceed` WRITE;
/*!40000 ALTER TABLE `x_last_mail_exceed` DISABLE KEYS */;
INSERT INTO `x_last_mail_exceed` VALUES (1,'31/08/1991');
/*!40000 ALTER TABLE `x_last_mail_exceed` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_logAttempts`
--
DROP TABLE IF EXISTS `x_logAttempts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_logAttempts` (
`log_id` int(11) NOT NULL AUTO_INCREMENT,
`remote_address` varchar(255) NOT NULL,
`log_fail` int(11) NOT NULL,
`log_time` varchar(255) NOT NULL,
PRIMARY KEY (`log_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_logAttempts`
--
LOCK TABLES `x_logAttempts` WRITE;
/*!40000 ALTER TABLE `x_logAttempts` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_logAttempts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_logs`
--
DROP TABLE IF EXISTS `x_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_logs` (
`lg_id_pk` int(9) unsigned NOT NULL AUTO_INCREMENT,
`lg_user_fk` int(6) NOT NULL DEFAULT '1',
`lg_code_vc` varchar(10) DEFAULT NULL,
`lg_module_vc` varchar(25) DEFAULT NULL,
`lg_detail_tx` text,
`lg_stack_tx` text,
`lg_when_ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`lg_id_pk`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_logs`
--
LOCK TABLES `x_logs` WRITE;
/*!40000 ALTER TABLE `x_logs` DISABLE KEYS */;
INSERT INTO `x_logs` VALUES (1,0,'861','NA','Execute hook file (modules/apache_admin/hooks/OnDaemonRun.hook.php)','','2018-08-23 14:40:01');
/*!40000 ALTER TABLE `x_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_mailboxes`
--
DROP TABLE IF EXISTS `x_mailboxes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_mailboxes` (
`mb_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`mb_acc_fk` int(6) DEFAULT NULL,
`mb_address_vc` varchar(255) DEFAULT NULL,
`mb_size` int(50) DEFAULT NULL,
`mb_enabled_in` int(1) DEFAULT '1',
`mb_created_ts` int(30) DEFAULT NULL,
`mb_deleted_ts` int(30) DEFAULT NULL,
`mb_quota` bigint(10) DEFAULT NULL,
`ip_deleted` varchar(20) DEFAULT NULL,
PRIMARY KEY (`mb_id_pk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_mailboxes`
--
LOCK TABLES `x_mailboxes` WRITE;
/*!40000 ALTER TABLE `x_mailboxes` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_mailboxes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_main_domain`
--
DROP TABLE IF EXISTS `x_main_domain`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_main_domain` (
`x_id` int(11) NOT NULL AUTO_INCREMENT,
`x_user_id` int(11) NOT NULL,
`x_domain_id` int(11) NOT NULL,
PRIMARY KEY (`x_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_main_domain`
--
LOCK TABLES `x_main_domain` WRITE;
/*!40000 ALTER TABLE `x_main_domain` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_main_domain` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_modcats`
--
DROP TABLE IF EXISTS `x_modcats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_modcats` (
`mc_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`mc_name_vc` varchar(50) DEFAULT NULL,
PRIMARY KEY (`mc_id_pk`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_modcats`
--
LOCK TABLES `x_modcats` WRITE;
/*!40000 ALTER TABLE `x_modcats` DISABLE KEYS */;
INSERT INTO `x_modcats` VALUES (1,'Preferences'),(2,'Server Admin'),(3,'Advanced'),(4,'Databases'),(5,'Domains'),(6,'Mail'),(7,'Reseller'),(8,'Files'),(9,'Varnish Cache Server'),(10,'Security');
/*!40000 ALTER TABLE `x_modcats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_modules`
--
DROP TABLE IF EXISTS `x_modules`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_modules` (
`mo_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`mo_category_fk` int(6) NOT NULL DEFAULT '1',
`mo_name_vc` varchar(200) NOT NULL,
`mo_version_in` int(10) DEFAULT NULL,
`mo_folder_vc` varchar(255) DEFAULT NULL,
`mo_type_en` enum('user','system','modadmin','lang') NOT NULL DEFAULT 'user',
`mo_desc_tx` text,
`mo_installed_ts` int(30) DEFAULT NULL,
`mo_enabled_en` enum('true','false') NOT NULL DEFAULT 'true',
`mo_updatever_vc` varchar(10) DEFAULT NULL,
`mo_updateurl_tx` text,
PRIMARY KEY (`mo_id_pk`)
) ENGINE=InnoDB AUTO_INCREMENT=74 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_modules`
--
LOCK TABLES `x_modules` WRITE;
/*!40000 ALTER TABLE `x_modules` DISABLE KEYS */;
INSERT INTO `x_modules` VALUES (1,2,'PHP Configuration',100,'phpinfo','user','PHPInfo provides you with information regarding the version of PHP running on this system as well as installed PHP extensions and configuration details.',0,'true','',''),(3,2,'Shadowing',100,'shadowing','user','From here you can shadow any of your client\'s accounts, this enables you to automatically login as the user which enables you to offer remote help by seeing what they see!',0,'true','',''),(4,2,'Sentora Config',100,'sentoraconfig','user','Changes made here affect the entire Sentora configuration, please double check everything before saving changes.',0,'true','',''),(5,2,'Sentora News',100,'news','user','Find out all the latest news and information from the Sentora project.',0,'true','',''),(6,2,'Updates',100,'updates','user','Check to see if there are any available updates to your version of the Sentora software.',0,'true','',''),(8,4,'phpMyAdmin',100,'phpmyadmin','user','phpMyAdmin is a web based tool that enables you to manage your Sentora MySQL databases via. the web.',0,'true','',''),(9,1,'Update Contact Information',100,'my_account','user','Current personal details that you have provided us with, We ask that you keep these upto date in case we require to contact you regarding your hosting package.\r\n',0,'true','',''),(10,6,'WebMail',100,'webmail','user','Webmail is a convenient way for you to check your email accounts online without the need to configure an email client.',0,'true','',''),(11,1,'Change Password',100,'password_assistant','user','Change your current control panel password.',0,'true','',''),(12,8,'Backup',100,'backupmgr','user','The backup manager module enables you to backup your entire hosting account including all your MySQL® databases.',0,'true','',''),(14,3,'Service Status',100,'services','user','Here you can check the current status of our services and see what services are up and running and which are down and not.',0,'true','',''),(15,5,'Addon Domains',100,'domains','user','This module enables you to add or configure domain web hosting on your account.',0,'true','',''),(16,5,'Parked Domains',100,'parked_domains','user','Domain parking refers to the registration of an Internet domain name without that domain being used to provide services such as e-mail or a website. If you have any domains that you are not using, then simply park them!',0,'true','',''),(17,5,'Sub Domains',100,'sub_domains','user','This module enables you to add or configure domain web hosting on your account.',0,'true','',''),(18,2,'Module Admin',100,'moduleadmin','user','Administer or configure modules registered with module admin',0,'false','',''),(19,7,'Manage Clients',100,'manage_clients','user','The account manager enables you to view, update and create client accounts.',0,'true','',''),(20,7,'Package Manager',100,'packages','user','Welcome to the Package Manager, using this module enables you to create and manage existing reseller packages on your Sentora hosting account.',0,'true','',''),(22,3,'Cron Manager',100,'cron','user','Here you can configure PHP scripts to run automatically at different time intervals.',0,'true','',''),(23,2,'phpSysInfo',100,'phpsysinfo','user','phpSysInfo is a web-based server hardware monitoring tool which enables you to see detailed hardware statistics of your server.',0,'true','',''),(24,4,'MySQL Database',100,'mysql_databases','user','MySQL® databases are used by many PHP applications such as forums and ecommerce systems, below you can manage and create MySQL® databases.',0,'true','',''),(25,8,'Disk Space Usage',100,'usage_viewer','user','The account usage screen enables you to see exactly what you are currently using on your hosting package.',0,'true','',''),(26,8,'FTP Accounts',100,'ftp_management','user','Using this module you can create FTP accounts which will enable you and any other accounts you create to have the ability to upload and manage files on your hosting space.',0,'true','',''),(27,3,'FAQ\'s',100,'faqs','user','Please find a list of the most common questions from users, if you are unable to find a solution to your problem below please then contact your hosting provider. Simply click on the FAQ below to view the solution.',NULL,'true','',''),(28,0,'Apache Config',100,'apache_admin','modadmin','This module enables you to configure Apache Vhost settings for your hosting accounts.',0,'true','',''),(29,5,'DNS Zone Editor',100,'dns_manager','user',NULL,0,'true','',''),(30,0,'DNS Config',100,'dns_admin','modadmin','This module enables you to configure DNS settings for the DNS Manager',NULL,'true','',''),(31,7,'Manage Groups',100,'manage_groups','user','Manage user groups to enable greater control over module permission.',0,'true','',''),(32,6,'Email Accounts',100,'mailboxes','user','Using this module you have the ability to create IMAP and POP3 Mailboxes.',0,'true','',''),(33,6,'Forwards',100,'forwarders','user','Using this module you have the ability to create mail forwarders.',0,'true','',''),(34,6,'Mailing Lists',100,'distlists','user','This module enables you to create and manage email distribution groups.',0,'true','',''),(35,6,'Aliases',100,'aliases','user','Using this module you have the ability to create alias mailboxes to existing accounts.',0,'true','',''),(36,0,'Mail Config',100,'mail_admin','modadmin','This module enables you to configure your mail options',NULL,'true','',''),(39,4,'MySQL Users',100,'mysql_users','user','MySQL® Users allows you to add users and permissions to your MySQL® databases.',NULL,'true','',''),(40,0,'FTP Config',100,'ftp_admin','modadmin','This module enables you to configure FTP settings for your hosting accounts.',NULL,'true','',''),(41,0,'Backup Config',100,'backup_admin','modadmin','This module enables you to configure Backup settings for your hosting accounts.',NULL,'true','',''),(42,7,'Client Notice Manager',100,'client_notices','user','Enables resellers to set global notices for their clients.',NULL,'true','',''),(46,1,'Change Style',100,'theme_manager','user','Enables the reseller to set themes configurations for their clients.',0,'false','',''),(47,3,'Webalizer Stats',100,'webalizer_stats','user','You can view many statistics such as visitor infomation, bandwidth used, referal infomation and most viewed pages etc. Web stats are based on Domains and sub-domains so to view web stats for a particular domain or subdomain use the drop-down menu to select the domain or sub-domain you want to view web stats for.',0,'false','',NULL),(48,3,'Protected Directories',200,'protected_directories','user','Password protect your web applications and directories.',NULL,'true','',''),(50,8,'File Manager',100,'filemanager','user','Manage Your Files',0,'true','100','http://store.sentora.org/'),(51,3,'Log Viewer',101,'logviewer','user','This module lets you view Apache logs for your websites.',1468828190,'true',NULL,NULL),(52,3,'Site Software',30000,'sentastico','user','Site Software is an open-source package installation tool which will quickly and effortlessly copy a wide range of open-source web scripts to your hosting space and then re-direct you to the installer to enable you to personalize your setup! By using Site Software you save time and bandwidth by not needing to upload large web scripts to your hosting space.',1468906639,'true','',''),(53,1,'shortcuts',100,'shortcuts','user','cPanel shortcuts are links you can add to your desktop or your browser’s bookmarks toolbar. They are an easy way to access cPanel.',0,'true','100','http://www.hostingraja.in/'),(54,8,'Backup Wizard',100,'backupwizard','user','The backup manager module enables you to backup your entire hosting account including all your MySQL® databases.',0,'true','',''),(55,9,'Web Server',1,'webserver','user','Welcome to the Web Server, using this module restart your webserver.',0,'true','100','http://www.hostingraja.in/'),(56,9,'Varnish Cache',1,'varnish','user','Welcome to the Web Server, using this module you will enable the varnish cache.',0,'true','100','http://www.hostingraja.in/'),(57,10,'PHPMail Log',1,'mailinfo','user','Php mail log information.',0,'true','100','http://www.hostingraja.in/'),(58,6,'Apache SpamAssassin',1,'apachespamassassin','user','SpamAssassin is a computer program used for e-mail spam filtering.',0,'true','100','http://store.sentora.org/'),(59,10,'Mail Log',100,'maillog','user','check the mail log',1473156703,'true','',''),(60,2,'PHP Version',1,'phpversion','user','PHP version module is used for upgrade / downgrade your PHP version.',0,'true','','http://www.hostingraja.in/'),(61,10,'PHPExecution Log',1,'phpexecution','user','PHPExecution Log is used to avoid unnecessary file execution in some particular folder.',0,'true','','http://www.hostingraja.in/'),(62,2,'PHP Configuration Editor',1,'phpconfig','user','You may edit your PHP configuration in Basic Mode or in Advanced Mode.',0,'true','',''),(63,2,'Server Information',1,'hardware_info','user','You will see the Server Information',NULL,'true',NULL,NULL),(64,2,'Mail Queue Management',1,'mailq_management','user','You will manage the mail queue',NULL,'true','',''),(65,7,'List ParkedDomain',1,'parkeddomainlist','user',' ',NULL,'true','',''),(66,7,'List Subdomain',1,'subdomainlist','user',' ',NULL,'true','',''),(67,6,'Rain Loop',1,'rainloop','user','Rain loop is Simple, Modern & Fast web-based Email Client',NULL,'true',NULL,NULL),(68,3,'Database Hosting Settings',1,'database_settings','user','Using this module you can add prefix and underscore to the beginning of database name and username.',NULL,'true','',''),(69,3,'Password Strength Configuration',1,'password_strength','user','Using this module you can enable or disable password strength of email,ftp,mysql users,cpanel accounts.',NULL,'true',NULL,NULL),(70,2,'Add IP',1,'addip','user','Add server private ip with public ip',NULL,'true','',''),(71,4,'Remote MYSQL',100,'remote_mysql_users','user','Add a specific domain name to allow visitors to connect to your MySQL databases. Applications like bulletin boards, online shopping carts, and content management systems require databases to operate. For more information, read the documentation.',0,'true',NULL,NULL),(72,2,'Mod http2',100,'modhttp','user','Enable disable mod http2 for domain',NULL,'true','',''),(73,2,'Apache module',100,'apachemodule','user','You can enable and disable unwanted apache module',NULL,'true','','');
/*!40000 ALTER TABLE `x_modules` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_mysql_databases`
--
DROP TABLE IF EXISTS `x_mysql_databases`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_mysql_databases` (
`my_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`my_acc_fk` int(6) DEFAULT NULL,
`my_name_vc` varchar(40) CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL,
`my_usedspace_bi` bigint(50) DEFAULT '0',
`my_created_ts` int(30) DEFAULT NULL,
`my_deleted_ts` int(30) DEFAULT NULL,
`ip_deleted` varchar(20) DEFAULT NULL,
PRIMARY KEY (`my_id_pk`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_mysql_databases`
--
LOCK TABLES `x_mysql_databases` WRITE;
/*!40000 ALTER TABLE `x_mysql_databases` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_mysql_databases` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_mysql_dbmap`
--
DROP TABLE IF EXISTS `x_mysql_dbmap`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_mysql_dbmap` (
`mm_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`mm_acc_fk` int(6) DEFAULT NULL,
`mm_user_fk` int(6) DEFAULT NULL,
`mm_database_fk` int(6) DEFAULT NULL,
PRIMARY KEY (`mm_id_pk`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_mysql_dbmap`
--
LOCK TABLES `x_mysql_dbmap` WRITE;
/*!40000 ALTER TABLE `x_mysql_dbmap` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_mysql_dbmap` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_mysql_users`
--
DROP TABLE IF EXISTS `x_mysql_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_mysql_users` (
`mu_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`mu_acc_fk` int(6) DEFAULT NULL,
`mu_name_vc` varchar(40) CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL,
`mu_database_fk` int(6) DEFAULT NULL,
`mu_access_vc` varchar(40) DEFAULT NULL,
`mu_pass_vc` varchar(40) DEFAULT NULL,
`mu_created_ts` int(30) DEFAULT NULL,
`mu_deleted_ts` int(30) DEFAULT NULL,
`ip_deleted` varchar(20) DEFAULT NULL,
PRIMARY KEY (`mu_id_pk`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_mysql_users`
--
LOCK TABLES `x_mysql_users` WRITE;
/*!40000 ALTER TABLE `x_mysql_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_mysql_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_nodejs`
--
DROP TABLE IF EXISTS `x_nodejs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_nodejs` (
`nd_id` int(11) NOT NULL AUTO_INCREMENT,
`nd_domain` varchar(255) DEFAULT NULL,
`nd_created` int(30) DEFAULT NULL,
`nd_deleted` int(30) DEFAULT NULL,
`nd_port` varchar(7) DEFAULT NULL,
`nd_acc_fk` int(11) DEFAULT NULL,
`nd_vh_id` int(11) DEFAULT NULL,
PRIMARY KEY (`nd_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_nodejs`
--
LOCK TABLES `x_nodejs` WRITE;
/*!40000 ALTER TABLE `x_nodejs` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_nodejs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_ns`
--
DROP TABLE IF EXISTS `x_ns`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_ns` (
`ns_no` int(20) NOT NULL AUTO_INCREMENT,
`userid` int(20) NOT NULL,
`ns1` varchar(200) NOT NULL,
`ns2` varchar(200) NOT NULL,
`ns_create` int(30) DEFAULT NULL,
PRIMARY KEY (`ns_no`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_ns`
--
LOCK TABLES `x_ns` WRITE;
/*!40000 ALTER TABLE `x_ns` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_ns` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_packages`
--
DROP TABLE IF EXISTS `x_packages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_packages` (
`pk_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`pk_name_vc` varchar(30) CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL,
`pk_reseller_fk` int(6) DEFAULT NULL,
`pk_enablephp_in` int(1) DEFAULT '0',
`pk_created_ts` int(30) DEFAULT NULL,
`pk_deleted_ts` int(30) DEFAULT NULL,
PRIMARY KEY (`pk_id_pk`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_packages`
--
LOCK TABLES `x_packages` WRITE;
/*!40000 ALTER TABLE `x_packages` DISABLE KEYS */;
INSERT INTO `x_packages` VALUES (1,'Administration',1,1,NULL,NULL);
/*!40000 ALTER TABLE `x_packages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_password_strength`
--
DROP TABLE IF EXISTS `x_password_strength`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_password_strength` (
`ps_id_pk` int(11) NOT NULL AUTO_INCREMENT,
`ps_cpenabled_in` int(4) NOT NULL,
`ps_eaenabled_in` int(4) NOT NULL,
`ps_faenabled_in` int(4) NOT NULL,
`ps_muenabled_in` int(4) NOT NULL,
`ps_user_vc` varchar(25) NOT NULL,
`ps_updated_vc` varchar(200) NOT NULL,
PRIMARY KEY (`ps_id_pk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_password_strength`
--
LOCK TABLES `x_password_strength` WRITE;
/*!40000 ALTER TABLE `x_password_strength` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_password_strength` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_permissions`
--
DROP TABLE IF EXISTS `x_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_permissions` (
`pe_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`pe_group_fk` int(6) DEFAULT NULL,
`pe_module_fk` int(6) DEFAULT NULL,
PRIMARY KEY (`pe_id_pk`)
) ENGINE=MyISAM AUTO_INCREMENT=245 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_permissions`
--
LOCK TABLES `x_permissions` WRITE;
/*!40000 ALTER TABLE `x_permissions` DISABLE KEYS */;
INSERT INTO `x_permissions` VALUES (1,1,18),(2,1,35),(3,2,35),(4,3,35),(5,1,28),(6,1,12),(7,2,12),(8,3,12),(9,1,41),(10,1,11),(11,2,11),(12,3,11),(13,1,42),(14,2,42),(15,1,22),(16,2,22),(17,3,22),(18,1,34),(19,2,34),(20,3,34),(21,1,30),(22,1,29),(23,2,29),(24,3,29),(25,1,15),(26,2,15),(27,3,15),(28,1,27),(29,2,27),(30,3,27),(31,1,33),(32,2,33),(33,3,33),(34,1,26),(35,2,26),(36,3,26),(37,1,40),(38,1,36),(39,1,32),(40,2,32),(41,3,32),(42,1,19),(43,2,19),(44,1,31),(45,2,31),(46,1,9),(47,2,9),(48,3,9),(49,1,24),(50,2,24),(51,3,24),(52,1,39),(53,2,39),(54,3,39),(55,1,20),(56,2,20),(57,1,16),(58,2,16),(59,3,16),(60,1,1),(61,2,1),(62,3,1),(63,1,8),(64,2,8),(65,3,8),(66,1,23),(67,1,43),(68,2,43),(69,3,43),(70,1,14),(71,2,14),(72,3,14),(73,1,3),(74,2,3),(75,1,17),(76,2,17),(77,3,17),(80,1,6),(81,1,25),(82,2,25),(83,3,25),(87,1,10),(88,2,10),(89,3,10),(90,1,4),(91,1,5),(92,1,48),(93,2,48),(94,3,48),(95,1,15),(96,2,15),(97,3,15),(98,1,35),(99,2,35),(100,3,35),(101,1,28),(102,1,12),(103,2,12),(104,3,12),(105,1,41),(106,1,54),(107,2,54),(108,3,54),(109,1,11),(110,2,11),(111,3,11),(114,1,42),(115,2,42),(116,1,22),(117,2,22),(118,3,22),(119,1,25),(120,2,25),(121,3,25),(122,1,30),(123,1,29),(124,2,29),(125,3,29),(126,1,32),(127,2,32),(128,3,32),(129,1,27),(130,2,27),(131,3,27),(132,1,50),(133,2,50),(134,3,50),(135,1,33),(136,2,33),(137,3,33),(138,1,26),(139,2,26),(140,3,26),(141,1,40),(142,1,51),(143,2,51),(144,3,51),(145,1,36),(146,1,34),(147,2,34),(148,3,34),(149,1,19),(150,2,19),(151,1,31),(152,2,31),(153,1,18),(154,1,24),(155,2,24),(156,3,24),(157,1,39),(158,2,39),(159,3,39),(160,1,20),(161,2,20),(162,1,16),(163,2,16),(164,3,16),(165,1,1),(166,2,1),(167,3,1),(168,1,8),(169,2,8),(170,3,8),(171,1,23),(172,1,48),(173,2,48),(174,3,48),(175,1,4),(176,1,5),(177,1,14),(178,2,14),(179,3,14),(180,1,3),(181,2,3),(182,1,53),(183,2,53),(184,3,53),(185,1,52),(186,2,52),(187,3,52),(188,1,17),(189,2,17),(190,3,17),(191,1,9),(192,2,9),(193,3,9),(194,1,6),(195,1,56),(198,1,55),(204,1,10),(205,2,10),(206,3,10),(207,1,57),(208,2,57),(209,3,57),(210,1,58),(211,2,58),(212,3,58),(213,1,59),(214,1,60),(215,2,60),(216,3,60),(217,1,61),(218,2,61),(219,3,61),(220,1,62),(221,2,62),(222,3,62),(223,1,63),(224,2,63),(225,3,63),(226,1,64),(227,1,65),(228,1,66),(229,1,67),(230,2,67),(231,3,67),(232,1,68),(233,2,68),(234,3,68),(235,1,69),(236,2,69),(237,3,69),(238,3,86),(239,3,87),(240,1,88),(241,3,89),(242,3,90),(243,1,91),(244,1,70);
/*!40000 ALTER TABLE `x_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_pg_databases`
--
DROP TABLE IF EXISTS `x_pg_databases`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_pg_databases` (
`my_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`my_acc_fk` int(6) DEFAULT NULL,
`my_name_vc` varchar(40) CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL,
`my_usedspace_bi` bigint(50) DEFAULT '0',
`my_created_ts` int(30) DEFAULT NULL,
`my_deleted_ts` int(30) DEFAULT NULL,
PRIMARY KEY (`my_id_pk`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_pg_databases`
--
LOCK TABLES `x_pg_databases` WRITE;
/*!40000 ALTER TABLE `x_pg_databases` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_pg_databases` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_pg_dbmap`
--
DROP TABLE IF EXISTS `x_pg_dbmap`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_pg_dbmap` (
`mm_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`mm_acc_fk` int(6) DEFAULT NULL,
`mm_user_fk` int(6) DEFAULT NULL,
`mm_database_fk` int(6) DEFAULT NULL,
PRIMARY KEY (`mm_id_pk`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_pg_dbmap`
--
LOCK TABLES `x_pg_dbmap` WRITE;
/*!40000 ALTER TABLE `x_pg_dbmap` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_pg_dbmap` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_pg_users`
--
DROP TABLE IF EXISTS `x_pg_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_pg_users` (
`mu_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`mu_acc_fk` int(6) DEFAULT NULL,
`mu_name_vc` varchar(40) CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL,
`mu_database_fk` int(6) DEFAULT NULL,
`mu_access_vc` varchar(40) DEFAULT NULL,
`mu_pass_vc` varchar(40) DEFAULT NULL,
`mu_created_ts` int(30) DEFAULT NULL,
`mu_deleted_ts` int(30) DEFAULT NULL,
PRIMARY KEY (`mu_id_pk`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_pg_users`
--
LOCK TABLES `x_pg_users` WRITE;
/*!40000 ALTER TABLE `x_pg_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_pg_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_php_config`
--
DROP TABLE IF EXISTS `x_php_config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_php_config` (
`x_id` int(11) NOT NULL AUTO_INCREMENT,
`x_clearname` varchar(100) NOT NULL,
`x_value` varchar(400) NOT NULL,
`x_old_value` varchar(400) NOT NULL,
PRIMARY KEY (`x_id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_php_config`
--
LOCK TABLES `x_php_config` WRITE;
/*!40000 ALTER TABLE `x_php_config` DISABLE KEYS */;
INSERT INTO `x_php_config` VALUES (1,'file_uploads','On','On'),(2,'max_execution_time','300','300'),(3,'max_input_time','600','600'),(4,'memory_limit','128','128'),(5,'session_save_path','/tmp/','/tmp/'),(6,'upload_max_filesize','512','512'),(7,'post_max_size','512','512'),(8,'x_update_flag','0','0');
/*!40000 ALTER TABLE `x_php_config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_php_page_block`
--
DROP TABLE IF EXISTS `x_php_page_block`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_php_page_block` (
`x_id` int(11) NOT NULL AUTO_INCREMENT,
`x_filepath` blob NOT NULL,
`x_count` int(11) NOT NULL,
`x_status` varchar(10) NOT NULL,
`x_last_update` varchar(100) NOT NULL,
PRIMARY KEY (`x_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_php_page_block`
--
LOCK TABLES `x_php_page_block` WRITE;
/*!40000 ALTER TABLE `x_php_page_block` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_php_page_block` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_phpversion_upgrade`
--
DROP TABLE IF EXISTS `x_phpversion_upgrade`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_phpversion_upgrade` (
`x_id` int(11) NOT NULL AUTO_INCREMENT,
`x_client_id` int(11) NOT NULL,
`x_php_version` varchar(10) NOT NULL,
`x_update_time` int(30) NOT NULL,
`x_flag` varchar(5) NOT NULL,
PRIMARY KEY (`x_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_phpversion_upgrade`
--
LOCK TABLES `x_phpversion_upgrade` WRITE;
/*!40000 ALTER TABLE `x_phpversion_upgrade` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_phpversion_upgrade` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_picdata`
--
DROP TABLE IF EXISTS `x_picdata`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_picdata` (
`id` int(6) unsigned NOT NULL AUTO_INCREMENT,
`logo_path` varchar(200) NOT NULL,
`favicon_path` varchar(200) NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`flag` int(6) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_picdata`
--
LOCK TABLES `x_picdata` WRITE;
/*!40000 ALTER TABLE `x_picdata` DISABLE KEYS */;
INSERT INTO `x_picdata` VALUES (1,'1491825834_334x101.jpg','1491825798_favicon.jpg','2018-08-23 14:43:42',1);
/*!40000 ALTER TABLE `x_picdata` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_profiles`
--
DROP TABLE IF EXISTS `x_profiles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_profiles` (
`ud_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`ud_user_fk` int(6) DEFAULT NULL,
`ud_fullname_vc` varchar(100) DEFAULT NULL,
`ud_language_vc` varchar(10) DEFAULT 'en',
`ud_group_fk` int(6) DEFAULT NULL,
`ud_package_fk` int(6) DEFAULT NULL,
`ud_address_tx` text,
`ud_postcode_vc` varchar(20) DEFAULT NULL,
`ud_phone_vc` varchar(20) DEFAULT NULL,
`ud_created_ts` int(30) DEFAULT NULL,
PRIMARY KEY (`ud_id_pk`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_profiles`
--
LOCK TABLES `x_profiles` WRITE;
/*!40000 ALTER TABLE `x_profiles` DISABLE KEYS */;
INSERT INTO `x_profiles` VALUES (1,1,'Default Zadmin','en',1,1,'1 Example Road,\r\nIpswich,\r\nSuffolk','IP9 2HL','+44(1473) 000 000',0);
/*!40000 ALTER TABLE `x_profiles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_quotas`
--
DROP TABLE IF EXISTS `x_quotas`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_quotas` (
`qt_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`qt_package_fk` int(6) DEFAULT NULL,
`qt_domains_in` int(6) DEFAULT '0',
`qt_subdomains_in` int(6) DEFAULT '0',
`qt_parkeddomains_in` int(6) DEFAULT '0',
`qt_mailboxes_in` int(6) DEFAULT '0',
`qt_fowarders_in` int(6) DEFAULT '0',
`qt_domain_forwarders_in` int(6) NOT NULL DEFAULT '0',
`qt_distlists_in` int(6) DEFAULT '0',
`qt_ftpaccounts_in` int(6) DEFAULT '0',
`qt_mysql_in` int(6) DEFAULT '0',
`qt_diskspace_bi` bigint(20) DEFAULT '0',
`qt_bandwidth_bi` bigint(20) DEFAULT '0',
`qt_bwenabled_in` int(1) DEFAULT '0',
`qt_dlenabled_in` int(1) DEFAULT '0',
`qt_totalbw_fk` int(30) DEFAULT NULL,
`qt_minbw_fk` int(30) DEFAULT NULL,
`qt_maxcon_fk` int(30) DEFAULT NULL,
`qt_filesize_fk` int(30) DEFAULT NULL,
`qt_filespeed_fk` int(30) DEFAULT NULL,
`qt_filetype_vc` varchar(30) NOT NULL DEFAULT '*',
`qt_modified_in` int(1) DEFAULT '0',
PRIMARY KEY (`qt_id_pk`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_quotas`
--
LOCK TABLES `x_quotas` WRITE;
/*!40000 ALTER TABLE `x_quotas` DISABLE KEYS */;
INSERT INTO `x_quotas` VALUES (1,1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'*',1);
/*!40000 ALTER TABLE `x_quotas` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_remote_mysql_hosts`
--
DROP TABLE IF EXISTS `x_remote_mysql_hosts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_remote_mysql_hosts` (
`re_id_pk` int(11) NOT NULL AUTO_INCREMENT,
`re_host_vc` varchar(30) NOT NULL,
`re_acc_fk` int(11) DEFAULT NULL,
`re_created_ts` int(11) DEFAULT NULL,
`re_deleted_ts` int(11) DEFAULT NULL,
`ip_deleted` varchar(20) DEFAULT NULL,
PRIMARY KEY (`re_id_pk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_remote_mysql_hosts`
--
LOCK TABLES `x_remote_mysql_hosts` WRITE;
/*!40000 ALTER TABLE `x_remote_mysql_hosts` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_remote_mysql_hosts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_serverip`
--
DROP TABLE IF EXISTS `x_serverip`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_serverip` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`priv_ip` varchar(20) DEFAULT NULL,
`public_ip` varchar(20) DEFAULT NULL,
`ip_created` varchar(20) DEFAULT NULL,
`ip_deleted` varchar(20) DEFAULT NULL,
`ip_modified` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_serverip`
--
LOCK TABLES `x_serverip` WRITE;
/*!40000 ALTER TABLE `x_serverip` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_serverip` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_settings`
--
DROP TABLE IF EXISTS `x_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_settings` (
`so_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`so_name_vc` varchar(50) DEFAULT NULL,
`so_cleanname_vc` varchar(50) DEFAULT NULL,
`so_value_tx` text,
`so_defvalues_tx` text,
`so_desc_tx` text,
`so_module_vc` varchar(50) DEFAULT NULL,
`so_usereditable_en` enum('true','false') DEFAULT 'false',
PRIMARY KEY (`so_id_pk`)
) ENGINE=InnoDB AUTO_INCREMENT=128 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_settings`
--
LOCK TABLES `x_settings` WRITE;
/*!40000 ALTER TABLE `x_settings` DISABLE KEYS */;
INSERT INTO `x_settings` VALUES (6,'dbversion','Sentora version','1.0.3',NULL,'Database Version','Sentora Config','false'),(7,'sentora_root','Sentora root path','/etc/sentora/panel/',NULL,'Sentora Web Root','Sentora Config','true'),(8,'module_icons_pr','Icons per Row','10',NULL,'Set the number of icons to display before beginning a new line.','Sentora Config','false'),(10,'Sentora_df','Date Format','H:i jS M Y T',NULL,'Set the date format used by modules.','Sentora Config','true'),(13,'servicechk_to','Service Check Timeout','10',NULL,'Service Check Timeout','Sentora Config','true'),(14,'root_drive','Root Drive','/',NULL,'The root drive where Sentora is installed.','Sentora Config','true'),(16,'php_exer','PHP executable','/usr/bin/php',NULL,'PHP Executable','Sentora Config','false'),(17,'temp_dir','Temp Directory','/var/sentora/temp/',NULL,'Global temp directory.','Sentora Config','true'),(18,'news_url','Sentora News API URL','http://api.sentora.org/latestnews.json',NULL,'Sentora News URL','Sentora Config','false'),(19,'update_url','Sentora Update API URL','http://api.sentora.org/latestversion.json',NULL,'Sentora Update URL','Sentora Config','false'),(21,'server_ip','Server IP Address','103.120.176.180',NULL,'If set this will use this manually entered server IP address which is the prefered method for use behind a firewall.','Sentora Config','true'),(22,'zip_exe','ZIP Exe','zip',NULL,'Path to the ZIP Executable','Sentora Config','true'),(24,'disable_hostsen','Disable auto HOSTS file entry','false','true|false','Disable Host Entries','Sentora Config','false'),(25,'latestzpversion','Cached version of latest sentora version','1.0.3',NULL,'This is used for caching the latest version of Sentora.','Sentora Config','false'),(26,'logmode','Debug logging mode','db','db|file|email','The default mode to log all errors in.','Sentora Config','true'),(27,'logfile','Sentora Log file','/var/sentora/logs/sentora.log',NULL,'If logging is set to \'file\' mode this is the path to the log file that is to be used by Sentora.','Sentora Config','true'),(28,'apikey','XMWS API Key','23ab8108f4ad77473c7e1908c224957c',NULL,'The secret API key for the server.','Sentora Config','false'),(29,'email_from_address','From Address','sentora@localhost',NULL,'The email address to appear in the From field of emails sent by Sentora.','Sentora Config','true'),(30,'email_from_name','From Name','HRPanel Server',NULL,'The name to appear in the From field of emails sent by Sentora.','Sentora Config','true'),(31,'email_smtp','Use SMTP','false','true|false','Use SMTP server to send emails from. (true/false)','Sentora Config','true'),(32,'smtp_auth','Use AUTH','false','true|false','SMTP requires authentication. (true/false)','Sentora Config','true'),(33,'smtp_server','SMTP Server','',NULL,'The address of the SMTP server.','Sentora Config','true'),(34,'smtp_port','SMTP Port','465',NULL,'The port address of the SMTP server (usually 25)','Sentora Config','true'),(35,'smtp_username','SMTP User','',NULL,'Username for authentication on the SMTP server.','Sentora Config','true'),(36,'smtp_password','SMTP Pass','',NULL,'Password for authentication on the SMTP server.','Sentora Config','true'),(37,'smtp_secure','SMTP Auth method','false','false|ssl|tls','If specified will attempt to use encryption to connect to the server, if \'false\' this is disabled. Available options: false, ssl, tls','Sentora Config','true'),(38,'daemon_lastrun','Daemon timeing cache','0',NULL,'Timestamp of when the daemon last ran.',NULL,'false'),(39,'daemon_dayrun','Daemon timeing cache','0',NULL,NULL,NULL,'false'),(40,'daemon_weekrun','Daemon timeing cache','0',NULL,NULL,NULL,'false'),(41,'daemon_monthrun','Daemon timeing cache','0',NULL,NULL,NULL,'false'),(42,'purge_bu','Purge Backups','true','true|false','Delete client backups after allotted time has elapsed to help save diskspace (true/false)','Backup Config','true'),(43,'purge_date','Purge Date','30',NULL,'Time in days backups are safe from being deleted. After days have elapsed, older backups will be deleted on Daemon Day Run','Backup Config','true'),(44,'disk_bu','Disk Backups','true','true|false','Allow users to create and save backups of their home directories to disk. (true/false)','Backup Config','true'),(45,'schedule_bu','Daily Backups','false','true|false','Make a daily backup of each clients data, including MySQL databases to their backup folder. Backups will still be created if Disk Backups are set to false. (true/false)','Backup Config','true'),(46,'ftp_db','FTP Database','sentora_proftpd',NULL,'The name of the ftp server database','FTP Config','true'),(47,'ftp_php','FTP PHP','proftpd.php',NULL,'Name of PHP to include when adding FTP data.','FTP Config','true'),(48,'ftp_service','FTP Service Name','proftpd',NULL,'The name of the FTP service','FTP Config','true'),(49,'ftp_service_root','FTP Service Root','/etc/init.d/',NULL,'The path to the service executable if applicable.','FTP Config','true'),(50,'ftp_config_file','FTP Config File','',NULL,'The path to the configuration file if applicable.','FTP Config','true'),(51,'mailserver_db','Mailserver Database','sentora_postfix',NULL,'The name of the mail server database','Mail Config','true'),(52,'hmailserver_et','Hmail Encryption Type','2',NULL,'Type of encryption uses for hMailServer passwords','Mail Config','false'),(53,'max_mail_size','Max Mailbox Size','2000',NULL,'Maximum size in megabytes allowed for mailboxes. Default = 200','Mail Config','true'),(54,'mailserver_php','Mailserver PHP','postfix.php',NULL,'Name of PHP to include when adding mailbox data.','Mail Config','true'),(55,'remove_orphan','Remove Orphans','true','true|false','When domains are deleted, also delete all mailboxes for that domain when the daemon runs. (true/false)','Mail Config','true'),(56,'named_dir','Named Directory','/etc/sentora/configs/bind/etc/',NULL,'Path to the directory where named.conf is stored','DNS Config','true'),(57,'named_conf','Named Config','named.conf',NULL,'Named configuration file','DNS Config','true'),(58,'zone_dir','Zone Directory','/etc/sentora/configs/bind/zones/',NULL,'Path to where DNS zone files are stored','DNS Config','true'),(59,'refresh_ttl','SOA Refesh TTL','21600',NULL,'Global refresh TTL. Default = 21600 (6 hours)','DNS Config','true'),(60,'retry_ttl','SOA Retry TTL','3600',NULL,'Global retry TTL. Default = 3600 (1 hour)','DNS Config','true'),(61,'expire_ttl','SOA Expire TTL','86400',NULL,'Global expire TTL. Default = 86400 (1 day)','DNS Config','true'),(62,'minimum_ttl','SOA Minimum TTL','86400',NULL,'Global minimum TTL. Default = 86400 (1 day)','DNS Config','true'),(63,'custom_ip','Allow Custom IP','true','true|false','Allow users to change IP settings in A records. If set to false, IP is locked to server IP setting in Sentora Config','DNS Config','true'),(64,'bind_dir','Path to BIND Root','/etc/named/',NULL,'Path to the root directory where BIND is installed.','DNS Config','true'),(65,'bind_service','BIND Service Name','named',NULL,'Name of the BIND service','DNS Config','true'),(66,'allow_xfer','Allow Zone Transfers','trusted-servers',NULL,'Setting to restrict zone transfers in setting: allow-transfer {}; Default = all','DNS Config','true'),(67,'allowed_types','Allowed Record Types','A AAAA CNAME MX TXT SRV SPF NS',NULL,'Types of records allowed seperated by a space. Default = A AAAA CNAME MX TXT SRV SPF NS','DNS Config','true'),(68,'bind_log','Bind Log','/var/sentora/logs/bind/bind.log',NULL,'Path and name of the Bind Log','DNS Config','true'),(69,'hosted_dir','Vhosts Directory','/var/sentora/hostdata/',NULL,'Virtual host directory','Apache Config','true'),(70,'disable_hostsen','Disable HOSTS file entries','false','true|false','Disable host entries','Apache Config','true'),(71,'apache_vhost','Apache VHOST Conf','/etc/sentora/configs/apache/httpd-vhosts.conf',NULL,'The full system path and filename of the Apache VHOST configuration name.','Apache Config','true'),(72,'php_handler','PHP Handler','AddType application/x-httpd-php .php3 .php',NULL,'The PHP Handler.','Apache Config','false'),(73,'cgi_handler','CGI Handler','ScriptAlias /cgi-bin/ \"/_cgi-bin/\"\r\n<location /cgi-bin>\r\nAddHandler cgi-script .cgi .pl\r\nOptions +ExecCGI -Indexes\r\n</location>',NULL,'The CGI Handler.','Apache Config','false'),(74,'global_vhcustom','Global VHost Entry',NULL,NULL,'Extra directives for all apache vhost\'s.','Apache Config','true'),(75,'static_dir','Static Pages Directory','/etc/sentora/panel/etc/static/',NULL,'The Sentora static directory, used for storing welcome pages etc. etc.','Apache Config','true'),(76,'parking_path','Vhost Parking Path','/etc/sentora/panel/etc/static/parking/',NULL,'The path to the parking website, this will be used by all clients.','Apache Config','true'),(78,'shared_domains','Shared Domains','no-ip,dyndns,autono,zphub',NULL,'Domains entered here can be shared across multiple accounts. Seperate domains with , example: no-ip,dyndns','Apache Config','true'),(79,'upload_temp_dir','Upload Temp Directory','/var/sentora/temp/',NULL,'The path to the Apache Upload directory (with trailing slash)','Apache Config','true'),(80,'apache_port','Apache Port','80',NULL,'Apache service port','Apache Config','true'),(81,'dir_index','Directory Indexes','DirectoryIndex index.html index.htm index.php index.asp index.aspx index.jsp index.jspa index.shtml index.shtm',NULL,'Directory Index','Apache Config','true'),(82,'suhosin_value','Suhosin Value','php_admin_value suhosin.executor.func.blacklist \"passthru, show_source, shell_exec, system, pcntl_exec, popen, pclose, proc_open, proc_nice, proc_terminate, proc_get_status, proc_close, leak, apache_child_terminate, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid, escapeshellcmd, escapeshellarg, exec\"',NULL,'Suhosin configuration for virtual host blacklisting commands','Apache Config','true'),(83,'openbase_seperator','Open Base Seperator',':',NULL,'Seperator flag used in open_base_directory setting','Apache Config','false'),(84,'openbase_temp','Open Base Temp Directory','/var/sentora/temp/',NULL,'Temp directory used in open_base_directory setting','Apache Config','true'),(85,'access_log_format','Access Log Format','combined','combined|common','Log format for the Apache access log','Apache Config','true'),(86,'bandwidth_log_format','Bandwidth Log Format','common','combined|common','Log format for the Apache bandwidth log','Apache Config','true'),(87,'global_zpcustom','Global Sentora Entry',NULL,NULL,'Extra directives for Sentora default vhost.','Apache Config','true'),(88,'use_openbase','Use Open Base Dir','false','true|false','Enable openbase directory for all vhosts','Apache Config','true'),(89,'use_suhosin','Use Suhosin','false','true|false','Enable Suhosin for all vhosts','Apache Config','true'),(90,'sentora_domain','Sentora Domain','server.hrpaneltemplate2.6.com',NULL,'Domain that the control panel is installed under.','Sentora Config','false'),(91,'log_dir','Log Directory','/var/sentora/logs/',NULL,'Root path to directory log folders','Sentora Config','true'),(92,'apache_changed','Apache Changed','1535035501','true|false','If set, Apache Config daemon hook will write the vhost config file changes.','Apache Config','false'),(94,'apache_allow_disabled','Allow Disabled','true','true|false','Allow webhosts to remain active even if a user has been disabled.','Apache Config','true'),(95,'apache_budir','VHost Backup Dir','/var/sentora/backups/',NULL,'Directory that vhost.conf backups are stored.','Apache Config','true'),(96,'apache_purgebu','Purge Backups','true','true|false','Old backups are deleted after the date set in Puge Date','Apache Config','true'),(97,'apache_purge_date','Purge Date','7',NULL,'Time in days that vhost backups are safe from deletion','Apache Config','true'),(98,'apache_backup','VHost Backup','true','true|false','Backup vhost file before a new one is written','Apache Config','true'),(99,'zsudo','zsudo path','/etc/sentora/panel/bin/zsudo',NULL,'Path to the zsudo binary used by Apache to run system commands.','Sentora Config','true'),(100,'apache_restart','Apache Restart Cmd','reload',NULL,'Command line arguments used after the restart service request when reloading Apache.','Apache Config','true'),(101,'httpd_exe','Apache Binary','httpd',NULL,'Path to the Apache binary','Apache Config','true'),(102,'apache_sn','Apache Service Name','httpd',NULL,'Service name used to handle Apache service control','Apache Config','true'),(103,'daemon_exer',NULL,'/etc/sentora/panel/bin/daemon.php',NULL,'Path to the Sentora daemon','Sentora Config','false'),(104,'daemon_timing',NULL,'0 * * * *',NULL,'Cron time for when to run the Sentora daemon','Sentora Config','false'),(105,'cron_file','Cron File','/var/spool/cron/apache',NULL,'Path to the user cron file','Cron Config','true'),(107,'mysqldump_exe','MySQL Dump','mysqldump',NULL,'Path to MySQL dump','Sentora Config','false'),(108,'dns_hasupdates','DNS Updated',NULL,NULL,NULL,NULL,'false'),(109,'named_checkconf','Named CheckConfig','named-checkconf',NULL,'Path to named-checkconf bind utility.','DNS Config','true'),(110,'named_checkzone','Named CheckZone','named-checkzone',NULL,'Path to named-checkzone bind utility.','DNS Config','true'),(111,'named_compilezone','Named CompileZone','named-compilezone',NULL,' Path to named-compilezone bind utility.','DNS Config','true'),(112,'mailer_type','Mail method','mail','mail|smtp|sendmail','Method to use when sending emails out. (mail = PHP Mail())','Sentora Config','true'),(113,'daemon_run_interval','Number of seconds between each daemon execution','300',NULL,'The total number of seconds between each daemon run (default 300 = 5 mins)','Sentora Config','false'),(114,'debug_mode','Sentora Debug Mode','prod','dev|prod','Whether or not to show PHP debug errors,warnings and notices','Sentora Config','true'),(115,'password_minlength','Min Password Length','6',NULL,'Minimum length required for new passwords','Sentora Config','true'),(116,'cron_reload_command','Cron Reload Command','crontab',NULL,'Crontab binary in Linux Only','Cron Config','true'),(117,'cron_reload_path','Cron Reload Path','/var/spool/cron/apache',NULL,'Cron reload path in Linux Only','Cron Config','true'),(118,'cron_reload_flag','Cron Reload Flags','-u',NULL,'Cron reload command flags in Linux Only','Cron Config','true'),(119,'cron_reload_user','Cron Reload User','apache',NULL,'Cron reload apache user in Linux','Cron Config','true'),(120,'login_csfr','Remote Login Forms','false','false|true','Disables CSFR protection on the login form to enable remote login forms.','Sentora Config','true'),(121,'sentora_port','Sentora Apache Port','80',NULL,'Sentora Apache panel port (change will be pending until next daemon run)','Sentora Config','true'),(122,'apache_version','Apache Version','2.4',NULL,'Apche Version for maintenance','Apache Config','true'),(123,'ipdomain_dir','IP Domain Directory','/etc/sentora/panel/etc/static/pages/','NULL','IP Domain Directory','IP Domain Directory Config','true'),(124,'Domain_directory_change','Domain directory change',NULL,NULL,NULL,NULL,'false'),(125,'Domain_disable_exceed_directory','Domain disable directory change',NULL,NULL,NULL,NULL,'false'),(126,'Domain_enable_exceed_directory','Domain enable directory change',NULL,NULL,NULL,NULL,'false'),(127,'is_exceed_changed','Need to change for domain exceed directory change','0',NULL,NULL,NULL,'false');
/*!40000 ALTER TABLE `x_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_splitlog`
--
DROP TABLE IF EXISTS `x_splitlog`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_splitlog` (
`x_id` int(11) NOT NULL AUTO_INCREMENT,
`x_flag` int(2) NOT NULL DEFAULT '0',
PRIMARY KEY (`x_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_splitlog`
--
LOCK TABLES `x_splitlog` WRITE;
/*!40000 ALTER TABLE `x_splitlog` DISABLE KEYS */;
INSERT INTO `x_splitlog` VALUES (1,0);
/*!40000 ALTER TABLE `x_splitlog` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_ssl`
--
DROP TABLE IF EXISTS `x_ssl`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_ssl` (
`ssl_no` int(20) NOT NULL AUTO_INCREMENT,
`userid` int(20) NOT NULL,
`ssl_email` varchar(250) NOT NULL,
`ssl_doamin` varchar(250) NOT NULL,
`ssl_created` int(30) DEFAULT NULL,
`ssl_delete` int(30) DEFAULT NULL,
`ssl_status` varchar(50) DEFAULT NULL,
`ssl_www` varchar(20) DEFAULT NULL,
`ip_deleted` varchar(20) DEFAULT NULL,
PRIMARY KEY (`ssl_no`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_ssl`
--
LOCK TABLES `x_ssl` WRITE;
/*!40000 ALTER TABLE `x_ssl` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_ssl` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_translations`
--
DROP TABLE IF EXISTS `x_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_translations` (
`tr_id_pk` int(11) NOT NULL AUTO_INCREMENT,
`tr_en_tx` text,
`tr_de_tx` text,
PRIMARY KEY (`tr_id_pk`)
) ENGINE=InnoDB AUTO_INCREMENT=124 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_translations`
--
LOCK TABLES `x_translations` WRITE;
/*!40000 ALTER TABLE `x_translations` DISABLE KEYS */;
INSERT INTO `x_translations` VALUES (44,'Webmail is a convenient way for you to check your email accounts online without the need to configure an email client.','Webmail ist ein bequemer Weg für Sie, Ihre E-Mail-Konten online zu überprüfen, ohne dass eine E-Mail-Client zu konfigurieren.'),(45,'Launch Webmail','Starten Sie WebMail'),(56,'PHPInfo provides you with information regarding the version of PHP running on this system as well as installed PHP extentsions and configuration details.','PHPInfo bietet Ihnen Informationen über die PHP-Version auf dem System, sowie PHP installiert extentsions und Konfigurationsmöglichkeiten.'),(67,'From here you can shadow any of your client\'s accounts, this enables you to automatically login as the user which enables you to offer remote help by seeing what they see!','Von hier aus können alle Ihre Kunden-Accounts können Schatten, ermöglicht Ihnen dies automatisch, wenn der Benutzer mit dem Sie remote helfen zu sehen, was sie sehen, anbieten zu können login!'),(68,'My Account','Meine Konto'),(69,'Change Password','Kennwort ändern'),(70,'Shadowing','Schatten'),(71,'Sentora Config','Config Sentora'),(72,'Sentora News','Sentora Aktuelles'),(73,'Updates','Aktualisierung'),(74,'Report Bug','Fehler melden'),(75,'Account','Konto'),(76,'Module Admin','Modul Admin'),(77,'Backup','Sicherungskopie'),(78,'Network Tools','Netzwerk-Tools'),(79,'Service Status','Service Status'),(80,'PHPInfo','PHPInfo'),(81,'phpMyAdmin','phpMyAdmin'),(82,'Domains','Domains'),(83,'Sub Domains','Sub Domains'),(84,'Parked Domains','geparkte Domains'),(85,'Manage Clients','Verwalten Kunden'),(86,'Package Manager','Paket Manager'),(87,'Server','Server'),(88,'Database','Datenbank'),(89,'Advanced','Fortgeschritten'),(90,'Mail','Post'),(91,'Reseller','Wiederverkäufer'),(92,'Account Information','Account Informationen'),(93,'Server Admin','Server Admin'),(94,'Database Management','Datenbank Verwalten'),(95,'Domain Management','Verwalten von Domains'),(96,'Find out all the latest news and information from the Sentora project.','Finden Sie heraus, alle Neuigkeiten und Informationen aus dem Sentora Projekt.'),(97,'Check to see if there are any available updates to your version of the Sentora software.','Prüfen Sie, ob es irgendwelche verfügbaren Aktualisierungen für Ihre Version des Sentora Software.'),(98,'If you have found a bug with Sentora you can report it here.','Did you mean: If you have found a bug with CPanel you can report it here.\r\nWenn Sie einen Fehler mit Sentora gefunden haben, können Sie ihn hier melden.'),(99,'phpMyAdmin is a web based tool that enables you to manage your Sentora MySQL databases via. the web.','phpMyAdmin ist ein webbasiertes Tool, das Sie zu Ihrem Sentora MySQL-Datenbanken via verwalten können. im Internet.'),(100,'Current personal details that you have provided us with, We ask that you keep these upto date in case we require to contact you regarding your hosting package.','Aktuelle persönlichen Daten, die Sie uns mit vorgesehen ist, bitten wir Sie, diese zu halten bis zu Datum, falls wir mit Ihnen Kontakt aufnehmen über Ihre Hosting-Paket erfordern.'),(101,'Webmail is a convenient way for you to check your email accounts online without the need to configure an email client.','Webmail ist ein bequemer Weg für Sie, Ihre E-Mail-Konten online zu überprüfen, ohne dass eine E-Mail-Client zu konfigurieren.'),(102,'Change your current control panel password.','Ändern Sie Ihre aktuelle Bedienfeld oder MySQL-Kennwort.'),(103,'The backup manager module enables you to backup your entire hosting account including all your MySQL® databases.','Der Backup-Manager-Modul ermöglicht es Ihnen, Ihre gesamte Hosting-Account inklusive aller Ihrer MySQL ® Datenbank-Backup.'),(104,'You can use the tools below to diagnose issues or to simply test connectivity to other servers or sites around the globe.','Sie können die folgenden Tools verwenden, um Probleme zu diagnostizieren oder einfach testen Verbindung mit anderen Servern oder Websites rund um den Globus.'),(105,'Here you can check the current status of our services and see what services are up and running and which are down and not.','Hier können Sie den aktuellen Status unserer Dienstleistungen und sehen, welche Dienste vorhanden sind und laufen, und die nach unten und es nicht sind.'),(106,'This module enables you to add or configure domain web hosting on your account.','Dieses Modul ermöglicht es Ihnen, hinzuzufügen oder zu konfigurieren Domain Hosting auf Ihrem Konto.'),(107,'Domain parking refers to the registration of an Internet domain name without that domain being used to provide services such as e-mail or a website. If you have any domains that you are not using, then simply park them!','Domain-Parking bezieht sich auf die Registrierung von Internet Domain-Namen ohne diese Domäne verwendet, um Dienste wie E-Mail oder eine Webseite bereitzustellen. Wenn Sie alle Domains, die Sie nicht haben, dann einfach parken sie!'),(108,'This module enables you to add or configure domain web hosting on your account.','Dieses Modul ermöglicht es Ihnen, hinzuzufügen oder zu konfigurieren Domain Hosting auf Ihrem Konto.'),(109,'Administer or configure modules registered with module admin','Verwalten oder zu konfigurieren Module mit Modul admin registriert'),(110,'The account manager enables you to view, update and create client accounts.','Die Account-Manager ermöglicht es Ihnen, anzuzeigen, zu aktualisieren und erstellen Kundenkonten.'),(111,'Welcome to the Package Manager, using this module enables you to create and manage existing reseller packages on your Sentora hosting account.','Willkommen auf der Paket-Manager, mit diesem Modul ermöglicht Ihnen die Erstellung und Verwaltung von bestehenden Reseller-Pakete auf Ihrem Sentora Hosting-Account.'),(112,'Gives you access to your files with drag-and-drop, multiple file uploading, text editing, zip support.','Ermöglicht den Zugriff auf Ihre Dateien mit Drag-and-drop, multiple Datei-Upload, Textbearbeitung, zip unterstützen.'),(113,'Secure FTP Applet is a JAVA based FTP client component that runs within your web browser. It is designed to let non-technical users exchange data securely with an FTP server.','Secure FTP Applet ist eine Java-basierte FTP-Client-Komponente, die in Ihrem Web-Browser läuft. Es wurde entwickelt, um nicht-technische Anwender den Datenaustausch secureiy lassen mit einem FTP-Server.'),(114,'Full name','Vollständiger Name'),(115,'Email Address','E-Mail Adresse'),(116,'Phone Number','Telefonnummer'),(117,'Choose Language','Sprache wählen'),(118,'Postal Address','Postanschrift'),(119,'Postal Code','Postleitzahl'),(120,'Current personal details that you have provided us with, We ask that you keep these upto date in case we require to contact you regarding your hosting package.','Aktuelle persönlichen Daten, die Sie uns mit vorgesehen ist, bitten wir Sie, diese zu halten bis zu Datum, falls wir mit Ihnen Kontakt aufnehmen über Ihre Hosting-Paket erfordern.'),(121,'Changes to your account settings have been saved successfully!','Änderungen an Ihrem Konto-Einstellungen wurden erfolgreich gespeichert!'),(122,'Update Account','Aktualisierung Konto'),(123,'Enter your account details','Geben Sie Ihre Kontodaten');
/*!40000 ALTER TABLE `x_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_user_info`
--
DROP TABLE IF EXISTS `x_user_info`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_user_info` (
`web_id` int(11) NOT NULL AUTO_INCREMENT,
`web_username` varchar(50) NOT NULL,
`web_password` blob NOT NULL,
PRIMARY KEY (`web_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_user_info`
--
LOCK TABLES `x_user_info` WRITE;
/*!40000 ALTER TABLE `x_user_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_user_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_varnish`
--
DROP TABLE IF EXISTS `x_varnish`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_varnish` (
`x_id` int(11) NOT NULL AUTO_INCREMENT,
`x_user_id` int(11) NOT NULL,
`x_varnish` varchar(5) NOT NULL,
`x_nginx` varchar(5) NOT NULL DEFAULT 'Off',
`x_interval` int(11) NOT NULL,
`x_timeout` int(11) NOT NULL,
`x_window` int(11) NOT NULL,
`x_threshold` int(11) NOT NULL,
`x_isactive` int(11) NOT NULL DEFAULT '0',
`x_lastupdate` int(30) NOT NULL,
PRIMARY KEY (`x_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_varnish`
--
LOCK TABLES `x_varnish` WRITE;
/*!40000 ALTER TABLE `x_varnish` DISABLE KEYS */;
INSERT INTO `x_varnish` VALUES (1,1,'Off','Off',5,1,5,3,1,1470142255);
/*!40000 ALTER TABLE `x_varnish` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_vhosts`
--
DROP TABLE IF EXISTS `x_vhosts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_vhosts` (
`vh_id_pk` int(6) unsigned NOT NULL AUTO_INCREMENT,
`vh_acc_fk` int(6) DEFAULT NULL,
`vh_name_vc` varchar(255) CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL,
`vh_directory_vc` varchar(255) CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL,
`vh_type_in` int(1) DEFAULT '1',
`vh_active_in` int(1) DEFAULT '0',
`vh_suhosin_in` int(1) DEFAULT '1',
`vh_obasedir_in` int(1) DEFAULT '1',
`vh_custom_tx` text,
`vh_custom_port_in` int(6) DEFAULT NULL,
`vh_custom_ip_vc` varchar(45) DEFAULT NULL,
`vh_portforward_in` int(1) DEFAULT NULL,
`vh_soaserial_vc` char(10) DEFAULT 'AAAAMMDDSS',
`vh_enabled_in` int(1) DEFAULT '1',
`vh_created_ts` int(30) DEFAULT NULL,
`vh_deleted_ts` int(30) DEFAULT NULL,
`vh_modhttp` int(1) DEFAULT '1',
`vh_modhttp_status` int(1) DEFAULT '1',
`ip_deleted` varchar(20) DEFAULT NULL,
PRIMARY KEY (`vh_id_pk`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_vhosts`
--
LOCK TABLES `x_vhosts` WRITE;
/*!40000 ALTER TABLE `x_vhosts` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_vhosts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `x_web_server`
--
DROP TABLE IF EXISTS `x_web_server`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `x_web_server` (
`x_id` int(15) NOT NULL AUTO_INCREMENT,
`x_service` varchar(500) NOT NULL,
PRIMARY KEY (`x_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `x_web_server`
--
LOCK TABLES `x_web_server` WRITE;
/*!40000 ALTER TABLE `x_web_server` DISABLE KEYS */;
/*!40000 ALTER TABLE `x_web_server` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Current Database: `sentora_postfix`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `sentora_postfix` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `sentora_postfix`;
--
-- Table structure for table `admin`
--
DROP TABLE IF EXISTS `admin`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin` (
`username` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`active` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`username`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Postfix Admin - Virtual Admins';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `admin`
--
LOCK TABLES `admin` WRITE;
/*!40000 ALTER TABLE `admin` DISABLE KEYS */;
/*!40000 ALTER TABLE `admin` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `alias`
--
DROP TABLE IF EXISTS `alias`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `alias` (
`address` varchar(255) NOT NULL,
`goto` text NOT NULL,
`domain` varchar(255) NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`active` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`address`),
KEY `domain` (`domain`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Postfix Admin - Virtual Aliases';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `alias`
--
LOCK TABLES `alias` WRITE;
/*!40000 ALTER TABLE `alias` DISABLE KEYS */;
/*!40000 ALTER TABLE `alias` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `alias_domain`
--
DROP TABLE IF EXISTS `alias_domain`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `alias_domain` (
`alias_domain` varchar(255) NOT NULL,
`target_domain` varchar(255) NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`active` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`alias_domain`),
KEY `active` (`active`),
KEY `target_domain` (`target_domain`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Postfix Admin - Domain Aliases';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `alias_domain`
--
LOCK TABLES `alias_domain` WRITE;
/*!40000 ALTER TABLE `alias_domain` DISABLE KEYS */;
/*!40000 ALTER TABLE `alias_domain` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `config`
--
DROP TABLE IF EXISTS `config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `config` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(20) NOT NULL DEFAULT '',
`value` varchar(20) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='PostfixAdmin settings';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `config`
--
LOCK TABLES `config` WRITE;
/*!40000 ALTER TABLE `config` DISABLE KEYS */;
/*!40000 ALTER TABLE `config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `domain`
--
DROP TABLE IF EXISTS `domain`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `domain` (
`domain` varchar(255) NOT NULL,
`description` varchar(255) NOT NULL,
`aliases` int(10) NOT NULL DEFAULT '0',
`mailboxes` int(10) NOT NULL DEFAULT '0',
`maxquota` bigint(20) NOT NULL DEFAULT '0',
`quota` bigint(20) NOT NULL DEFAULT '0',
`transport` varchar(255) NOT NULL,
`backupmx` tinyint(1) NOT NULL DEFAULT '0',
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`active` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`domain`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Postfix Admin - Virtual Domains';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `domain`
--
LOCK TABLES `domain` WRITE;
/*!40000 ALTER TABLE `domain` DISABLE KEYS */;
/*!40000 ALTER TABLE `domain` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `mailbox`
--
DROP TABLE IF EXISTS `mailbox`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mailbox` (
`username` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`maildir` varchar(255) NOT NULL,
`quota` bigint(20) NOT NULL DEFAULT '0',
`local_part` varchar(255) NOT NULL,
`domain` varchar(255) NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`active` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`username`),
KEY `domain` (`domain`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Postfix Admin - Virtual Mailboxes';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `mailbox`
--
LOCK TABLES `mailbox` WRITE;
/*!40000 ALTER TABLE `mailbox` DISABLE KEYS */;
/*!40000 ALTER TABLE `mailbox` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `quota2`
--
DROP TABLE IF EXISTS `quota2`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quota2` (
`username` varchar(100) NOT NULL,
`bytes` bigint(20) NOT NULL DEFAULT '0',
`messages` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`username`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `quota2`
--
LOCK TABLES `quota2` WRITE;
/*!40000 ALTER TABLE `quota2` DISABLE KEYS */;
/*!40000 ALTER TABLE `quota2` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vacation`
--
DROP TABLE IF EXISTS `vacation`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vacation` (
`email` varchar(255) NOT NULL,
`subject` varchar(255) NOT NULL,
`body` text NOT NULL,
`cache` text NOT NULL,
`domain` varchar(255) NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`active` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`email`),
KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Postfix Admin - Virtual Vacation';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vacation`
--
LOCK TABLES `vacation` WRITE;
/*!40000 ALTER TABLE `vacation` DISABLE KEYS */;
/*!40000 ALTER TABLE `vacation` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Current Database: `sentora_proftpd`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `sentora_proftpd` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `sentora_proftpd`;
--
-- Table structure for table `ftpgroup`
--
DROP TABLE IF EXISTS `ftpgroup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ftpgroup` (
`groupname` varchar(16) NOT NULL DEFAULT '',
`gid` smallint(6) NOT NULL DEFAULT '5500',
`members` varchar(16) NOT NULL DEFAULT '',
KEY `groupname` (`groupname`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='ProFTP group table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ftpgroup`
--
LOCK TABLES `ftpgroup` WRITE;
/*!40000 ALTER TABLE `ftpgroup` DISABLE KEYS */;
INSERT INTO `ftpgroup` VALUES ('ftpgroup',2001,'ftpuser');
/*!40000 ALTER TABLE `ftpgroup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ftpquotalimits`
--
DROP TABLE IF EXISTS `ftpquotalimits`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ftpquotalimits` (
`name` varchar(30) DEFAULT NULL,
`quota_type` enum('user','group','class','all') NOT NULL DEFAULT 'user',
`per_session` enum('false','true') NOT NULL DEFAULT 'false',
`limit_type` enum('soft','hard') NOT NULL DEFAULT 'soft',
`bytes_in_avail` int(10) unsigned NOT NULL DEFAULT '0',
`bytes_out_avail` int(10) unsigned NOT NULL DEFAULT '0',
`bytes_xfer_avail` int(10) unsigned NOT NULL DEFAULT '0',
`files_in_avail` int(10) unsigned NOT NULL DEFAULT '0',
`files_out_avail` int(10) unsigned NOT NULL DEFAULT '0',
`files_xfer_avail` int(10) unsigned NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ftpquotalimits`
--
LOCK TABLES `ftpquotalimits` WRITE;
/*!40000 ALTER TABLE `ftpquotalimits` DISABLE KEYS */;
/*!40000 ALTER TABLE `ftpquotalimits` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ftpquotatallies`
--
DROP TABLE IF EXISTS `ftpquotatallies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ftpquotatallies` (
`name` varchar(30) NOT NULL DEFAULT '',
`quota_type` enum('user','group','class','all') NOT NULL DEFAULT 'user',
`bytes_in_used` int(10) unsigned NOT NULL DEFAULT '0',
`bytes_out_used` int(10) unsigned NOT NULL DEFAULT '0',
`bytes_xfer_used` int(10) unsigned NOT NULL DEFAULT '0',
`files_in_used` int(10) unsigned NOT NULL DEFAULT '0',
`files_out_used` int(10) unsigned NOT NULL DEFAULT '0',
`files_xfer_used` int(10) unsigned NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ftpquotatallies`
--
LOCK TABLES `ftpquotatallies` WRITE;
/*!40000 ALTER TABLE `ftpquotatallies` DISABLE KEYS */;
/*!40000 ALTER TABLE `ftpquotatallies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ftpuser`
--
DROP TABLE IF EXISTS `ftpuser`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ftpuser` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`userid` varchar(50) NOT NULL DEFAULT '',
`passwd` varchar(50) NOT NULL DEFAULT '',
`uid` smallint(6) NOT NULL DEFAULT '48',
`gid` smallint(6) NOT NULL DEFAULT '48',
`homedir` varchar(255) NOT NULL DEFAULT '',
`shell` varchar(16) NOT NULL DEFAULT '/sbin/nologin',
`count` int(11) NOT NULL DEFAULT '0',
`accessed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `userid` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='ProFTP user table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ftpuser`
--
LOCK TABLES `ftpuser` WRITE;
/*!40000 ALTER TABLE `ftpuser` DISABLE KEYS */;
/*!40000 ALTER TABLE `ftpuser` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Current Database: `sentora_roundcube`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `sentora_roundcube` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `sentora_roundcube`;
--
-- Table structure for table `cache`
--
DROP TABLE IF EXISTS `cache`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache` (
`user_id` int(10) unsigned NOT NULL,
`cache_key` varchar(128) CHARACTER SET ascii NOT NULL,
`created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
`data` longtext NOT NULL,
KEY `created_index` (`created`),
KEY `user_cache_index` (`user_id`,`cache_key`),
CONSTRAINT `user_id_fk_cache` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache`
--
LOCK TABLES `cache` WRITE;
/*!40000 ALTER TABLE `cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache_index`
--
DROP TABLE IF EXISTS `cache_index`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_index` (
`user_id` int(10) unsigned NOT NULL,
`mailbox` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
`valid` tinyint(1) NOT NULL DEFAULT '0',
`data` longtext NOT NULL,
PRIMARY KEY (`user_id`,`mailbox`),
KEY `changed_index` (`changed`),
CONSTRAINT `user_id_fk_cache_index` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache_index`
--
LOCK TABLES `cache_index` WRITE;
/*!40000 ALTER TABLE `cache_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_index` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache_messages`
--
DROP TABLE IF EXISTS `cache_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_messages` (
`user_id` int(10) unsigned NOT NULL,
`mailbox` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`uid` int(11) unsigned NOT NULL DEFAULT '0',
`changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
`data` longtext NOT NULL,
`flags` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`user_id`,`mailbox`,`uid`),
KEY `changed_index` (`changed`),
CONSTRAINT `user_id_fk_cache_messages` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache_messages`
--
LOCK TABLES `cache_messages` WRITE;
/*!40000 ALTER TABLE `cache_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache_thread`
--
DROP TABLE IF EXISTS `cache_thread`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_thread` (
`user_id` int(10) unsigned NOT NULL,
`mailbox` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
`data` longtext NOT NULL,
PRIMARY KEY (`user_id`,`mailbox`),
KEY `changed_index` (`changed`),
CONSTRAINT `user_id_fk_cache_thread` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache_thread`
--
LOCK TABLES `cache_thread` WRITE;
/*!40000 ALTER TABLE `cache_thread` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_thread` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contactgroupmembers`
--
DROP TABLE IF EXISTS `contactgroupmembers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `contactgroupmembers` (
`contactgroup_id` int(10) unsigned NOT NULL,
`contact_id` int(10) unsigned NOT NULL,
`created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
PRIMARY KEY (`contactgroup_id`,`contact_id`),
KEY `contactgroupmembers_contact_index` (`contact_id`),
CONSTRAINT `contact_id_fk_contacts` FOREIGN KEY (`contact_id`) REFERENCES `contacts` (`contact_id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `contactgroup_id_fk_contactgroups` FOREIGN KEY (`contactgroup_id`) REFERENCES `contactgroups` (`contactgroup_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contactgroupmembers`
--
LOCK TABLES `contactgroupmembers` WRITE;
/*!40000 ALTER TABLE `contactgroupmembers` DISABLE KEYS */;
/*!40000 ALTER TABLE `contactgroupmembers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contactgroups`
--
DROP TABLE IF EXISTS `contactgroups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `contactgroups` (
`contactgroup_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL,
`changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
`del` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(128) NOT NULL DEFAULT '',
PRIMARY KEY (`contactgroup_id`),
KEY `contactgroups_user_index` (`user_id`,`del`),
CONSTRAINT `user_id_fk_contactgroups` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contactgroups`
--
LOCK TABLES `contactgroups` WRITE;
/*!40000 ALTER TABLE `contactgroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `contactgroups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contacts`
--
DROP TABLE IF EXISTS `contacts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `contacts` (
`contact_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
`del` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(128) NOT NULL DEFAULT '',
`email` text NOT NULL,
`firstname` varchar(128) NOT NULL DEFAULT '',
`surname` varchar(128) NOT NULL DEFAULT '',
`vcard` longtext,
`words` text,
`user_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`contact_id`),
KEY `user_contacts_index` (`user_id`,`del`),
CONSTRAINT `user_id_fk_contacts` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contacts`
--
LOCK TABLES `contacts` WRITE;
/*!40000 ALTER TABLE `contacts` DISABLE KEYS */;
/*!40000 ALTER TABLE `contacts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `dictionary`
--
DROP TABLE IF EXISTS `dictionary`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dictionary` (
`user_id` int(10) unsigned DEFAULT NULL,
`language` varchar(5) NOT NULL,
`data` longtext NOT NULL,
UNIQUE KEY `uniqueness` (`user_id`,`language`),
CONSTRAINT `user_id_fk_dictionary` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `dictionary`
--
LOCK TABLES `dictionary` WRITE;
/*!40000 ALTER TABLE `dictionary` DISABLE KEYS */;
/*!40000 ALTER TABLE `dictionary` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `identities`
--
DROP TABLE IF EXISTS `identities`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `identities` (
`identity_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL,
`changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
`del` tinyint(1) NOT NULL DEFAULT '0',
`standard` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(128) NOT NULL,
`organization` varchar(128) NOT NULL DEFAULT '',
`email` varchar(128) NOT NULL,
`reply-to` varchar(128) NOT NULL DEFAULT '',
`bcc` varchar(128) NOT NULL DEFAULT '',
`signature` text,
`html_signature` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`identity_id`),
KEY `user_identities_index` (`user_id`,`del`),
KEY `email_identities_index` (`email`,`del`),
CONSTRAINT `user_id_fk_identities` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `identities`
--
LOCK TABLES `identities` WRITE;
/*!40000 ALTER TABLE `identities` DISABLE KEYS */;
/*!40000 ALTER TABLE `identities` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `searches`
--
DROP TABLE IF EXISTS `searches`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `searches` (
`search_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL,
`type` int(3) NOT NULL DEFAULT '0',
`name` varchar(128) NOT NULL,
`data` text,
PRIMARY KEY (`search_id`),
UNIQUE KEY `uniqueness` (`user_id`,`type`,`name`),
CONSTRAINT `user_id_fk_searches` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `searches`
--
LOCK TABLES `searches` WRITE;
/*!40000 ALTER TABLE `searches` DISABLE KEYS */;
/*!40000 ALTER TABLE `searches` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `session`
--
DROP TABLE IF EXISTS `session`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `session` (
`sess_id` varchar(128) NOT NULL,
`created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
`changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
`ip` varchar(40) NOT NULL,
`vars` mediumtext NOT NULL,
PRIMARY KEY (`sess_id`),
KEY `changed_index` (`changed`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `session`
--
LOCK TABLES `session` WRITE;
/*!40000 ALTER TABLE `session` DISABLE KEYS */;
/*!40000 ALTER TABLE `session` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system`
--
DROP TABLE IF EXISTS `system`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `system` (
`name` varchar(64) NOT NULL,
`value` mediumtext,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `system`
--
LOCK TABLES `system` WRITE;
/*!40000 ALTER TABLE `system` DISABLE KEYS */;
INSERT INTO `system` VALUES ('roundcube-version','2013011700');
/*!40000 ALTER TABLE `system` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
`user_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`mail_host` varchar(128) NOT NULL,
`created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
`last_login` datetime DEFAULT NULL,
`language` varchar(5) DEFAULT NULL,
`preferences` longtext,
PRIMARY KEY (`user_id`),
UNIQUE KEY `username` (`username`,`mail_host`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
/*!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 2018-08-23 20:15:29